pixegami
Learn Python • #4 Conditions • If / Else Statements
1 hour ago
https://www.youtube.com/watch?v=-rZPM-VlKB8
Learn Python • #4 Conditions • If / Else Statements
1 hour ago
https://www.youtube.com/watch?v=-rZPM-VlKB8
YouTube
Learn Python • #4 Conditions • If / Else Statements
Conditions (if/else statements) in Python let you control the flow of your program based on a set of rules.
By using if/else statements, you can create decision-making processes in your code that allow it to do different things depending on whether certain…
By using if/else statements, you can create decision-making processes in your code that allow it to do different things depending on whether certain…
Learn Python With Rune
Creating a Python Maze Game from Scratch
15 minutes ago
https://www.youtube.com/watch?v=W5kEt95L1WQ
Creating a Python Maze Game from Scratch
15 minutes ago
https://www.youtube.com/watch?v=W5kEt95L1WQ
YouTube
Creating a Python Maze Game from Scratch
We will create a maze game.
Want to learn more 👉 https://lpwr-academy.com/p/complete-python-developer-bootcamp?product_id=4658406&affcode=1384589_3ykia51r
▸ 12-week Python Bootcamp
▸ Focus on Python Essentials
▸ Code exercises and projects
In this tutorial…
Want to learn more 👉 https://lpwr-academy.com/p/complete-python-developer-bootcamp?product_id=4658406&affcode=1384589_3ykia51r
▸ 12-week Python Bootcamp
▸ Focus on Python Essentials
▸ Code exercises and projects
In this tutorial…
Real Python
Starting With YAML and PyYAML in Python
1 hour ago
https://www.youtube.com/watch?v=AfD79cc2Kzg
Starting With YAML and PyYAML in Python
1 hour ago
https://www.youtube.com/watch?v=AfD79cc2Kzg
YouTube
Starting With YAML and PyYAML in Python
Python is often marketed as a batteries-included language because it comes with almost everything you’d ever expect from a programming language. However, Python lacks built-in support for the YAML data format, commonly used for configuration and serialization.…
pixegami
Learn Python • #5 Lists • Storing Collections of Data
59 minutes ago
https://www.youtube.com/watch?v=ve4eC68G0Io
Learn Python • #5 Lists • Storing Collections of Data
59 minutes ago
https://www.youtube.com/watch?v=ve4eC68G0Io
YouTube
Learn Python • #5 Lists • Storing Collections of Data
In Python, you can use "lists" to store collections of data.
You can add/remove items from a list, check if items are in a list, or even sort and reverse a list. The "list" (also known as an array or a vector in some other coding languages) is the first…
You can add/remove items from a list, check if items are in a list, or even sort and reverse a list. The "list" (also known as an array or a vector in some other coding languages) is the first…
NeuralNine
GPT-3.5 vs GPT-4: Which AI is Better at Complex Machine Learning Tasks?
1 hour ago
https://www.youtube.com/watch?v=b8hHuxJCkN8
GPT-3.5 vs GPT-4: Which AI is Better at Complex Machine Learning Tasks?
1 hour ago
https://www.youtube.com/watch?v=b8hHuxJCkN8
YouTube
GPT-3.5 vs GPT-4: Which AI is Better at Complex Machine Learning Tasks?
In this video, we compare the capabilities of GPT-3.5 and GPT-4, when it comes to solving complex machine learning tasks.
◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾
📚 Programming Books & Merch 📚
🐍 The Python Bible Book: https://www.neuralnine.com/books/
💻 The Algorithm Bible Book:…
◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾
📚 Programming Books & Merch 📚
🐍 The Python Bible Book: https://www.neuralnine.com/books/
💻 The Algorithm Bible Book:…
Jie Jenn
Create A Markdown Editor With Python | PyQt6 Tutorial
48 minutes ago
https://www.youtube.com/watch?v=DwmNANM7FAs
Create A Markdown Editor With Python | PyQt6 Tutorial
48 minutes ago
https://www.youtube.com/watch?v=DwmNANM7FAs
YouTube
Create A Markdown Editor With Python | PyQt6 Tutorial
In this tutorial, we will learn how to build a simple markdown editor in Python using PyQt6 library.
► Buy Me a Coffee? Your support is much appreciated!
-------------------------------------------------------------------------------------------
☕ Paypal:…
► Buy Me a Coffee? Your support is much appreciated!
-------------------------------------------------------------------------------------------
☕ Paypal:…
anthonywritescode
when `git add .` doesn't work (intermediate) anthony explains #539
4 minutes ago
https://www.youtube.com/watch?v=N0TFxl7A5Hw
when `git add .` doesn't work (intermediate) anthony explains #539
4 minutes ago
https://www.youtube.com/watch?v=N0TFxl7A5Hw
YouTube
when `git add .` doesn't work (intermediate) anthony explains #539
today I show a particular monorepo case where `git add .` didn't work as the user expected -- and introduce an interesting alternative!
- don't use `git add .`: https://youtu.be/GgIZbO2Hb5s
playlist: https://www.youtube.com/playlist?list=PLWBKAf81pmOaP…
- don't use `git add .`: https://youtu.be/GgIZbO2Hb5s
playlist: https://www.youtube.com/playlist?list=PLWBKAf81pmOaP…
MathByte Academy
Python Tips and Tricks: Breaking out of Nested Loops
25 seconds ago
https://www.youtube.com/watch?v=ozZBa9YJwgY
Python Tips and Tricks: Breaking out of Nested Loops
25 seconds ago
https://www.youtube.com/watch?v=ozZBa9YJwgY
YouTube
Python Tips and Tricks: Breaking out of Nested Loops
In this video we take a look at some techniques to break out of multiple nested loops since Python does not provide a built-in language mechanism to do so. We also identify what I think is the best way to do this.
#mathbyteacademy #python
Code for this…
#mathbyteacademy #python
Code for this…
Real Python
Evaluating Python Packages & Celebrating 20 Years of PyCon US | Real Python Podcast #151
1 hour ago
https://www.youtube.com/watch?v=UWzizzIxavg
Evaluating Python Packages & Celebrating 20 Years of PyCon US | Real Python Podcast #151
1 hour ago
https://www.youtube.com/watch?v=UWzizzIxavg
YouTube
Evaluating Python Packages & Celebrating 20 Years of PyCon US | Real Python Podcast #151
Have you ever installed a Python package without knowing anything about it? What best practices should you employ to ensure the quality of your next package installation? Christopher Trudeau is back this week, bringing another batch of PyCoder's Weekly articles…
pixegami
Learn Python • #6 Loops • How to Repeat Code Execution
1 hour ago
https://www.youtube.com/watch?v=ZPSES_gtm5U
Learn Python • #6 Loops • How to Repeat Code Execution
1 hour ago
https://www.youtube.com/watch?v=ZPSES_gtm5U
YouTube
Learn Python • #6 Loops • How to Repeat Code Execution
Loops in Python will let you run the same code over and over again.
This is useful when working with lists, or if you have something that you want to execute for a certain number of times. In this tutorial, you'll learn why loops are such an important programming…
This is useful when working with lists, or if you have something that you want to execute for a certain number of times. In this tutorial, you'll learn why loops are such an important programming…
Indently
Should You Even Bother With LEARNING PYTHON In 2023?
1 hour ago
https://www.youtube.com/watch?v=4qqGVNbaP9w
Should You Even Bother With LEARNING PYTHON In 2023?
1 hour ago
https://www.youtube.com/watch?v=4qqGVNbaP9w
YouTube
Should You Even Bother With LEARNING PYTHON In 2023?
With the recent ChatGPT wave and other AI related technologies popping up out of nowhere, does it still make sense to learn Python in 2023? Well, here's my opinion on whether you should still learn Python in 2023.
▶ Become job-ready with Python:
https:…
▶ Become job-ready with Python:
https:…
NeuralNine
Sign Emails with Certificates & S/MIME in Python
2 minutes ago
https://www.youtube.com/watch?v=W7JIdLU23GI
Sign Emails with Certificates & S/MIME in Python
2 minutes ago
https://www.youtube.com/watch?v=W7JIdLU23GI
YouTube
Sign Emails with Certificates & S/MIME in Python
In this video, we learn how to sign e-mails using certificates and S/MIME in Python.
◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾
📚 Programming Books & Merch 📚
🐍 The Python Bible Book: https://www.neuralnine.com/books/
💻 The Algorithm Bible Book: https://www.neuralnine.com/books/…
◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾
📚 Programming Books & Merch 📚
🐍 The Python Bible Book: https://www.neuralnine.com/books/
💻 The Algorithm Bible Book: https://www.neuralnine.com/books/…
pixegami
Learn Python • #7 Dictionaries • The Most Useful Data Structure?
3 minutes ago
https://www.youtube.com/watch?v=u9x1VZDidtM
Learn Python • #7 Dictionaries • The Most Useful Data Structure?
3 minutes ago
https://www.youtube.com/watch?v=u9x1VZDidtM
YouTube
Learn Python • #7 Dictionaries • The Most Useful Data Structure?
Dictionaries are a data structure that store key-value pairs, and is quite possibly the most useful data structure in Python.
Dictionaries allowing for fast and efficient data retrieval. We'll cover how to create and manipulate dictionaries, as well as common…
Dictionaries allowing for fast and efficient data retrieval. We'll cover how to create and manipulate dictionaries, as well as common…
NDC Conferences
The insecurity of OAuth 2.0 in frontends - Philippe de Ryck - NDC Security 2023
3 hours ago
https://www.youtube.com/watch?v=OpFN6gmct8c
The insecurity of OAuth 2.0 in frontends - Philippe de Ryck - NDC Security 2023
3 hours ago
https://www.youtube.com/watch?v=OpFN6gmct8c
YouTube
The insecurity of OAuth 2.0 in frontends - Philippe de Ryck - NDC Security 2023
Everyone agrees that Cross-Site Scripting (XSS) is a real threat to browser-based applications, but many underestimate the true power of XSS. In fact, various OAuth 2.0 security mechanisms for frontends, such as refresh token rotation or token isolation in…
NDC Conferences
Securing SPAs and Blazor Applications using the BFF (Backend for Frontend) Pattern - Dominick Baier
1 hour ago
https://www.youtube.com/watch?v=hWJuX-8Ur2k
Securing SPAs and Blazor Applications using the BFF (Backend for Frontend) Pattern - Dominick Baier
1 hour ago
https://www.youtube.com/watch?v=hWJuX-8Ur2k
YouTube
Securing SPAs and Blazor Applications using the BFF (Backend for Frontend) Pattern - Dominick Baier
Modern web development means that more and more application code is running in the browser. Traditionally this has been JavaScript but more recently there has been the trend to use C#/WASM with Blazor.
These modern applications typically also need authentication…
These modern applications typically also need authentication…
teclado
Introduction to pytest: A Beginner's Guide
1 hour ago
https://www.youtube.com/watch?v=Kt6QqGoAlvI
Introduction to pytest: A Beginner's Guide
1 hour ago
https://www.youtube.com/watch?v=Kt6QqGoAlvI
YouTube
Python Testing: A Beginner's Guide to Pytest
Our Complete FastAPI course: https://teclado.com/page/fastapi-101
Full code shown in this video: https://gist.github.com/jslvtr/815035d97f7a02d043a44237999dc27c
What is testing? How can you write tests for your Python apps? In this video, I introduce you…
Full code shown in this video: https://gist.github.com/jslvtr/815035d97f7a02d043a44237999dc27c
What is testing? How can you write tests for your Python apps? In this video, I introduce you…
pixegami
Learn Python • #8 Tuples and Sets • More Ways To Store Data!
1 minute ago
https://www.youtube.com/watch?v=cVWHxhBZqv8
Learn Python • #8 Tuples and Sets • More Ways To Store Data!
1 minute ago
https://www.youtube.com/watch?v=cVWHxhBZqv8
YouTube
Learn Python • #8 Tuples and Sets • More Ways To Store Data!
Tuples and Sets are two important data structures in Python that you'll definitely want to know about.
Tuples are immutable sequences of elements, typically used for grouping related data.
Sets, on the other hand, are mutable collections of unique elements.…
Tuples are immutable sequences of elements, typically used for grouping related data.
Sets, on the other hand, are mutable collections of unique elements.…