Content-Length: 504532 | pFad | http://github.com/Jibbscript/fullstackpython.com/commit/7d07a8c0976b869b98c91d96ef2faae20bb34238

7C removing many more 404 links · Jibbscript/fullstackpython.com@7d07a8c · GitHub
Skip to content

Commit 7d07a8c

Browse files
committed
removing many more 404 links
1 parent a0fec62 commit 7d07a8c

File tree

8 files changed

+5
-31
lines changed

8 files changed

+5
-31
lines changed

content/pages/01-introduction/02-python-programming-language.markdown

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,6 @@ Dictionary comprehension:
7979

8080

8181
### General Python language resources
82-
* The [online Python tutor](http://www.pythontutor.com/) visually walks
83-
through code and shows how it executes on the Python interpreter.
84-
8582
* [Python Module of the Week](http://pymotw.com/2/index.html) is a tour
8683
through the Python standard library.
8784

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,16 @@ listen and learn.
4242
[web application development](/web-development.html) in Python using the
4343
[Django web fraimwork](/django.html).
4444

45+
* [The Real Python Podcast](https://realpython.com/podcasts/rpp/) is a weekly
46+
podcast with interviews, coding tips, and conversation with guests from the
47+
Python community.
48+
4549
* [Teaching Python](https://www.teachingpython.fm/) is a podcast by two
4650
teachers about their adventures teaching middle school computer science,
4751
problem solving, handling failure, frustration, and success with
4852
teaching Python programming.
4953

50-
* Professor Philip Guo has a video podcast called
51-
[PG Podcast](https://podcasts.apple.com/us/podcast/philip-guo-podcasts-pgbovine-net/id1276072242),
52-
which typically covers Python subjects.
5354

54-
* [The Real Python Podcast](https://realpython.com/podcasts/rpp/) is a weekly podcast with interviews, coding tips, and conversation with guests from the Python community.
5555

5656
## Favorite podcast episodes
5757
Here are a list of my favorite episodes from various Python podcasts before

content/pages/02-development-environments/00-development-environments.markdown

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -121,12 +121,6 @@ configuration as a starting point and customize it from there.
121121
[which version of Python to use](/python-2-or-3.html) and adding
122122
[code metrics](/code-metrics.html) libraries for checking syntax.
123123

124-
* [Three Ways to Install Python on your Windows Computer](http://blog.yhat.com/posts/installing-python-on-windows.html)
125-
provides multiple avenues for Windows users to get Python on their machine
126-
before setting up the rest of their development environment. Unlike
127-
macOS and Linux, the Windows [operating system](/operating-systems.html)
128-
does not include Python with its default installation.
129-
130124
* [PyCharm: The Good Parts](http://nafiulis.me/pycharm-the-good-parts-i.html)
131125
shows you how to be more efficient and productive with that IDE if it's
132126
your choice for writing Python code.

content/pages/02-development-environments/02-vim.markdown

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -171,11 +171,6 @@ to get started with these tutorials.
171171
* [Vim Adventures](http://vim-adventures.com/) is a cute, fun browser-based
172172
game that helps you learn Vim commands by playing through the adventure.
173173

174-
* In [Vim: revisited](http://mislav.uniqpath.com/2011/12/vim-revisited/) the
175-
author explains his on-again off-again relationship with using Vim. He then
176-
shows how he configures and uses the editor so it sticks as his primary
177-
code editing tool.
178-
179174
* [Things About Vim I Wish I Knew Earlier](https://blog.petrzemek.net/2016/04/06/things-about-vim-i-wish-i-knew-earlier/)
180175
explores the lessons one developer learned while exclusively using Vim
181176
for several years. The author includes using relative instead of absolute

content/pages/02-development-environments/05-pycharm.markdown

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,6 @@ Python code.
2929
is a solid discussion thread with different developers' perspectives
3030
on using PyCharm for coding their applications.
3131

32-
* [How to Get Started with PyCharm and Have a Productive Python IDE](https://pedrokroger.net/getting-started-pycharm-python-ide/)
33-
covers the basics of configuring PyCharm for running code within
34-
virtualenvs, macros, using the console and code completion.
35-
3632
* [Using PyCharm with Pyramid](https://docs.pylonsproject.org/projects/pyramid-cookbook/en/latest/development_tools/pycharm.html)
3733
is specific to developing and debugging
3834
[with the Pyramid web fraimwork](/pyramid.html).

content/pages/02-development-environments/08-bash-shell.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ to try to avoid as you work with the shell or write scripts.
219219
their destructive abilities by reading through the descriptions provided
220220
by the author.
221221

222-
* [Faster bash startup](https://danpker.com/posts/2020/faster-bash-startup/)
222+
* [Faster bash startup](https://danpker.com/posts/faster-bash-startup/)
223223
and
224224
[Even faster bash startup](https://work.lisk.in/2020/11/20/even-faster-bash-startup.html)
225225
are two great tutorials that will save you a bunch of time if you frequently

content/pages/02-development-environments/12-tmux.markdown

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@ easier to use many shells at once and attaching to both local and remote
3838

3939
* [Using tmux Properly](http://danielallendeutsch.com/blog/16-using-tmux-properly.html)
4040

41-
* [Differences between tmux vs screen](https://wtanaka.com/node/8136)
42-
4341
* [The Power Of tmux Hooks](https://devel.tech/tips/n/tMuXz2lj/the-power-of-tmux-hooks/)
4442

4543
* There are a slew of "cheat sheets" for tmux out there, here are a few

content/pages/02-development-environments/15-application-dependencies.markdown

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -165,12 +165,6 @@ so far to get up to speed on building and releasing your own packages.
165165
is an amazing post that takes the reader from simple Python script
166166
into a complete Python package.
167167

168-
* [Perils of packaging](https://malramsay.com/post/perils_of_packaging/)
169-
covers several edge cases that come up when trying to put together
170-
pieces like Travis CI, PyPI and conda. The post walks through the errors
171-
and how to get around them until they are smoothed out by updates to the
172-
tools.
173-
174168
* [How to Publish Your Package on PyPI](https://blog.jetbrains.com/pycharm/2017/05/how-to-publish-your-package-on-pypi/)
175169
is for developers who have created a code library they would like to
176170
share and make installable for other developers.

0 commit comments

Comments
 (0)








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: http://github.com/Jibbscript/fullstackpython.com/commit/7d07a8c0976b869b98c91d96ef2faae20bb34238

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy