-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
36 lines (26 loc) · 1.37 KB
/
about.html
File metadata and controls
36 lines (26 loc) · 1.37 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
---
layout: default
---
<div class="content">
<h2 class="subtitle">write | <span class"color-change">Code </span> | photograph</h2>
<hr>
<div class="about">
<img src="http://i1.wp.com/tanishahampden.com/wp-content/uploads/2015/02/img1.jpg?w=1500">
<p>I make things with <a href="http://tanishahampden.com/art/">cameras</a>, words, and <a href="https://github.com/tanham">code</a>. I am interested in storytelling, travel, and self-improvement. I've just concluded a year-long journey through Europe and Vietnam, respectively. While traveling I spent my time thinking, writing and learning to code. Have a look at what I am currently <a href="now.html">working on</a>.</p>
<p>I have an educational background in Sociology and I am currently interested in using code and data to better frame and answer big questions (i.e. income inequality). I also have interests in writing software that automates everyday tasks and collects and analyzes personal data, product design, and open source software.</p>
</div>
</div>
<script type="text/javascript">
colorLinks("#8912FF");
function colorLinks(hexColor)
{
var links = document.getElementsByTagName("a");
for(var i=0;i<links.length;i++)
{
if(links[i].href)
{
links[i].style.color = hexColor;
}
}
}
</script>