How-to & Style
Learn the basics of the Go Programming Language. Go (not Golang) was developed at Google as a modern version of C for high-performance server-side applications. https://fireship.io/lessons/learn-go-in-100-lines/
#programming #go #100SecondsOfCode
🔗 Resources
Go in 100 Lines https://fireship.io/lessons/learn-go-in-100-lines/
Go Docs https://golang.org/doc/
🔥 Get More Content - Upgrade to PRO
Upgrade to Fireship PRO at https://fireship.io/pro
Use code lORhwXd2 for 25% off your first payment.
🎨 My Editor Settings
- Atom One Dark
- vscode-icons
- Fira Code Font
🔖 Topics Covered
- History of Go Development
- Programming Languages Invented by Ken Thompson
- Statically-typed Complied Languages
- Go Modules
Welcome to the second Django web development with Python tutorial. This tutorial picks up from the previous one, and is focused on getting a simple page to render some text. After you did the startproject command, a new directory is created, called whatever you named it. We called it mysite. Change directory into your new directory cd mysite. Next, we create a new app for this:
python manage.py startapp webapp
Now a new directory exists, called webapp. In here, we see a lot of similar files, and some new ones:
webapp/
migrations/
__init__.py
admin.py
apps.py
models.py
tests.py
views.py
The app is indeed treated as its own package, with its own __init__.py, along with other files. For now, we will concern ourselves with views.py, and we're actually going to add another file urls.py.
http://pythonprogramming.net
https://twitter.com/sentdex
🔥Alpha 4.0 Placement Batch (Java+DSA) : https://www.apnacollege.in/course/alpha-batch-4
------------------------------------------------------
Link for International Students: https://buy.stripe.com/bIY9AMcnq2Bo24waEL
Fill this form for Free Counselling : https://forms.gle/skaqCofAKfZ2te7L7
Join the Apni Community🔥 : https://telegram.me/+k4rdgTPwmm5kMGVl
Python for Data Science: https://ibm.biz/Python_for_Data_Science
Python and Julia are both common and powerful language that may seem alike, but there are definitely differences you should consider. In this video Martin Keen, Master Inventor, provides an overview of Python and Julia, showcasing their strengths so you can make an informed decision on the best for your next project.
Get started for free on IBM Cloud → https://ibm.biz/sign-up-today
Subscribe to see more videos like this in the future → http://ibm.biz/subscribe-now
Today I made my first game in the Python programming language using Pygame, which is a graphics library. Let's see if I can create a holiday inspired game with no experience.
Checkout Don't Touch My Presents here: https://goodgis.itch.io/dont-touch-my-presents
► Source Code: https://github.com/Gooodgis/dont-touch-my-presents
Shout out to my boys @barj & @PolyMars for inspiring/encouraging me to make this video!
✦ Discord - https://discord.gg/BhVRust
✦ Twitter - https://twitter.com/Gooodgis
✦ Games - https://firith.itch.io/
Chapters:
0:00 Intro
0:31 Python Setup
0:55 The Game Idea
1:17 Drawing a Window
1:30 Adding Artwork
2:00 Basic Movement
2:32 Goal of the Game
3:07 Adding More Features
3:56 Collisions
4:23 The Game is Fun
4:40 Audio & Music
5:23 Conclusion
┈ Similar Videos ┈
Goodgis - I've Secretly Been Working on an MMORPG
https://www.youtube.com/watch?v=jJw7kYHp-yc
Goodgis - How To Get Started With Game Dev (Beginner's Guide)
https://www.youtube.com/watch?v=U9vqzH65Zzw
Polymars - 2 Python Developers VS $1000
https://www.youtube.com/watch?v=PC_pAgJopIA
Barji - So I Made a Python Game in 48 Hours…
https://www.youtube.com/watch?v=lVmdmivVK5w
Polymars - C++ Developer Learns Python
https://www.youtube.com/watch?v=7tXsC8YlCq8
I've been wanting to create a game without an engine for some time now. Specifically the Python programming language because it's easy to learn and used by many companies today. I decided to use the Pygame graphics library and see if I could create a game in 48 hours...though it may have taken me a couple days longer... If you're wondering "How to Make a Game in Python?" or better yet "How Easy is Python to Use" then you were on the same page as me. Hence why this video exists.
#Gamedev #Programming #Python #Pygame
Today I'm doing some common beginner or student programming exercises in Python. These are the kinds of things you might see in a job interview or a lower level computer science course.
Check out Pyscripter, a free Python IDE: https://bit.ly/Pyscripter-IDE
And C++ Builder, a C/C++ IDE: https://bit.ly/cpp-builder
Support me on Patreon: https://www.patreon.com/ClickClackYT
Keyboard: Razer Huntsman Mini, https://amzn.to/3wsFYTJ (affiliate link)
In this part of the Kivy tutorials, we're going to cover how to schedule tasks to run (either just once, or repeatedly), as well as actually connect to our chat server.
Text-based tutorial and sample code: https://pythonprogramming.net/....scheduling-clock-kiv
Channel membership: https://www.youtube.com/channe....l/UCfzlCWGWYyIQ0aLC5
Discord: https://discord.gg/sentdex
Support the content: https://pythonprogramming.net/support-donate/
Twitter: https://twitter.com/sentdex
Facebook: https://www.facebook.com/pythonprogramming.net/
Twitch: https://www.twitch.tv/sentdex
G+: https://plus.google.com/+sentdex
In this tutorial, I will show you how to create a Web Application with Flask!
This video the also the first episode of The Battle of the App Frameworks, where 🤩🤩 YOU GET TO CHOOSE THE WINNER! 🤩🤩
Today we will create a simple "Hello World" Application with Flask, which includes:
* an HTML template containing the structure of a web page
* a CSS stylesheet containing design instructions
* a Python backend that communicates with a web server
And we will also 🚀DEPLOY🚀 this application for free with Heroku! 😁
This tutorial covers all the basics of Flask, from start to finish! (excluding Javascript interactions, which we will leave for later 😜)
⏰ TIME STAMPS ⏰
00:00 - Battle of the App Frameworks
00:25 - Flask Overview
01:17 - Flask Directory Structure
01:52 - HTML Structure
06:52 - Python Backend
09:31 - Warning: this is a development server ⛳
09:42 - Message Flashing
11:04 - A secret key is required
13:38 - CSS Styling
18:05 - CSS doesn't update - Clear Cache!
20:14 - Procfile and Requirements
22:42 - Deploy Flask App with Heroku
24:43 - Thanks for watching! :)
*********************************
🐍 IMPORTANT NOTES/LINKS 🐍
Install Flask 🌶
* Anaconda: conda install -c anaconda flask
* PyPI: pip install flask
Install Green Unicorn 🦄
$ pip install gunicorn
Change Production Server to Development Server: ⛳
$ export FLASK_APP=sayHello
$ export FLASK_ENV=development
$ flask run
Complete project on Github:
https://github.com/MariyaSha/greetingApp_FLASK
Link to logo from my Kivy App:
https://github.com/MariyaSha/S....impleGreetingApp/blo
Beautiful icons are by:
https://www.freepik.com/
https://www.flaticon.com/
Python: Install Kivy, Develop Python APP to Android APK {தமிழ்} #python #pythonprogramming #pythocoding #pythonadroidapp
Kivy Installation Steps: https://github.com/atozknowled....ge/python/wiki/Kivy-
⭐My Second Channel: https://www.youtube.com/startupideavideos⭐
Python CodeBase: https://bit.ly/3gi6PrL
My Second Channel :
Python Interview Programs
------------------------------------------
Video in English https://bit.ly/2WOAVw8
Video in Tamil https://bit.ly/3jwmExW
Python Core
------------
Video in English https://goo.gl/df7GXL
Video in Tamil https://goo.gl/LT4zEw
Python Web application
----------------------
Videos in Tamil https://goo.gl/rRjs59
Videos in English https://goo.gl/spkvfv
Python NLP
-----------
Videos in Tamil https://goo.gl/LL4ija
Videos in English https://goo.gl/TsMVfT
Artificial intelligence and ML
------------------------------
Videos in Tamil https://goo.gl/VNcxUW
Videos in English https://goo.gl/EiUB4P
Email : atozknowledge.com@gmail.com
LinkedIn : https://www.linkedin.com/in/sbgowtham/
Instagram : https://www.instagram.com/bigdata.in/
YouTube channel link
www.youtube.com/atozknowledgevideos
Website
http://atozknowledge.com/
Technology in Tamil & English
Become Python DEVELOPER in 30Days🚀🔥 Ultimate Python developer roadmap like never before
Python is recently been used by many people due to its simplicity and efficiency. So here we go with the exact python roadmap.
Odinschool link - https://hubs.la/Q01BkVk40
https://github.com/cl2333/Grok....king-the-Coding-Inte
https://www.udacity.com/course..../data-structures-and
CS in Tamil, Telusko, Freecodecamp
how to learn to code,software engineer,python programming,python for beginners,python for beginners in tamil,python full course in tamil,python tutorial,python full course,how to learn coding for beginners in tamil,how to learn coding for beginners,how to learn python,how to learn programming,how to learn python for beginners,how to learn python in tamil,how to learn python language,how to learn python programming language for beginners
Start learning python by building projects in under 5 minutes TODAY – Even if you're a complete beginner...
https://cleverprogrammer.com?utm_source=youtube&utm_medium=yt-description
I will show you how to download and install Python in less than 2 minutes! We will be up and running super fast and get to working on some cool stuff. So what are you waiting for, let's get started! ...
...
★☆★ FREE Lesson 1: The Most Important Thing For a Successful Programmer★☆★
https://www.cleverprogrammer.c....om/blog/lesson-1-the
Enroll for coding exercises, projects, tutorials, and courses...
https://cleverprogrammer.com?utm_source=youtube&utm_medium=yt-description ------------------------------------
Clever Programmer
Website ► https://cleverprogrammer.com?utm_source=youtube&utm_medium=yt-description
Facebook ► http://cleverprogrammer.io/facebook
Twitter ► http://cleverprogrammer.io/twitter
Instagram ► http://cleverprogrammer.io/instagram
Snapchat ► Rafeh1
iTunes Podcast ► http://cleverprogrammer.io/podcast
Google Podcast ► http://cleverprogrammer.io/google-podcast
Support (Patreon) ► http://cleverprogrammer.io/patreon
Youtube ► https://www.youtube.com/c/CleverProgrammer
Github (Code) ► http://cleverprogrammer.io/github Biz / Sponsorships 👉 https://www.cleverprogrammer.com/partnerships
In this video you will learn how to create simple python GUIs using the PySimpleGUI library. There are 10 projects in this video: A converter, a calculator, a stopwatch, a text app, the snake game, an image editor, a music player, a weather app and a opencv face detector. There is also an extra video about creating a gui in a single line of code.
By the end of the video you should be comfortable understanding PySimpleGUI and solve more or less any problem inside of it. The video will also use popular python modules like matplotlib, opencv, pytube, pillow and BeautifulSoup4.
If you want to support me: https://www.patreon.com/clearcode
(You also get lots of perks)
Social stuff:
Twitter - https://twitter.com/clear_coder
Discord - https://discord.com/invite/a5C6pYw2w5
Timestamps:
0:00:00 - Intro
0:03:48 - Converter
0:37:00 - One line app
0:38:46 - Calculator
1:09:06 - Stopwatch
1:36:14 - Text editor
1:57:10 - Snake
2:29:40 - Graph app (MatPlotLib)
2:47:50 - Image editor (Pillow)
3:11:06 - Music Player
3:48:59 - Weather app (BeautifulSoup4)
4:08:14 - Face detector (OpenCV)
Github:
https://github.com/clear-code-....projects/PySimpleGui
Pastebin:
Weather app - https://pastebin.com/LHPdVbgq
Stopwatch - https://pastebin.com/bHP6GppS
Face Detector (open cv) - https://pastebin.com/3BKFmubT
Snake game - https://pastebin.com/zRZvssxB
Text editor - https://pastebin.com/NWDb2Pjw
Image editor (Pillow) - https://pastebin.com/H3QCwQgX
Graph app (Matplotlib) - https://pastebin.com/dES5Qp4B
Calculator - https://pastebin.com/h2W5t35L
Converter - https://pastebin.com/aDVADH7R
One line app - https://pastebin.com/4rvyhcJx
music player - https://pastebin.com/DZfqjwMs
Learn the Python Django framework with this free full course. Django is an extremely popular and fully featured server-side web framework, written in Python. Django allows you to quickly create web apps.
💻Code: https://github.com/codingforen....trepreneurs/Try-Djan
⭐️Course Contents ⭐️
⌨️ (0:00:00) 1 - Welcome
⌨️ (0:01:14) 2 - Installing to Get Started
⌨️ (0:05:02) 3 - Setup your Virtual Environment for Django
⌨️ (0:14:39) 4 - Create a Blank Django Project
⌨️ (0:18:54) 5 - Setup Your Code Text Editor
⌨️ (0:22:27) 6 - Settings
⌨️ (0:29:58) 7 - Built-In Components
⌨️ (0:33:57) 8 - Your First App Component
⌨️ (0:42:34) 9 - Create Product Objects in the Python Shell
⌨️ (0:46:18) 10 - New Model Fields
⌨️ (0:52:52) 11 - Change a Model
⌨️ (0:59:27) 12 - Default Homepage to Custom Homepage
⌨️ (1:04:48) 13 - URL Routing and Requests
⌨️ (1:10:23) 14 - Django Templates
⌨️ (1:16:50) 15 - Django Templating Engine Basics
⌨️ (1:24:00) 16 - Include Template Tag
⌨️ (1:26:49) 17 - Rendering Context in a Template
⌨️ (1:33:21) 18 - For Loop in a Template
⌨️ (1:37:01) 19 - Using Conditions in a Template
⌨️ (1:42:17) 20 - Template Tags and Filters
⌨️ (1:48:59) 21 - Render Data from the Database with a Model
⌨️ (1:59:55) 22 - How Django Templates Load with Apps
⌨️ (2:06:50) 23 - Django Model Forms
⌨️ (2:14:16) 24 - Raw HTML Form
⌨️ (2:25:33) 25 - Pure Django Form
⌨️ (2:35:30) 26 - Form Widgets
⌨️ (2:41:29) 27 - Form Validation Methods
⌨️ (2:48:59) 28 - Initial Values for Forms
⌨️ (2:51:42) 29 - Dynamic URL Routing
⌨️ (2:54:26) 30 - Handle DoesNotExist
⌨️ (2:56:24) 31 - Delete and Confirm
⌨️ (2:58:24) 32 - View of a List of Database Objects
⌨️ (3:00:00) 33 - Dynamic Linking of URLs
⌨️ (3:01:17) 34 - Django URLs Reverse
⌨️ (3:03:10) 35 - In App URLs and Namespacing
⌨️ (3:07:35) 36 - Class Based Views - ListView
⌨️ (3:10:45) 37 - Class Based Views - DetailView
⌨️ (3:15:38) 38 - Class Based Views - CreateView and UpdateView
⌨️ (3:21:23) 39 - Class Based Views - DeleteView
⌨️ (3:24:02) 40 - Function Based View to Class Based View
⌨️ (3:27:15) 41 - Raw Detail Class Based View
⌨️ (3:30:31) 42 - Raw List Class Based View
⌨️ (3:33:32) 43 - Raw Create Class Based View
⌨️ (3:26:03) 44 - Form Validation on a Post Method
⌨️ (3:37:58) 45 - Raw Update Class Based View
⌨️ (3:41:13) 46 - Raw Delete Class Based View
⌨️ (3:42:17) 47 - Custom Mixin for Class Based Views
Course from Coding for Entrepreneurs. Check out their YouTube channel: https://www.youtube.com/channe....l/UCWEHue8kksIaktO8K
Also, check out the Coding For Entrepreneurs website for more great content: https://www.codingforentrepreneurs.com
--
Learn to code for free and get a developer job: https://www.freecodecamp.org
Read hundreds of articles on programming: https://medium.freecodecamp.org
My new HTML5 & CSS3 COURSE IS OUT NOW!
https://developedbyed.com/
In todays episode we are going to take a look on how we can build out a python gui app.
In todays era of improving our workflow, we are going to build an app that lets us auto open up a bunch of other apps that we would normally use. You can imagine it as being a workspace opener.
If you want to learn more about python or you are a python beginner this is a great tutorial for you to build out some practical apps.
All the code will be available on patreon.
🎁Support me on Patreon for exclusive episodes, discord and more!
https://www.patreon.com/dev_ed
Microphones I Use
Audio-Technica AT2020 - https://geni.us/Re78 (Amazon)
Deity V-Mic D3 Pro - https://geni.us/y0HjQbz (Amazon)
BEHRINGER Audio Interface - https://geni.us/AcbCpd9 (Amazon)
Camera Gear
Fujifilm X-T3 - https://geni.us/7IM1 (Amazon)
Fujinon XF18-55mmF2.8-4 - https://geni.us/sztaN (Amazon)
PC Specs
Kingston SQ500S37/480G 480GB - https://geni.us/s7HWm (Amazon)
Gigabyte GeForce RTX 2070 - https://geni.us/uRw71gN (Amazon)
AMD Ryzen 7 2700X - https://geni.us/NaBSC (Amazon)
Corsair Vengeance LPX 16GB - https://geni.us/JDqK1KK (Amazon)
ASRock B450M PRO4 - https://geni.us/YAtI (Amazon)
DeepCool ATX Mid Tower - https://geni.us/U8xJY (Amazon)
Dell Ultrasharp U2718Q 27-Inch 4K - https://geni.us/kXHE (Amazon)
Dell Ultra Sharp LED-Lit Monitor 25 2k - https://geni.us/bilekX (Amazon)
Logitech G305 - https://geni.us/PIjyn (Amazon)
Logitech MX Keys Advanced - https://geni.us/YBsCVX0 (Amazon)
DISCLAIMERS:
I am a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for us to earn fees by linking to Amazon.com and affiliated sites.
🛴 Follow me on:
Twitch: https://www.twitch.tv/developedbyed
Twitter: https://twitter.com/developedbyed
Instagram: https://www.instagram.com/developedbyed/
Github: https://github.com/developedbyed/
#python #programming
You've just made a beautiful GUI app with Python - but there's a big difference between creating an app for your personal use and distributing it all across the web, reaching many people who don't necessarily know anything about Python.
In this tutorial, I will show you exactly how to convert your Tkinter, Kivy, KivyMD, PyQT5, or other GUIs into a full-blown professional program! 🤩🤩🤩
The end result is a 😱 SINGLE SETUP FILE 😱 which anyone can download and install on their computer - even your grandmom!!! 👵
We will use Pyinstaller to create an executable file and Inno Setup to bundle it with dependencies and convert them into a setup wizard.
In addition, we will discuss some common errors, how to fix them and how to avoid irrelevant instructions (hint: do we really need to modify the SPEC file? 🤔)
We will briefly tackle licensing (open source, as you may guess 😉), and generating icons.
Please note, this video is designed for Windows developers and users! However, I will cover Linux and Mac as well in some future tutorials... the Mac tutorial is of course inspired by Tom! XDD (but only members of our Discord community will understand the joke, this is how I test if they read video descriptions 😅)
-------------------------------------------
⏰ Time Stamps ⏰
-------------------------------------------
00:00 - intro
00:40 - project files and database
01:31 - download Random Recipe Picker (or use your own Python app)
03:29 - install requirements.txt
03:46 - Pyinstaller vs auto-py-to-exe
04:25 - run Pytinstaller builder
05:22 - prep GUI script for Pyinstaller
05:56 - resource path (and important sys._MEIPASS fix!)
08:18 - SPEC file
09:20 - generate software icons
10:04 - convert script and assets to exe file
11:22 - fix Pyinstaller File Not Found Error
12:48 - test executable
13:36 - install Inno Setup
14:17 - convert exe and assets into a setup file
16:39 - license
20:00 - add subdirectories to Inno Setup compilable
21:56 - test setup file on another PC
22:57 - thanks for watching! :)
-------------------------------------------
📽️ Important Tutorials 📽️
-------------------------------------------
⭐ Create GUI App with SQLite and Tkinter (Random Recipe Picker):
https://youtu.be/5qOnzF7RsNA
⭐ Anaconda for Beginners:
https://youtu.be/MUZtVEDKXsk
⭐ Convert .py to .exe with auto-py-to-exe:
https://youtu.be/Y0HN9tdLuJo
-------------------------------------------
💻 VENV Alternative 💻
-------------------------------------------
$ python3 -m venv name_of_my_env
$ source name_of_my_env/bin/activate
-------------------------------------------
🖇️ Tutorial Links 🖇️
-------------------------------------------
🔗 Random Recipe Picker Repository: https://github.com/MariyaSha/RandomRecipePicker
🔗 Resource Path Function (Stack Overflow): https://stackoverflow.com/ques....tions/31836104/pyins
🔗 PNG to ICO Icon Converter: https://image.online-convert.com/convert-to-ico
🔗 Inno Setup: https://jrsoftware.org/isinfo.php
🔗 Open Source Initiative MIT License: https://opensource.org/licenses/MIT
-------------------------------------------
🤝 Connect with me 🤝
-------------------------------------------
🔗 Github:
https://github.com/mariyasha
🔗 Discord:
https://discord.com/invite/wgTTmsWmXA
🔗 LinkedIn:
https://ca.linkedin.com/in/mariyasha888
🔗 Twitter:
https://twitter.com/mariyasha888
🔗 Blog:
https://www.pythonsimplified.org
-------------------------------------------
💳 Credits 💳
-------------------------------------------
⭐ Beautiful titles, transitions, sound FX, and music:
mixkit.co
⭐ Beautiful icons:
flaticon.com
#gui #graphics #app #application #python #pythonprogramming #exe #pythoncoding #software #softwaredevelopment #pythonsimplified #convert #code #pyinstaller #innosetup #wizard #windows
Learn about tidyverse, ggplot2, and the secret to a tech company’s longevity as Hadley Wickham joins @JonKrohnLearns in this episode. He talks about Posit’s rebrand, why tidyverse needs to be in every data scientist’s toolkit, and why getting your hands dirty with open-source projects can be so lucrative for your career.
Watch the full interview “779: The Tidyverse of Essential R Libraries and their Python Analogues — with Dr. Hadley Wickham” here: https://www.superdatascience.com/779
This course will give you a full introduction into all of the core concepts in python. Follow along with the videos and you'll be a python programmer in no time!
Click the ⚙️ to change to a dub track in Spanish, Arabic, or Portuguese, or Hindi.
(Hindi dubbed via Melt Labs - https://www.withmelt.com/)
Want more from Mike? He's starting a coding RPG/Bootcamp - https://simulator.dev/
⭐️ Contents ⭐
⌨️ (0:00) Introduction
⌨️ (1:45) Installing Python & PyCharm
⌨️ (6:40) Setup & Hello World
⌨️ (10:23) Drawing a Shape
⌨️ (15:06) Variables & Data Types
⌨️ (27:03) Working With Strings
⌨️ (38:18) Working With Numbers
⌨️ (48:26) Getting Input From Users
⌨️ (52:37) Building a Basic Calculator
⌨️ (58:27) Mad Libs Game
⌨️ (1:03:10) Lists
⌨️ (1:10:44) List Functions
⌨️ (1:18:57) Tuples
⌨️ (1:24:15) Functions
⌨️ (1:34:11) Return Statement
⌨️ (1:40:06) If Statements
⌨️ (1:54:07) If Statements & Comparisons
⌨️ (2:00:37) Building a better Calculator
⌨️ (2:07:17) Dictionaries
⌨️ (2:14:13) While Loop
⌨️ (2:20:21) Building a Guessing Game
⌨️ (2:32:44) For Loops
⌨️ (2:41:20) Exponent Function
⌨️ (2:47:13) 2D Lists & Nested Loops
⌨️ (2:52:41) Building a Translator
⌨️ (3:00:18) Comments
⌨️ (3:04:17) Try / Except
⌨️ (3:12:41) Reading Files
⌨️ (3:21:26) Writing to Files
⌨️ (3:28:13) Modules & Pip
⌨️ (3:43:56) Classes & Objects
⌨️ (3:57:37) Building a Multiple Choice Quiz
⌨️ (4:08:28) Object Functions
⌨️ (4:12:37) Inheritance
⌨️ (4:20:43) Python Interpreter
Course developed by Mike Dane. Check out his YouTube channel for more great programming courses: https://www.youtube.com/channe....l/UCvmINlrza7JHB1zkI
🐦Follow Mike on Twitter - https://twitter.com/mike_dane
🔗If you liked this video, Mike accepts donations on his website: https://www.mikedane.com/contribute/
⭐️Other full courses by Mike Dane on our channel ⭐️
💻C: https://youtu.be/KJgsSFOSQv0
💻C++: https://youtu.be/vLnPwxZdW4Y
💻SQL: https://youtu.be/HXV3zeQKqGY
💻Ruby: https://youtu.be/t_ispmWmdjY
💻PHP: https://youtu.be/OK_JCtrrv-c
💻C#: https://youtu.be/GhQdlIFylQ8
--
Learn to code for free and get a developer job: https://www.freecodecamp.org
Read hundreds of articles on programming: https://medium.freecodecamp.org