Skip to content

Commit e22d9cf

Browse files
committed
new why python resource and fixed a few broken links
1 parent 3557cd3 commit e22d9cf

File tree

7 files changed

+27
-9
lines changed

7 files changed

+27
-9
lines changed

all.html

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -208,11 +208,17 @@ <h3>More perspectives on why to use Python</h3>
208208
<li>
209209
<p><a href="http://sebastianraschka.com/blog/2015/why-python.html">Python, Machine Learning, and Language Wars</a>
210210
compares Python with R, MATLAB and Julia for data science work. While
211-
Python is great for <a href="/deployments.html">deployment automation</a> and
211+
Python is great for <a href="/deployment.html">deployment automation</a> and
212212
<a href="/web-development.html">web development</a>, many non-developers are first
213213
introduced to the language and ecosystem while getting data analysis
214214
work done.</p>
215215
</li>
216+
<li>
217+
<p><a href="https://blog.appdynamics.com/python/python-beyond-just-web-apps/">Python: Beyond Just Web Apps</a>
218+
supplies non-web development project examples that use Python. The article
219+
also does a solid job comparing and contrasting Python to other common
220+
programming languages such as Java, Ruby and JavaScript.</p>
221+
</li>
216222
</ul>
217223
<h1>Python 2 or 3?</h1>
218224
<p>The Python programming language is currently in the midst of a long-term
@@ -871,7 +877,7 @@ <h2>Favorite podcast episodes</h2>
871877
<li>
872878
<p><a href="https://talkpython.fm/episodes/show/26/deploying-python-web-applications-updated">Deploying Python Web Applications</a>.
873879
<em>Spoiler alert</em>: this is the episode I was on Talk Python to Me explaining
874-
how <a href="/deployments.html">Python web application deployments</a> work.</p>
880+
how <a href="/deployment.html">Python web application deployments</a> work.</p>
875881
</li>
876882
</ul>
877883
<h2>Python-specific podcasts</h2>
@@ -1361,7 +1367,7 @@ <h2>Notable Elisp Packages</h2>
13611367
completion framework.</p>
13621368
</li>
13631369
<li>
1364-
<p><a href="http://flycheck.github.io/">Flycheck</a> provides syntax checking.</p>
1370+
<p><a href="http://www.flycheck.org/en/latest/">Flycheck</a> provides syntax checking.</p>
13651371
</li>
13661372
<li>
13671373
<p><a href="https://github.com/proofit404/anaconda-mode/">anaconda-mode</a> is specific

best-python-podcasts.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ <h2>Favorite podcast episodes</h2>
6767
<li>
6868
<p><a href="https://talkpython.fm/episodes/show/26/deploying-python-web-applications-updated">Deploying Python Web Applications</a>.
6969
<em>Spoiler alert</em>: this is the episode I was on Talk Python to Me explaining
70-
how <a href="/deployments.html">Python web application deployments</a> work.</p>
70+
how <a href="/deployment.html">Python web application deployments</a> work.</p>
7171
</li>
7272
</ul>
7373
<h2>Python-specific podcasts</h2>

emacs.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ <h2>Notable Elisp Packages</h2>
9696
completion framework.</p>
9797
</li>
9898
<li>
99-
<p><a href="http://flycheck.github.io/">Flycheck</a> provides syntax checking.</p>
99+
<p><a href="http://www.flycheck.org/en/latest/">Flycheck</a> provides syntax checking.</p>
100100
</li>
101101
<li>
102102
<p><a href="https://github.com/proofit404/anaconda-mode/">anaconda-mode</a> is specific

source/content/pages/01-introduction/03-why-use-python.markdown

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,13 @@ displays [The Zen of Python](https://www.python.org/dev/peps/pep-0020/).
115115

116116
* [Python, Machine Learning, and Language Wars](http://sebastianraschka.com/blog/2015/why-python.html)
117117
compares Python with R, MATLAB and Julia for data science work. While
118-
Python is great for [deployment automation](/deployments.html) and
118+
Python is great for [deployment automation](/deployment.html) and
119119
[web development](/web-development.html), many non-developers are first
120120
introduced to the language and ecosystem while getting data analysis
121121
work done.
122+
123+
* [Python: Beyond Just Web Apps](https://blog.appdynamics.com/python/python-beyond-just-web-apps/)
124+
supplies non-web development project examples that use Python. The article
125+
also does a solid job comparing and contrasting Python to other common
126+
programming languages such as Java, Ruby and JavaScript.
127+

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ podcast presentation.
3232

3333
* [Deploying Python Web Applications](https://talkpython.fm/episodes/show/26/deploying-python-web-applications-updated).
3434
*Spoiler alert*: this is the episode I was on Talk Python to Me explaining
35-
how [Python web application deployments](/deployments.html) work.
35+
how [Python web application deployments](/deployment.html) work.
3636

3737

3838
## Python-specific podcasts

source/content/pages/02-development-environments/04-emacs.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ into that hook to perform necessary actions before the exiting completes.
6262
* [company-mode](http://company-mode.github.io/) creates a modular in-buffer
6363
completion framework.
6464

65-
* [Flycheck](http://flycheck.github.io/) provides syntax checking.
65+
* [Flycheck](http://www.flycheck.org/en/latest/) provides syntax checking.
6666

6767
* [anaconda-mode](https://github.com/proofit404/anaconda-mode/) is specific
6868
to Python development and allows code navigation, documentation lookup

why-use-python.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,11 +146,17 @@ <h3>More perspectives on why to use Python</h3>
146146
<li>
147147
<p><a href="http://sebastianraschka.com/blog/2015/why-python.html">Python, Machine Learning, and Language Wars</a>
148148
compares Python with R, MATLAB and Julia for data science work. While
149-
Python is great for <a href="/deployments.html">deployment automation</a> and
149+
Python is great for <a href="/deployment.html">deployment automation</a> and
150150
<a href="/web-development.html">web development</a>, many non-developers are first
151151
introduced to the language and ecosystem while getting data analysis
152152
work done.</p>
153153
</li>
154+
<li>
155+
<p><a href="https://blog.appdynamics.com/python/python-beyond-just-web-apps/">Python: Beyond Just Web Apps</a>
156+
supplies non-web development project examples that use Python. The article
157+
also does a solid job comparing and contrasting Python to other common
158+
programming languages such as Java, Ruby and JavaScript.</p>
159+
</li>
154160
</ul>
155161
<h3>What else do you want to learn about Python?</h3>
156162
<div class="row">

0 commit comments

Comments
 (0)