Skip to content

Commit 4806055

Browse files
committed
add new podcast resources
1 parent ec7ce67 commit 4806055

File tree

3 files changed

+68
-33
lines changed

3 files changed

+68
-33
lines changed

content/pages/01-introduction/10-best-python-podcasts.markdown

+59-33
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,40 @@ This page contains a list of active Python-specific and software engineering
1717
high-quality podcasts.
1818

1919

20-
## Favorite podcast episodes
20+
### Python-specific podcasts
21+
These podcasts are run and recorded by Python developers who focus on
22+
topics that are important to our field. Each podcast series has a long
23+
list of previously-recorded episodes that are still relevant even if they
24+
are several years old so you will always have some great material to
25+
listen and learn.
26+
27+
* [Talk Python to Me](https://talkpython.fm) focuses on the
28+
people and organizations coding on Python. Each episode features a
29+
different guest interviewee to talk about his or her work.
30+
31+
* [Podcast.\_\_init\_\_](http://podcastinit.com/) is another regular podcast
32+
that presents stories about Python and interviews "with the people who
33+
make it great".
34+
35+
* [Python Bytes](https://pythonbytes.fm/) is a new podcast from the creators
36+
of the above mentioned "Talk Python to Me" and "Test and Code Podcast".
37+
38+
* [Test and Code Podcast](http://pythontesting.net/test-podcast/) focuses
39+
on [testing](/testing.html) and related topics such as mocking and
40+
[code metrics](/code-metrics.html).
41+
42+
* Professor Philip Guo has a video podcast called
43+
[PG Podcast](http://pgbovine.net/PG-Podcast.htm), typically on
44+
Python subjects.
45+
[All episodes are listed on a separate page](http://pgbovine.net/PG-Podcast-summary.htm).
46+
47+
* [Import This](https://www.kennethreitz.org/import-this/) is an occasional
48+
podcast from [Kenneth Reitz](https://github.com/kennethreitz) and
49+
[Alex Gaynor](https://github.com/alex) with very in-depth interviews with
50+
influential [Python community](/python-community.html) members.
51+
52+
53+
### Favorite podcast episodes
2154
Here are a list of my favorite episodes from various Python podcasts before
2255
we dive into entire podcast recommendations in the next section. Dig into
2356
these episodes to get a feel for various personalities and styles in
@@ -42,45 +75,19 @@ podcast presentation.
4275
how [Python web application deployments](/deployment.html) work.
4376

4477

78+
<div class="well see-also">If you prefer to learn Python by reading check out the <a href="/best-python-resources.html">best Python resources page</a> or <a href="/table-of-contents.html">view all topics</a>.</div>
4579

4680

47-
## Python-specific podcasts
48-
* [Talk Python to Me](https://talkpython.fm) focuses on the
49-
people and organizations coding on Python. Each episode features a
50-
different guest interviewee to talk about his or her work.
81+
### General software development podcasts
82+
These podcasts are not specific to Python but cover relevant software
83+
engineering topics and often have episodes on Python topics. At the
84+
very least you will become a better general software developer by
85+
listening and learning from them.
5186

52-
* [Podcast.\_\_init\_\_](http://podcastinit.com/) is another regular podcast
53-
that presents stories about Python and interviews "with the people who
54-
make it great".
55-
56-
* [Test and Code Podcast](http://pythontesting.net/test-podcast/) focuses
57-
on [testing](/testing.html) and related topics such as mocking and
58-
[code metrics](/code-metrics.html).
59-
60-
* [Python Bytes](https://pythonbytes.fm/) is a new podcast from the creators
61-
of the above mentioned "Talk Python to Me" and "Test and Code Podcast".
62-
63-
* [Import This](https://www.kennethreitz.org/import-this/) is an occasional
64-
podcast from Ken Reitz and Alex Gaynor with very in-depth interviews with
65-
influential Python community members.
66-
67-
* Professor Philip Guo has a video podcast called
68-
[PG Podcast](http://pgbovine.net/PG-Podcast.htm), typically on
69-
Python subjects.
70-
[All episodes are listed on a separate page](http://pgbovine.net/PG-Podcast-summary.htm).
71-
72-
<div class="well see-also">If you prefer to learn by reading check out the <a href="/best-python-resources.html">best Python resources page</a> or <a href="/table-of-contents.html">view all topics</a>.</div>
73-
74-
75-
## General software development podcasts
7687
* [Software Engineering Daily](https://softwareengineeringdaily.com/)
7788
incredibly has a podcast every day with a different developer on a
7889
huge range of relevant development subjects.
7990

80-
* [DataFramed](https://www.datacamp.com/community/podcast) is a data
81-
science podcast that often covers Python libraries and other areas of
82-
interest to people using Python to analyze [data](/data.html).
83-
8491
* [All things Git](https://www.allthingsgit.com/) talks to developers
8592
using, building and working with Git with new episodes every two weeks.
8693

@@ -110,3 +117,22 @@ podcast presentation.
110117
(at 1.5x speed) and it's well worth the 45 to 60 minutes spent
111118
listening to Ben Thompson and James Allworth go deep on a weekly topic.
112119

120+
* [Test Talks](https://joecolantonio.com/testtalks/) examines a software
121+
testing topic each week, usually with a special guest focused on the
122+
area being examined.
123+
124+
125+
### Data science and analysis podcasts
126+
The [data](/data.html) science community does not only use Python as its
127+
core programming language but it plays a big role in almost every
128+
organization performing data analysis. The following podcasts cover
129+
data science broadly and often get specific into Python ecosystem tools.
130+
131+
* [DataFramed](https://www.datacamp.com/community/podcast) is a data
132+
science podcast that often covers Python libraries and other areas of
133+
interest to people using Python to analyze [data](/data.html).
134+
135+
* [Data Skeptic](https://dataskeptic.com/) covers data science, statistics,
136+
machine learning, artificial intelligence and "scientific skepticism".
137+
138+
* [Data stores](http://datastori.es/) is a podcast on data visualization.

content/pages/03-data/18-numpy.markdown

+7
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,13 @@ other scientific computing packages such as [pandas](/pandas.html).
1717
<img src="/img/logos/numpy.jpg" width="100%" alt="NumPy logo.">
1818

1919

20+
### Example NumPy code
21+
* [SmoothLife](https://github.com/duckythescientist/SmoothLife) is an
22+
implementation of [Conway's Game of Life](https://bitstorm.org/gameoflife/)
23+
using NumPy. The project uses a continuous space rather than the
24+
traditional discrete board.
25+
26+
2027
### NumPy resources
2128
* [From Python to NumPy](http://www.labri.fr/perso/nrougier/from-python-to-numpy/)
2229
is an awesome resource that shows how to use your basic

content/pages/05-deployment/38-serverless.markdown

+2
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,8 @@ out how to structure and operate serverless applications.
120120
* [The (fixable) problem with serverless](https://www.iopipe.com/2016/06/the-fixable-problem-with-serverless/)
121121

122122
* [Serverless architectures](http://martinfowler.com/articles/serverless.html)
123+
provides a fantastic overview of the subject with a balanced approach
124+
that includes the drawbacks seen in current serverless platforms.
123125

124126
* [Why the fuss about serverless?](https://hackernoon.com/why-the-fuss-about-serverless-4370b1596da0)
125127
is a wide-ranging post about the history of application development and

0 commit comments

Comments
 (0)