Skip to content

Commit 5a10de0

Browse files
committed
fix several broken links
1 parent 6e60a1e commit 5a10de0

File tree

6 files changed

+5
-19
lines changed

6 files changed

+5
-19
lines changed

content/pages/03-data/17-scipy-numpy.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ following resources are broader walkthroughs for the SciPy ecosystem:
7070
* [Math to Code](https://mathtocode.com/) provides an interactive
7171
tutorial to learn how to implement math in NumPy.
7272

73-
* [101 NumPy Exercises for Data Analysis](https://www.machinelearningplus.com/101-numpy-exercises-python/)
73+
* [101 NumPy Exercises for Data Analysis](https://www.machinelearningplus.com/python/101-numpy-exercises-python/)
7474

7575
* [NumPy: creating and manipulating numerical data](http://www.scipy-lectures.org/intro/numpy/index.html)
7676

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ easier for humans to see patterns, trends and other useful information.
3636

3737
* [Python & OpenGL for Scientific Visualization](https://www.labri.fr/perso/nrougier/python-opengl/)
3838
is a free book that shows how to combine open source tools such as
39-
[Pyglet](https://pyglet.readthedocs.io/en/stable/) and
4039
[PyOpenGL](http://pyopengl.sourceforge.net/) with Python
4140
[data analysis](/data-analysis.html) libraries to generate interactive
4241
scientific data visualizations.
@@ -163,8 +162,7 @@ visualization and gave me ideas for what to build.
163162
* [Engineering Intelligence Through Data Visualization at Uber](https://eng.uber.com/data-viz-intel/)
164163
explains how Uber's data visualization team grew from 1 person to 15
165164
and the output they created along the way, including the open source
166-
tools [react-vis](https://uber.github.io/react-vis/) and
167-
[react-map-gl](https://uber.github.io/react-map-gl/).
165+
tool [react-vis](https://uber.github.io/react-vis/).
168166

169167
* The Practitioner's Guide to System Dashboard Design series covers a
170168
lot of ground for what you should consider when building one form

content/pages/04-web-development/39-code-metrics.markdown

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,10 +151,6 @@ diminishing returns.
151151
covers Pylint, PyFlakes and mypy with a short description of the
152152
advantages and disadvantage for each one.
153153

154-
* [Dynamic tracing a Pony + Python program with DTrace](https://blog.wallaroolabs.com/2017/12/dynamic-tracing-a-pony---python-program-with-dtrace/)
155-
shows how to use dynamic tracing programs to analyze code
156-
at runtime.
157-
158154
* This [Stack Overflow question on Python static code analysis tools](http://stackoverflow.com/questions/1428872/pylint-pychecker-or-pyflakes)
159155
contains comparison discussions of PyLint, PyChecker and PyFlakes.
160156

content/pages/04-web-development/47-bots.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ often also called "chatbots", "assistants" or "agents."
5353
* [Making a Reddit + Facebook Messenger Bot](https://pythontips.com/2017/04/13/making-a-reddit-facebook-messenger-bot/)
5454
builds a bot for two platforms and shows how to deploy it to Heroku.
5555

56-
* [Build a Slack Bot that Mimics Your Colleagues with Python](http://hirelofty.com/blog/how-build-slack-bot-mimics-your-colleague/)
56+
* [Build a Slack Bot that Mimics Your Colleagues with Python](https://hirelofty.com/blog/software-development/how-build-slack-bot-mimics-your-colleague/)
5757
is a humorous post that uses the
5858
[markovify](https://github.com/jsvine/markovify) Markov Chains library to
5959
generate responses that are similar to ones other Slack users have said.

content/pages/04-web-development/51-api-integration.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ across many implementation areas.
2626
add them to applications with a bunch of useful code examples.
2727

2828
* Some developers prefer to use
29-
[Requests](http://docs.python-requests.org/en/latest/) instead of an API's
29+
[Requests](https://requests.readthedocs.io/en/master/) instead of an API's
3030
helper library. In that case check out this
3131
[tutorial on using requests to access web APIs](http://engineering.hackerearth.com/2014/08/21/python-requests-module/).
3232

@@ -98,7 +98,7 @@ across many implementation areas.
9898
requests and responses.
9999

100100
1. Evaluate whether to use a helper library or work with
101-
[Requests](http://docs.python-requests.org/en/latest/). Helper libraries
101+
[Requests](https://requests.readthedocs.io/en/master/). Helper libraries
102102
are usually easier to get started with while Requests gives you more
103103
control over the HTTP calls.
104104

content/pages/05-deployment/00-deployment.markdown

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -112,14 +112,6 @@ guide as they are considered advanced deployment techniques.
112112
defines delivery versus deployment and walks through a continuous deployment
113113
workflow.
114114

115-
* [Automation for the People](https://gist.github.com/classam/9e07a36aa63624ca2dda75a1367a53c6)
116-
provides an awesome overview of one developer's story for how he gradually
117-
learned about deployment automation. The story follows my own journey in
118-
many ways, from starting with brittle [Bash](/bourne-again-shell-bash.html)
119-
scripts, moving to Fabric and then on to [Ansible](/ansible.html) for
120-
higher-level [configuration management](/configuration-management.html)
121-
and continuous deployment pipelines.
122-
123115
* [5 ways to deploy your Python application in 2017](https://www.youtube.com/watch?v=vGphzPLemZE)
124116
is a talk from
125117
[PyCon US 2017](https://www.youtube.com/channel/UCrJhliKNQ8g0qoE_zvL8eVg/videos)

0 commit comments

Comments
 (0)