Skip to content

Commit cb50bd7

Browse files
committed
adding additional resources to css and flask sections
1 parent c7664f4 commit cb50bd7

File tree

9 files changed

+28
-8
lines changed

9 files changed

+28
-8
lines changed

cascading-style-sheets.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,10 @@ <h2>CSS resources</h2>
156156
breaks CSS layout topics into chapters so you can learn each part one
157157
at a time.</p>
158158
</li>
159+
<li>
160+
<p><a href="https://developers.google.com/web/fundamentals/">Google's Web Fundamentals class</a>
161+
shows how to create responsive designs and performant websites.</p>
162+
</li>
159163
</ul>
160164
<h3>Once your app is styled what do you need to learn next?</h3>
161165
<div class="row">

change-log.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,11 @@ <h1>Change Log</h1>
5050
the
5151
<a href="https://github.com/makaimc/fullstackpython.github.com/commits/gh-pages">source repository's commit log</a> on GitHub.</p>
5252
<h2>2014</h2>
53+
<h3>May</h3>
54+
<ul>
55+
<li>Continuing to add learning checklists to sections such as servers.</li>
56+
<li>Moving navigation options into meta tags on markdown pages.</li>
57+
</ul>
5358
<h3>April</h3>
5459
<ul>
5560
<li>Adding the concept of "learning checklists" to web frameworks, Django, CSS

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-05-02T08:22:24Z</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-05-02T08:36:11Z</updated></feed>

flask.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,9 @@ <h2>Flask resources</h2>
132132
</li>
133133
<li>
134134
<p><a href="http://www.realpython.com/blog/python/flask-by-example-part-1-project-setup/">Flask by Example: Part 1</a>
135-
shows the basic first steps for setting up a Flask project.</p>
135+
shows the basic first steps for setting up a Flask project.
136+
<a href="http://www.realpython.com/blog/flask-by-example-part-2-postgres-sqlalchemy-and-alembic/">Part 2</a>
137+
is also now online that shows how to use PostgreSQL, SQLAlchemy and Alembic.</p>
136138
</li>
137139
<li>
138140
<p><a href="https://www.digitalocean.com/community/articles/how-to-structure-large-flask-applications">How to Structure Large Flask Applications</a>

future-directions.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,13 @@ <h1>Future Directions</h1>
5959
<p>Here are some things I'm actively working on:</p>
6060
<ul>
6161
<li>
62-
<p>Determining whether the new navigation works well for this site or not.</p>
63-
</li>
64-
<li>
6562
<p>Clear, concise descriptions for each concept in every section along with
6663
the "why [x] is needed"</p>
6764
</li>
6865
<li>
66+
<p>Learning checklists for every section.</p>
67+
</li>
68+
<li>
6969
<p>Flesh out <a href="../javascript.html">JavaScript</a>,
7070
<a href="../configuration-management.html">Configuration Management</a>,
7171
<a href="../api-integration.html">API Integration</a>,

source/content/pages/02-web-frameworks/0205-flask.markdown

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,9 @@ book so consider picking that up as well.
105105
is another great walkthrough for getting started with the framework.
106106

107107
* [Flask by Example: Part 1](http://www.realpython.com/blog/python/flask-by-example-part-1-project-setup/)
108-
shows the basic first steps for setting up a Flask project.
108+
shows the basic first steps for setting up a Flask project.
109+
[Part 2](http://www.realpython.com/blog/flask-by-example-part-2-postgres-sqlalchemy-and-alembic/)
110+
is also now online that shows how to use PostgreSQL, SQLAlchemy and Alembic.
109111

110112
* [How to Structure Large Flask Applications](https://www.digitalocean.com/community/articles/how-to-structure-large-flask-applications)
111113
covers a subject that comes up quickly once you begin adding significant

source/content/pages/05-client-side/0501-css.markdown

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,5 +126,8 @@ web application's design.
126126
breaks CSS layout topics into chapters so you can learn each part one
127127
at a time.
128128

129+
* [Google's Web Fundamentals class](https://developers.google.com/web/fundamentals/)
130+
shows how to create responsive designs and performant websites.
131+
129132

130133
### Once your app is styled what do you need to learn next?

source/content/pages/10-misc/1005-change-log.markdown

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ the
2323
[source repository's commit log](https://github.com/makaimc/fullstackpython.github.com/commits/gh-pages) on GitHub.
2424

2525
## 2014
26+
### May
27+
* Continuing to add learning checklists to sections such as servers.
28+
* Moving navigation options into meta tags on markdown pages.
29+
2630
### April
2731
* Adding the concept of "learning checklists" to web frameworks, Django, CSS
2832
and JavaScript pages to give readers some guidance for how to learn each

source/content/pages/10-misc/1007-future-directions.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ submit one when you see a fix or improvement that needs to be made!
3333

3434
Here are some things I'm actively working on:
3535

36-
* Determining whether the new navigation works well for this site or not.
37-
3836
* Clear, concise descriptions for each concept in every section along with
3937
the "why [x] is needed"
4038

39+
* Learning checklists for every section.
40+
4141
* Flesh out [JavaScript](../javascript.html),
4242
[Configuration Management](../configuration-management.html),
4343
[API Integration](../api-integration.html),

0 commit comments

Comments
 (0)