forked from juvenn/juvenn.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
30 lines (27 loc) · 793 Bytes
/
index.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
---
layout: default
title: the journeyman
---
<div id="home">
<h2>Writing</h2>
<ul class="posts">
{% for post in site.posts limit:10 %}
<li><span class="timestamp">{{ post.date | date_to_string }}</span><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
<h2>Coding</h2>
<ul class="posts">
<li>
<span class="timestamp">2010</span>
<a href="/2010/03/31/monitoring-superfeedr/">Monica/Superfeedr</a>:
PubSub and PubSubHubbub monitoring built on EventMachine, Sinatra,
with MongoDB.
</li>
<li>
<span class="timestamp">2008-2010</span>
<a href="http://github.com/juvenn/microupdater">Microupdater</a>:
PubSubHubbub-based, scalable news aggregator, powered by Google
AppEngine.
</li>
</ul>
</div>