wfarr / wfarr.github.com

This URL has Read+Write access

wfarr.github.com / index.html
100644 120 lines (119 sloc) 3.974 kb
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
---
layout: default
title: Will Farrington
---
<div class='home'>
  <div class='about'>
    <h2>About</h2>
    <div id='about'>
      <p>I'm Will Farrington, a Computer Science student at the Georgia Institute of Technology. I was originally going to be a Music major (I play single reeds and dabble in a handful of other things), but going to Tech worked out for the best: I'm working on stuff I enjoy, and I'm not getting burned out on music.</p>
      <p>Anyway, I'm a hacker. Or at least something vaguely similar. I firmly believe Open Source Software is the bee's knees. I really enjoy working on projects that I genuinely enjoy knowing that other people get to benefit from that work (just like I benefit from theirs). I make it a point to keep all of the code I write for personal uses on GitHub for just that reason. Hopefully you'll either enjoy using it or improve it and send me a pull request.</p>
    </div>
  </div>
  <div class='posts'>
    <h2>Blog Posts</h2>
    <ul id='posts'>
      {% for post in site.posts %}
      <div id='post'>
        <li>
          <div id='post_date'>{{ post.date | date_to_string }}</div>
          <div id='post_link'>
            <a href='{{ post.url }}'>
              {{ post.title }}
            </a>
            <span>
              {% for topic in post.topics %}
              {{ topic }}
              {% endfor %}
            </span>
          </div>
        </li>
      </div>
      {% endfor %}
    </ul>
  </div>
  <div class='contact'>
    <h2>Contact</h2>
    <ul id='contact'>
      <li>
        <div id='misc_label'>
          Email
        </div>
        <div id='misc_content'>
          <a href='mailto:wcfarrington@gmail.com'>wcfarrington@gmail.com</a>
        </div>
      </li>
      <li>
        <div id='misc_label'>
          Twitter
        </div>
        <div id='misc_content'>
          <a href='http://twitter.com/wfarr'>twitter.com/wfarr</a>
        </div>
      </li>
      <li>
        <div id='misc_label'>
          GitHub
        </div>
        <div id='misc_content'>
          <a href='http://github.com/wfarr'>github.com/wfarr</a>
        </div>
      </li>
    </ul>
  </div>
  <div class='books'>
    <h2>Books I'm Reading</h2>
    <ul id='books'>
      <li>
        <div id='misc_label'>
          Neal Stephenson
        </div>
        <div id='misc_content'>
          <a href='http://www.amazon.com/Cryptonomicon-Neal-Stephenson/dp/0060512806/ref=pd_bbs_sr_1?ie=UTF8&amp;s=books&amp;qid=1229902645&amp;sr=8-1'>
            Cryptonomicon
          </a>
        </div>
      </li>
      <li>
        <div id='misc_label'>
          Donald Knuth
        </div>
        <div id='misc_content'>
          <a href='http://www.amazon.com/Literate-Programming-Center-Language-Information/dp/0937073806/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1229902853&amp;sr=1-1'>
            Literate Programming
          </a>
        </div>
      </li>
      <li>
        <div id='misc_label'>
          Douglas Hofstadter
        </div>
        <div id='misc_content'>
          <a href='http://www.amazon.com/Godel-Escher-Bach-Eternal-Golden/dp/0465026567/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1229902826&amp;sr=1-1'>
            Gödel, Escher, Bach
          </a>
        </div>
      </li>
      <li>
        <div id='misc_label'>
          Paul Graham
        </div>
        <div id='misc_content'>
          <a href='http://www.amazon.com/Hackers-Painters-Big-Ideas-Computer/dp/0596006624/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1229902803&amp;sr=1-1'>
            Hackers and Painters
          </a>
        </div>
      </li>
      <li>
        <div id='misc_label'>
          J.R.R. Tolkein
        </div>
        <div id='misc_content'>
          <a href='http://www.amazon.com/Children-H%C3%BArin-J-R-R-Tolkien/dp/B001CB29ZA/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1229902889&amp;sr=1-1'>
            The Children of Húrin
          </a>
        </div>
      </li>
    </ul>
  </div>
</div>