Python Bytes: #226 Teaching Python podcast on the podcast!
Link: https://pythonbytes.fm/episodes/show/226/teaching-python-podcast-on-the-podcast
<p>Special guests: </p>
<ul>
<li><a href="https://twitter.com/kellypared"><strong>Kelly Schuster-Pared</strong></a><a href="https://twitter.com/kellypared"><strong>es</strong></a></li>
<li><a href="h
Link: https://pythonbytes.fm/episodes/show/226/teaching-python-podcast-on-the-podcast
<p>Special guests: </p>
<ul>
<li><a href="https://twitter.com/kellypared"><strong>Kelly Schuster-Pared</strong></a><a href="https://twitter.com/kellypared"><strong>es</strong></a></li>
<li><a href="h
pythonbytes.fm
Teaching Python podcast on the podcast!
News and announcements from the Python community for the week of Mar 25th, 2021
Python Pool: 5 Techniques to Use List pop() Method in Python
Link: https://www.pythonpool.com/python-list-pop/?utm_source=rss&utm_medium=rss&utm_campaign=python-list-pop
Introduction
In Python, we have lists, which are used to store items of different data types in an ordered sequence. There are many ways to delete an element from the list such as pop, remove, etc. In
Link: https://www.pythonpool.com/python-list-pop/?utm_source=rss&utm_medium=rss&utm_campaign=python-list-pop
Introduction
In Python, we have lists, which are used to store items of different data types in an ordered sequence. There are many ways to delete an element from the list such as pop, remove, etc. In
Python Pool
5 Techniques to Use List pop() Method in Python - Python Pool
List pop() is the inbuilt function in python through which we can pop out the last element from the list if no parameter is passed
The Digital Cat: How to write a Pelican theme for your static website
Link: https://www.thedigitalcatonline.com/blog/2021/03/25/how-to-write-a-pelican-theme-for-your-static-website/
I run The Digital Cat using a static site generator called Pelican, created by my friend Justin Mayer and actively maintained by him and other developers. I also gave some minor contributions to the p
Link: https://www.thedigitalcatonline.com/blog/2021/03/25/how-to-write-a-pelican-theme-for-your-static-website/
I run The Digital Cat using a static site generator called Pelican, created by my friend Justin Mayer and actively maintained by him and other developers. I also gave some minor contributions to the p
Thedigitalcatonline
How to write a Pelican theme for your static website
A full-fledged tutorial that shows how to convert an HTML template into a Pelican theme
EuroPython: 20th Anniversary of EuroPython
Link: https://blog.europython.eu/20th-anniversary-of-europython/
This year's conference will mark the 20th edition of the EuroPython conference.Since we started touring Europe in 2002 in Charleroi, Belgium, we have come a long way. The conference has grown from the
Link: https://blog.europython.eu/20th-anniversary-of-europython/
This year's conference will mark the 20th edition of the EuroPython conference.Since we started touring Europe in 2002 in Charleroi, Belgium, we have come a long way. The conference has grown from the
EuroPython Blog
20th Anniversary of EuroPython
This year's conference will mark the 20th edition of the EuroPython conference. Since we started touring Europe in 2002 in Charleroi, Belgium, we have come a long way. The conference has grown from the initial 240 to around 1200-1400 attendees every year.…
EuroPython Society: 20th Anniversary of EuroPython
Link: https://www.europython-society.org/20th-anniversary-of-europython/
This year's conference will mark the 20th edition of the EuroPython conference:Since we started touring Europe in 2002 in Charleroi, Belgium, we have come a long way. The conference has grown from the
Link: https://www.europython-society.org/20th-anniversary-of-europython/
This year's conference will mark the 20th edition of the EuroPython conference:Since we started touring Europe in 2002 in Charleroi, Belgium, we have come a long way. The conference has grown from the
EuroPython Society
20th Anniversary of EuroPython
This year's conference will mark the 20th edition of the EuroPython conference: Since we started touring Europe in 2002 in Charleroi, Belgium, we have come a long way. The conference has grown from the initial 240 to around 1200-1400 attendees every year.…
Kushal Das: The correct spelling is Tor
Link: https://kushaldas.in/posts/the-correct-spelling-is-tor.html
The correct spelling is Tor, not TOR or any other variations.
Please use the correct spelling of the project.
Link: https://kushaldas.in/posts/the-correct-spelling-is-tor.html
The correct spelling is Tor, not TOR or any other variations.
Please use the correct spelling of the project.
Paolo Melchiorre: Python Web Conf 2021
Link: https://www.paulox.net/2021/03/25/python-web-conf-2021/
The Python Web Conf is the most in-depth Python conference for web developers
Link: https://www.paulox.net/2021/03/25/python-web-conf-2021/
The Python Web Conf is the most in-depth Python conference for web developers
Paolo Melchiorre
Paolo Melchiorre - Python Web Conf 2021
The Python Web Conf is the most in-depth Python conference for web developers.
Ben Cook: SageMaker Studio Quick Start
Link: https://jbencook.com/sagemaker-studio-quick-start/
A step-by-step quick start guide for SageMaker Studio. Start a Studio session, launch a notebook on a GPU instance and run object detection inference with a detectron2 pre-trained model.
Link: https://jbencook.com/sagemaker-studio-quick-start/
A step-by-step quick start guide for SageMaker Studio. Start a Studio session, launch a notebook on a GPU instance and run object detection inference with a detectron2 pre-trained model.
jbencook
SageMaker Studio Quick Start - jbencook
A step-by-step quick start guide for SageMaker Studio. Start a Studio session, launch a notebook on a GPU instance and run object detection inference with a detectron2 pre-trained model.
Ben Cook: NumPy Meshgrid: Understanding np.meshgrid()
Link: https://jbencook.com/numpy-meshgrid/
You can create multi-dimensional coordinate arrays using the np.meshgrid() function, which is also available in PyTorch and TensorFlow. But watch out! PyTorch uses different indexing by default so the
Link: https://jbencook.com/numpy-meshgrid/
You can create multi-dimensional coordinate arrays using the np.meshgrid() function, which is also available in PyTorch and TensorFlow. But watch out! PyTorch uses different indexing by default so the
jbencook
NumPy Meshgrid: Understanding np.meshgrid() - jbencook
You can create multi-dimensional coordinate arrays using the np.meshgrid() function, which is also available in PyTorch and TensorFlow. But watch out! PyTorch uses different indexing by default so the results might not be the same.
Ben Cook: Linear Interpolation in Python: An np.interp() Example
Link: https://jbencook.com/numpy-interpolate/
It's easy to linearly interpolate a 1-dimensional set of points in Python using the np.interp() function from NumPy.
Link: https://jbencook.com/numpy-interpolate/
It's easy to linearly interpolate a 1-dimensional set of points in Python using the np.interp() function from NumPy.
jbencook
Linear Interpolation in Python: An np.interp() Example - jbencook
It's easy to linearly interpolate a 1-dimensional set of points in Python using the np.interp() function from NumPy.
Ben Cook: Binary Cross Entropy Explained
Link: https://jbencook.com/binary-cross-entropy/
A simple NumPy implementation of the binary cross entropy loss function and some intuition about why it works.
Link: https://jbencook.com/binary-cross-entropy/
A simple NumPy implementation of the binary cross entropy loss function and some intuition about why it works.
jbencook
Binary Cross Entropy Explained - jbencook
A simple NumPy implementation of the binary cross entropy loss function and some intuition about why it works.
Ben Cook: NumPy All: Understanding np.all()
Link: https://jbencook.com/numpy-all/
The np.all() function tests whether all elements in a NumPy array evaluate to true.
Link: https://jbencook.com/numpy-all/
The np.all() function tests whether all elements in a NumPy array evaluate to true.
jbencook
NumPy All: Understanding np.all() - jbencook
The np.all() function tests whether all elements in a NumPy array evaluate to true.
Ben Cook: Finding the Mode of an Empirical Continuous Distribution
Link: https://jbencook.com/mode-of-continuous-distribution/
You can find the mode of an empirical continuous distribution by plotting the histogram and looking for the maximum bin.
Link: https://jbencook.com/mode-of-continuous-distribution/
You can find the mode of an empirical continuous distribution by plotting the histogram and looking for the maximum bin.
jbencook
Finding the Mode of an Empirical Continuous Distribution - jbencook
You can find the mode of an empirical continuous distribution by plotting the histogram and looking for the maximum bin.
Ben Cook: NumPy Where: Understanding np.where()
Link: https://jbencook.com/numpy-where/
The NumPy where function is like a vectorized switch that you can use to combine two arrays.
Link: https://jbencook.com/numpy-where/
The NumPy where function is like a vectorized switch that you can use to combine two arrays.
jbencook
NumPy Where: Understanding np.where() - jbencook
The NumPy where function is like a vectorized switch that you can use to combine two arrays.
Ben Cook: TorchVision Transforms
Link: https://jbencook.com/torchvision-transforms/
TorchVision, a PyTorch computer vision package, has a great API for image pre-processing in its torchvision.transforms module. This post gives some basic usage examples, describes the API and shows yo
Link: https://jbencook.com/torchvision-transforms/
TorchVision, a PyTorch computer vision package, has a great API for image pre-processing in its torchvision.transforms module. This post gives some basic usage examples, describes the API and shows yo
jbencook
TorchVision Transforms: Image Preprocessing in PyTorch
This post explains the torchvision.transforms module by describing the API and showing you how to create custom image transforms.
Ben Cook: Filtering DataFrames with the .query() Method in Pandas
Link: https://jbencook.com/pandas-query/
Pandas provides a .query() method on DataFrame's with a convenient string syntax for filtering DataFrames. This post describes the method and gives simple usage examples.
Link: https://jbencook.com/pandas-query/
Pandas provides a .query() method on DataFrame's with a convenient string syntax for filtering DataFrames. This post describes the method and gives simple usage examples.
jbencook
Filtering DataFrames with the .query() Method in Pandas - jbencook
Pandas provides a .query() method on DataFrame's with a convenient string syntax for filtering DataFrames. This post describes the method and gives simple usage examples.
Python Morsels: Tuple unpacking
Link: https://www.pythonmorsels.com/topics/tuple-unpacking/
Transcript
Let's talk about tuple unpacking in Python.
An alternative to hard-coded indexes
We have a three-item tuple, called p:
>>> p = (2, 1, 3)
We can access each of the things in this tuple b
Link: https://www.pythonmorsels.com/topics/tuple-unpacking/
Transcript
Let's talk about tuple unpacking in Python.
An alternative to hard-coded indexes
We have a three-item tuple, called p:
>>> p = (2, 1, 3)
We can access each of the things in this tuple b
Pythonmorsels
Tuple unpacking
Instead of using hard-coded indices to get tuple elements, use tuple unpacking to give descriptive names to each item. Important items should have a name instead of a number.
Janusworx: Thoughts on Setting Up a Blog
Link: https://janusworx.com/blog/thoughts-on-setting-up-a-blog/
This post was first sent to my newsletter on March 19th, 2021.
You really ought to subscribe :)
I blame Mahe for this post.
Hey, Jason!
Can you please write an article on how to build a website l
Link: https://janusworx.com/blog/thoughts-on-setting-up-a-blog/
This post was first sent to my newsletter on March 19th, 2021.
You really ought to subscribe :)
I blame Mahe for this post.
Hey, Jason!
Can you please write an article on how to build a website l
Janusworx
Thoughts on Setting Up a Blog
This post was first sent to my newsletter on March 19th, 2021.
You really ought to subscribe :)
I blame Mahe for this post.
Hey, Jason!
Can you please write an article on how to build a website
You really ought to subscribe :)
I blame Mahe for this post.
Hey, Jason!
Can you please write an article on how to build a website
Real Python: The Real Python Podcast – Episode #53: Improving the Learning Experience on Real Python
Link: https://realpython.com/podcasts/rpp/53/
If you haven't visited the website lately, then you're missing out on the updates to realpython.com! The site features a completely refreshed layout with multiple sections to help you take advantage o
Link: https://realpython.com/podcasts/rpp/53/
If you haven't visited the website lately, then you're missing out on the updates to realpython.com! The site features a completely refreshed layout with multiple sections to help you take advantage o
Realpython
Episode #53: Improving the Learning Experience on Real Python – The Real Python Podcast
If you haven't visited the website lately, then you're missing out on the updates to realpython.com! The site features a completely refreshed layout with multiple sections to help you take advantage of even more great educational Python content. This week…
Talk Python to Me: #309 What ML Can Teach Us About Life: 7 Lessons
Link: https://talkpython.fm/episodes/show/309/what-ml-can-teach-us-about-life-7-lessons
Machine learning and data science are full of best practices and important workflows. Can we extrapolate these to our broader lives? Eugene Yan and I give it a shot on this slightly more philosophical
Link: https://talkpython.fm/episodes/show/309/what-ml-can-teach-us-about-life-7-lessons
Machine learning and data science are full of best practices and important workflows. Can we extrapolate these to our broader lives? Eugene Yan and I give it a shot on this slightly more philosophical
talkpython.fm
What ML Can Teach Us About Life: 7 Lessons
Talk Python to Me is a weekly podcast hosted by developer and entrepreneur Michael Kennedy. We dive deep into the popular packages and software developers, data scientists, and incredible hobbyists doing amazing things with Python. If you're new to Python…