Skip to content

Commit 90ca714

Browse files
committed
Merge branch 'master' of github.com:tutorials/tutorials.github.com
* 'master' of github.com:tutorials/tutorials.github.com: Forgot to include a section; added timestamps to all internal links Shift around categories/actions/etc. for google analytics
2 parents 8fb218c + a0c8e62 commit 90ca714

File tree

5 files changed

+18
-15
lines changed

5 files changed

+18
-15
lines changed

_layouts/default.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
<title>tutorials.github.com</title>
1010
{% endif %}
1111

12-
<link rel="stylesheet" href="/stylesheets/styles.css">
13-
<link rel="stylesheet" href="/stylesheets/pygment_trac.css">
14-
<script src="/javascripts/scale.fix.js"></script>
12+
<link rel="stylesheet" href="/stylesheets/styles.css?ts=1340509738">
13+
<link rel="stylesheet" href="/stylesheets/pygment_trac.css?ts=1340509738">
14+
<script src="/javascripts/scale.fix.js?ts=1340509738"></script>
1515
<script src="http://documentcloud.github.com/underscore/underscore.js"></script>
1616
<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
17-
<script src="/javascripts/sidebar.js"></script>
17+
<script src="/javascripts/sidebar.js?ts=1340509738"></script>
1818
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
1919
<!--[if lt IE 9]>
2020
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
@@ -36,7 +36,7 @@
3636
<a href="https://github.com/tutorials/tutorials.github.com" class="ribbon"><img class="fork" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a>
3737
<header>
3838
<div id="static_inner">
39-
<h1><a href="/">tutorials.github.com</a></h1>
39+
<h1><a href="/?ts=1340509738">tutorials.github.com</a></h1>
4040
<p>Decentralized polyglot tutorials</p>
4141
<nav id="sidebar"></nav>
4242
</div>

index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ This project originated as a full-blown rails app backed by a database, and I re
1717

1818
All Tutorials
1919
-------------
20-
You can [browse all tutorials here](/pages/table-of-contents.html?1340499018).
20+
You can [browse all tutorials here](/pages/table-of-contents.html?ts=1340509738).
2121

2222
Newest Tutorials
2323
----------------
24-
* [Controlling EC2 from the Console](/pages/controlling-ec2-from-the-console.html?ts=1340499018)
24+
* [Controlling EC2 from the Console](/pages/controlling-ec2-from-the-console.html?ts=1340509738)
2525
* [Creating a Production Storm Cluster](/pages/creating-a-production-storm-cluster.html?ts=1340499018)
2626
* [Retrieving Storm Cluster Statistics from Nimbus](/pages/retrieving-storm-data-from-nimbus.html?ts=1340499018)
2727
* [Installing MySQL](/pages/installing-mysql.html?ts=1340499018)
@@ -31,7 +31,7 @@ Examples
3131
--------
3232
* [Installing MySQL](/pages/installing-mysql.html?ts=1340499018)
3333
* [Hello, World!](/pages/hello-world.html?ts=1340499018)
34-
* [Syntax explanation](/pages/explanation.html?1340499018)
34+
* [Syntax explanation](/pages/explanation.html?ts=1340499018)
3535

3636
Contributing
3737
------------

javascripts/sidebar.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,10 @@ $(function() {
8888
return filter.name === target.name && filter.value === target.value;
8989
});
9090
if(existing_filter) {
91-
_gaq.push(['_trackEvent', 'filters', 'remove', existing_filter.name, filters.size]);
91+
_gaq.push(['_trackEvent', 'filters - remove', existing_filter.name, existing_filter.value, filters.size]);
9292
filters = _(filters).without(existing_filter);
9393
} else {
94-
_gaq.push(['_trackEvent', 'filters', 'apply', target.name, filters.size]);
94+
_gaq.push(['_trackEvent', 'filters - apply', target.name, target.value, filters.size]);
9595
filters = _(filters).reject(function(filter) { return filter.name === target.name && filter.value === target.value; });
9696
filters.push(target);
9797
}

pages/controlling-ec2-from-the-console.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,9 @@ ec2-describe-instances
8080

8181
If you don't see an error, you're all set!
8282

83+
## Further Reading
84+
Since there are almost 300 commands available to you now, your best bet is to take a look at the [EC2 Command Line Reference](http://docs.amazonwebservices.com/AWSEC2/latest/CommandLineReference/Welcome.html). One command that you'll want to memorize is [ec2-run-instances](http://docs.amazonwebservices.com/AWSEC2/latest/CommandLineReference/ApiReference-cmd-RunInstances.html), which will spawn a new ec2 instance when you give it an amazon machine image (AMI) id.
85+
8386
## References
8487
These links were helpful in getting my machine setup and writing this tutorial:
8588

pages/table-of-contents.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ ignore: true
99
<!-- THIS FILE IS GENERATED; PLEASE DO NOT EDIT THIS FILE BY HAND -->
1010

1111
<!--- BEGIN TOC -->
12-
* [Controlling EC2 from the Console](/pages/controlling-ec2-from-the-console.html?ts=1340499018)
13-
* [Creating a Production Storm Cluster](/pages/creating-a-production-storm-cluster.html?ts=1340499018)
14-
* [Retrieving Storm Cluster Statistics from Nimbus](/pages/retrieving-storm-data-from-nimbus.html?ts=1340499018)
15-
* [Installing MySQL](/pages/installing-mysql.html?ts=1340499018)
16-
* [Hello, World!](/pages/hello-world.html?ts=1340499018)
12+
* [Controlling EC2 from the Console](/pages/controlling-ec2-from-the-console.html?ts=1340509738)
13+
* [Creating a Production Storm Cluster](/pages/creating-a-production-storm-cluster.html?ts=1340487894)
14+
* [Retrieving Storm Cluster Statistics from Nimbus](/pages/retrieving-storm-data-from-nimbus.html?ts=1340398351)
15+
* [Installing MySQL](/pages/installing-mysql.html?ts=1339980010)
16+
* [Hello, World!](/pages/hello-world.html?ts=1339978842)
1717
<!--- END TOC -->

0 commit comments

Comments
 (0)