aboutsummaryrefslogtreecommitdiffstats
path: root/theme/templates/index.html
blob: 8d35aeb3bb0ee39ba8f86e4442b1ea076fbb0951 (plain)
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
{% extends "base.html" %}

{% block overhead %}
<link rel="openid.server" href="http://www.myopenid.com/server" />
<link rel="openid.delegate" href="http://bnewbold.myopenid.com" />
<meta http-equiv="X-XRDS-Location" content="http://bnewbold.myopenid.com/xrds" />
<link rel="stylesheet" type="text/css" href="/static/style/git_wiki.css" />
{% endblock %}

{% block path %}{% endblock %}

{% block pagetitle %}{% endblock %}

{% block right_stuff %}
<br />
<br />
<br />
RSS feeds<br />
 &nbsp; - <a href="/feeds/posts.rss.xml">all posts</a> (<a href="/feeds/posts.atom.xml">atom</a>)<br />
<br /><br />
Other sites<br />
 &nbsp; - <a href="https://github.com/bnewbold/">github</a><br />
 &nbsp; - <a href="https://keybase.io/bnewbold/">keybase</a><br />
 &nbsp; - <a href="http://bnewbold.the-nsa.org/">the-nsa.org</a><br />
<!-- XXX: broken &nbsp; - <a href="http://feeds.bnewbold.net/">feed reader</a><br /> -->
{% endblock %}

{% block content %}
<br />
<center><img style="border: none;" src="/static/img/iceland_beach.jpg" alt="iceland beach" /></center>
<br />
<br />
<br />

{# NB: synchronize with /about/ page #}
Hi, I'm <b>Bryan Newbold</b>! I like to climb things and look around. Most of my work
has been dealing with the messy interfaces between information, abstraction,
and nature (eg, embedded digital electronics for scientific instruments).
You might know me from around Seattle, New York City, or Boston/Cambridge (<a
href="http://industry-lab.com/">Industry Lab</a>, MIT).

<br />
<br />

 <h3>Where am I Now?</h3>
As of Spring 2017 I live in San Francisco. The biking, conversations, and
scent of Eucalyptus here are most wonderful!
I currently work at the <a href="https://archive.org">Internet Archive</a>
collecting scientific research datasets and publications; in the past year I
attended the <a href="https://recurse.com">Recurse Center</a> in New York City
and worked on systems and infrastructure at
<a href="https://stripe.com">Stripe</a>. Before that I was building Atomic
Magnetometers for a small New Jersey company called
<a href="http://www.twinleaf.com">Twinleaf</a>.

&nbsp;<a href="/whatsup/" style="font-size: smaller;">«previously»</a>

<br />
<br />

 <h3>Sporadic Writings</h3>
{% set recent = articles if not all_articles else all_articles %}
<ul>
{% for article in recent %}
    {% if loop.index <= 15%}
    <li><b>{{ article.date.strftime("%b %Y") }}</b>
        &nbsp;<a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a>
    </li>
    {% endif %}
{% endfor %}
</ul>

{% endblock %}