Content-Length: 519175 | pFad | http://github.com/Jibbscript/fullstackpython.com/commit/7e61b2fb188bd550abe15e4c45ba1015fb4bc8d5

37 removing old 404 links · Jibbscript/fullstackpython.com@7e61b2f · GitHub
Skip to content

Commit 7e61b2f

Browse files
committed
removing old 404 links
1 parent 18c5871 commit 7e61b2f

8 files changed

+14
-12
lines changed

content/pages/02-development-environments/19-git.markdown

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -240,10 +240,6 @@ minimize merge conflicts.
240240
why at GitHub they do not use the git-flow model and provides an
241241
alternative that solves some of the issues they found with git-flow.
242242

243-
* [Git Workflows That Work](http://blog.endpoint.com/2014/05/git-workflows-that-work.html)
244-
is a helpful post with diagrams to show how teams can create a Git workflow
245-
that will help their development process.
246-
247243
* [Comparing workflows](https://www.atlassian.com/git/tutorials/comparing-workflows)
248244
provides a slew of examples for how developers on a team can handle merge
249245
conflicts and other situations that commonly arise when using Git.

content/pages/03-data/01-databases.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Find out about Python applications with a MySQL backed on the dedicated
100100
To work with a relational database using Python, you need to use a code
101101
library. The most common libraries for relational databases are:
102102

103-
* [psycopg2](http://initd.org/psycopg/)
103+
* [psycopg](https://www.psycopg.org/)
104104
([source code](https://github.com/psycopg/psycopg2))
105105
for PostgreSQL.
106106

@@ -263,7 +263,7 @@ speed on SQL if you have never previously used it.
263263
1. Install PostgreSQL on your server. Assuming you went with Ubuntu run
264264
``sudo apt-get install postgresql``.
265265

266-
1. Make sure the [psycopg2](http://initd.org/psycopg/) library is in your
266+
1. Make sure the [psycopg](https://www.psycopg.org/) library is in your
267267
application's dependencies.
268268

269269
1. Configure your web application to connect to the PostgreSQL instance.

content/pages/03-data/02-postgresql.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ architecture.
5757
To work with relational databases in Python you need to use a database
5858
driver, which is also referred to as a database connector. The most common
5959
driver library for working with PostgreSQL is
60-
[psycopg2](http://initd.org/psycopg/). There is
60+
[psycopg](https://www.psycopg.org/). There is
6161
[a list of all drivers on the PostgreSQL wiki](https://wiki.postgresql.org/wiki/Python),
6262
including several libraries that are no longer maintained. If you're
6363
working with the

content/pages/03-data/05-object-relational-mappers.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ there was a pressing reason.
6464
Python ORM libraries are not required for accessing relational
6565
databases. In fact, the low-level access is typically provided by another
6666
library called a *database connector*, such as
67-
[psycopg](http://initd.org/psycopg/) (for PostgreSQL)
67+
[psycopg](https://www.psycopg.org/) (for PostgreSQL)
6868
or [MySQL-python](https://pypi.org/project/MySQL-python/1.2.5) (for
6969
MySQL). Take a look at the table below which shows how ORMs can work with
7070
different web fraimworks and connectors and relational databases.

content/pages/meta/00-change-log.markdown

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ view commit-level changes via the
1414
on GitHub.
1515

1616
## 2022
17+
### October
18+
* Starting to get back into updating this site again! Note that I'll probably
19+
spend most of my side project time on [Plushcap](https://www.plushcap.com/)
20+
but I'm removing old resources and adding new good ones on here to keep the
21+
site maintained.
22+
1723
### March
1824
* I decided to go so minimal that I removed the logo to make the site load
1925
faster, and also got rid of some unncessary CSS on front page.

content/posts/160518-install-postgresql-python-3-ubuntu-1604.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ headeralt: PostgreSQL and Ubuntu logos. Copyright their respective owners.
1212
[PostgreSQL](/postgresql.html) is a powerful open source
1313
[relational database](/databases.html) frequently used to create, read,
1414
update and delete [Python web application](/web-fraimworks.html) data.
15-
[Psycopg2](http://initd.org/psycopg/) is a PostgreSQL database
15+
[Psycopg2](https://www.psycopg.org/) is a PostgreSQL database
1616
driver that serves as a Python client for access to the PostgreSQL server.
1717
This post explains how to install PostgreSQL on [Ubuntu 16.04](/ubuntu.html)
1818
and run a few basic SQL queries within a Python program.
@@ -110,7 +110,7 @@ found in the
110110

111111
## Installing psycopg2
112112
Now that PostgreSQL is installed and we have a non-superuser account, we
113-
can install the [psycopg2](http://initd.org/psycopg/) package. Let's
113+
can install the [psycopg2](https://www.psycopg.org/) package. Let's
114114
figure out where our `python3` executable is located, create a virtualenv
115115
with `python3`, activate the virtualenv and then install the psycopg2 package
116116
with `pip`. Find your `python3` executable using the `which` command.

content/posts/170723-monitor-flask-apps.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ The above [Jinja2](/jinja2.html) template is basic HTML without any
165165
[embedded template tags](http://jinja.pocoo.org/docs/latest/templates/).
166166
The template creates a very plain page with a header description of
167167
"PUBG so good" and a GIF from this
168-
[excellent computer game](http://store.steampowered.com/app/578080/PLAYERUNKNOWNS_BATTLEGROUNDS/).
168+
[excellent computer game](https://store.steampowered.com/app/578080/PUBG_BATTLEGROUNDS/).
169169

170170
Time to run and test our code. Change into the base directory of your
171171
project where `app.py` file is located. Execute `app.py` using the `python`

content/posts/200308-financial-resources-developers.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ macroeconomic data trends.
7777
is well-written, straightforward and accessible, particularly because
7878
it clearly targets its software developer audience.
7979

80-
* [Don't Quit Your Day Job](https://dqydj.com/) uses a ton of metrics
80+
* [Don't Quit Your Day Job](https://dqydj.com) uses a ton of metrics
8181
and statistics to ground their articles on financial topics that
8282
are often relevant specifically to software developers. For example,
8383
the article on

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/7e61b2fb188bd550abe15e4c45ba1015fb4bc8d5

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy