- Видео 41
- Просмотров 486 629
coderJeet
Объединенные Арабские Эмираты
Добавлен 11 мар 2021
Programming is my passion and I do it every day. This channel will bring you real-world programming tutorials and lessons.
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
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?
Please do this again with electron+react. I can't set it up.
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
Works in development, while using visual code. It does not work after compiling. 😢. Solved. Don't forget to add "fs" dependency in package.json
thanks
Tried everything but Unable to load preload, it happens only when I require something else than 'electron'
thank you very much
Thanks. Great job
Thanks. It is more easy than I was thinking.
Thank you sir. That was very helpful.
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?
Nice!!! thk!!!
thank you this is very useful even its outdated.
the latest version is now having 3 configurations
Can't find the Github repo
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.
thanks king
Try to build this and u will see how good it is. Good luck
Nice
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?
Fantastic bro, thanks a lot you have explain so much easy way, I was misleading a lot and failed even if in chatgpt :)
THIS, my friend. Is GLORY. Thanks for the gold today.
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?
thank you
Thanks…. Nicely explained the naming convention. Note: you declared a public field as private with underscore _
For me this just keeps spawning new electron windows, even though nothing changed in the code.
What about bundling?
2.7k views and 1 comment is never seen before
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
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.
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
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?
better-sqlite3-with-prebuilds is no longer supported, idk what to do now
Very clear - worked first time! Much easier than a lot of the other misleading guides.
Es realmente confuso, creo que haré mi propio actualizador.
thanks man
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
Pretty helpful, nice video
Anyone knows about a good tutorial for installing Xdebug in MacOS, PHP 8.1
This doesn't seem to work - I still just get the "Welcome to XAMPP for Windows" /dashboard/ page...
subscribed and Liked
this really works
this really works
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 !
How can we open extrnal exe within same window where "open windows explore" buttons are located
Genuinely incredibly useful, thank you so much!
have you any advices for files bigger than 2GB? (I can't upload them on GitHub release)
Thank you for such content shared.
i don't have settings.json
Nice very clear...
I do not see anything here