-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (43 loc) · 1.28 KB
/
index.html
File metadata and controls
47 lines (43 loc) · 1.28 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
---
layout: default
site_index: true
---
<h1>Posts</h1>
<section class="posts">
{% for post in site.posts %}
<article>
<time pubdate>{{ post.date | date: "%Y-%m-%d" }}</time>
»
<a href="{{ post.url }}">{{ post.title }}</a>
{% if post.updated %}
<span class="updated">
(updated <time>{{ post.updated | date: "%Y-%m-%d" }}</time>)
</span>
{% endif %}
</article>
{% endfor %}
</section>
<h1>Open Source Projects</h1>
<ul class="projects">
<li>
<a href="http://freshshell.com/">fresh</a>
No need to copy pasta those dotfiles around anymore.
Keep your dot files fresh.
</li>
<li>
<a href="https://github.com/jasoncodes/activerecord_views">ActiveRecordViews</a>
Automatic PostgreSQL database view creation for ActiveRecord.
</li>
<li>
<a href="https://github.com/jasoncodes/charazard">Charazard</a>
Cleans up bad character encodings with liberal application of fire.
</li>
<li>
<a href="https://github.com/jasoncodes/filter_io">filter_io</a>
Filter IO streams with a block. Ruby's FilterInputStream.
</li>
<li>
<a href="https://github.com/jasoncodes/rescue_each">rescue_each</a>
Rescue multiple exceptions when enumerating over Enumerable or ActiveRecord objects.
</li>
</ul>