Skip to content

Commit 0462580

Browse files
committed
new django and database resources
1 parent aad93f4 commit 0462580

File tree

8 files changed

+32
-1
lines changed

8 files changed

+32
-1
lines changed

all.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,11 @@ <h2>Django tutorials</h2>
249249
<li>
250250
<p><a href="https://realpython.com/learn/start-django/">Starting a Django Project</a> answers the question, “How do I set up a Django (1.5, 1.6, or 1.7) project from scratch?”</p>
251251
</li>
252+
<li>
253+
<p><a href="http://www.caktusgroup.com/blog/2014/11/10/Using-Amazon-S3-to-store-your-Django-sites-static-and-media-files/">Using Amazon S3 to Store your Django Site's Static and Media Files</a>
254+
is a well written guide to a question commonly asked about static and
255+
media file serving.</p>
256+
</li>
252257
</ul>
253258
<h2>Django videos</h2>
254259
<ul>
@@ -1946,6 +1951,11 @@ <h2>Database resources</h2>
19461951
the time to read.</p>
19471952
</li>
19481953
<li>
1954+
<p><a href="http://www.pg-versus-ms.com/">PostgreSQL vs. MS SQL Server</a> is one
1955+
perspective on the differences between the two database servers from a
1956+
data analyst.</p>
1957+
</li>
1958+
<li>
19491959
<p><a href="http://db-engines.com/en/ranking">DB-Engines</a> ranks the most popular
19501960
database management systems.</p>
19511961
</li>
@@ -4089,6 +4099,7 @@ <h1>Change Log</h1>
40894099
<h2>2014</h2>
40904100
<h3>November</h3>
40914101
<ul>
4102+
<li>More Django and database resources.</li>
40924103
<li>Revising development environments page and adding new resources.</li>
40934104
<li>Adding my new Flask blog post on choose your own adventure presentations
40944105
along with the open source repository.</li>

change-log.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ <h1>Change Log</h1>
4646
<h2>2014</h2>
4747
<h3>November</h3>
4848
<ul>
49+
<li>More Django and database resources.</li>
4950
<li>Revising development environments page and adding new resources.</li>
5051
<li>Adding my new Flask blog post on choose your own adventure presentations
5152
along with the open source repository.</li>

databases.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,11 @@ <h2>Database resources</h2>
199199
the time to read.</p>
200200
</li>
201201
<li>
202+
<p><a href="http://www.pg-versus-ms.com/">PostgreSQL vs. MS SQL Server</a> is one
203+
perspective on the differences between the two database servers from a
204+
data analyst.</p>
205+
</li>
206+
<li>
202207
<p><a href="http://db-engines.com/en/ranking">DB-Engines</a> ranks the most popular
203208
database management systems.</p>
204209
</li>

django.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,11 @@ <h2>Django tutorials</h2>
150150
<li>
151151
<p><a href="https://realpython.com/learn/start-django/">Starting a Django Project</a> answers the question, “How do I set up a Django (1.5, 1.6, or 1.7) project from scratch?”</p>
152152
</li>
153+
<li>
154+
<p><a href="http://www.caktusgroup.com/blog/2014/11/10/Using-Amazon-S3-to-store-your-Django-sites-static-and-media-files/">Using Amazon S3 to Store your Django Site's Static and Media Files</a>
155+
is a well written guide to a question commonly asked about static and
156+
media file serving.</p>
157+
</li>
153158
</ul>
154159
<h2>Django videos</h2>
155160
<ul>

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-11-16T15:18:39Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-11-17T08:36:10Z</updated></feed>

source/content/pages/02-web-frameworks/0202-django.markdown

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,10 @@ syntax and language semantics first before diving into web development.
123123

124124
* [Starting a Django Project](https://realpython.com/learn/start-django/) answers the question, “How do I set up a Django (1.5, 1.6, or 1.7) project from scratch?”
125125

126+
* [Using Amazon S3 to Store your Django Site's Static and Media Files](http://www.caktusgroup.com/blog/2014/11/10/Using-Amazon-S3-to-store-your-Django-sites-static-and-media-files/)
127+
is a well written guide to a question commonly asked about static and
128+
media file serving.
129+
126130

127131
## Django videos
128132
* Kate Heddleston and I gave a talk at DjangoCon 2014 called

source/content/pages/04-data/0401-databases.markdown

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,10 @@ provider.
177177
that are at the core of database theory and implementation. Well worth
178178
the time to read.
179179

180+
* [PostgreSQL vs. MS SQL Server](http://www.pg-versus-ms.com/) is one
181+
perspective on the differences between the two database servers from a
182+
data analyst.
183+
180184
* [DB-Engines](http://db-engines.com/en/ranking) ranks the most popular
181185
database management systems.
182186

source/content/pages/11-misc/1104-change-log.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ the
2424

2525
## 2014
2626
### November
27+
* More Django and database resources.
2728
* Revising development environments page and adding new resources.
2829
* Adding my new Flask blog post on choose your own adventure presentations
2930
along with the open source repository.

0 commit comments

Comments
 (0)