coderJeet
coderJeet
  • Видео 41
  • Просмотров 486 629
How to debug PHP in Visual Studio Code (Simple steps)
I set up my debugger today and created this quick video to help you in case you want to debug PHP in Visual Studio Code.
Settings to enter in PHP.ini (from the video)
zend_extension = xdebug
[XDebug]
xdebug.mode = debug
xdebug.start_with_request = yes
Просмотров: 69 094

Видео

Variables & Constants in C# - C Sharp Fundamentals
Просмотров 606Год назад
This is an introductory lesson on C# that explains in details what Variables and Constants are and how they work. I will also show you some important guidelines and pitfalls that you must avoid when using them. Github Repository for this code: github.com/cyrilgupta/csharp_vars_and_constants Don't forget to like and subscribe!
Programming MongoDB Database in Electron JS (How to use Mongo in Electron)
Просмотров 8 тыс.Год назад
In this video I am going to show you how to connect your Electron code to a MongoDB database. The important thing is, I am not going to show you the simple connection code, but the proper way to design a Model class that handles the DB. We will also create a mini application that will do the basic CRUD (Create, Update, Delete) function in the db. Here's the repository for the project github.com...
C# Boolean Data Type - Beginner C# Fundamentals
Просмотров 797Год назад
Boolean is the fundamental data type of programming and one of the core data types of C#. In this video I will show you what Boolean is and what you can use it for. Github repo for the code: github.com/cyrilgupta/CSharpBoolean
C# Coding Conventions - CSharp Basics
Просмотров 1,8 тыс.2 года назад
If you want to be a good coder, the discipline must show in the code that you write. Your code should be clean and must have predictable patterns so that when you come back months or years later you will be able to maintain the code easily. If you work in a team, it's absolutely important to follow conventions. Repository for this lesson github.com/cyrilgupta/CSharpCodingConventions Did you ben...
State Management in Blazor Webassembly - 5 Methods
Просмотров 9 тыс.2 года назад
In this video I am going to show you how to store your Application state in Blazor. We will see 5 different methods and learn about the differences in their capabilities and approaches. Here's the code for this lesson: github.com/cyrilgupta/blazorstate/ After watching this video you will know where exactly to store all the data in your app for short term or for long term. Follow along, and I ho...
C# Syntax Basics - Rules of Coding in CSharp
Просмотров 1,9 тыс.2 года назад
Learning C# syntax properly is very important to write effective code. You should know what is the function and the impact of each element in the code. This lesson will show you all the important syntax elements and help you read and write better C# code. Got questions? Ask in comments! Don't forget to subscribe! Github repo : github.com/cyrilgupta/csharpsyntax #csharp #dotnet #programming #coding
How to auto-reload Electron JS projects on file modification
Просмотров 10 тыс.2 года назад
In this video I am going to show you how to setup your electron js projects so that it will auto-reload when a file is modified. You won't have to restart your project over and over. We are using a utility called nodemon for this. Here's the link to the Githup repo : github.com/cyrilgupta/electron-autoreload Don't forget to hit like and subscribe to my channel for more videos. Cheers! #electron...
How to Install C# on your PC | Beginner lesson
Просмотров 4,1 тыс.2 года назад
Welcome beginner programmer, So you want to get started with C#? Here's how you can install it and get rolling. #csharp #programming #dotnet
Databinding in Blazor Webassembly - The Basics of Databinding
Просмотров 2,1 тыс.2 года назад
In this video I am going to introduce you to one-way and two-way data binding in Blazor. This is a pretty fundamental and important concept that you'll need to understand to program in Blazor Webassembly. Here's the repo link for this tutorial github.com/cyrilgupta/blazor-databinding Don't forget to like and subscribe if this video was helpful! More videos coming up :) Cheers! CoderJeet #blazor...
What is C#? Should you learn it?
Просмотров 2272 года назад
Hi friends! This is the beginning of my C# series. I am going to teach you how to code in C# the right way. We are going to begin with the fundamentals and slowly go into the expert zone, learning how to churn out real world apps all by ourselves. In this lesson I am going to show you why. Why should you learn C#? This is my answer. If you are ready to go on a fun ride, subscribe to my channel ...
How to implement Automatic Updates in your Electron JS Application
Просмотров 31 тыс.2 года назад
Hello, In this video I am going to show you how to autoupdate an Electron app using the Electron Builder and the ELectron Updater packages. The process requires multiple steps but it's simple enough and if you follow along you will be able to create Setups with automatic updates for your applications easily. Here's the link to the Github repository for the code github.com/cyrilgupta/electron-au...
Debugging in Microsoft Blazor Webassembly - Fundamentals Guide (Visual Studio & C#)
Просмотров 3,6 тыс.2 года назад
In this video I am going to show you how to debug your Blazor app using Visual Studio. We'll talk about the fundamentals and discuss some problems too. If you are still learning Blazor and want to learn the fundamentals, this is a good video to watch. Don't forget to hit the Like button and gently click on the Subscribe button and you'll see more videos and content from me. Your support encoura...
Storing Data in Electron JS Applications - 4 Methods
Просмотров 30 тыс.2 года назад
Every app requires storing some sort of data. Earlier I made a video about using Sqlite with Electron, in this video I am going to show you 4 other ways of storing data in Electron. These methods are suitable for smaller pieces of data that can be stored in key value pairs. The methods are - Flat JSON file, - sessionStorage - localStorage - IndexedDb You can store data in IndexedDb on both the ...
Error handling in Blazor WebAssembly (Blazor Tutorial)
Просмотров 4,5 тыс.2 года назад
Error handling works a little bit differently in Blazor WebAssembly than ASP.Net Core. There is a separation between client side and Server side errors. In this video I will show you the basics of Blazor error handling and we will also see the code in action. You will learn - Basic error handling - Server side error handling - Client Side error handling - Changing error design - Error boundarie...
Running an external process or app in ElectronJS
Просмотров 10 тыс.2 года назад
Running an external process or app in ElectronJS
Blazor Lifecycle Events - Know what each event does and how to use it (Webassembly)
Просмотров 6 тыс.2 года назад
Blazor Lifecycle Events - Know what each event does and how to use it (Webassembly)
Passing Values Between Blazor Components Using Parameters & CascadingParameters
Просмотров 12 тыс.2 года назад
Passing Values Between Blazor Components Using Parameters & CascadingParameters
Blazor WebAssembly App Configuration (Client side & server side)
Просмотров 3,9 тыс.2 года назад
Blazor WebAssembly App Configuration (Client side & server side)
Paging in Blazor Webassembly - How to implement Paging Correctly
Просмотров 8 тыс.2 года назад
Paging in Blazor Webassembly - How to implement Paging Correctly
Blazor Webassembly - Communicating with the Backend Server
Просмотров 7 тыс.2 года назад
Blazor Webassembly - Communicating with the Backend Server
Context Isolation in Electron JS - Detailed Explanation. Electron JS Tutorial
Просмотров 3,7 тыс.2 года назад
Context Isolation in Electron JS - Detailed Explanation. Electron JS Tutorial
CSS Isolation in Blazor - How to Isolate CSS in Razor Components
Просмотров 6 тыс.2 года назад
CSS Isolation in Blazor - How to Isolate CSS in Razor Components
Asp.net Blazor Routing - The complete guide to Routing in Blazor
Просмотров 3,2 тыс.2 года назад
Asp.net Blazor Routing - The complete guide to Routing in Blazor
Creating A Working Blazor Webassembly App From Scratch
Просмотров 10 тыс.2 года назад
Creating A Working Blazor Webassembly App From Scratch
Electron BrowserWindow & WebContents Objects - Electron Basics Tutorial
Просмотров 8 тыс.2 года назад
Electron BrowserWindow & WebContents Objects - Electron Basics Tutorial
Blazor Webassembly Vs Blazor Server - Technological Differences & Why to choose one
Просмотров 3,6 тыс.2 года назад
Blazor Webassembly Vs Blazor Server - Technological Differences & Why to choose one
Making HTTP Calls in Electron JS (4 Methods) - Electron Tutorial
Просмотров 15 тыс.2 года назад
Making HTTP Calls in Electron JS (4 Methods) - Electron Tutorial
Creating a new Blazor Project - Blazor Project Structure
Просмотров 2,8 тыс.2 года назад
Creating a new Blazor Project - Blazor Project Structure
Microsoft's new SPA framwork Blazor - What is it and should you learn it?
Просмотров 3,8 тыс.2 года назад
Microsoft's new SPA framwork Blazor - What is it and should you learn it?

Комментарии

  • @sevenmixedfeelings
    @sevenmixedfeelings 3 дня назад

    Please do this again with electron+react. I can't set it up.

  • @egrdev2284
    @egrdev2284 5 дней назад

    you don't know how much I have suffered with Electron and better-sqlite3 trying to do what you explained with your video, it worked perfectly! thanks a lot, man

  • @sukhoy
    @sukhoy 5 дней назад

    Works in development, while using visual code. It does not work after compiling. 😢. Solved. Don't forget to add "fs" dependency in package.json

  • @leonmarienga3293
    @leonmarienga3293 7 дней назад

    thanks

  • @WesloOne
    @WesloOne 9 дней назад

    Tried everything but Unable to load preload, it happens only when I require something else than 'electron'

  • @PROG-v6b
    @PROG-v6b 12 дней назад

    thank you very much

  • @jeremiahthompson82
    @jeremiahthompson82 24 дня назад

    Thanks. Great job

  • @pavlenkoevgeniy4836
    @pavlenkoevgeniy4836 27 дней назад

    Thanks. It is more easy than I was thinking.

  • @fabioyasuo8134
    @fabioyasuo8134 27 дней назад

    Thank you sir. That was very helpful.

  • @yahyaabbasi6132
    @yahyaabbasi6132 28 дней назад

    hey i need your help i have created electron react app with sqlite as database i am also using typescript, js and frontend library antd so in my case how can i package and distribute the app?

  • @apolocpl5892
    @apolocpl5892 Месяц назад

    Nice!!! thk!!!

  • @jepaler
    @jepaler Месяц назад

    thank you this is very useful even its outdated.

  • @jepaler
    @jepaler Месяц назад

    the latest version is now having 3 configurations

  • @pra006
    @pra006 Месяц назад

    Can't find the Github repo

  • @marioescudero7103
    @marioescudero7103 Месяц назад

    Excelente video. Una consulta: ¿cómo puedo mostrar los números de las páginas de la 1 hasta la última? Algo así: Preview 1 2 3 4 5.....100 101 102 103 Next ¿Tendría que traerme todos registros inicialmente para saber el número de páginas? ¿Eso no recargaría la aplicación al tener que traer todas los registros de todas las tablas que tenga que necesite paginar? Muchas gracias de antemano. Saludos y que sigan los éxitos.

  • @Ohm_Sharma
    @Ohm_Sharma Месяц назад

    thanks king

  • @zellonews
    @zellonews Месяц назад

    Try to build this and u will see how good it is. Good luck

  • @nang88
    @nang88 2 месяца назад

    Nice

  • @weler2491
    @weler2491 2 месяца назад

    i have a crud electron application with sqlite3 that works fine while in development, but when i build the application, it just can't connect to the database. Can someone help me?

  • @umashankarsaw9039
    @umashankarsaw9039 2 месяца назад

    Fantastic bro, thanks a lot you have explain so much easy way, I was misleading a lot and failed even if in chatgpt :)

  • @marcreigpons5119
    @marcreigpons5119 2 месяца назад

    THIS, my friend. Is GLORY. Thanks for the gold today.

  • @ogropor
    @ogropor 2 месяца назад

    How do I change views? or screens? Should I use 1 browser window with multiple web content views, or should I use multiple browser views? What is the convention? Can you do a tutorial video about this?

  • @lucancristian8589
    @lucancristian8589 3 месяца назад

    thank you

  • @nisarop
    @nisarop 3 месяца назад

    Thanks…. Nicely explained the naming convention. Note: you declared a public field as private with underscore _

  • @frigga
    @frigga 3 месяца назад

    For me this just keeps spawning new electron windows, even though nothing changed in the code.

  • @AlSajid
    @AlSajid 3 месяца назад

    What about bundling?

  • @ZerduKarakollik
    @ZerduKarakollik 3 месяца назад

    2.7k views and 1 comment is never seen before

  • @ericksantiagoorozcorangel9449
    @ericksantiagoorozcorangel9449 3 месяца назад

    file:///C:/Users/davor/OneDrive/Desktop/image.png Can you help me with this, I don't know which folder you use in vs code for global.js to appear which is the carpet that you used in vs code

  • @leecallaghan4625
    @leecallaghan4625 3 месяца назад

    This is a pure amazing video . This really helped me out . Nice of you to show what can go wrong and how to fix it , not many peolle do that . Subscribed.

    • @ericksantiagoorozcorangel9449
      @ericksantiagoorozcorangel9449 3 месяца назад

      file:///C:/Users/davor/OneDrive/Desktop/image.png Someone can help me with this, I don't know which folder you use in vs code for global.js to appear which is the carpet that he used in vs code

  • @stegothedump
    @stegothedump 3 месяца назад

    Great video and will checkout your other videos. I wondered can the above work but instead of the randomly generated weather content...use the sample data weather.json that comes with the files? If so how?

  • @abi3689
    @abi3689 4 месяца назад

    better-sqlite3-with-prebuilds is no longer supported, idk what to do now

  • @PaulCashmore-i5l
    @PaulCashmore-i5l 4 месяца назад

    Very clear - worked first time! Much easier than a lot of the other misleading guides.

  • @holasoyniu8535
    @holasoyniu8535 4 месяца назад

    Es realmente confuso, creo que haré mi propio actualizador.

  • @rowanvanzyl426
    @rowanvanzyl426 4 месяца назад

    thanks man

  • @XiaoleGuo-jw7zr
    @XiaoleGuo-jw7zr 4 месяца назад

    Hello, I have tried your code, but I have a question that confuses me so much🥲when download is complete, and after we close the old app, which app should we open again? The one in the folder named "win-unpacked"? I would highly apprecaite it if you could clear up my confusions

  • @gersonloaizavargas6703
    @gersonloaizavargas6703 5 месяцев назад

    Pretty helpful, nice video

  • @frankpulido873
    @frankpulido873 5 месяцев назад

    Anyone knows about a good tutorial for installing Xdebug in MacOS, PHP 8.1

  • @sadface
    @sadface 5 месяцев назад

    This doesn't seem to work - I still just get the "Welcome to XAMPP for Windows" /dashboard/ page...

  • @MohdYaseenmas
    @MohdYaseenmas 5 месяцев назад

    subscribed and Liked

  • @DouglasDerek
    @DouglasDerek 5 месяцев назад

    this really works

  • @DouglasDerek
    @DouglasDerek 5 месяцев назад

    this really works

  • @ludkavretenarova4825
    @ludkavretenarova4825 5 месяцев назад

    It was a bit difficult to find settings.json, the way you show it in video didnt work for me but then somehow accidently I found it and it works, thank you so much for your tutorial !

  • @shamraoyelgawakar7868
    @shamraoyelgawakar7868 5 месяцев назад

    How can we open extrnal exe within same window where "open windows explore" buttons are located

  • @hedgewizardly
    @hedgewizardly 5 месяцев назад

    Genuinely incredibly useful, thank you so much!

  • @gabrielemarsili621
    @gabrielemarsili621 5 месяцев назад

    have you any advices for files bigger than 2GB? (I can't upload them on GitHub release)

  • @tumusimedavid5207
    @tumusimedavid5207 5 месяцев назад

    Thank you for such content shared.

  • @Honn3ts
    @Honn3ts 6 месяцев назад

    i don't have settings.json

  • @ceejayviii
    @ceejayviii 6 месяцев назад

    Nice very clear...

  • @leonhardeuler4536
    @leonhardeuler4536 6 месяцев назад

    I do not see anything here