-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
374 lines (308 loc) · 13.1 KB
/
index.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
---
layout: default
title: Personal Webpage
---
<!-- ========== BIO ========== -->
<div class="docs-section" id="bio">
<h4>Bio</h4>
<p>
<b>I'm Julia Di, an artist, writer, science communicator, and robotics student.</b>
</p>
<p>
I'm currently a Ph.D. student in the <a href="http://bdml.stanford.edu/">Biomimetic & Dexterous Manipulation Laboratory</a> at Stanford University, advised by Mark Cutkosky. For my Ph.D. I am improving the interaction capabilities of robots. But my goal in life is to explore the intersection of <b>art with technology</b>, and <b>social good with technology</b>.
</p>
<p>
You can find my <a href={{ "/assets/cv/CV.pdf" | prepend: site.baseurl }} target="_blank">full C.V. pdf here</a>, or my <a href={{ "/assets/cv/resume.pdf" | prepend: site.baseurl }} target="_blank">one-page resume pdf here.</a></p>
</p>
<p>
Prior to coming to Stanford, I grew up in small-town Maryland about an hour away from D.C. Fun fact — I lived next to a horse farm and I'm allergic to horses. I mostly spent my K-12 years honing my art and writing skills. I also learned to play a traditional Chinese instrument, the guzheng.
</p>
<p>In the past I have worked on NASA robots, an X-plane, and satellites; I've also hiked a sulphur volcano and jumped out of a plane. I have been very grateful to receive the 2020 Interact Fellowship, 2019 Threshold Ventures Fellowship, NSF Graduate Fellowhsip <i>(declined)</i>, 2018 Brooke Owens Fellowship, and 2017 AIAA 20 Twenties Laureate. I received my B.S. in Electrical Engineering from Columbia University in 2018, where I started the <a href="http://www.columbiaspace.org">Columbia Space Initiative</a> and was very active on campus as a student leader.
</p>
</div>
<!-- ========== NEWS ======== -->
<div class="docs-section" id="news">
<h4>News</h4>
<p> The latest news! </p>
<ul>
{% assign selected_news = site.data.news.news | where: "selected", "y" %}
{% for news in selected_news %}
<li><strong>{{ news.date }}</strong> | <a href="{{ news.link }}">Link here</a>: {{ news.description }}</li>
{% endfor %}
</ul>
<details>
<summary><h5> >> Past </h5></summary>
<ul>
{% assign past_news = site.data.news.news | where: "selected", "n" %}
{% for news in past_news %}
<li><strong>{{ news.date }}</strong> | <a href="{{ news.link }}">Link here</a>: {{ news.description }}</li>
{% endfor %}
</ul>
</details>
</div>
<!-- ========== PUBLICATIONS ========== -->
<div class="docs-section" id="publications">
<h4>Publications</h4>
<p>Most recent publications on <a href="{{ site.data.main_info.google_scholar }}" target="_blank">Google Scholar</a>.<br/>
<sup>‡</sup> indicates equal contribution.
</p>
<ul class="tab-nav">
<li><div class="button active" data-ref="#papers-selected">Selected</div></li>
<li><div class="button" data-ref="#papers-all">All</div></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="papers-selected">
{% assign selected_papers = site.data.publications.papers | where: "selected", "y" %}
{% for paper in selected_papers %}
<div class="paper">
<p class="title"><b>{{ paper.title }}</b></p>
<p>{{ paper.authors }}</p>
<p><i>{{ paper.venue }}</i></p>
<div class="paper-buttons">
{% if paper.paper_pdf %}
<a class="button" href="{{ paper.paper_pdf | prepend: site.baseurl }}" target="_blank">Paper</a>
{% endif %}
{% if paper.slides %}
<a class="button" href="{{ paper.slides | prepend: site.baseurl }}" target="_blank">Slides</a>
{% endif %}
{% if paper.poster %}
<a class="button" href="{{ paper.poster | prepend: site.baseurl }}" target="_blank">Poster</a>
{% endif %}
{% if paper.video %}
<a class="button" href="{{ paper.video }}" target="_blank">Video</a>
{% endif %}
{% if paper.code %}
<a class="button" href="{{ paper.code }}" target="_blank">Code</a>
{% endif %}
</div>
</div>
{% endfor %}
</div>
<div class="tab-pane" id="papers-all">
{% for paper in site.data.publications.papers %}
<div class="paper">
<p class="title"><b>{{ paper.title }}</b></p>
<p>{{ paper.authors }}</p>
<p><i>{{ paper.venue }}</i></p>
<div class="paper-buttons">
{% if paper.paper_pdf %}
<a class="button" href="{{ paper.paper_pdf | prepend: site.baseurl }}" target="_blank">Paper</a>
{% endif %}
{% if paper.slides %}
<a class="button" href="{{ paper.slides | prepend: site.baseurl }}" target="_blank">Slides</a>
{% endif %}
{% if paper.poster %}
<a class="button" href="{{ paper.poster | prepend: site.baseurl }}" target="_blank">Poster</a>
{% endif %}
{% if paper.video %}
<a class="button" href="{{ paper.video }}" target="_blank">Video</a>
{% endif %}
{% if paper.code %}
<a class="button" href="{{ paper.code }}" target="_blank">Code</a>
{% endif %}
</div>
</div>
{% endfor %}
</div>
</div>
</div>
<!-- ========== PROJECTS ========== -->
<div class="docs-section" id="projects">
<h4>Projects</h4>
<p> A history of what I've done outside of the classroom / my job. Feel free to check out my projects on Instagram: <a href="https://www.instagram.com/astroboticist/">tech projects</a>, and <a href="https://www.instagram.com/j.disign/">art projects</a> </p>
<ul class="tab-nav">
<li><div class="button active" data-ref="#projects-selected">Selected</div></li>
<li><div class="button" data-ref="#projects-social">Social Good</div></li>
<li><div class="button" data-ref="#projects-art">Art</div></li>
<li><div class="button" data-ref="#projects-hardware">Hardware</div></li>
<li><div class="button" data-ref="#projects-software">Software</div></li>
<li><div class="button" data-ref="#projects-all">All</div></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="projects-selected">
{% assign selected_projects = site.data.projects.projects | where: "selected", "y" %}
{% for project in selected_projects %}
{% assign index_modulo = forloop.index0 | modulo:3 %}
{% if index_modulo == 0 %}
<div class="row">
{% endif %}
<div class="four columns">
<div class="project-container">
<div class="project-image-container">
<a href="{{ project.url }}">
<img src="{{ project.thumbnail }}" class="u-max-full-width" />
</a>
</div>
<div class="project-caption">
<b>{{ project.title }}</b> <br/>
{{ project.subtitle }}
</div>
</div>
</div>
{% if index_modulo == 2 %}
</div>
{% endif %}
{% endfor %}
</div>
</div>
<div class="tab-pane" id="projects-social">
{% assign social_projects = site.data.projects.projects | where: "social", "y" %}
{% for project in social_projects %}
{% assign index_modulo = forloop.index0 | modulo:3 %}
{% if index_modulo == 0 %}
<div class="row">
{% endif %}
<div class="four columns">
<div class="project-container">
<div class="project-image-container">
<a href="{{ project.url }}">
<img src="{{ project.thumbnail }}" class="u-max-full-width" />
</a>
</div>
<div class="project-caption">
<b>{{ project.title }}</b> <br/>
{{ project.subtitle }}
</div>
</div>
</div>
{% if index_modulo == 2 %}
</div>
{% endif %}
{% endfor %}
</div>
</div>
<div class="tab-pane" id="projects-art">
{% assign art_projects = site.data.projects.projects | where: "art", "y" %}
{% for project in art_projects %}
{% assign index_modulo = forloop.index0 | modulo:3 %}
{% if index_modulo == 0 %}
<div class="row">
{% endif %}
<div class="four columns">
<div class="project-container">
<div class="project-image-container">
<a href="{{ project.url }}">
<img src="{{ project.thumbnail }}" class="u-max-full-width" />
</a>
</div>
<div class="project-caption">
<b>{{ project.title }}</b> <br/>
{{ project.subtitle }}
</div>
</div>
</div>
{% if index_modulo == 2 %}
</div>
{% endif %}
{% endfor %}
</div>
</div>
<div class="tab-pane" id="projects-hardware">
{% assign hw_projects = site.data.projects.projects | where: "hardware", "y" %}
{% for project in hw_projects %}
{% assign index_modulo = forloop.index0 | modulo:3 %}
{% if index_modulo == 0 %}
<div class="row">
{% endif %}
<div class="four columns">
<div class="project-container">
<div class="project-image-container">
<a href="{{ project.url }}">
<img src="{{ project.thumbnail }}" class="u-max-full-width" />
</a>
</div>
<div class="project-caption">
<b>{{ project.title }}</b> <br/>
{{ project.subtitle }}
</div>
</div>
</div>
{% if index_modulo == 2 %}
</div>
{% endif %}
{% endfor %}
</div>
</div>
<div class="tab-pane" id="projects-software">
{% assign sw_projects = site.data.projects.projects | where: "software", "y" %}
{% for project in sw_projects %}
{% assign index_modulo = forloop.index0 | modulo:3 %}
{% if index_modulo == 0 %}
<div class="row">
{% endif %}
<div class="four columns">
<div class="project-container">
<div class="project-image-container">
<a href="{{ project.url }}">
<img src="{{ project.thumbnail }}" class="u-max-full-width" />
</a>
</div>
<div class="project-caption">
<b>{{ project.title }}</b> <br/>
{{ project.subtitle }}
</div>
</div>
</div>
{% if index_modulo == 2 %}
</div>
{% endif %}
{% endfor %}
</div>
</div>
<div class="tab-pane" id="projects-all">
{% for project in site.data.projects.projects %}
{% assign index_modulo = forloop.index0 | modulo:3 %}
{% if index_modulo == 0 %}
<div class="row">
{% endif %}
<div class="four columns">
<div class="project-container">
<div class="project-image-container">
<a href="{{ project.url }}">
<img src="{{ project.thumbnail }}" class="u-max-full-width" />
</a>
</div>
<div class="project-caption">
<b>{{ project.title }}</b> <br/>
{{ project.subtitle }}
</div>
</div>
</div>
{% if index_modulo == 2 %}
</div>
{% endif %}
{% endfor %}
</div>
</div>
</div>
<!-- ========== PERSONAL========== -->
<div class="docs-section" id="milestones">
<h4>Milestones</h4>
<p> It's always good to reflect on one's journey. Here is a timeline of things that were important to me.</p>
<!-- The Timeline -->
<ul class="timeline">
{% for exp in site.data.experience.experiences %}
<li>
{% if exp.category == "work" %}
<div class="direction-l">
{% else %}
<div class="direction-r">
{% endif %}
<div class="flag-wrapper">
<span class="flag">{{ exp.place }}</span>
<span class="time-wrapper"><span class="time">{{ exp.time }}</span></span>
</div>
<div class="desc"><b>{{ exp.title }}</b> <br/> {{ exp.subtitle }}</div>
</div>
</li>
{% endfor %}
</ul>
</div>
<div class="docs-section" id="template">
<h4>Site Acknowledgements</h4>
<p>
Adapted with permission using Martin Saveski's website template, available at
this <a href="https://github.com/msaveski/www_personal" target="_blank">GitHub repo</a>, and with help from <a href="http://svmiller.com/blog/2015/08/create-your-website-in-jekyll/" target="_blank">Steven V. Miller's blog</a>. The light mode toggler was inspired by <a href="https://cassidoo.co">Cassidy Williams</a>' website, with core implementation from <a href="https://www.developerdrive.com/css-dark-mode/">developerdrive.com</a>.
</p>
<p> Things are a bit buggy because I'm not a web developer by trade, so apologies for any browsing issues! All opinions on this site are my own and do not reflect my employer. </p>
</div>