-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
161 lines (112 loc) · 4.93 KB
/
about.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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
About - A. H. Gorton
</title>
<link href="atom.xml" rel="alternate" title="A. H. Gorton" type="application/atom+xml">
<link rel="stylesheet" href="asset/css/foundation.min.css" />
<link rel="stylesheet" href="asset/css/docs.css" />
<script src="asset/js/vendor/modernizr.js"></script>
<script src="asset/js/vendor/jquery.js"></script>
<script src="asset/highlightjs/highlight.pack.js"></script>
<link href="asset/highlightjs/styles/github.css" media="screen, projection" rel="stylesheet" type="text/css">
<script>hljs.initHighlightingOnLoad();</script>
<script type="text/javascript">
function before_search(){
var searchVal = 'site:actongorton.com ' + document.getElementById('search_input').value;
document.getElementById('search_q').value = searchVal;
return true;
}
</script>
</head>
<body class="antialiased hide-extras">
<div class="marketing off-canvas-wrap" data-offcanvas>
<div class="inner-wrap">
<nav class="top-bar docs-bar hide-for-small" data-topbar>
<section class="top-bar-section">
<div class="row">
<div style="position: relative;width:100%;"><div style="position: absolute; width:100%;">
<ul id="main-menu" class="left">
<li id=""><a target="_self" href="index.html">Home</a></li>
<li id=""><a target="_self" href="about.html">About</a></li>
<li id=""><a target="_self" href="portfolio.html">Portfolio</a></li>
<li id=""><a target="_self" href="archives.html">Archives</a></li>
</ul>
<ul class="right" id="search-wrap">
<li>
<form target="_blank" onsubmit="return before_search();" action="http://google.com/search" method="get">
<input type="hidden" id="search_q" name="q" value="" />
<input tabindex="1" type="search" id="search_input" placeholder="Search"/>
</form>
</li>
</ul>
</div></div>
</div>
</section>
</nav>
<nav class="tab-bar show-for-small">
<a href="javascript:void(0)" class="left-off-canvas-toggle menu-icon">
<span> A. H. Gorton</span>
</a>
</nav>
<aside class="left-off-canvas-menu">
<ul class="off-canvas-list">
<li><a href="index.html">HOME</a></li>
<li><a href="archives.html">Archives</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><label>Categories</label></li>
<li><a href="portfolio.html.html">Portfolio</a></li>
</ul>
</aside>
<a class="exit-off-canvas" href="#"></a>
<section id="main-content" role="main" class="scroll-container">
<script type="text/javascript">
$(function(){
var currentURL = 'about.html';
currentURL = currentURL.substr(0,currentURL.length-5);
$('#menu_item_'+currentURL).addClass('is_active');
});
</script>
<div class="row">
<div id="single-page-wrap">
<h1>About</h1>
<div class="markdown-body post-page">
<p>Hello,</p>
<p>I am a PhD candidate with the <a href="https://www.informatics.illinois.edu/">Illinois Informatics Institute</a> at the <a href="http://illinois.edu/">University of Illinois in Urbana-Champaign</a>. </p>
<p>My research area is in data analytics and information visualization, and my focus is in developing a better understanding of how Augmented Reality can improve our understanding of complicated data. </p>
<p>I hold a master’s degree in data curation from the <a href="https://ischool.illinois.edu/">School of Information Science</a>, and a bachelor’s degree from the <a href="https://media.illinois.edu/">College of Media</a>.</p>
<p>I work as a data journalist and news application developer. My work commonly appears at <a href="http://cu-citizenaccess.org/">CU-CitizenAccess.org</a>, <a href="http://investigatemidwest.org/">The Midwest Center for Investigative Reporting</a>, and <a href="http://bigagwatch.org/">Big-Ag Watch</a>.</p>
<p>Contact me: <a href="mailto:[email protected]">[email protected]</a></p>
</div>
</div>
</div>
<div class="page-bottom clearfix">
<div class="row">
<p class="copyright">Copyright © 2015
Powered by <a target="_blank" href="http://www.mweb.im">MWeb</a>,
Theme used <a target="_blank" href="http://github.com">GitHub CSS</a>.</p>
</div>
</div>
</section>
</div>
</div>
<script src="asset/js/foundation.min.js"></script>
<script>
$(document).foundation();
function fixSidebarHeight(){
var w1 = $('.markdown-body').height();
var w2 = $('#sidebar').height();
if (w1 > w2) { $('#sidebar').height(w1); };
}
$(function(){
fixSidebarHeight();
})
$(window).load(function(){
fixSidebarHeight();
});
</script>
</body>
</html>