-
Notifications
You must be signed in to change notification settings - Fork 11
/
links.html
38 lines (37 loc) · 1.67 KB
/
links.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
---
layout: default
title: Useful Links
links:
- name: A time traveller's guide to Git
href: http://www.netmagazine.com/features/time-travellers-guide-git
- name: Git from the bottom up
href: http://ftp.newartisans.com/pub/git.from.bottom.up.pdf
- name: Get To Know GitHub (slides)
href: http://bit.ly/g2k-github
- name: Help with Line Endings - Avoiding CRLF Hell
href: https://help.github.com/articles/dealing-with-line-endings
- name: GitHub Secrets
href: https://github.com/blog/967-github-secrets
- name: Scott Chacon from Github's excellent Introduction to Git talk
href: https://www.youtube.com/watch?v=ZDR433b0HJY
- name: Think Like a Git
href: http://think-like-a-git.net/
- name: Best Programmer Jokes
href: http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke
- name: Don't forget to take a work out break
href: http://well.blogs.nytimes.com/2013/05/09/the-scientific-7-minute-workout/
- name: Get To Know GitHub (slides)
href: http://bit.ly/g2k-github
---
<div id="home">
<h1>{{page.title}}</h1>
<ul class="links">
{% for link in page.links %}
<li><a href="{{link.href}}">{{link.name}}</a></li>
{% endfor %}
</ul>
</div>
<div style="margin-top: 20px;">
<a class="twitter-timeline" href="https://twitter.com/search?q=%23g2kg" data-widget-id="335819096866291712">Tweets about "#g2kg"</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div>