coderJeet
coderJeet
  • Видео 41
  • Просмотров 443 398
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
Просмотров: 59 017

Видео

Variables & Constants in C# - C Sharp Fundamentals
Просмотров 514Год назад
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)
Просмотров 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# Fundamentals
Просмотров 708Год назад
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,6 тыс.Год назад
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
Просмотров 8 тыс.Год назад
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,4 тыс.Год назад
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
Просмотров 9 тыс.Год назад
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
Просмотров 2,8 тыс.Год назад
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
Просмотров 1,9 тыс.Год назад
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?
Просмотров 202Год назад
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
Просмотров 28 тыс.Год назад
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,1 тыс.Год назад
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
Просмотров 28 тыс.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,1 тыс.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
Просмотров 9 тыс.2 года назад
Running an external process or app in ElectronJS
Blazor Lifecycle Events - Know what each event does and how to use it (Webassembly)
Просмотров 5 тыс.2 года назад
Blazor Lifecycle Events - Know what each event does and how to use it (Webassembly)
Passing Values Between Blazor Components Using Parameters & CascadingParameters
Просмотров 11 тыс.2 года назад
Passing Values Between Blazor Components Using Parameters & CascadingParameters
Blazor WebAssembly App Configuration (Client side & server side)
Просмотров 3,7 тыс.2 года назад
Blazor WebAssembly App Configuration (Client side & server side)
Paging in Blazor Webassembly - How to implement Paging Correctly
Просмотров 7 тыс.2 года назад
Paging in Blazor Webassembly - How to implement Paging Correctly
Blazor Webassembly - Communicating with the Backend Server
Просмотров 6 тыс.2 года назад
Blazor Webassembly - Communicating with the Backend Server
Context Isolation in Electron JS - Detailed Explanation. Electron JS Tutorial
Просмотров 3,5 тыс.2 года назад
Context Isolation in Electron JS - Detailed Explanation. Electron JS Tutorial
CSS Isolation in Blazor - How to Isolate CSS in Razor Components
Просмотров 5 тыс.2 года назад
CSS Isolation in Blazor - How to Isolate CSS in Razor Components
Asp.net Blazor Routing - The complete guide to Routing in Blazor
Просмотров 3,1 тыс.2 года назад
Asp.net Blazor Routing - The complete guide to Routing in Blazor
Creating A Working Blazor Webassembly App From Scratch
Просмотров 9 тыс.2 года назад
Creating A Working Blazor Webassembly App From Scratch
Electron BrowserWindow & WebContents Objects - Electron Basics Tutorial
Просмотров 7 тыс.2 года назад
Electron BrowserWindow & WebContents Objects - Electron Basics Tutorial
Blazor Webassembly Vs Blazor Server - Technological Differences & Why to choose one
Просмотров 3,5 тыс.2 года назад
Blazor Webassembly Vs Blazor Server - Technological Differences & Why to choose one
Making HTTP Calls in Electron JS (4 Methods) - Electron Tutorial
Просмотров 14 тыс.2 года назад
Making HTTP Calls in Electron JS (4 Methods) - Electron Tutorial
Creating a new Blazor Project - Blazor Project Structure
Просмотров 2,7 тыс.2 года назад
Creating a new Blazor Project - Blazor Project Structure
Microsoft's new SPA framwork Blazor - What is it and should you learn it?
Просмотров 3,7 тыс.2 года назад
Microsoft's new SPA framwork Blazor - What is it and should you learn it?

Комментарии

  • @AlSajid
    @AlSajid 9 часов назад

    What about bundling?

  • @ZerduKarakollik
    @ZerduKarakollik 2 дня назад

    2.7k views and 1 comment is never seen before

  • @ericksantiagoorozcorangel9449
    @ericksantiagoorozcorangel9449 2 дня назад

    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 4 дня назад

    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 2 дня назад

      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 7 дней назад

    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 14 дней назад

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

  • @PaulCashmore-i5l
    @PaulCashmore-i5l 17 дней назад

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

  • @holasoyniu8535
    @holasoyniu8535 26 дней назад

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

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

    thanks man

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

    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 Месяц назад

    Pretty helpful, nice video

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

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

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

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

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

    subscribed and Liked

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

    this really works

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

    this really works

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

    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 Месяц назад

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

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

    Genuinely incredibly useful, thank you so much!

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

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

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

    Thank you for such content shared.

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

    i don't have settings.json

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

    Nice very clear...

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

    I do not see anything here

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

    Thanks you man you are very helpfull

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

    Wtf... are u serious?

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

    Hero

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

    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?

    • @kalanyosdartveder5357
      @kalanyosdartveder5357 14 дней назад

      Please check very first comment made by @digital_sorceress. There is the answer to your question.

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

    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 4 месяца назад

    where is your repo on github? ....

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

    am not getting setting.json file please help me

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

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

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

    why can't I use require in my js file

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

    Thanks. This is really helpful.

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

    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 4 месяца назад

    The last part of your video was really motivating

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

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

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

    great, thx

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

    I kept hitting error back2back

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

    Thank you so much

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

    thanks for your instruction

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

    Você é o cara. Me salvou. Obrigado.

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

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

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

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

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

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

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

    did not worked at all

  • @НиколайКуликов-в4э
    @НиколайКуликов-в4э 5 месяцев назад

    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 5 месяцев назад

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

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

    very helpful, thank you

  • @KennethRJones-SWEN
    @KennethRJones-SWEN 5 месяцев назад

    THANK GOD