Balaji S
C# without VS - Using Normal Editor - Create and Use DLL File - Part II - IV
updated
Want to learn more about the difference between Static Web Server and Dynamic Web Server - developer.mozilla.org/en-US/docs/Learn/Common_questions/What_is_a_web_server
How to verify the custom domain? - docs.netlify.com/domains-https/custom-domains/configure-external-dns
Want to learn Node JS Deployment (Free Course) - udemy.com/course/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
--------------------------------
Attributions:
----------------------
Background Music at the end of the video
Music Name: Hopeful Freedom
Artist: Asher Fulero
All the graphical elements used in this video are created by me using the application I legally purchased and the background music I used is copyright-free music (Source: YouTube Audio Library). If you have any queries regarding that, feel free to contact me.
* No copyright infringement is intended, the purpose of my video is education, kindly contact me before taking any action
I provided background information on how NumPy ndarrays are faster than the Python Lists.
I started with the basics of creating arrays and then gets into the more advanced stuff like Broadcasting, Pseudo-Random Numbers, Image Processing, etc.
Source Code: github.com/SaiBalaji202/NumPy-Session-Source-Code
For More Mathematical Functions - numpy.org/doc/stable/reference/routines.math.html
This tutorial helps you to learn following topics:
1. NumPy Intro - 00:05
2. List vs NumPy - 00:26
3. Installing NumPy - 04:30
4. Different ways to create NumPy & ndarray - 05:52
4.1 Creating Arrays with Python Lists - 06:09
4.2 Array with Default Values - 07:58
4.3 Identity Matrix - 11:30
4.4 Array with Random Numbers - 11:54
4.5 Pseudo Random Numbers and seed() - 14:13
4.6 seed() - How it will work? - 15:03
4.6.1 seed() - Practical Example - 16:32
5. Important Attributes and Methods - 19:01
5.1 Attributes - 19:01
5.2 Methods - 20:23
6. Fetch Data - 24:04
7. Fancy Indexing - 27:40
8. Conditional Selection - 30:19
9. Arithmetic Operations - 31:28
9.1 Array with Array - 31:28
9.2 **Broadcasting - 33:52 (The Problem) & 34:25 (What is Broadcasting?)
9.2.1 Broadcasting Rules - 35:01
9.2.2 Practicing Broadcasting - 35:58
9.2.2 Will the stretching happens really? - 42:28
9.3 Arithmetic Operations on Scalar - 42:56
9.4 Zero Division - Error or Warning? - 43:17
1 0. Copy (Views vs Copy) - 44:07
10.1 Shallow Copy - 44:11
10.2 Python Shallow Copy - 45:19
10.2 Deep Copy in Python - 45:39
10.3 Deep Copy in NumPy - 46:00
11. Mathematical Functions - 47:35
12. Dot Product - 48:33
13. Sorting - 49:39
14. Converting Image to a NumPy Array - 50:38
15. Size of Array - 52:19
16. Conclusion- 52:41
-----------------------------------------------------------------------------------------------------------
If you enjoyed this video, please consider subscribing :)
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
Topics Covered
1) Install Jupyter Notebook - 00:12
2) Enable Code Intellisense - 02:07
My Other Python Tutorials
1) Learn Python Excel Automation - youtu.be/8z61LhMsyDM
2) Learn Python CSV Automation - youtu.be/Sul7LtaIKnw
3) Learn to consume Google Cloud API - youtu.be/PD76SQw3H6M
4) Connect with MongoDB - youtu.be/onuOSdOWcqQ
5) Python Project for Beginners - youtu.be/-0bIqcayyW8
Attribution
Background Music:
Jal - Edge of Water - Aakash Gandhi
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
Topics Covered:
1. Download and Install Python - 00:10
2. Download and Install VS Code - 01:27
3. Configure VS Code (2 Powerful Extensions for Python Development) - 03:31
My Other Python Tutorials
1) How to install Jupyter Notebook - youtu.be/8W_93JbYunY
2) Learn Python Excel Automation - youtu.be/8z61LhMsyDM
3) Learn Python CSV Automation - youtu.be/Sul7LtaIKnw
4) Learn to consume Google Cloud API - youtu.be/PD76SQw3H6M
5) Connect with MongoDB - youtu.be/onuOSdOWcqQ
6) Python Project for Beginners - youtu.be/-0bIqcayyW8
Attribution
Background Music:
Jal - Edge of Water - Aakash Gandhi
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
You will learn all the things from Basics to Advanced like Adding New Row, Updating a Cell, Deleting a Column and even Merging Columns.
Contents Covered:
------------------------------------
1) Creating a New CSV File - 01:07
2) Creating a New CSV File (Recommended way) - 03:56
3) Adding a new Row - 04:16
4) Configuring the LineTerminator (Removing the Empty Rows) - 07:10
5) Adding Multiple Rows at the same time - 08:32
6) Configuring the Column Delimiter - 09:31
7) Reading Data from a CSV File (Using String Methods) - 10:57
8) Reading Data from a CSV File (Using reader object) - 13:42
9) Configuring the Column Delimiter (when reading) - 14:41
10) Reading for Multiple Times - 14:51
11) Adding a new Row (using DictWriter) - 16:21
12) Adding Header (using DictWriter) - 18:39
13) Delete a Cell - 20:51
14) Adding Multiple Rows (using DictWriter) -21:58
15) Read Data (using DictReader) - 22:24
16) Update - Add new Rows - 23:50
17) Update - Edit Cell Value - 24:51
17.1) Update into a new File - 26:08
17.2) Update - Technique 1 - 27:40
17.3) Update - Technique 2 - Using Temporary File - 28:39
17.3.1) Creating a Temporary File - 28:47
17.3.2) Preventing auto-delete of our Temporary File - 30:20
17.3.3) Update using Temporary File - 31:11
17.3.4) Creating a Temporary File (using with) - 32:18
18) Update an Entire Row - 32:45
19) Delete Columns and Merge Columns - 33:18
20) Delete an Entire Row - 34:30
21) Delete a CSV File - 35:33
Source Code: github.com/SaiBalaji202/csv-parser
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
You will learn all the things from Basics to Advanced like CRUD Operations, Adding Chart, Adding Images, Formatting Cells, etc.
Contents Covered:
--------------------------------------------
0. Install OpenPyXl - 01:00
1. Create WorkBook - 01:44
2. Install Extensions to speedup our Development - 02:47
3. Rename Worksheet Name - 05:44
4. Add Data - 06:43
5. Open Existing WorkSheet - 08:49
6. Insert Empty Rows at Specific Row Index - 11:00
7. Update Row - 13:57
8. Remove Row - 17:24
9. Removing Columns - 18:48
10. Insert Columns - 19:21
11. Read Data - 21:46
12. Read Data [One Another Way] - 21:46
13. Update Cell - 25:32
14. Important Properties of Cell Object- 27:33
15. Deleting a Cell - 28:12
16. Access a Range of Cells - 28:39
17.1. Fetching Entire Column - 28:43
17.2. Fetching Entire Row - 29:18
17.3. Fetching a1 to b3 - 29:52
17.4. Fetching a range of Rows - 30:19
17.5. Fetching a range of Columns - 30:34
18. Getting all the Existing Worksheets - 31:08
19. Creating a New WorkSheet - 31:26
20. Challenge - Add Data into a Sheet - 33:13
21. Solution - Add Data into a Sheet - 33:39
22. Add Chart - 33:54
23.1 Fetch Data to add it into the chart - 34:41
23.2 Challenge - Fetch Data - 35:57
23.3 Solution - Fetch Data - 36:09
23.4 Add Data into the Chart - 37:25
23.5 Add Chart to our Sheet - 37:58
23.6 Add Chart - Fixing Errors - 38:20
23.7 Chart Tooltip - 39:14
24. Add Image - 40:16
25. Resize Image - 41:32
26. Format Cells - 42:17
27. Remove WorkSheet - 45:03
28. Good Bye - 45:13
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
My Project URL: github.com/SaiBalaji202/folder-cleaner
I'm also so interested in knowing about your work. So, share your personal projects also in the comment section. I can't wait to see your awesome work. So, please share it :)
Finally, don't forget to subscribe to my channel. Awesome Future Contents are waiting for you.
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
Please do Subscribe to support me and to never miss my updates.
All the Effects and the Animations included in this video are legally used. If you have any queries or concerns, reach me out through e-mail. You can get my mail id from the About Section of this channel.
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
How to Create a Google Map API Key? - youtu.be/eXJ1qkTMLw8 (Learn within 2 minutes)
Python and MongoDB - youtu.be/onuOSdOWcqQ
Download JSON Viewer Plugin for Chrome - chrome.google.com/webstore/detail/json-viewer/gbmdgpbipfallnflgajpaliibnhdgobh
Note:
----------------
You need to enable a billing account to access any Google Services (But you won't be charged for the first one year).
Even though you set up a billing account, you won't be charged unless you upgrade to a paid account.
More Information on GCP Pricing:
-----------------------------------------------------------------------------
The GCP (Google Cloud Platform) Free Tier has two parts:
- A 12-month free trial with $300 credit to use with any GCP services.
- Always Free, which provides limited access to many common GCP resources, free of charge.
The free trial ends when you use all of your credit, or after 12 months, whichever happens first. At that time:
- You must upgrade to a paid account to continue using GCP.
- All the resources you created during the trial are stopped.
- Any data you have stored in Compute Engine is lost.
- Your account enters a 30-day grace period, during which you can recover resources and data you used during the trial period.
- You might receive a message stating that your account has been canceled, which only indicates that your account has been suspended to prevent charges.
Costs after the free trial:
--------------------------------------------------
- GCP services charge you only for the resources you use. Each service has its own pricing model, which you can find in the documentation for individual services.
You can calculate the pricing of the services using the Pricing Calculator
cloud.google.com/products/calculator
Also, Note
When you enable billing, you get $200 free usage every month for Maps, Routes, or Places. The credit does not apply to our gaming, ridesharing, or asset tracking industry solutions.
In addition to the $200 monthly free credit, all users get:
- Free Maps usage for Embed (for displaying maps only)
- Free Maps URLs
$200 USD Google Maps Platform credit per API is available each month and is automatically applied to the qualifying SKUs. This credit is prorated based on $200 divided by 30 days (e.g. $200/30 = $6.67 per day) and it resets each day for each API.
E.g. The Geocoding API costs $5.00 per 1,000 calls or $0.005 per call. Over a span of 30 days, the daily usage credit for the Geocoding API is $6.67 per day. This means that you would be able to make 1,334 calls to the Geocoding API per day for free.
GCP customers can apply their $300 new account credit towards Google Maps Platform. The $300 credit is only used when you exceed free usage limits. Credit expires in 12 months
If you still have any queries, let me know :)
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
GMap Update - youtu.be/n7Ojngjx0B8
How to create and use Google Map API Key - youtu.be/eXJ1qkTMLw8
Validate your API Key by Making Request to this link - maps.googleapis.com/maps/api/directions/json?origin=Disneyland&destination=Universal+Studios+Hollywood&key=YOUR_API_KEY
GMap Part 6(How to get the distance between two places?) - youtu.be/ZyyU6MfbXvc
GMap Complete Guide(All Videos) - youtube.com/playlist?list=PLlD7n_T-mUjVuqIhWVfaNhnpqCZmNcA9e
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
C# - Windows Service - The Complete Guide
-----------------------------------------------------------------------------------------
1) What is a Windows Service? - youtu.be/vVAPckXbjIQ
2) How to Create a Directory Monitor Windows Service? - youtu.be/HHOM-P1-NqU
3) How to Debug a Windows Service? - youtu.be/ssE814loMoo
4) How to Pass Parameter to a Windows Service? -
5) How to Create a Windows Application to Control a Windows Service -
6) How to Create an Installer for a Windows Service? -
Windows Service - The Complete Guide - youtube.com/playlist?list=PLlD7n_T-mUjVDUDgJOthChTxSQEhAZmef
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
C# - Windows Service - The Complete Guide
-----------------------------------------------------------------------------------------
1) What is a Windows Service? - youtu.be/vVAPckXbjIQ
2) How to Create a Directory Monitor Windows Service? - youtu.be/HHOM-P1-NqU
3) How to Debug a Windows Service? - youtu.be/ssE814loMoo
4) How to Pass Parameter to a Windows Service? -
5) How to Create a Windows Application to Control a Windows Service -
6) How to Create an Installer for a Windows Service? -
Windows Service - The Complete Guide - youtube.com/playlist?list=PLlD7n_T-mUjVDUDgJOthChTxSQEhAZmef
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
-----------------------------------------------------------------------------------------
1) What is a Windows Service? - youtu.be/vVAPckXbjIQ
2) How to Create a Directory Monitor Windows Service? - youtu.be/HHOM-P1-NqU
3) How to Debug a Windows Service? - youtu.be/ssE814loMoo
4) How to Pass Parameter to a Windows Service? -
5) How to Create a Windows Application to Control a Windows Service -
6) How to Create an Installer for a Windows Service? -
Windows Service - The Complete Guide - youtube.com/playlist?list=PLlD7n_T-mUjVDUDgJOthChTxSQEhAZmef
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
GMap Part 1(How to load location on your map based on latitude and longitude?) - youtu.be/TxSJJfaAzKg
GMap Part 2(How to plot a marker to our map?) - youtu.be/WpfjRaYVId8
GMap Part 3(How to plot a map using our custom marker?) - youtu.be/hM7ZQwx4YFI
GMap Part 4(How to disable the red cross?) - youtu.be/iDzRLRn0U9k
GMap Part 5(How to display route of two places?) - youtu.be/FF-PJQxpjOY
GMap Part 6(How to get a distance between two places?) - youtu.be/ZyyU6MfbXvc
GMap Part 7(How to add a polygon on your map?) - youtu.be/BLWXVqqrAa4
GMap Part 8(How to remove already plotted markers, routes, and polygons from your map?) - youtu.be/KP_48J-WPg8
GMap Part 9(How to load a location on your map by using its address?) - youtu.be/Z9PFVZDp4bM
GMap Part 10 (How to add a Mouse Click Event Handler to your Map) - youtu.be/zlDyYm_7MJg
GMap Part 11 (How to get a full address of a specific place on your Map?) - youtu.be/61uZG2wddF8
GMap Part 12 (How to Get an Address from Latitude and Longitude? - Fixing Bug) - youtu.be/f7rwQ_ge2sw
GMap Part 13 (How to Enable Offline Map Feature?) - youtu.be/WifWNXLT0nga
GMap Part 14 (Geocoding and Reverse Geocoding) - youtu.be/07ypcnNhZ-k
GMap Part 15 (How to add ToolTip to your GMap Marker? | How to get Lat and Lng of the Marker?) - youtu.be/aneOwy1sP98
GMap Part 16 (How to extend feature of the GMap) - youtu.be/3HkeJmNaxWM
GMap Part 17 (How to Search for a location inside a Polygon) - youtu.be/_J_wLIIh7jk
GMap Complete Guide(All Videos) - youtube.com/playlist?list=PLlD7n_T-mUjVuqIhWVfaNhnpqCZmNcA9e
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
GMap Part 1(How to load location on your map based on latitude and longitude?) - youtu.be/TxSJJfaAzKg
GMap Part 2(How to plot a marker to our map?) - youtu.be/WpfjRaYVId8
GMap Part 3(How to plot a map using our custom marker?) - youtu.be/hM7ZQwx4YFI
GMap Part 4(How to disable the red cross?) - youtu.be/iDzRLRn0U9k
GMap Part 5(How to display route of two places?) - youtu.be/FF-PJQxpjOY
GMap Part 6(How to get a distance between two places?) - youtu.be/ZyyU6MfbXvc
GMap Part 7(How to add a polygon on your map?) - youtu.be/BLWXVqqrAa4
GMap Part 8(How to remove already plotted markers, routes, and polygons from your map?) - youtu.be/KP_48J-WPg8
GMap Part 9(How to load a location on your map by using its address?) - youtu.be/Z9PFVZDp4bM
GMap Part 10 (How to add a Mouse Click Event Handler to your Map) - youtu.be/zlDyYm_7MJg
GMap Part 11 (How to get a full address of a specific place on your Map?) - youtu.be/61uZG2wddF8
GMap Part 12 (How to Get an Address from Latitude and Longitude? - Fixing Bug) - youtu.be/f7rwQ_ge2sw
GMap Part 13 (How to Enable Offline Map Feature?) - youtu.be/WifWNXLT0nga
GMap Part 14 (Geocoding and Reverse Geocoding) - youtu.be/07ypcnNhZ-k
GMap Part 15 (How to add ToolTip to your GMap Marker? | How to get Lat and Lng of the Marker?) - youtu.be/aneOwy1sP98
GMap Part 16 (How to extend feature of the GMap) - youtu.be/3HkeJmNaxWM
GMap Part 17 (How to Search for a location inside a Polygon) - youtu.be/_J_wLIIh7jk
GMap Complete Guide(All Videos) - youtube.com/playlist?list=PLlD7n_T-mUjVuqIhWVfaNhnpqCZmNcA9e
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
If you have any queries, please let me know through your comments.
Background Music (from 0.04 to 2.57) - Alison
Alison by Audionautix is licensed under a Creative Commons Attribution license (creativecommons.org/licenses/by/4.0)
Artist: http://audionautix.com
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
Yolo Part 2 - youtu.be/w93g6yAOuNE
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
Yolo Part 2 - youtu.be/w93g6yAOuNE
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
C# - Json Parsing - youtu.be/NX3Um9E-AY0
C# - Geocoding and Complex JSON Parsing - youtube.com/playlist?list=PLlD7n_T-mUjUCk2CkkE_o6DeQnbImIc8D
C# - Language Translator and JSON Parsing - youtu.be/wv9ONfTti0s
C# - JSON Parsing - Complete Guide - youtu.be/M13jye2TMTg
Node JS - How to Track Location Details of your IP Address? - youtu.be/M9P_zHZMY6k
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
GMap Part 1(How to load location on your map based on latitude and longitude?) - youtu.be/TxSJJfaAzKg
GMap Part 2(How to plot a marker to our map?) - youtu.be/WpfjRaYVId8
GMap Part 3(How to plot a map using our custom marker?) - youtu.be/hM7ZQwx4YFI
GMap Part 4(How to disable the red cross?) - youtu.be/iDzRLRn0U9k
GMap Part 5(How to display route of two places?) - youtu.be/FF-PJQxpjOY
GMap Part 6(How to get a distance between two places?) - youtu.be/ZyyU6MfbXvc
GMap Part 7(How to add a polygon on your map?) - youtu.be/BLWXVqqrAa4
GMap Part 8(How to remove already plotted markers, routes, and polygons from your map?) - youtu.be/KP_48J-WPg8
GMap Part 9(How to load a location on your map by using its address?) - youtu.be/Z9PFVZDp4bM
GMap Part 10 (How to add a Mouse Click Event Handler to your Map) - youtu.be/zlDyYm_7MJg
GMap Part 11 (How to get a full address of a specific place on your Map?) - youtu.be/61uZG2wddF8
GMap Part 12 (How to Get an Address from Latitude and Longitude? - Fixing Bug) - youtu.be/f7rwQ_ge2sw
GMap Part 13 (How to Enable Offline Map Feature?) - youtu.be/WifWNXLT0nga
GMap Part 14 (Geocoding and Reverse Geocoding) - youtu.be/07ypcnNhZ-k
GMap Part 15 (How to add ToolTip to your GMap Marker? | How to get Lat and Lng of the Marker?) - youtu.be/aneOwy1sP98
GMap Complete Guide(All Videos) - youtube.com/playlist?list=PLlD7n_T-mUjVuqIhWVfaNhnpqCZmNcA9e
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
How to Create Google Map Developer API Key - youtu.be/eXJ1qkTMLw8
******************************************************
GMap Complete Guide(All Videos) - youtube.com/playlist?list=PLlD7n_T-mUjVuqIhWVfaNhnpqCZmNcA9e
GMap Part 1(How to load location on your map based on latitude and longitude?) - youtu.be/TxSJJfaAzKg
GMap Part 2(How to plot a marker to our map?) - youtu.be/WpfjRaYVId8
GMap Part 3(How to plot a map using our custom marker?) - youtu.be/hM7ZQwx4YFI
GMap Part 4(How to disable the red cross?) - youtu.be/iDzRLRn0U9k
GMap Part 5(How to display route of two places?) - youtu.be/FF-PJQxpjOY
GMap Part 6(How to get a distance between two places?) - youtu.be/ZyyU6MfbXvc
GMap Part 7(How to add a polygon on your map?) - youtu.be/BLWXVqqrAa4
GMap Part 8(How to remove already plotted markers, routes, and polygons from your map?) - youtu.be/KP_48J-WPg8
GMap Part 9(How to load a location on your map by using its address?) - youtu.be/Z9PFVZDp4bM
GMap Part 10 (How to add a Mouse Click Event Handler to your Map) - youtu.be/zlDyYm_7MJg
GMap Part 11 (How to get a full address of a specific place on your Map?) - youtu.be/61uZG2wddF8
GMap Part 12 (How to Get an Address from Latitude and Longitude? - Fixing Bug) - youtu.be/f7rwQ_ge2sw
GMap Part 13 (How to Enable Offline Map Feature?) - youtu.be/WifWNXLT0nga
GMap Part 14 (Geocoding and Reverse Geocoding) - youtu.be/07ypcnNhZ-k
GMap Part 15 (How to add ToolTip to your GMap Marker? | How to get Lat and Lng of the Marker?) - youtu.be/aneOwy1sP98
GMap Complete Guide(All Videos) - youtube.com/playlist?list=PLlD7n_T-mUjVuqIhWVfaNhnpqCZmNcA9e
Advanced Geocoding (Learn to consume any API and JSON Parsing) - youtube.com/playlist?list=PLlD7n_T-mUjUCk2CkkE_o6DeQnbImIc8D
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
Geocoding - Part I - youtu.be/AEgt1t_s-p8
Learn how to get some cool facts about the place or address. By viewing this tutorial, you can learn
1) Geocoding (Forward Geocoding)
2) Reverse Geocoding
3) Learn to use REST API
4) Learn to parse JSON, etc.
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
Geocoding - Part II Video - youtu.be/uT5fKfvrCPM
Learn how to get some cool facts about the place or address. By viewing this tutorial, you can learn
1) Geocoding (Forward Geocoding)
2) Reverse Geocoding
3) Learn to use REST API
4) Learn to parse JSON, etc.
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
Make the comment session as interactive as possible. You can ask any of your queries or you can say about the technique that you followed to compress and resize an Image.
-------------------------------------------------------------------
Using this Tutorial you can master all the following concepts
- Image Compression
- Preserving Exif Data while Compression
- Load Animation
- Usage of Async and Await
- Image Encoding, etc.
-------------------------------------------------------------------
Get your API Key from this link tinypng.com/developers
--------------------------------------------------------------------
Image Resizing Options/Methods:
-------------------------------------------------------------------
1) scale - Scales the image down proportionally. You must provide either a target width or a target height, but not both. The scaled image will have exactly the provided width or height.
2) fit - Scales the image down proportionally so that it fits within the given dimensions. You must provide both a width and a height. The scaled image will not exceed either of these dimensions.
3) cover - Scales the image proportionally and crops it if necessary so that the result has exactly the given dimensions. You must provide both a width and a height. Which parts of the image are cropped away is determined automatically. An intelligent algorithm determines the most important areas of your image.
4) thumb - A more advanced implementation of cover that also detects cut out images with plain backgrounds. The image is scaled down to the width and height you provide. If an image is detected with a free-standing object it will add more background space where necessary or crop the unimportant parts.
--------------------
Source Code Link: github.com/SaiBalaji202/Image-Compression
Note: Use your API Key
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
How to Create Google Map API Key? - youtu.be/eXJ1qkTMLw8
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
Link to Create Google Map API Key: cloud.google.com/maps-platform
If you are using this API Key for GMap .NET project means, then add the API Key in the First Line of the Form Load Event Handler Function.
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
- How to install MongoDB? - youtu.be/Gum1XY52oFI
- How to install External Libraries on PyCharm - youtu.be/un0fIsOkvik
- Get my Heroku Masterclass Course for Free - udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
Part II - youtu.be/T4bHcVlEW7w (Learn to Follow and Focus)
Part III - youtu.be/tAtACsMQEJc (Learn to do Collaborative Debugging)
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
Part II - youtu.be/T4bHcVlEW7w (Learn to Follow and Focus)
Part III - youtu.be/tAtACsMQEJc (Learn to do Collaborative Debugging)
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
Part I - youtu.be/fTgO2VTW7Es (Learn to Share your Workspace, Server that is running on any port and to Share Terminal)
Part II - youtu.be/T4bHcVlEW7w (Learn to Follow and Focus)
Part III - youtu.be/tAtACsMQEJc (Learn to do Collaborative Debugging)
Download VS Code from code.visualstudio.com/download
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
In this tutorial, I will show you how to do Collaborative Programming and then how to easily share your Text Editor with your Team Members.
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
Part 1 - What is QR Code?
Part 2 - How to install QRCoder?
Part 3 - QR Code Generator
Part 4 - How to Decode QR Code?
Part 5 - Share your QR Code
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
Part 1 - What is QR Code?
Part 2 - How to install QRCoder?
Part 3 - QR Code Generator
Part 4 - How to Decode QR Code?
Part 5 - Share your QR Code
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
Part 1 - What is QR Code?
Part 2 - How to install QRCoder?
Part 3 - QR Code Generator
Part 4 - How to Decode QR Code?
Part 5 - Share your QR Code
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
Part 1 - What is QR Code?
Part 2 - How to install QRCoder?
Part 3 - QR Code Generator
Part 4 - How to Decode QR Code?
Part 5 - Share your QR Code
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
Part 1 - What is QR Code?
Part 2 - How to install QRCoder?
Part 3 - QR Code Generator
Part 4 - How to Decode QR Code?
Part 5 - Share your QR Code
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
Source Code of WebCam: github.com/SaiBalaji202/webcam
Emgu CV Documentation: http://www.emgu.com/wiki/index.php/Working_with_Images#Creating_Image
Get my Complete Advanced C# Course for Free - youtube.com/playlist?list=PLlD7n_T-mUjUcdewQHfUAKKFntSXD2zMx
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
Source Code of WebCam: github.com/SaiBalaji202/webcam
Get my Complete Advanced C# Course for Free - youtube.com/playlist?list=PLlD7n_T-mUjUcdewQHfUAKKFntSXD2zMx
-----------------------------------------------------------------------------------------------------------
Please Subscribe to the Channel and leave a Comment below!
My Udemy Profile: udemy.com/user/balaji-s-16
My Udemy Courses:
Learn all about JSON from udemy.com/mastering-json-using-csharp
** Free - Learn how to deploy your local website to Heroku with Database Connection from udemy.com/heroku-masterclass-how-to-deploy-your-node-js-app-on-heroku
GMap Part 1(How to load location on your map based on latitude and longitude?) - youtu.be/TxSJJfaAzKg
GMap Part 2(How to plot a marker to our map?) - youtu.be/WpfjRaYVId8
GMap Part 3(How to plot a map using our custom marker?) - youtu.be/hM7ZQwx4YFI
GMap Part 4(How to disable the red cross?) - youtu.be/iDzRLRn0U9k
GMap Part 5(How to display route of two places?) - youtu.be/FF-PJQxpjOY
GMap Part 6(How to get a distance between two places?) - youtu.be/ZyyU6MfbXvc
GMap Part 7(How to add a polygon on your map?) - youtu.be/BLWXVqqrAa4
GMap Part 8(How to remove already plotted markers, routes, and polygons from your map?) - youtu.be/KP_48J-WPg8
GMap Part 9(How to load a location on your map by using its address?) - youtu.be/Z9PFVZDp4bM
GMap Part 10 (How to add a Mouse Click Event Handler to your Map) - youtu.be/zlDyYm_7MJg
GMap Part 11 (How to get a full address of a specific place on your Map?) - youtu.be/61uZG2wddF8
GMap Part 12 (How to Get an Address from Latitude and Longitude? - Fixing Bug) - youtu.be/f7rwQ_ge2sw
GMap Part 13 (How to Enable Offline Map Feature?) - youtu.be/WifWNXLT0nga
GMap Part 14 (Geocoding and Reverse Geocoding) - youtu.be/07ypcnNhZ-k
GMap Part 15 (How to add ToolTip to your GMap Marker? | How to get Lat and Lng of the Marker?) - youtu.be/aneOwy1sP98
Complete Guide to Master JSON - udemy.com/mastering-json-using-csharp
How to deploy your .NET Project to your client? (How to create MSI file?) - youtube.com/playlist?list=PLlD7n_T-mUjVqGTlMKgY30yUlxiB-_HOI
Create your own Screen Recorder - youtube.com/playlist?list=PLlD7n_T-mUjUmYHS2HI3OdB6yW-XVBLYz
Create your own YouTube Downloader(C#) - youtube.com/playlist?list=PLlD7n_T-mUjW2AzRKdU_9W3K6eR6lbkRn
Create your own YouTube Downloader(VB .NET) - youtu.be/QFtkxkSE3Mw
Create your own YouTube Downloader(Python) - youtu.be/ybnvA-6XQrI
Cool Projects Using REST API's - youtube.com/playlist?list=PLlD7n_T-mUjW5o6UHc25ThWUgtZ2qOf3H
Complete Guide to Customize you Visual Studio - youtube.com/playlist?list=PLlD7n_T-mUjUX0l3OfGDl7yT7LMnHvUo4
Complete Guide to Customize your Visual Studio Code - youtube.com/playlist?list=PLlD7n_T-mUjVI2oTBT26AHtNlYfYw0U1n
Learn to Create Complex C# Application Using Notepad(without any IDE) - youtube.com/playlist?list=PLlD7n_T-mUjVh0zHpZc7qKJdcbBo1ogrv
Complete Guide to Delegates and Event Handler - youtube.com/playlist?list=PLlD7n_T-mUjUcdewQHfUAKKFntSXD2zMx
Node JS - How to consume an API? - youtu.be/M9P_zHZMY6k
and till more.
Subscribe to my channel to get a notification on all my upcoming tutorials.
GMap Part 1(How to load location on your map based on latitude and longitude?) - youtu.be/TxSJJfaAzKg
GMap Part 2(How to plot a marker to our map?) - youtu.be/WpfjRaYVId8
GMap Part 3(How to plot a map using our custom marker?) - youtu.be/hM7ZQwx4YFI
GMap Part 4(How to disable the red cross?) - youtu.be/iDzRLRn0U9k
GMap Part 5(How to display route of two places?) - youtu.be/FF-PJQxpjOY
GMap Part 6(How to get a distance between two places?) - youtu.be/ZyyU6MfbXvc
GMap Part 7(How to add a polygon on your map?) - youtu.be/BLWXVqqrAa4
GMap Part 8(How to remove already plotted markers, routes, and polygons from your map?) - youtu.be/KP_48J-WPg8
GMap Part 9(How to load a location on your map by using its address?) - youtu.be/Z9PFVZDp4bM
GMap Part 10 (How to add a Mouse Click Event Handler to your Map) - youtu.be/zlDyYm_7MJg
GMap Part 11 (How to get a full address of a specific place on your Map?) - youtu.be/61uZG2wddF8
GMap Part 12 (How to Get an Address from Latitude and Longitude? - Fixing Bug) - youtu.be/f7rwQ_ge2sw
GMap Part 13 (How to Enable Offline Map Feature?) - youtu.be/WifWNXLT0nga
Complete Guide to Master JSON - udemy.com/mastering-json-using-csharp
How to deploy your .NET Project to your client? (How to create MSI file?) - youtube.com/playlist?list=PLlD7n_T-mUjVqGTlMKgY30yUlxiB-_HOI
Create your own Screen Recorder - youtube.com/playlist?list=PLlD7n_T-mUjUmYHS2HI3OdB6yW-XVBLYz
Create your own YouTube Downloader(C#) - youtube.com/playlist?list=PLlD7n_T-mUjW2AzRKdU_9W3K6eR6lbkRn
Create your own YouTube Downloader(VB .NET) - youtu.be/QFtkxkSE3Mw
Create your own YouTube Downloader(Python) - youtu.be/ybnvA-6XQrI
Cool Projects Using REST API's - youtube.com/playlist?list=PLlD7n_T-mUjW5o6UHc25ThWUgtZ2qOf3H
Complete Guide to Customize you Visual Studio - youtube.com/playlist?list=PLlD7n_T-mUjUX0l3OfGDl7yT7LMnHvUo4
Complete Guide to Customize your Visual Studio Code - youtube.com/playlist?list=PLlD7n_T-mUjVI2oTBT26AHtNlYfYw0U1n
Learn to Create Complex C# Application Using Notepad(without any IDE) - youtube.com/playlist?list=PLlD7n_T-mUjVh0zHpZc7qKJdcbBo1ogrv
Complete Guide to Delegates and Event Handler - youtube.com/playlist?list=PLlD7n_T-mUjUcdewQHfUAKKFntSXD2zMx
Node JS - How to consume an API? - youtu.be/M9P_zHZMY6k
and till more.
Subscribe to my channel to get a notification on all my upcoming tutorials.
GMap Part 1(How to load location on your map based on latitude and longitude?) - youtu.be/TxSJJfaAzKg
GMap Part 2(How to plot a marker to our map?) - youtu.be/WpfjRaYVId8
GMap Part 3(How to plot a map using our custom marker?) - youtu.be/hM7ZQwx4YFI
GMap Part 4(How to disable the red cross?) - youtu.be/iDzRLRn0U9k
GMap Part 5(How to display route of two places?) - youtu.be/FF-PJQxpjOY
GMap Part 6(How to get a distance between two places?) - youtu.be/ZyyU6MfbXvc
GMap Part 7(How to add a polygon on your map?) - youtu.be/BLWXVqqrAa4
GMap Part 8(How to remove already plotted markers, routes, and polygons from your map?) - youtu.be/KP_48J-WPg8
GMap Part 9(How to load a location on your map by using its address?) - youtu.be/Z9PFVZDp4bM
GMap Part 10 (How to add a Mouse Click Event Handler to your Map) - youtu.be/zlDyYm_7MJg
GMap Part 11 (How to get a full address of a specific place on your Map?) - youtu.be/61uZG2wddF8
GMap Part 12 (How to Get an Address from Latitude and Longitude? - Fixing Bug) - youtu.be/f7rwQ_ge2sw
GMap Part 13 (How to Enable Offline Map Feature?) - youtu.be/WifWNXLT0nga
Complete Guide to Master JSON - udemy.com/mastering-json-using-csharp
How to deploy your .NET Project to your client? (How to create MSI file?) - youtube.com/playlist?list=PLlD7n_T-mUjVqGTlMKgY30yUlxiB-_HOI
Create your own Screen Recorder - youtube.com/playlist?list=PLlD7n_T-mUjUmYHS2HI3OdB6yW-XVBLYz
Create your own YouTube Downloader(C#) - youtube.com/playlist?list=PLlD7n_T-mUjW2AzRKdU_9W3K6eR6lbkRn
Create your own YouTube Downloader(VB .NET) - youtu.be/QFtkxkSE3Mw
Create your own YouTube Downloader(Python) - youtu.be/ybnvA-6XQrI
Cool Projects Using REST API's - youtube.com/playlist?list=PLlD7n_T-mUjW5o6UHc25ThWUgtZ2qOf3H
Complete Guide to Customize you Visual Studio - youtube.com/playlist?list=PLlD7n_T-mUjUX0l3OfGDl7yT7LMnHvUo4
Complete Guide to Customize your Visual Studio Code - youtube.com/playlist?list=PLlD7n_T-mUjVI2oTBT26AHtNlYfYw0U1n
Learn to Create Complex C# Application Using Notepad(without any IDE) - youtube.com/playlist?list=PLlD7n_T-mUjVh0zHpZc7qKJdcbBo1ogrv
Complete Guide to Delegates and Event Handler - youtube.com/playlist?list=PLlD7n_T-mUjUcdewQHfUAKKFntSXD2zMx
Node JS - How to consume an API? - youtu.be/M9P_zHZMY6k
and till more.
Subscribe to my channel to get a notification on all my upcoming tutorials.
GMap Part 1(How to load location on your map based on latitude and longitude?) - youtu.be/TxSJJfaAzKg
GMap Part 2(How to plot a marker to our map?) - youtu.be/WpfjRaYVId8
GMap Part 3(How to plot a map using our custom marker?) - youtu.be/hM7ZQwx4YFI
GMap Part 4(How to disable the red cross?) - youtu.be/iDzRLRn0U9k
GMap Part 5(How to display route of two places?) - youtu.be/FF-PJQxpjOY
GMap Part 6(How to get a distance between two places?) - youtu.be/ZyyU6MfbXvc
GMap Part 7(How to add a polygon on your map?) - youtu.be/BLWXVqqrAa4
GMap Part 8(How to remove already plotted markers, routes, and polygons from your map?) - youtu.be/KP_48J-WPg8
GMap Part 9(How to load a location on your map by using its address?) - youtu.be/Z9PFVZDp4bM
GMap Part 10 (How to add a Mouse Click Event Handler to your Map) - youtu.be/zlDyYm_7MJg
GMap Part 11 (How to get a full address of a specific place on your Map?) - youtu.be/61uZG2wddF8
GMap Part 12 (How to Get an Address from Latitude and Longitude? - Fixing Bug) - youtu.be/f7rwQ_ge2sw
GMap Part 13 (How to Enable Offline Map Feature?) - youtu.be/WifWNXLT0nga
Complete Guide to Master JSON - udemy.com/mastering-json-using-csharp
How to deploy your .NET Project to your client? (How to create MSI file?) - youtube.com/playlist?list=PLlD7n_T-mUjVqGTlMKgY30yUlxiB-_HOI
Create your own Screen Recorder - youtube.com/playlist?list=PLlD7n_T-mUjUmYHS2HI3OdB6yW-XVBLYz
Create your own YouTube Downloader(C#) - youtube.com/playlist?list=PLlD7n_T-mUjW2AzRKdU_9W3K6eR6lbkRn
Create your own YouTube Downloader(VB .NET) - youtu.be/QFtkxkSE3Mw
Create your own YouTube Downloader(Python) - youtu.be/ybnvA-6XQrI
Cool Projects Using REST API's - youtube.com/playlist?list=PLlD7n_T-mUjW5o6UHc25ThWUgtZ2qOf3H
Complete Guide to Customize you Visual Studio - youtube.com/playlist?list=PLlD7n_T-mUjUX0l3OfGDl7yT7LMnHvUo4
Complete Guide to Customize your Visual Studio Code - youtube.com/playlist?list=PLlD7n_T-mUjVI2oTBT26AHtNlYfYw0U1n
Learn to Create Complex C# Application Using Notepad(without any IDE) - youtube.com/playlist?list=PLlD7n_T-mUjVh0zHpZc7qKJdcbBo1ogrv
Complete Guide to Delegates and Event Handler - youtube.com/playlist?list=PLlD7n_T-mUjUcdewQHfUAKKFntSXD2zMx
Node JS - How to consume an API? - youtu.be/M9P_zHZMY6k
and till more.
Subscribe to my channel to get a notification on all my upcoming tutorials.
1) VS 2017
%USERPROFILE%\AppData\Local\Microsoft\VisualStudio\15.0\ComponentModelCache
2) VS 2015
%USERPROFILE%\AppData\Local\Microsoft\VisualStudio\14.0\
3) VS 2013
%USERPROFILE%\AppData\Local\Microsoft\VisualStudio\12.0\
4) VS 2012
%USERPROFILE%\AppData\Local\Microsoft\VisualStudio\11.0\
5) VS 2010
%USERPROFILE%\AppData\Local\Microsoft\VisualStudio\10.0\
You can delete ComponentModelCache directory from one of the above paths.
Way 2
------------------
You can download and install Clear MEF Component Cache
plugin from marketplace.visualstudio.com
GMap Part 1(How to load location on your map based on latitude and longitude?) - youtu.be/TxSJJfaAzKg
GMap Part 2(How to plot a marker to our map?) - youtu.be/WpfjRaYVId8
GMap Part 3(How to plot a map using our custom marker?) - youtu.be/hM7ZQwx4YFI
GMap Part 4(How to disable the red cross?) - youtu.be/iDzRLRn0U9k
GMap Part 5(How to display route of two places?) - youtu.be/FF-PJQxpjOY
GMap Part 6(How to get distance between two places?) - youtu.be/ZyyU6MfbXvc
GMap Part 7(How to add a polygon on your map?) - youtu.be/BLWXVqqrAa4
GMap Part 8(How to remove already ploted markers, routes and polygons from your map?) - youtu.be/KP_48J-WPg8
GMap Part 9(How to load a location on your map by using its address?) - youtu.be/Z9PFVZDp4bM
Complete Guide to Master JSON - udemy.com/mastering-json-using-csharp
Create your own Screen Recorder - youtube.com/playlist?list=PLlD7n_T-mUjUmYHS2HI3OdB6yW-XVBLYz
Create your own YouTube Downloader(C#) - youtube.com/playlist?list=PLlD7n_T-mUjW2AzRKdU_9W3K6eR6lbkRn
Create your own YouTube Downloader(VB .NET) - youtu.be/QFtkxkSE3Mw
Create your own YouTube Downloader(Python) - youtu.be/ybnvA-6XQrI
Cool Projects Using REST API's - youtube.com/playlist?list=PLlD7n_T-mUjW5o6UHc25ThWUgtZ2qOf3H
Complete Guide to Customize you Visual Studio - youtube.com/playlist?list=PLlD7n_T-mUjUX0l3OfGDl7yT7LMnHvUo4
Complete Guide to Customize your Visual Studio Code - youtube.com/playlist?list=PLlD7n_T-mUjVI2oTBT26AHtNlYfYw0U1n
Learn to Create Complex C# Application Using Notepad(without any IDE) - youtube.com/playlist?list=PLlD7n_T-mUjVh0zHpZc7qKJdcbBo1ogrv
Complete Guide to Delegates and Event Handler - youtube.com/playlist?list=PLlD7n_T-mUjUcdewQHfUAKKFntSXD2zMx
Node JS - How to consume an API? - youtu.be/M9P_zHZMY6k
and till more.
Subscribe to my channel to get a notification on all my upcoming tutorials.
GMap Part 1(How to load location on your map based on latitude and longitude?) - youtu.be/TxSJJfaAzKg
GMap Part 2(How to plot a marker to our map?) - youtu.be/WpfjRaYVId8
GMap Part 3(How to plot a map using our custom marker?) - youtu.be/hM7ZQwx4YFI
GMap Part 4(How to disable the red cross?) - youtu.be/iDzRLRn0U9k
GMap Part 5(How to display route of two places?) - youtu.be/FF-PJQxpjOY
GMap Part 6(How to get distance between two places?) - youtu.be/ZyyU6MfbXvc
GMap Part 7(How to add a polygon on your map?) - youtu.be/BLWXVqqrAa4
GMap Part 8(How to remove already ploted markers, routes and polygons from your map?) - youtu.be/KP_48J-WPg8
GMap Part 9(How to load a location on your map by using its address?) - youtu.be/Z9PFVZDp4bM
Complete Guide to Master JSON - udemy.com/mastering-json-using-csharp
Create your own Screen Recorder - youtube.com/playlist?list=PLlD7n_T-mUjUmYHS2HI3OdB6yW-XVBLYz
Create your own YouTube Downloader(C#) - youtube.com/playlist?list=PLlD7n_T-mUjW2AzRKdU_9W3K6eR6lbkRn
Create your own YouTube Downloader(VB .NET) - youtu.be/QFtkxkSE3Mw
Create your own YouTube Downloader(Python) - youtu.be/ybnvA-6XQrI
Cool Projects Using REST API's - youtube.com/playlist?list=PLlD7n_T-mUjW5o6UHc25ThWUgtZ2qOf3H
Complete Guide to Customize you Visual Studio - youtube.com/playlist?list=PLlD7n_T-mUjUX0l3OfGDl7yT7LMnHvUo4
Complete Guide to Customize your Visual Studio Code - youtube.com/playlist?list=PLlD7n_T-mUjVI2oTBT26AHtNlYfYw0U1n
Learn to Create Complex C# Application Using Notepad(without any IDE) - youtube.com/playlist?list=PLlD7n_T-mUjVh0zHpZc7qKJdcbBo1ogrv
Complete Guide to Delegates and Event Handler - youtube.com/playlist?list=PLlD7n_T-mUjUcdewQHfUAKKFntSXD2zMx
Node JS - How to consume an API? - youtu.be/M9P_zHZMY6k
and till more.
Subscribe to my channel to get a notification on all my upcoming tutorials.
GMap Part 1(How to load location on your map based on latitude and longitude?) - youtu.be/TxSJJfaAzKg
GMap Part 2(How to plot a marker to our map?) - youtu.be/WpfjRaYVId8
GMap Part 3(How to plot a map using our custom marker?) - youtu.be/hM7ZQwx4YFI
GMap Part 4(How to disable the red cross?) - youtu.be/iDzRLRn0U9k
GMap Part 5(How to display route of two places?) - youtu.be/FF-PJQxpjOY
GMap Part 6(How to get distance between two places?) - youtu.be/ZyyU6MfbXvc
GMap Part 7(How to add a polygon on your map?) - youtu.be/BLWXVqqrAa4
GMap Part 8(How to remove already ploted markers, routes and polygons from your map?) - youtu.be/KP_48J-WPg8
GMap Part 9(How to load a location on your map by using its address?) - youtu.be/Z9PFVZDp4bM
Complete Guide to Master JSON - udemy.com/mastering-json-using-csharp
Create your own Screen Recorder - youtube.com/playlist?list=PLlD7n_T-mUjUmYHS2HI3OdB6yW-XVBLYz
Create your own YouTube Downloader(C#) - youtube.com/playlist?list=PLlD7n_T-mUjW2AzRKdU_9W3K6eR6lbkRn
Create your own YouTube Downloader(VB .NET) - youtu.be/QFtkxkSE3Mw
Create your own YouTube Downloader(Python) - youtu.be/ybnvA-6XQrI
Cool Projects Using REST API's - youtube.com/playlist?list=PLlD7n_T-mUjW5o6UHc25ThWUgtZ2qOf3H
Complete Guide to Customize you Visual Studio - youtube.com/playlist?list=PLlD7n_T-mUjUX0l3OfGDl7yT7LMnHvUo4
Complete Guide to Customize your Visual Studio Code - youtube.com/playlist?list=PLlD7n_T-mUjVI2oTBT26AHtNlYfYw0U1n
Learn to Create Complex C# Application Using Notepad(without any IDE) - youtube.com/playlist?list=PLlD7n_T-mUjVh0zHpZc7qKJdcbBo1ogrv
Complete Guide to Delegates and Event Handler - youtube.com/playlist?list=PLlD7n_T-mUjUcdewQHfUAKKFntSXD2zMx
Node JS - How to consume an API? - youtu.be/M9P_zHZMY6k
and till more.
Subscribe to my channel to get a notification on all my upcoming tutorials.


