Skip to content

Commit e7c9971

Browse files
committed
updating analytics third party services section
1 parent f76c5d2 commit e7c9971

File tree

6 files changed

+49
-10
lines changed

6 files changed

+49
-10
lines changed

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>2013-11-04T08:08: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>2013-11-05T07:16:05Z</updated></feed>

index.html

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ <h1>Introduction</h1>
7777
<a class="reference external" href="http://www.mattmakai.com/learning-python-for-non-developers.html">Learning Python</a>
7878
useful.</p>
7979
<p>This guide has a different focus from the above resources. Here I
80-
focus on explaining several ways of setting up a Python <em>web application</em>
81-
stack from server infrastructure through JavaScript execution on a user's
82-
browser.</p>
80+
focus on explaining several ways of for how the Python <em>web application</em>
81+
stack works from server infrastructure through JavaScript execution on a
82+
user's browser.</p>
8383
<p>People learning Python generally have at least one of the three following
8484
goals:</p>
8585
<ol class="arabic simple">
@@ -452,6 +452,18 @@ <h2>Caching Resources</h2>
452452
<h1>Web Analytics</h1>
453453
<p>Web analytics involves a mix of collecting and analyzing data generated
454454
by visitors to a website.</p>
455+
<div class="section" id="web-analytics-third-party-services">
456+
<h2>Web Analytics Third Party Services</h2>
457+
<p><a class="reference external" href="http://www.google.com/analytics/">Google Analytics</a> is a widely used
458+
free analytics tool for website traffic.</p>
459+
<p><a class="reference external" href="https://mixpanel.com/">MixPanel</a>'s analytics platform focuses on mobile
460+
and sales funnel metrics. A developer builds what data points need to be
461+
collected into the server side or client side code. MixPanel captures that
462+
data and provides metrics and visualizations based on the data.</p>
463+
<p><a class="reference external" href="https://www.kissmetrics.com/">KISSmetrics</a>' analytics provides context
464+
for who is visiting a website and what actions they are taking while on
465+
the site.</p>
466+
</div>
455467
<div class="section" id="web-analytics-resources">
456468
<h2>Web Analytics Resources</h2>
457469
<p><a class="reference external" href="http://blog.arkency.com/2012/12/google-analytics-for-developers/">Google Analytics for Developers</a></p>

pages/introduction.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ <h1>Introduction</h1>
5858
<a class="reference external" href="http://www.mattmakai.com/learning-python-for-non-developers.html">Learning Python</a>
5959
useful.</p>
6060
<p>This guide has a different focus from the above resources. Here I
61-
focus on explaining several ways of setting up a Python <em>web application</em>
62-
stack from server infrastructure through JavaScript execution on a user's
63-
browser.</p>
61+
focus on explaining several ways of for how the Python <em>web application</em>
62+
stack works from server infrastructure through JavaScript execution on a
63+
user's browser.</p>
6464
<p>People learning Python generally have at least one of the three following
6565
goals:</p>
6666
<ol class="arabic simple">

pages/web-analytics.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,18 @@ <h1>Web Analytics</h1>
5050

5151
<p>Web analytics involves a mix of collecting and analyzing data generated
5252
by visitors to a website.</p>
53+
<div class="section" id="web-analytics-third-party-services">
54+
<h2>Web Analytics Third Party Services</h2>
55+
<p><a class="reference external" href="http://www.google.com/analytics/">Google Analytics</a> is a widely used
56+
free analytics tool for website traffic.</p>
57+
<p><a class="reference external" href="https://mixpanel.com/">MixPanel</a>'s analytics platform focuses on mobile
58+
and sales funnel metrics. A developer builds what data points need to be
59+
collected into the server side or client side code. MixPanel captures that
60+
data and provides metrics and visualizations based on the data.</p>
61+
<p><a class="reference external" href="https://www.kissmetrics.com/">KISSmetrics</a>' analytics provides context
62+
for who is visiting a website and what actions they are taking while on
63+
the site.</p>
64+
</div>
5365
<div class="section" id="web-analytics-resources">
5466
<h2>Web Analytics Resources</h2>
5567
<p><a class="reference external" href="http://blog.arkency.com/2012/12/google-analytics-for-developers/">Google Analytics for Developers</a></p>

source/content/pages/introduction.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ If you're not coming from a development background, you may find this post on
1717
useful.
1818

1919
This guide has a different focus from the above resources. Here I
20-
focus on explaining several ways of setting up a Python *web application*
21-
stack from server infrastructure through JavaScript execution on a user's
22-
browser.
20+
focus on explaining several ways of for how the Python *web application*
21+
stack works from server infrastructure through JavaScript execution on a
22+
user's browser.
2323

2424
People learning Python generally have at least one of the three following
2525
goals:

source/content/pages/web-analytics.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,22 @@ Web analytics involves a mix of collecting and analyzing data generated
99
by visitors to a website.
1010

1111

12+
Web Analytics Third Party Services
13+
----------------------------------
14+
`Google Analytics <http://www.google.com/analytics/>`_ is a widely used
15+
free analytics tool for website traffic.
16+
17+
`MixPanel <https://mixpanel.com/>`_'s analytics platform focuses on mobile
18+
and sales funnel metrics. A developer builds what data points need to be
19+
collected into the server side or client side code. MixPanel captures that
20+
data and provides metrics and visualizations based on the data.
21+
22+
`KISSmetrics <https://www.kissmetrics.com/>`_' analytics provides context
23+
for who is visiting a website and what actions they are taking while on
24+
the site.
25+
1226
Web Analytics Resources
1327
-----------------------
1428
`Google Analytics for Developers <http://blog.arkency.com/2012/12/google-analytics-for-developers/>`_
1529

30+

0 commit comments

Comments
 (0)