Uploaded July 2025 | Updated September 2026, 2 weeks ago
Liked my video? πBuy me a cup of coffee! π΅
youtube.com/channel/UCMz232hZ7fD75uGWhuLNjtA/join
πΊ RELATED VIDEOS
Learn ASP.NET Core MVC with tanzTalks.tech β Beginner to Advanced: youtube.com/playlist?list=PLnisUReSm0-nZwxm4pgg0ehgpX7OTUKD3
This Git & GitHub series is for total beginners. Learn how to install Git, push code to GitHub, work with branches, resolve merge conflicts, and collaborate with others using pull requests β all in simple language with real examples.
π½ CONNECT WITH ME
- Facebook: fb.me/tanzTalks.tech
facebook.com/groups/769372597093758
- Instagram: instagram.com/tanztalks.tech
instagram.com/tanzeelosama
- LinkedIn: in.linkedin.com/in/tanzeelosama
- GitHub: github.com/tanzeelosama
π SUBSCRIBE ON YOUTUBE
youtube.com/@tanzTalks.tech2
youtube.com/@tanzTalkstech
π SUPPORT THE CHANNEL
- Hit the THANKS button in any video!
- Buy me a cup of coffee! youtube.com/@tanzTalkstech/join
π Want to learn Git & GitHub from scratch? This step-by-step guide is perfect for absolute beginners! Learn how to install Git, push code to GitHub using CMD, clone it on another computer, and understand Git basics like commit, push, and pull.
π§ What you'll learn:
β’ What is Git & GitHub
β’ Installing Git on Windows
β’ git init, git add, git commit, git push
β’ Creating a GitHub repository
β’ Pushing code from CMD
β’ Cloning & pulling code
β’ Git cheat sheet and CRLF fix
π Time Stamps:
00:00 β Introduction
00:35 β What is Git & GitHub
01:16 β Install Git on Windows
03:55 β Create Git Project
05:23 β Add Files and Commit
06:13 β LF/CRLF Warnings
08:19 β Create GitHub Repo
10:23 β Link Local Folder and Push Code via CMD
12:13 β Clone on another PC
12:50 β Push After Changes
14:26 β Pull Code
16:17 β Git Cheat Sheet
β Download Git: git-scm.com
β GitHub: github.com
π Full Git Commands + Notes in description!
#Git #GitHub #GitTutorial #VersionControl #GitBeginners #Coding #CMDGit #GitHubForBeginners
--------
π Repository (repo)
- A project or folder being tracked by Git
π git init
- Initializes Git in a folder (starts version control)
π git add .
- Stages all changed files to be committed
π git commit -m "Your message"
- Saves a snapshot of the staged changes
π git status
- Shows which files are staged, modified, or untracked
π git remote add origin "repo_url"
- Connects your local folder to a GitHub repository
π git branch -M main
- Renames your current branch to "main"
π git push -u origin main
- Uploads your committed code to GitHub for the first time
π git clone "repo_url"
- Downloads a GitHub repo to your PC
π git pull
- Fetches latest changes from GitHub into your project
π git log
- Shows a history of commits
π git config --global user.name "Your Name"
π git config --global user.email "you@example.com"
- Set your identity for commits
π git diff
- Shows what changes you made before committing
---------
More on Android App Development:
Create Login and Register Android App with Firebase Authentication: 1οΈβ£youtube.com/playlist?list=PLnisUReSm0-nUXkQSZC1lAUT0zJ8JIsrF | 2οΈβ£youtube.com/playlist?list=PLnisUReSm0-nFzNqZh8twEgMxpRn05XgR
Create State-District Dependent (Nested) Android Spinners | DropDown List: youtube.com/playlist?list=PLnisUReSm0-lBZYsxE9XB8cn0Ue8AyRzM
Android Basics: youtube.com/playlist?list=PLnisUReSm0-mIQhfDMtri0X13RuLP5dqj
----------
Install Vim (Vi Improved) Text Editor on Ubuntu: youtu.be/zr17y9YHopQ
Install Ubuntu on Windows 11 (WSL) | Windows Subsystem for Linux with GUI Support: youtu.be/NXJjutYp4x8
More Tutorials on Ubuntu: youtube.com/playlist?list=PLnisUReSm0-nc0N5IlO0QoJd78oBhlHoX
----------
More Tutorials on macOS: youtube.com/playlist?list=PLnisUReSm0-kC89Ml7Wm5kPdXvgbqndUp
Download and Install NodeJS, HomeBrew (Package Manager) and N (Version Manager) on macOS: youtu.be/O6MKC5TgQao
Install Java JDK and OpenJDK on macOS 13 Ventura: youtu.be/F5HTPakOdi4
----------
VirtualBox playlist: youtube.com/playlist?list=PLnisUReSm0-lwVz0CcHg9_NlMY-Vtqd8Y
Install Ubuntu 22.04 LTS in VirtualBox running on Windows: youtu.be/C5mJ2SwmN0w
Install macOS Monterey in VirtualBox running on Windows: youtu.be/WGrBHjDFVIw
Install VirtualBox Guest Additions on Ubuntu 22.04 Guest/Virtual Machine: youtu.be/mGUhjd3D2ZY
Install Java (JDK) On Ubuntu 22.04 LTS: youtu.be/SMfO5oXNp2g
Install Node.js on Ubuntu 22.04 LTS | Install npm: youtu.be/0D1MJf-oscU
Install Windows 11 on VirtualBox: youtu.be/OZbVZdj2c0Q
Make Windows 11 Full Screen in VirtualBox: youtu.be/ahOaKWR8RdA
Install Ubuntu 22.10 on VirtualBox in Windows: youtu.be/yIWP2js-JoQ
Liked my video? πBuy me a cup of coffee! π΅
youtube.com/channel/UCMz232hZ7fD75uGWhuLNjtA/join
πΊ RELATED VIDEOS
Learn ASP.NET Core MVC with tanzTalks.tech β Beginner to Advanced: youtube.com/playlist?list=PLnisUReSm0-nZwxm4pgg0ehgpX7OTUKD3
This Git & GitHub series is for total beginners. Learn how to install Git, push code to GitHub, work with branches, resolve merge conflicts, and collaborate with others using pull requests β all in simple language with real examples.
π½ CONNECT WITH ME
- Facebook: fb.me/tanzTalks.tech
facebook.com/groups/769372597093758
- Instagram: instagram.com/tanztalks.tech
instagram.com/tanzeelosama
- LinkedIn: in.linkedin.com/in/tanzeelosama
- GitHub: github.com/tanzeelosama
π SUBSCRIBE ON YOUTUBE
youtube.com/@tanzTalks.tech2
youtube.com/@tanzTalkstech
π SUPPORT THE CHANNEL
- Hit the THANKS button in any video!
- Buy me a cup of coffee! youtube.com/@tanzTalkstech/join
π Want to learn Git & GitHub from scratch? This step-by-step guide is perfect for absolute beginners! Learn how to install Git, push code to GitHub using CMD, clone it on another computer, and understand Git basics like commit, push, and pull.
π§ What you'll learn:
β’ What is Git & GitHub
β’ Installing Git on Windows
β’ git init, git add, git commit, git push
β’ Creating a GitHub repository
β’ Pushing code from CMD
β’ Cloning & pulling code
β’ Git cheat sheet and CRLF fix
π Time Stamps:
00:00 β Introduction
00:35 β What is Git & GitHub
01:16 β Install Git on Windows
03:55 β Create Git Project
05:23 β Add Files and Commit
06:13 β LF/CRLF Warnings
08:19 β Create GitHub Repo
10:23 β Link Local Folder and Push Code via CMD
12:13 β Clone on another PC
12:50 β Push After Changes
14:26 β Pull Code
16:17 β Git Cheat Sheet
β Download Git: git-scm.com
β GitHub: github.com
π Full Git Commands + Notes in description!
#Git #GitHub #GitTutorial #VersionControl #GitBeginners #Coding #CMDGit #GitHubForBeginners
--------
π Repository (repo)
- A project or folder being tracked by Git
π git init
- Initializes Git in a folder (starts version control)
π git add .
- Stages all changed files to be committed
π git commit -m "Your message"
- Saves a snapshot of the staged changes
π git status
- Shows which files are staged, modified, or untracked
π git remote add origin "repo_url"
- Connects your local folder to a GitHub repository
π git branch -M main
- Renames your current branch to "main"
π git push -u origin main
- Uploads your committed code to GitHub for the first time
π git clone "repo_url"
- Downloads a GitHub repo to your PC
π git pull
- Fetches latest changes from GitHub into your project
π git log
- Shows a history of commits
π git config --global user.name "Your Name"
π git config --global user.email "you@example.com"
- Set your identity for commits
π git diff
- Shows what changes you made before committing
---------
More on Android App Development:
Create Login and Register Android App with Firebase Authentication: 1οΈβ£youtube.com/playlist?list=PLnisUReSm0-nUXkQSZC1lAUT0zJ8JIsrF | 2οΈβ£youtube.com/playlist?list=PLnisUReSm0-nFzNqZh8twEgMxpRn05XgR
Create State-District Dependent (Nested) Android Spinners | DropDown List: youtube.com/playlist?list=PLnisUReSm0-lBZYsxE9XB8cn0Ue8AyRzM
Android Basics: youtube.com/playlist?list=PLnisUReSm0-mIQhfDMtri0X13RuLP5dqj
----------
Install Vim (Vi Improved) Text Editor on Ubuntu: youtu.be/zr17y9YHopQ
Install Ubuntu on Windows 11 (WSL) | Windows Subsystem for Linux with GUI Support: youtu.be/NXJjutYp4x8
More Tutorials on Ubuntu: youtube.com/playlist?list=PLnisUReSm0-nc0N5IlO0QoJd78oBhlHoX
----------
More Tutorials on macOS: youtube.com/playlist?list=PLnisUReSm0-kC89Ml7Wm5kPdXvgbqndUp
Download and Install NodeJS, HomeBrew (Package Manager) and N (Version Manager) on macOS: youtu.be/O6MKC5TgQao
Install Java JDK and OpenJDK on macOS 13 Ventura: youtu.be/F5HTPakOdi4
----------
VirtualBox playlist: youtube.com/playlist?list=PLnisUReSm0-lwVz0CcHg9_NlMY-Vtqd8Y
Install Ubuntu 22.04 LTS in VirtualBox running on Windows: youtu.be/C5mJ2SwmN0w
Install macOS Monterey in VirtualBox running on Windows: youtu.be/WGrBHjDFVIw
Install VirtualBox Guest Additions on Ubuntu 22.04 Guest/Virtual Machine: youtu.be/mGUhjd3D2ZY
Install Java (JDK) On Ubuntu 22.04 LTS: youtu.be/SMfO5oXNp2g
Install Node.js on Ubuntu 22.04 LTS | Install npm: youtu.be/0D1MJf-oscU
Install Windows 11 on VirtualBox: youtu.be/OZbVZdj2c0Q
Make Windows 11 Full Screen in VirtualBox: youtu.be/ahOaKWR8RdA
Install Ubuntu 22.10 on VirtualBox in Windows: youtu.be/yIWP2js-JoQ
![Simple Contact Book in ASP.NET Core MVC | Full Beginner Project in 10 Minutes!
π Build your first ASP.NET Core MVC Web App β a Simple Contact Book with no database! Learn the MVC pattern, routing, Razor views, and model binding, all in just a few minutes.
Liked my video? πBuy me a cup of coffee! π΅
https://www.youtube.com/channel/UCMz232hZ7fD75uGWhuLNjtA/join
Install Visual Studio + Create First ASP.NET Core MVC App | Hello/Greet Page: https://youtu.be/lSu4nIccsFg
πΊ RELATED VIDEOS
Learn ASP.NET Core MVC with tanzTalks.tech β Beginner to Advanced: https://www.youtube.com/playlist?list=PLnisUReSm0-nZwxm4pgg0ehgpX7OTUKD3
π½ CONNECT WITH ME
- Facebook: https://fb.me/tanzTalks.tech
https://www.facebook.com/groups/769372597093758
- Instagram: https://www.instagram.com/tanztalks.tech
https://www.instagram.com/tanzeelosama
- LinkedIn: https://in.linkedin.com/in/tanzeelosama
- GitHub: https://github.com/tanzeelosama
π SUBSCRIBE ON YOUTUBE
https://www.youtube.com/@tanzTalks.tech2
https://www.youtube.com/@tanzTalkstech
π SUPPORT THE CHANNEL
- Hit the THANKS button in any video!
- Buy me a cup of coffee! https://www.youtube.com/@tanzTalkstech/join
This mini web app demonstrates the MVC architecture in ASP.NET Core without using a database. It allows users to add and view a list of contacts (Name + Phone). The data is stored temporarily using an in-memory list, keeping things clean and fast β perfect for beginners.
GitHub: https://github.com/tanzeelosama/SimpleContactBook
β
Folder & MVC Structure
SimpleContactBook/
βββ Controllers/
β βββ ContactController.cs β Handles requests, renders views
βββ Models/
β βββ Contact.cs β Data model (Name, Phone)
βββ Views/
β βββ Contact/
β βββ Index.cshtml β Lists all contacts
β βββ Create.cshtml β Form to add a contact
βββ wwwroot/ β Static files (optional CSS/JS)
βββ Program.cs β Configures app and routing
MVC Breakdown:
Model: Contact.cs β defines the structure of a contact.
View: Razor Views β HTML templates with dynamic C# rendering.
Controller: ContactController.cs β business logic and routing.
π ER Diagram (Entity Relationship)
Since this app doesnt use a database, its minimal:
[ Contact ]
| Name |
| Phone |
π Data Flow Diagram (DFD β Level 1)
User
β
[Create Contact Form]
β (POST)
[ContactController] adds β‘ [In-Memory List]
β β
[View Contact List] β (GET)
π Flowchart
[Start]
β
[User opens /Contact]
β
[Display Contact List]
β
[Click Add Contact]
β
[Display Form]
β
[Submit Form β POST]
β
[Controller adds contact to list]
β
[Redirect to /Contact]
β
[Updated list displayed]
β
[End]
π― What youβll learn:
o MVC Folder Structure
o Razor Views
o HTTP GET/POST
o In-memory Data Storage
o Routing and Visual Studio Walkthrough
π Subscribe for more .NET tutorials and project ideas!
#aspnetcore #dotnet #mvc #visualstudio #webdevelopment #beginnerproject
πΌοΈ Thumbnail Caption
ASP.NET MVC in 5 Minutes!
Build a Simple Contact Book - No Database
π Features of the Project
βοΈ Uses ASP.NET Core MVC
βοΈ In-memory storage (no database)
βοΈ Fully functional Add & View Contact feature
βοΈ Clean Razor Pages
βοΈ Demonstrates GET/POST requests
βοΈ Real-world MVC folder structure
βοΈ Beginner-friendly and fast to build
βοΈ Runs directly in Visual Studio
βοΈ Easily extendable with validation and database later
More Tutorials on Ubuntu: https://www.youtube.com/playlist?list=PLnisUReSm0-nc0N5IlO0QoJd78oBhlHoX
More Tutorials for VMWare Player: https://www.youtube.com/playlist?list=PLnisUReSm0-ncHac3_ZAsE5g7nWy88Qta
Install Windows 11 on VMware Player: https://youtu.be/3HBSuoVOpt0
Install macOS 13 Ventura on VMware Player: https://youtu.be/CeSqdrf1WOg
Install Ubuntu 22.04 LTS on VMware Player: https://youtu.be/LvYaZMV-ZlY
VirtualBox playlist: https://www.youtube.com/playlist?list=PLnisUReSm0-lwVz0CcHg9_NlMY-Vtqd8Y
Install Ubuntu 22.04 LTS in VirtualBox running on Windows 11: https://youtu.be/C5mJ2SwmN0w
Install macOS Monterey in VirtualBox running on Windows 11: https://youtu.be/WGrBHjDFVIw
Install Java (JDK) On Ubuntu 22.04 LTS: https://youtu.be/SMfO5oXNp2g
Install Node.js on Ubuntu 22.04 LTS | Install npm: https://youtu.be/0D1MJf-oscU
Install Windows 11 on VirtualBox: https://youtu.be/OZbVZdj2c0Q
Install Ubuntu 22.10 on VirtualBox in Windows 11: https://youtu.be/yIWP2js-JoQ
More on Android App Development:
Create Login and Register Android App with Firebase Authentication: 1οΈβ£https://www.youtube.com/playlist?list=PLnisUReSm0-nUXkQSZC1lAUT0zJ8JIsrF | 2οΈβ£https://www.youtube.com/playlist?list=PLnisUReSm0-nFzNqZh8twEgMxpRn05XgR
Create State-District Dependent (Nested) Android Spinners | DropDown List: https://www.youtube.com/playlist?list=PLnisUReSm0-lBZYsxE9XB8cn0Ue8AyRzM
Android Basics: https://www.youtube.com/playlist?list=PLnisUReSm0-mIQhfDMtri0X13RuLP5dqj Simple Contact Book in ASP.NET Core MVC | Full Beginner Project in 10 Minutes!](https://i.ytimg.com/vi/u513sZgN8s4/mqdefault.jpg)
![Fix Microsoft Store Not Working On Windows 11
Liked my video? πBuy me a cup of coffee! π΅
https://www.youtube.com/channel/UCMz232hZ7fD75uGWhuLNjtA/join
If youre having trouble launching Microsoft Store, here are some things to try:
1. Reset the Microsoft Store cache: Press the Windows Logo Key + R to open the Run dialog box, type wsreset.exe, and then select OK.
Note: A blank Command Prompt window will open, and after about ten seconds the window will close and Microsoft Store will open automatically.
2. Make sure Windows has the latest update.
Check for Windows Updates
Note: If your Windows 10 version is lower than 15063, youβll need to update Windows or go to www.microsoft.com/store. To check your Windows version, look here for OS Build.
3. Check your time and location settings.
Fix Microsoft Store Not Working Error on Windows 11 | 0x80073CFB Microsoft Store Error [Solved]: https://youtu.be/t00GInwWtdo
Errors:
Microsoft Store download error 0x80070005
Forza Horizon 4 0x80070005/Sea of Thieves 0x80070005/Forza Motorsport 7 is currently not available in your account make sure you are signed in to the Microsoft Store and try again
Xbox app error code 0x80070005
0x80070005 GamePass
App installation failed with error message: error 0x80070005:
This drive has apps from another device 0x80070005
Microsoft Store 0x80070005 error after reset/update
VirtualBox playlist:
https://www.youtube.com/playlist?list=PLnisUReSm0-lwVz0CcHg9_NlMY-Vtqd8Y
Install Windows XP on Oracle VirtualBox: https://youtu.be/4_lUDNetCuc
Set Widescreen 16:9 Resolutions in Windows XP on VirtualBox: https://youtu.be/DbrnbiOhHsk
Enable Shared Clipboard and Drag and Drop in Windows XP on VirtualBox: https://youtu.be/B8jm5DDwPAo
Solve The β16-bit MS-DOS Subsystemβ Installation Error in Windows XP running on Oracle VM VirtualBox: https://youtu.be/AhziDpcLdUg
Install Ubuntu 22.04 LTS in VirtualBox running on Windows: https://youtu.be/C5mJ2SwmN0w
Install macOS Monterey in VirtualBox running on Windows: https://youtu.be/WGrBHjDFVIw
Make Ubuntu Full Screen in VirtualBox on Windows: https://youtu.be/w4E1iqsn_wA
Install VirtualBox Guest Additions on Ubuntu 22.04 Guest/Virtual Machine: https://youtu.be/mGUhjd3D2ZY
Install Oracle Java (JDK) On Ubuntu 22.04 LTS, Debian Linux: https://youtu.be/SMfO5oXNp2g
Install Node.js on Ubuntu 22.04 LTS | Install NodeJS and npm: https://youtu.be/0D1MJf-oscU
Install and Use Visual Studio Code on Ubuntu 22.04 LTS Linux (VS Code): https://youtu.be/P-yk-AZpcQI
Install Microsoft Windows 11 on VirtualBox: https://youtu.be/OZbVZdj2c0Q
Make Windows 11 Full Screen in VirtualBox: https://youtu.be/ahOaKWR8RdA
Install Oracle VM VirtualBox 7 on Windows 11: https://youtu.be/q0zi-C_NJes
Install Ubuntu 22.10 on VirtualBox in Windows 11: https://youtu.be/yIWP2js-JoQ
Make Ubuntu Full Screen in VirtualBox: https://youtu.be/Vd3qvG88sS8
Install Linux Mint 21 Vanessa Cinnamon on VirtualBox | Compute Hash using SHA256 and Verify ISO: https://youtu.be/lYnZZXVJ6Xc
Make Linux Mint Full Screen in VirtualBox: https://youtu.be/riqEP5WGRs8
Install Ubuntu 23.04 on VirtualBox in Windows: https://youtu.be/SmS0QJkH-mM
More Tutorials for VMWare Player:
https://www.youtube.com/playlist?list=PLnisUReSm0-ncHac3_ZAsE5g7nWy88Qta
Install Microsoft Windows 11 on VMware Player: https://youtu.be/3HBSuoVOpt0
Make Windows 11 Full Screen in VMware Player: https://youtu.be/1XaPXGYMwTo
Install macOS 12 Monterey on VMware Player: https://youtu.be/WLMTAqZ_3xU
Install VMware Tools and Make macOS 12 Monterey Full Screen: https://youtu.be/pF4mwgiYIaY
Fix No Internet Connection in macOS 12 Monterey on VMware Player: https://youtu.be/S7yRdl-kAAg
Install macOS 13 Ventura on VMware Player: https://youtu.be/CeSqdrf1WOg
Install VMware Tools and Make macOS 13 Ventura Full Screen: https://youtu.be/WQdGIRFL8qw
Fix No Internet Connection in macOS 13 Ventura in VMware Player: https://youtu.be/i-DDDDiAmPw
Install Ubuntu 22.04 LTS on VMware Player: https://youtu.be/LvYaZMV-ZlY
Create Manual Snapshot in VMware Player: https://youtu.be/QOTJbtyu0XQ
Install Ubuntu 23.04 on VMware Player On Windows 11: https://youtu.be/St4UOkJVlMU
VMware Workstation/Pro very Slow on Windows 11 22H2 - VMware Technology Network VMTN
https://youtu.be/2cG7Cew_41A
Windows Tutorials: https://www.youtube.com/playlist?list=PLnisUReSm0-n126_vs1cXCCGhyzLTIVvj
Install Java JDK 19 on Windows 11: https://youtu.be/r9CX3iW9x5Q
How to edit Hosts file in Windows 11 | Block a Domain or a Sub-Domain: https://youtu.be/Ifioaj7YsqA
More Tutorials on macOS: https://www.youtube.com/playlist?list=PLnisUReSm0-kC89Ml7Wm5kPdXvgbqndUp
Download and Install NodeJS, HomeBrew (Package Manager) and N (Version Manager) on macOS: https://youtu.be/O6MKC5TgQao
Install Oracle Java JDK and OpenJDK on macOS 13 Ventura: https://youtu.be/F5HTPakOdi4 Fix Microsoft Store Not Working On Windows 11](https://i.ytimg.com/vi/wQbrnEsH-So/mqdefault.jpg)

![How to edit Hosts file in Ubuntu | How to Block Websites in Linux using /etc/hosts file
Liked my video? πBuy me a cup of coffee! π΅
https://www.youtube.com/channel/UCMz232hZ7fD75uGWhuLNjtA/join
Hosts file is used to resolve domain names without using Domain Name System (DNS).
This means that whenever your computer tries to connect to the domain (say) www.facebook.com it will not request DNS for its IP address and instead consider 0.0.0.0 to be the IP address of www.facebook.com
127.0.0.1 is a special address, called loopback IP address and If any public switch, router, or gateway receives a packet addressed to the loopback IP address, it is required to drop the packet without logging the information.
So, we have made domain www.facebook.com unreachable in our example.
Click on like button if you liked the video.
Steps to block domains & subdomains using hosts file:
1. Once you have your hosts file open, enter a comment in your hosts file to organize your mappings of IP addresses to host names
2. To add a comment, make sure youre on a new line and type # followed by your comment details. The # symbol will tell your computer to ignore anything that comes after # on the same line
3. Next, again on a separate line, enter 0.0.0.0 and a space followed by your domain name or subdomain name (website address) to be blocked.
For example:
#Block Facebook
0.0.0.0 www.facebook.com
4. In the above example www.facebook.com (domain name) will be blocked by the hosts file. To save these entries, navigate to the top left hand corner to file, left click on it and left click on save.
5. Open up your browser and navigate to the website URL address you have just added to your hosts file. The blocked website will now be unreachable meaning that it has been blocked successfully.
βͺ
βͺ[Note] Ubuntu hosts file location:
etchosts
Ubuntu Tutorials: https://www.youtube.com/playlist?list=PLnisUReSm0-nc0N5IlO0QoJd78oBhlHoX
Bash Shell Scripting Tutorial: https://www.youtube.com/playlist?list=PLnisUReSm0-n4vwT7Dzjhw5Vjz32clx6N
Install Android Studio on Ubuntu 22.04 LTS | Android Studio on Ubuntu 22.04 LTS: https://youtu.be/hEdpm1PfvvM
Install Ubuntu on Windows 11 (WSL) | Windows Subsystem for Linux with GUI Support: https://youtu.be/NXJjutYp4x8
Reset Forgotten Ubuntu Linux Password on WSL | Debian, Kali, Linux Password Reset on WSL | Windows 11: https://youtu.be/oeXuxqR60Ns
Install Vim (Vi Improved) Text Editor on Ubuntu | Debian Linux: https://youtu.be/zr17y9YHopQ
Ubuntu 23.04 - Is it WORTH Making the Upgrade? Lets learn how to upgrade!: https://youtu.be/dj38ni4dOpA
Upgrade Ubuntu to Ubuntu 23.04 Lunar Lobster using Graphical User Interface | Using GUI: https://youtu.be/Q0xF4wrfA90
Edit Hosts file in Ubuntu | How to Block Websites in Linux using /etc/hosts file: https://youtu.be/z6RxqJzLaQY
More Tutorials for VMWare Workstation Player:
https://www.youtube.com/playlist?list=PLnisUReSm0-ncHac3_ZAsE5g7nWy88Qta
Install Microsoft Windows 11 on VMware Player: https://youtu.be/3HBSuoVOpt0
Make Windows 11 Full Screen in VMware Workstation Player: https://youtu.be/1XaPXGYMwTo
Install macOS 12 Monterey on VMware Player: https://youtu.be/WLMTAqZ_3xU
Install VMware Tools and Make macOS 12 Monterey Full Screen: https://youtu.be/pF4mwgiYIaY
Fix No Internet Connection in macOS 12 Monterey on VMware Player: https://youtu.be/S7yRdl-kAAg
Install macOS 13 Ventura on VMware Player: https://youtu.be/CeSqdrf1WOg
Install VMware Tools and Make macOS 13 Ventura Full Screen: https://youtu.be/WQdGIRFL8qw
Fix No Internet Connection in macOS 13 Ventura in VMware Player: https://youtu.be/i-DDDDiAmPw
Install Ubuntu 22.04 LTS on VMware Player: https://youtu.be/LvYaZMV-ZlY
Create Manual Snapshot in VMware Player: https://youtu.be/QOTJbtyu0XQ
Install Ubuntu 23.04 on VMware Workstation Player On Windows 11: https://youtu.be/St4UOkJVlMU
VMware Workstation/Pro very Slow on Windows 11 22H2 - VMware Technology Network VMTN
https://youtu.be/2cG7Cew_41A
More Tutorials on macOS: https://www.youtube.com/playlist?list=PLnisUReSm0-kC89Ml7Wm5kPdXvgbqndUp
Download and Install NodeJS, HomeBrew (Package Manager) and N (Version Manager) on macOS: https://youtu.be/O6MKC5TgQao
Install Oracle Java JDK and OpenJDK on macOS 13 Ventura: https://youtu.be/F5HTPakOdi4
My Gear:
MSI GL65 Leopard Gaming Laptop
Intel Core i7-10750H 2.6GHz, 10th Gen (6 Cores)
15.6 FHD (1920*1080), IPS-Level 144Hz
16GB DDR4 RAM, 2666Mhz
Nvidia GeForce RTX 2060, 6GB βGDDR6
256GB NVMe M.2 SSD + 1TB SATA 7200RPM HDD
Windows 11 Home, 64Bit
HD Webcam (720p at 30 fps)
Per Key RGB SteelSeries Keypad
#Ubuntu #Linux #tanztalkstech2 #tanzTalkstech #tanzeelosama @tanzTalks.tech2 @tanzTalkstech @TanzeelOAnsari How to edit Hosts file in Ubuntu | How to Block Websites in Linux using /etc/hosts file](https://i.ytimg.com/vi/z6RxqJzLaQY/mqdefault.jpg)