PythonFromYouTube
@PythonFromYouTube
16 subscribers
2.62K links
Бот:
@YouTubeScannerBot
Всі канали:
@EnglishFromYouTube
@ITnewsFromYouTube_UA
@ScienceFromYouTube_UA
Download Telegram
About
Blog
Apps
Platform
Join
PythonFromYouTube
16 subscribers
PythonFromYouTube
NeuralNine
RSA Encryption From Scratch - Math & Code
1 hour ago
https://www.youtube.com/watch?v=D_PfV_IcUdA
YouTube
RSA Encryption From Scratch - Math & Python Code
Today we learn about RSA. We take a look at the theory and math behind it and then we implement it from scratch in Python.

◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾
📚 Programming Books & Merch 📚
🐍 The Python Bible Book: https://www.neuralnine.com/books/
💻 The Algorithm Bible Book:…
7 views17:05
PythonFromYouTube
Tech With Tim
ChatGPT Changed How I Write Code...
2 hours ago
https://www.youtube.com/watch?v=gW92DcU1s-U
YouTube
ChatGPT Changed How I Write Code...
In this video I'll be showing you my top tips and tricks when it comes to using ChatGPT as a Programmer. This tool is extremely helpful to help you save time as a developer!

💻 Master Blockchain and Web 3.0 development today by using BlockchainExpert: 🔗 …
8 views15:00
PythonFromYouTube
Learn Python With Rune
Python Range Function Explained: Syntax and Parameters
12 minutes ago
https://www.youtube.com/watch?v=Av3_iIf9bLo
YouTube
Python Range Function Explained: Syntax and Parameters
There are different ways of using range() function.

range() function can accept 3 parameters as below:
range(start, stop, step)

However, if you type only one number inside range() function, it will smartly assume start is 0 (zero), step is 1 and stop is…
7 views15:05
PythonFromYouTube
ByteByteGo
Top 7 Most-Used Distributed System Patterns
27 minutes ago
https://www.youtube.com/watch?v=nH4qjmP2KEE
YouTube
6:14
Top 7 Most-Used Distributed System Patterns
Get a Free System Design PDF with 158 pages by subscribing to our weekly newsletter.: https://blog.bytebytego.com

Animation tools: Adobe Illustrator and After Effects.

Checkout our bestselling System Design Interview books:
Volume 1: https://amzn.to/3Ou7gkd…
7 views16:00
PythonFromYouTube
anthonywritescode
docker: don't mount files! (mount dirs instead) (intermediate) anthony explains #541
56 minutes ago
https://www.youtube.com/watch?v=oXfL0UCO9F4
YouTube
docker: don't mount files! (mount dirs instead) (intermediate) anthony explains #541
today I talk about a little pitfall with mounting in docker -- and why I prefer mounting directories containing files rather than symlinks or files directly!

- intro to docker: https://youtu.be/tWvQAxkMaWs
- atomicity: https://youtu.be/tmlmCG5egI0

playlist:…
6 views16:00
PythonFromYouTube
NeuralNine
Analyze Text Readability & Complexity in Python
10 minutes ago
https://www.youtube.com/watch?v=abgggvnrGBg
YouTube
Analyze Text Readability & Complexity in Python
Today we learn how to analyze the readability and complexity of texts for machine learning in Python.

◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾
📚 Programming Books & Merch 📚
🐍 The Python Bible Book: https://www.neuralnine.com/books/
💻 The Algorithm Bible Book: https://www.neu…
6 views16:05
PythonFromYouTube
Indently
10 Ways You Can Use "_" In Python (Do you know ALL of them?)
1 hour ago
https://www.youtube.com/watch?v=7GupibhOTdY
YouTube
10 Ways You Can Use "_" In Python (Do you know ALL of them?)
Here are 10 ways you can use the underscore (_) in Python when programming. Did you know all of them?

▶ Become job-ready with Python:
https://www.indently.io

▶ Follow me on Instagram:
https://www.instagram.com/indentlyreels

00:00 Intro
00:05 1) Last…
5 views06:00
PythonFromYouTube
R3ap3rPy
Python - Django - Static files
2 minutes ago
https://www.youtube.com/watch?v=dCrjq8KEj4U
YouTube
Python - Django - Static files
Let's learn how we can use static files in django.
5 views11:00
PythonFromYouTube
Learn Python With Rune
Mastering Text Processing in Python: Essential Skills for Modern Developers!
1 hour ago
https://www.youtube.com/watch?v=zGiPccS6_qA
YouTube
Mastering Text Processing in Python: Essential Skills for Modern Developers!
As a Python developer, it is essential to be proficient in text processing as text data is ubiquitous in the modern world.

This tutorial covers a range of topics from basic operations such as counting the frequency of words in a document to more advanced…
5 views16:00
PythonFromYouTube
Real Python
Getting to Know the Python Standard REPL
12 hours ago
https://www.youtube.com/watch?v=pvxZMfrOxNQ
YouTube
Getting to Know the Python Standard REPL
The Python standard shell, or REPL (Read-Eval-Print Loop), allows you to run Python code interactively while working on a project or learning the language. This tool is available in every Python installation, so you can use it at any moment.

As a Python…
6 views06:00
PythonFromYouTube
Carberra
ChatGPT in Python
2 hours ago
https://www.youtube.com/watch?v=W64wDlNOgiA
YouTube
ChatGPT in Python
AI has dominated the world in recent months, and this video probably isn't going to help that. But hey, I for one welcome our robot overlords, so it's all good.

—

If you enjoy my content, consider supporting me on Patreon or becoming a member!
https://…
5 views14:00
PythonFromYouTube
MathByte Academy
Idiomatic Python: Iterating over Collections
59 minutes ago
https://www.youtube.com/watch?v=3tsfBuJLAyc
YouTube
Idiomatic Python: Iterating over Collections
A look at various Pythonic ways of iterating over collections, and specifically how to avoid using direct indexing to iterate over collections.

#mathbyteacademy #python

Code for this Video
================
Available in GitHub blog repo: https://github…
6 views16:00
PythonFromYouTube
ArjanCodes
5 Tips for Writing Great Code Documentation
59 minutes ago
https://www.youtube.com/watch?v=L7Ry-Fiij-M
YouTube
How to Document Your Code Like a Pro
👷 Review code better and faster with my 3-Factor Framework: https://arjan.codes/diagnosis.

In this video, I’ll share the essential principles for creating clear, concise, and effective code documentation. From commenting to docstrings, you’ll learn how to…
6 views16:05
PythonFromYouTube
Real Python
Virtual Environment Structure & Surveying the Packaging Ecosystem | Real Python Podcast #156
12 hours ago
https://www.youtube.com/watch?v=-0iIa1Xt7rg
YouTube
Virtual Environment Structure & Surveying the Packaging Ecosystem | Real Python Podcast #156
How do Python virtual environments work under the hood? How does understanding these concepts help you with managing them for your projects? This week on the show, CPython core developer Brett Cannon returns to discuss his recent articles about virtual environments…
6 views06:00
PythonFromYouTube
NeuralNine
MapReduce Jobs For Distributed Hadoop Clusters in Python
11 hours ago
https://www.youtube.com/watch?v=NAGu_oBCtwI
YouTube
MapReduce Jobs For Distributed Hadoop Clusters in Python
In this video, we learn how to write MapReduce jobs for Hadoop using Python and mrjob.

◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾
📚 Programming Books & Merch 📚
🐍 The Python Bible Book: https://www.neuralnine.com/books/
💻 The Algorithm Bible Book: https://www.neuralnine.com/books/…
8 views06:05
PythonFromYouTube
NeuralNine
Create Your Own Custom MoviePy Animations
55 minutes ago
https://www.youtube.com/watch?v=io46L1Nl3hU
YouTube
Create Your Own Custom MoviePy Animations
In this video, we learn how to create custom MoviePy animations.

◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾
📚 Programming Books & Merch 📚
🐍 The Python Bible Book: https://www.neuralnine.com/books/
💻 The Algorithm Bible Book: https://www.neuralnine.com/books/
👕 Programming Merch:…
7 views15:00
PythonFromYouTube
Indently
NEVER Trust Optimisations In Python. Here's Why:
1 hour ago
https://www.youtube.com/watch?v=b1ZX4iQbODI
YouTube
NEVER Trust Optimisations In Python. Here's Why:
Python is often considered a versatile programming language, but it is not particularly known for its speed. Consequently, some people may be skeptical about optimizing Python code. However, it is worth noting that there are optimization techniques that can…
7 views06:05
PythonFromYouTube
Tech With Tim
STOP Making These 5 JavaScript Mistakes!
1 hour ago
https://www.youtube.com/watch?v=QAF1bg8KoK4
YouTube
5 JavaScript Mistakes You Need To Stop Making
If you've written code in JavaScript, then you've noticed it's a strange language with a lot of unexpected behaviors that go on. This video sheds light on some common issues that programmers encounter while working with JavaScript and provides insights into…
6 views15:00
PythonFromYouTube
b001
Coding & Such Ep.2

https://www.youtube.com/watch?v=b2HGOz1mDFA
YouTube
Coding & Such Ep.2
Just hanging out and coding
7 views17:00
PythonFromYouTube
R3ap3rPy
Python - Django - Sending emails
1 hour ago
https://www.youtube.com/watch?v=3lbJhea4Stw
YouTube
Python - Django - Sending emails
Let's check how you can send emails in django.
7 views09:00