coderJeet
coderJeet
  • 41
  • 398 175
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
Переглядів: 47 775

Відео

Variables & Constants in C# - C Sharp FundamentalsVariables & Constants in C# - C Sharp Fundamentals
Variables & Constants in C# - C Sharp Fundamentals
Переглядів 391Рік тому
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)Programming MongoDB Database in Electron JS (How to use Mongo in Electron)
Programming MongoDB Database in Electron JS (How to use Mongo in Electron)
Переглядів 7 тис.Рік тому
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# FundamentalsC# Boolean Data Type - Beginner C# Fundamentals
C# Boolean Data Type - Beginner C# Fundamentals
Переглядів 619Рік тому
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 BasicsC# Coding Conventions - CSharp Basics
C# Coding Conventions - CSharp Basics
Переглядів 1,3 тис.Рік тому
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 MethodsState Management in Blazor Webassembly - 5 Methods
State Management in Blazor Webassembly - 5 Methods
Переглядів 7 тис.Рік тому
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 CSharpC# Syntax Basics - Rules of Coding in CSharp
C# Syntax Basics - Rules of Coding in CSharp
Переглядів 1,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 modificationHow to auto-reload Electron JS projects on file modification
How to auto-reload Electron JS projects on file modification
Переглядів 8 тис.Рік тому
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 lessonHow to Install C# on your PC | Beginner lesson
How to Install C# on your PC | Beginner lesson
Переглядів 1,6 тис.Рік тому
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 DatabindingDatabinding in Blazor Webassembly - The Basics of Databinding
Databinding in Blazor Webassembly - The Basics of Databinding
Переглядів 1,6 тис.Рік тому
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?What is C#? Should you learn it?
What is C#? Should you learn it?
Переглядів 179Рік тому
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 ApplicationHow to implement Automatic Updates in your Electron JS Application
How to implement Automatic Updates in your Electron JS Application
Переглядів 24 тис.Рік тому
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#)Debugging in Microsoft Blazor Webassembly - Fundamentals Guide (Visual Studio & C#)
Debugging in Microsoft Blazor Webassembly - Fundamentals Guide (Visual Studio & C#)
Переглядів 2,6 тис.Рік тому
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 MethodsStoring Data in Electron JS Applications - 4 Methods
Storing Data in Electron JS Applications - 4 Methods
Переглядів 25 тис.Рік тому
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)Error handling in Blazor WebAssembly (Blazor Tutorial)
Error handling in Blazor WebAssembly (Blazor Tutorial)
Переглядів 3,6 тис.Рік тому
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...

КОМЕНТАРІ

  • @leonhardeuler4536
    @leonhardeuler4536 3 дні тому

    I do not see anything here

  • @abdoul1562
    @abdoul1562 4 дні тому

    Thanks you man you are very helpfull

  • @minnedanhieux1040
    @minnedanhieux1040 14 днів тому

    Wtf... are u serious?

  • @gabrielsilverio4431
    @gabrielsilverio4431 16 днів тому

    Hero

  • @HaslamIT
    @HaslamIT 18 днів тому

    Thanks Jeet. A useful and informative video but I am having some problems. I have installed XAMP and Xdebugger and it seems to work for debugging current open script and I can step through code etc. However, the option for "Listening for Xdebug" does not seem to be working and the debugger does not start when I load the local Web page on APache? Can you offer any further help is to what may be wrong?

  • @armanshirzad4409
    @armanshirzad4409 23 дні тому

    thanks , wheres the repo u already hit 168 :D so in case u ever wanna implement blazor with a clean arch rest-backend base thats something i would hit like on too! cheers

  • @hubert3728
    @hubert3728 26 днів тому

    where is your repo on github? ....

  • @yashwantpanday3351
    @yashwantpanday3351 27 днів тому

    am not getting setting.json file please help me

  • @ravipatni2785
    @ravipatni2785 27 днів тому

    If you don't mind can you share the code now?

  • @galaxysoul3421
    @galaxysoul3421 27 днів тому

    why can't I use require in my js file

  • @SathyamoorthiP
    @SathyamoorthiP 28 днів тому

    Thanks. This is really helpful.

  • @nick_scozza
    @nick_scozza Місяць тому

    Just some feedback, Are you able to provide the needed links in the description? If so, that would save me time.

  • @kristiadhy
    @kristiadhy Місяць тому

    When you use Dependency Injection to register the application state, is it still necessary to use the cascading parameter? Can it work without it?

  • @JAKACLOUD
    @JAKACLOUD Місяць тому

    The last part of your video was really motivating

  • @mattsmith4536
    @mattsmith4536 Місяць тому

    Very useful. Im happy to be the 163rd like. Now any chance of the source?

  • @shahdFaris1623
    @shahdFaris1623 Місяць тому

    great, thx

  • @johnsunday3548
    @johnsunday3548 Місяць тому

    I kept hitting error back2back

  • @KlaroNebulous
    @KlaroNebulous Місяць тому

    Thank you so much

  • @vanbachucnguyen1831
    @vanbachucnguyen1831 Місяць тому

    thanks for your instruction

  • @NATANpoa
    @NATANpoa 2 місяці тому

    Você é o cara. Me salvou. Obrigado.

  • @andrewwachira1
    @andrewwachira1 2 місяці тому

    curious to know what's in that folder named nightmare😅

  • @Sandipansarkar16
    @Sandipansarkar16 2 місяці тому

    you are not my best friend stop saying that it is so weird to hear🙄

  • @MrHatefk
    @MrHatefk 2 місяці тому

    This was more dependency injection rather than appsettings. Also did not cover how to link publish profiles to different appSettings.

  • @henrywans8333
    @henrywans8333 2 місяці тому

    did not worked at all

  • @user-td2ny7mn1x
    @user-td2ny7mn1x 2 місяці тому

    What is this :( I don't understand nothing. Where did the window.indexBridge come from? It says "Property 'indexBridge' does not exist on type 'Window & typeof globalThis'." // I fixed it

  • @christianfredrickgerman9170
    @christianfredrickgerman9170 2 місяці тому

    Hi! how the @TestParam is being passed from the partial class to the razor component?

  • @OmniaAb
    @OmniaAb 2 місяці тому

    very helpful, thank you

  • @KennethRJones-SWEN
    @KennethRJones-SWEN 2 місяці тому

    THANK GOD

  • @juhelius1234
    @juhelius1234 2 місяці тому

    Thank you for the straightforward tutorial, worked like a charm!

  • @harishbinary942
    @harishbinary942 2 місяці тому

    thank you Cyril sir., this is what am exactly looking for months., less developers on electron., tired of searching to solutions., once again thank you sir.

  • @shabanelmogy7912
    @shabanelmogy7912 2 місяці тому

    thanks we need course for blazor in. net8

  • @OmniaAb
    @OmniaAb 2 місяці тому

    istg you're a saviour T_T thank you so much

  • @arushisingh930
    @arushisingh930 2 місяці тому

    Great video!

  • @bigdaddymccoy
    @bigdaddymccoy 2 місяці тому

    I totally agree. I like the code behind in it's own file. Thanks for the demo

    • @RouteDeTours
      @RouteDeTours 2 місяці тому

      Code behind might be great for you personally but it is a terrible idea for instruction videos.

  • @user-kh6rp6yx1j
    @user-kh6rp6yx1j 2 місяці тому

    Hi there.

  • @fredoscott2346
    @fredoscott2346 3 місяці тому

    So when you refer to "WebContents", you mean "BrowserView", or aren't the two the same? If not the same, what are the differences between them?

  • @ritesharya5140
    @ritesharya5140 3 місяці тому

    Great video. Very helpful.

  • @ogropor
    @ogropor 3 місяці тому

    thank you. i used "npx electron-packager ." but after executable file (dist) not working/crashing (closes itself) on mac if you use fs module in your code (writing files etc) :( any solution ?

    • @ogropor
      @ogropor 3 місяці тому

      i add ; i changed my write folder to home directory/Desktop than it worked. it was in project's directory, so it wont work in dist. this is very important sir maybe we should add this in video

  • @ogropor
    @ogropor 3 місяці тому

    thank you. it is also like from ipcRenderer to ipcMain (inverse of your icounter example which is from ipcMain to ipcRenderer)

  • @user-yp3sf6jk1k
    @user-yp3sf6jk1k 3 місяці тому

    Your codebase in github is not working

  • @ogropor
    @ogropor 3 місяці тому

    thank you. and how about from ipcRenderer to ipcMain example ?

  • @user-yp3sf6jk1k
    @user-yp3sf6jk1k 3 місяці тому

    Unable to load preload script thats what i am getting from you github project

  • @ogropor
    @ogropor 3 місяці тому

    hello! thank you for video. is it working after "npm run make" ? after distribution ? i mean when you start it with executable, is it creating ? any crash ? do you have any video about it ?

  • @dwightledet5857
    @dwightledet5857 3 місяці тому

    This is awful. It might work, but the instructions are too jumpy.

  • @zshall48
    @zshall48 3 місяці тому

    I've been looking all over for a concise explanation of how to accomplish IPC and this worked right away. Thank you!!

  • @dev.antunes
    @dev.antunes 3 місяці тому

    Thanks a bunch!

  • @KaranBhuva-xp6xo
    @KaranBhuva-xp6xo 3 місяці тому

    sir please add latest electron.js course

  • @truthvfiction
    @truthvfiction 3 місяці тому

    There are many "how to" xdebug setup videos for PHP in VS Code. None of them explained this at all. This is the only video that actually worked. Who knew the settings.json line items had to be manually inserted? Nobody has explained this before. Now I can accelerate my work to a much greater degree. I am very grateful my friend.

  • @jisonsoft4810
    @jisonsoft4810 3 місяці тому

    Can you create a plugin architecture in electrons?

  • @mohammedgomaa8851
    @mohammedgomaa8851 3 місяці тому

    This still works, thanks!