Skip to content

Commit 1dc053a

Browse files
committed
few upgrades and tweaks to text
1 parent 644f50f commit 1dc053a

27 files changed

+169
-70
lines changed

archives.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ <h1>Archives for Matt Makai</h1>
5151
</dl>
5252
<hr/>
5353
<div class="footer pull-right">
54-
<a href="http://www.mattmakai.com/" class="underline">Matt Makai</a> 2013
54+
<a href="http://www.mattmakai.com/" class="underline">Matt Makai</a> 2014
5555
</div>
5656
</div>
5757

categories.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
</ul>
5050
<hr/>
5151
<div class="footer pull-right">
52-
<a href="http://www.mattmakai.com/" class="underline">Matt Makai</a> 2013
52+
<a href="http://www.mattmakai.com/" class="underline">Matt Makai</a> 2014
5353
</div>
5454
</div>
5555

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-01-15T18:21:49Z</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-01-17T16:16:31Z</updated></feed>

index.html

Lines changed: 28 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@
6262
<li><a href="#monitoring">Monitoring</a></li>
6363
<li><a href="#source-control">Source Control</a></li>
6464
<li><a href="#configuration-management">Configuration Management</a></li>
65+
<li><a href="#dependency-management">Application Dependencies</a></li>
6566
<li><a href="#no-sql-datastore">NoSQL Data Stores</a></li>
6667
<li><a href="#about-author">About</a></li>
6768
<li><a href="#change-log">Change Log</a></li>
@@ -658,6 +659,17 @@ <h2>Ansible Resources</h2>
658659
<p><a class="reference external" href="https://groups.google.com/forum/#!msg/Ansible-project/WpRblldA2PQ/lYDpFjBXDlsJ&quot;">Idempotence, convergence, and other silly fancy words we often use</a></p>
659660
</div>
660661

662+
</section>
663+
<section id="dependency-management" class="tech-section">
664+
<h1>Application Dependencies</h1>
665+
<p>Application dependencies are specific Python libraries and their versions
666+
required for the application to work properly. These dependencies are
667+
installed separately from system-level packages.</p>
668+
<p>The most common way to install Python library dependencies is with
669+
the <a class="reference external" href="http://www.pip-installer.org/en/latest/">pip install</a> combined
670+
with <a class="reference external" href="http://www.virtualenv.org/en/latest/">virtualenv</a> to isolate the
671+
dependencies of individual applications from each other.</p>
672+
661673
</section>
662674
<section id="no-sql-datastore" class="tech-section">
663675
<h1>NoSQL Data Stores</h1>
@@ -710,27 +722,27 @@ <h2>NoSQL data stores resources</h2>
710722
</section>
711723
<section id="about-author" class="tech-section">
712724
<h1>About</h1>
713-
<p>I'm <a class="reference external" href="http://www.mattmakai.com/">Matt Makai</a> and I solve problems by
714-
developing software. I often use Python and occasionally work with
715-
languages in the Java Virtual Machine (JVM) stack.</p>
716-
<p>In 2013 I traveled to 30 cities in the United States to visit with
717-
tech companies, attend and speak at tech meetups, and blog from an experienced
718-
software developer's perspective about the current state of technology in the
719-
United States.</p>
720-
<p>Read more about my trip on my
721-
<a class="reference external" href="http://www.codingacrossamerica.com/">Coding Across America</a> website.</p>
722-
<p>If there are typos, inaccurate statements, or general areas for improvement
723-
that you see in this guide, please issue a
724-
<a class="reference external" href="https://github.com/makaimc/fullstackpython.github.com/pull/new/gh-pages">pull request on this website's Github repository</a>. Thank you!</p>
725-
<p>You can reach me by email at <a class="reference external" href="mailto:matthew.makai&#64;gmail.com">matthew.makai&#64;gmail.com</a> or send me a
726-
<a class="reference external" href="https://twitter.com/makaimc">message me on Twitter</a>.</p>
725+
<p>This website was written and built by
726+
<a class="reference external" href="http://www.mattmakai.com/">Matt Makai</a>, currently a
727+
<a class="reference external" href="http://thenextweb.com/dd/2012/06/03/a-day-in-the-life-of-a-developer-evangelist/">Developer Evangelist</a>
728+
at <a class="reference external" href="https://www.twilio.com/">Twilio</a>.</p>
729+
<p>Other projects by Matt include
730+
<a class="reference external" href="http://www.codingacrossamerica.com/">Coding Across America</a>
731+
and
732+
<a class="reference external" href="https://github.com/makaimc/underwear/">Underwear</a>. You can reach him by
733+
email at <a class="reference external" href="mailto:matthew.makai&#64;gmail.com">matthew.makai&#64;gmail.com</a> or send him a
734+
<a class="reference external" href="https://twitter.com/makaimc">direct message on Twitter</a>.</p>
735+
<p>Typos, inaccurate statements, or general areas for improvement can be handled
736+
through a
737+
<a class="reference external" href="https://github.com/makaimc/fullstackpython.github.com/pull/new/gh-pages">pull request on GitHub</a>.</p>
727738

728739
</section>
729740
<section id="change-log" class="tech-section">
730741
<h1>Change Log</h1>
731742
<div class="section" id="id1">
732743
<h2>2014</h2>
733-
<p>Jan: Adding configuration management and source control sections.</p>
744+
<p>Jan: Adding configuration management, application dependencies, and source
745+
control sections. Also updating about section.</p>
734746
</div>
735747
<div class="section" id="id2">
736748
<h2>2013</h2>
@@ -758,7 +770,7 @@ <h2>2012</h2>
758770
</div>
759771
<hr/>
760772
<div class="footer pull-right">
761-
<a href="http://www.mattmakai.com/" class="underline">Matt Makai</a> 2013
773+
<a href="http://www.mattmakai.com/" class="underline">Matt Makai</a> 2014
762774
</div>
763775
</div>
764776

pages/about-author.html

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -48,24 +48,23 @@
4848
<h1>About</h1>
4949

5050

51-
<p>I'm <a class="reference external" href="http://www.mattmakai.com/">Matt Makai</a> and I solve problems by
52-
developing software. I often use Python and occasionally work with
53-
languages in the Java Virtual Machine (JVM) stack.</p>
54-
<p>In 2013 I traveled to 30 cities in the United States to visit with
55-
tech companies, attend and speak at tech meetups, and blog from an experienced
56-
software developer's perspective about the current state of technology in the
57-
United States.</p>
58-
<p>Read more about my trip on my
59-
<a class="reference external" href="http://www.codingacrossamerica.com/">Coding Across America</a> website.</p>
60-
<p>If there are typos, inaccurate statements, or general areas for improvement
61-
that you see in this guide, please issue a
62-
<a class="reference external" href="https://github.com/makaimc/fullstackpython.github.com/pull/new/gh-pages">pull request on this website's Github repository</a>. Thank you!</p>
63-
<p>You can reach me by email at <a class="reference external" href="mailto:matthew.makai&#64;gmail.com">matthew.makai&#64;gmail.com</a> or send me a
64-
<a class="reference external" href="https://twitter.com/makaimc">message me on Twitter</a>.</p>
51+
<p>This website was written and built by
52+
<a class="reference external" href="http://www.mattmakai.com/">Matt Makai</a>, currently a
53+
<a class="reference external" href="http://thenextweb.com/dd/2012/06/03/a-day-in-the-life-of-a-developer-evangelist/">Developer Evangelist</a>
54+
at <a class="reference external" href="https://www.twilio.com/">Twilio</a>.</p>
55+
<p>Other projects by Matt include
56+
<a class="reference external" href="http://www.codingacrossamerica.com/">Coding Across America</a>
57+
and
58+
<a class="reference external" href="https://github.com/makaimc/underwear/">Underwear</a>. You can reach him by
59+
email at <a class="reference external" href="mailto:matthew.makai&#64;gmail.com">matthew.makai&#64;gmail.com</a> or send him a
60+
<a class="reference external" href="https://twitter.com/makaimc">direct message on Twitter</a>.</p>
61+
<p>Typos, inaccurate statements, or general areas for improvement can be handled
62+
through a
63+
<a class="reference external" href="https://github.com/makaimc/fullstackpython.github.com/pull/new/gh-pages">pull request on GitHub</a>.</p>
6564

6665
<hr/>
6766
<div class="footer pull-right">
68-
<a href="http://www.mattmakai.com/" class="underline">Matt Makai</a> 2013
67+
<a href="http://www.mattmakai.com/" class="underline">Matt Makai</a> 2014
6968
</div>
7069
</div>
7170

pages/caching.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ <h2>Caching Resources</h2>
6767

6868
<hr/>
6969
<div class="footer pull-right">
70-
<a href="http://www.mattmakai.com/" class="underline">Matt Makai</a> 2013
70+
<a href="http://www.mattmakai.com/" class="underline">Matt Makai</a> 2014
7171
</div>
7272
</div>
7373

pages/change-log.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ <h1>Change Log</h1>
5050

5151
<div class="section" id="id1">
5252
<h2>2014</h2>
53-
<p>Jan: Adding configuration management and source control sections.</p>
53+
<p>Jan: Adding configuration management, application dependencies, and source
54+
control sections. Also updating about section.</p>
5455
</div>
5556
<div class="section" id="id2">
5657
<h2>2013</h2>
@@ -75,7 +76,7 @@ <h2>2012</h2>
7576

7677
<hr/>
7778
<div class="footer pull-right">
78-
<a href="http://www.mattmakai.com/" class="underline">Matt Makai</a> 2013
79+
<a href="http://www.mattmakai.com/" class="underline">Matt Makai</a> 2014
7980
</div>
8081
</div>
8182

pages/configuration-management.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ <h2>Ansible Resources</h2>
7979

8080
<hr/>
8181
<div class="footer pull-right">
82-
<a href="http://www.mattmakai.com/" class="underline">Matt Makai</a> 2013
82+
<a href="http://www.mattmakai.com/" class="underline">Matt Makai</a> 2014
8383
</div>
8484
</div>
8585

pages/database.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ <h2>Database resources</h2>
102102

103103
<hr/>
104104
<div class="footer pull-right">
105-
<a href="http://www.mattmakai.com/" class="underline">Matt Makai</a> 2013
105+
<a href="http://www.mattmakai.com/" class="underline">Matt Makai</a> 2014
106106
</div>
107107
</div>
108108

pages/dependency-management.html

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
<!doctype html>
2+
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
3+
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
4+
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
5+
<!--[if gt IE 8]><!-->
6+
<html class="no-js" lang="en"> <!--<![endif]-->
7+
8+
<head>
9+
<meta charset="utf-8">
10+
<meta name="language" content="English" />
11+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
12+
13+
<title>Full Stack Python</title>
14+
<meta name="description" content="Full stack Python shows how an entire Python web application is built, from the server to the front end JavaScript.">
15+
<meta name="author" content="Matt Makai">
16+
<meta name="viewport" content="width=device-width,initial-scale=1">
17+
<link rel="stylesheet" href="/css/c.css" />
18+
<link rel="stylesheet" href="/css/bootstrap-responsive.min.css" />
19+
<script src="/js/modernizr-2.0.6.min.js"></script>
20+
<script type="text/javascript">
21+
22+
var _gaq = _gaq || [];
23+
_gaq.push(['_setAccount', 'UA-19910497-7']);
24+
_gaq.push(['_trackPageview']);
25+
26+
(function() {
27+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
28+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
29+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
30+
})();
31+
32+
</script>
33+
</head>
34+
35+
<body>
36+
<a href="https://github.com/makaimc/fullstackpython.github.com" class="github">
37+
<img style="position: absolute; top: 0; right: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" />
38+
</a>
39+
<div class="container">
40+
<div class="row">
41+
<div class="span12">
42+
<div class="logo-header-section">
43+
<a href="/"><img src="../img/full-stack-python-logo-bw.png" height="42" width="42" class="logo-image" /></a>
44+
<span class="logo-title"><a href="/">Full Stack Python</a></span>
45+
</div>
46+
</div>
47+
</div>
48+
<h1>Application Dependencies</h1>
49+
50+
51+
<p>Application dependencies are specific Python libraries and their versions
52+
required for the application to work properly. These dependencies are
53+
installed separately from system-level packages.</p>
54+
<p>The most common way to install Python library dependencies is with
55+
the <a class="reference external" href="http://www.pip-installer.org/en/latest/">pip install</a> combined
56+
with <a class="reference external" href="http://www.virtualenv.org/en/latest/">virtualenv</a> to isolate the
57+
dependencies of individual applications from each other.</p>
58+
59+
<hr/>
60+
<div class="footer pull-right">
61+
<a href="http://www.mattmakai.com/" class="underline">Matt Makai</a> 2014
62+
</div>
63+
</div>
64+
65+
<script src="http://code.jquery.com/jquery-latest.js"></script>
66+
<script src="/js/bootstrap.min.js"></script>
67+
</body>
68+
</html>

0 commit comments

Comments
 (0)