-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (69 loc) · 2.27 KB
/
index.html
File metadata and controls
98 lines (69 loc) · 2.27 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
---
layout: default
title: Evert's Dugout
---
<h1>Evert's Dugout</h1>
<div class="evert-pic">
<img src="https://s.gravatar.com/avatar/9e9b4f80c65dc6076d74cd421084e4fc?s=200" width="200" height="200" alt="Picture of Evert" />
</div>
<p>
My name is Evert Pot, and this is my blog!
</p>
<p><a href="/evert-gpg.txt">My GPG public key</a>.</p>
<p>
I'm a <a href="http://github.com/evert">programmer</a>. I'm mostly focused
on building API's, HTTP-related applications and improving development
processes.
</p>
<p>
I run a web development agency in Toronto called
<a href="https://badgateway.net">Bad Gateway</a>.
</p>
<p>
In the past I worked at <a href="https://yelp.com/">Yelp</a>
on REST APIs, co-founded <a href="https://fruux.com/">fruux</a>.
I'm very interested in web standards and served on several
standards boards.
</p>
<p>
My full professional history is on my <a href="/resume.html">resume</a>.
</p>
<h2>On the web</h2>
<ul>
<li>Twitter : <a href="https://twitter.com/evertp" rel="me">@evertp</a></li>
<li>Github : <a href="https://github.com/evert" rel="me">evert</a></li>
<li><a href="/subscribe">Subscribe to my blog</a></li>
</ul>
<h2>About this blog</h2>
<p>This blog is built with <a href="http://jekyllrb.com/">Jekyll</a>, and hosted by
<a href="http://pages.github.com/">Github Pages</a>. All the content and code is open source.</p>
<p>Want to take a look, or suggest changes? Check out or fork the
<a href="https://github.com/evert/evert.github.com">Github project</a>.</p>
<h2>Blog archive</h2>
<p>I've been writing blog-posts on and off since 2006. Below you'll find the full
archive. Don't scroll too far though, quality degrades as you go backwards in time.
</p>
{% for post in site.posts %}
{% unless post.next %}
<h3>{{ post.date | date: '%Y' }}</h3>
<ul>
{% else %}
{% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
{% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %}
{% if year != nyear %}
</ul>
<h3>{{ post.date | date: '%Y' }}</h3>
<ul>
{% endif %}
{% endunless %}
{% unless post.draft %}
<li>
<time datetime="{{ post.date | date_to_xmlschema }}">
{{ post.date | date:"%b %d" }}
</time>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endunless %}
{% assign lastyear = year %}
{% endfor %}
</ul>