Skip to content

Commit 6c67ac8

Browse files
committed
adding ch3 all pages
1 parent 556cbec commit 6c67ac8

24 files changed

+163
-17
lines changed

content/pages/02-development-environments/13-screen.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ developing their applications.
2020

2121
<div class="well see-also">Screen is an implementation of the <a href="/terminal-multiplexers.html">terminal multiplexers</a> concept. Learn more in the <a href="/development-environments.html">development environments</a> chapter or view the <a href="/table-of-contents.html">table of contents</a> for all topics.</div>
2222

23+
2324
### Screen resources
2425
* [Learn to use screen, a terminal multiplexer](https://dev.to/thiht/learn-to-use-screen-a-terminal-multiplexer-gl)
2526

content/pages/02-development-environments/15-environment-configuration.markdown

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,15 @@ Either one can be used in your applications but there are slight differences
3535
that can make one better than the other in various situations.
3636

3737
Other useful environment variables resources:
38+
* [The Twelve-Factor App](https://12factor.net/) describes a method for
39+
securing environment data for your applications. The twelve factors are
40+
commonly referenced across many programming ecosystems, not just Python,
41+
so it's worthwhile to familiarize yourself with how to use this method
42+
to configure your applications.
43+
44+
* [Everything You Need to Know About the Twelve-Factor App](https://developer.okta.com/blog/2018/03/30/everything-you-need-to-know-about-the-twelve-factor-app)
45+
breaks down the original twelve-factor app source material and provides
46+
solid additional advice and context.
3847

3948
* [Environment variables on Ubuntu Linux](https://help.ubuntu.com/community/EnvironmentVariables)
4049

content/pages/03-data/10-pony-orm.markdown renamed to content/pages/03-data/09-pony-orm.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
title: Pony ORM
22
category: page
33
slug: pony-orm
4-
sortorder: 0310
4+
sortorder: 0309
55
toc: False
66
sidebartitle: Pony ORM
77
meta: Pony is an object-relational mapper (ORM) library for Python applications.

content/pages/03-data/11-nosql.markdown renamed to content/pages/03-data/10-no-sql-datastore.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
title: NoSQL Data Stores
22
category: page
33
slug: no-sql-datastore
4-
sortorder: 0311
4+
sortorder: 0310
55
toc: False
66
sidebartitle: NoSQL Data Stores
77
meta: NoSQL data stores persistent data in different ways than traditional relational databases. Learn more about NoSQL on Full Stack Python.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
title: Redis
22
category: page
33
slug: redis
4-
sortorder: 0312
4+
sortorder: 0311
55
toc: False
66
sidebartitle: Redis
77
meta: Redis is an in-memory key-value pair data store classified as a NoSQL database and used with Python applications.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
title: MongoDB
22
category: page
33
slug: mongodb
4-
sortorder: 0313
4+
sortorder: 0312
55
toc: False
66
sidebartitle: MongoDB
77
meta: MongoDB is a document-oriented NoSQL database often used as a persistence layer in Python applications.

content/pages/03-data/14-apache-cassandra.markdown renamed to content/pages/03-data/13-apache-cassandra.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
title: Apache Cassandra
22
category: page
33
slug: apache-cassandra
4-
sortorder: 0314
4+
sortorder: 0313
55
toc: False
66
sidebartitle: Apache Cassandra
77
meta: Apache Cassandra is a column-family NoSQL data store occasionally used for persisting data in Python applications.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
title: Neo4j
22
category: page
33
slug: neo4j
4-
sortorder: 0315
4+
sortorder: 0314
55
toc: False
66
sidebartitle: Neo4j
77
meta: Neo4j is a graph NoSQL database that can be used to persist data in Python applications.

content/pages/03-data/16-data-analysis.markdown renamed to content/pages/03-data/15-data-analysis.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
title: Data analysis
22
category: page
33
slug: data-analysis
4-
sortorder: 0316
4+
sortorder: 0315
55
toc: False
66
sidebartitle: Data analysis
77
meta: Data analysis is a broad set of activities that involves cleaning, processing, transforming and understanding a data collection.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
title: pandas
22
category: page
33
slug: pandas
4-
sortorder: 0317
4+
sortorder: 0316
55
toc: False
66
sidebartitle: pandas
77
meta: The Python Data Analysis Library (pandas) is a data structures and analysis library.

0 commit comments

Comments
 (0)