Skip to content

Commit 14888ff

Browse files
committed
July 26, 2020 website update
1 parent 3e85134 commit 14888ff

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+322
-50
lines changed

_data/experience.yaml

+8-2
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,16 @@ experiences:
1818
subtitle: "Turned down my dream lab <br/> to attend Stanford for personal reasons"
1919
category: "school"
2020

21+
- place: "Southeast Asia"
22+
time: "January 2018"
23+
title: "Backpacked through southeast Asia"
24+
subtitle: "Was so much fun to do this <br/> before everyone scattered after college"
25+
category: "work"
26+
2127
- place: "Mountain View, CA"
2228
time: "Summer 2017"
23-
title: "First Love"
24-
subtitle: "Met my first love from college"
29+
title: "Decided on pursuing grad school"
30+
subtitle: "Also a pivotal summer where <br/> I met my first love from college"
2531
category: "work"
2632

2733
- place: "Columbia University"

_data/projects.yaml

+86-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,93 @@
11
projects:
22

3+
- title: "Women of Aeronautics and Astronautics (non-profit)"
4+
subtitle: "A movement for marginalized genders in aerospace"
5+
thumbnail: "assets/projects/2019_woaa/thumbnail.JPG"
6+
url: "projects/2019_woaa.html"
7+
selected: y
8+
social: y
9+
art: n
10+
hardware: n
11+
software: n
12+
13+
- title: "Windchest"
14+
subtitle: "An interactive light and sound architectural landscape installation"
15+
thumbnail: "assets/projects/2019_burn/windchest.JPG"
16+
url: "projects/2019_burn.html"
17+
selected: y
18+
social: n
19+
art: y
20+
hardware: n
21+
software: n
22+
23+
- title: "Stained Glass"
24+
subtitle: "A novice learns stained glass"
25+
thumbnail: "assets/projects/2019_burn/glass.jpg"
26+
url: "projects/2019_burn.html"
27+
selected: n
28+
social: n
29+
art: y
30+
hardware: n
31+
software: n
32+
33+
- title: "Generating Art"
34+
subtitle: "Using generative adversarial networks to make art"
35+
thumbnail: "assets/projects/2019_artgans/thumbnail.png"
36+
url: "projects/2019_artgans.html"
37+
selected: n
38+
social: n
39+
art: y
40+
hardware: n
41+
software: y
42+
343
- title: "Spyndra 1.0"
4-
subtitle: An Open-Source Proprioceptive Robot for Studies in Machine Self-Awareness"
44+
subtitle: "An Open-Source Proprioceptive Robot for Studies in Machine Self-Awareness"
545
thumbnail: "assets/projects/2018_spyndra/thumbnail.jpg"
646
url: "projects/2018_spyndra.html"
747
selected: y
48+
social: n
849
art: n
50+
hardware: y
51+
software: y
52+
53+
- title: "3D-printing"
54+
subtitle: "A collection of 3D-printed art"
55+
thumbnail: "assets/projects/2018_stratasys/thumbnail.jpg"
56+
url: "projects/2018_stratasys.html"
57+
selected: n
58+
social: n
59+
art: y
60+
hardware: n
61+
software: n
62+
63+
- title: "Columbia Space Initiative Projects"
64+
subtitle: "Started an organization that sends things to space and teaches others"
65+
thumbnail: "assets/projects/2016_csi/hab.jpg"
66+
url: "projects/2016_csi.html"
67+
selected: y
68+
social: y
69+
art: n
70+
hardware: y
71+
software: n
72+
73+
- title: "Alginate Mold"
74+
subtitle: "For patients with critical limb ischemia"
75+
thumbnail: "assets/projects/2016_alginate/thumbnail.jpg"
76+
url: "projects/2016_alginate.html"
77+
selected: n
78+
social: y
79+
art: n
80+
hardware: y
81+
software: n
82+
83+
- title: "Formula SAE"
84+
subtitle: "I was Vice President and an Electrical Engineer on this racecar"
85+
thumbnail: "assets/projects/2015_fsae/thumbnail.jpg"
86+
url: "projects/2015_fsae.html"
87+
selected: n
88+
social: n
89+
art: n
90+
hardware: y
91+
software: n
92+
93+

_layouts/default.html

+9-2
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,13 @@
5151

5252
<!-- Favicon
5353
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
54-
<link rel="icon" type="image/ico" href={{ "/assets/favicon/favicon.ico" | prepend: site.baseurl }}>
55-
<link rel="shortcut icon" type="image/ico" href={{ "/assets/favicon/favicon.ico" | prepend: site.baseurl }}>
54+
<link rel="apple-touch-icon" sizes="180x180" href={{ "assets/favicon/apple-touch-icon.png" | prepend: site.baseurl }}>
55+
<link rel="icon" type="image/png" sizes="32x32" href={{ "assets/favicon/favicon-32x32.png" | prepend: site.baseurl }}">
56+
<link rel="icon" type="image/png" sizes="16x16" href={{ "assets/favicon/favicon-16x16.png" | prepend: site.baseurl }}>
57+
<link rel="manifest" href="/site.webmanifest">
58+
59+
60+
5661

5762
</head>
5863
<body>
@@ -123,6 +128,8 @@ <h1>{{ site.data.main_info.name }}</h1>
123128
<li class="navbar-item"><a class="navbar-link" href={{ "/index.html#projects" | prepend: site.baseurl }}>Projects</a></li>
124129
<li class="navbar-item"><a class="navbar-link" href={{ "/index.html#milestones" | prepend: site.baseurl }}>Milestones</a></li>
125130
<li class="navbar-item"><a class="navbar-link" href={{ "/blog.html" | prepend: site.baseurl }}>Blog</a></li>
131+
<li class="navbar-item"><a class="navbar-link" href={{ "/blog.html" | prepend: site.baseurl }}> </a></li>
132+
<li class="navbar-item"><a class="navbar-img" href="{{ site.baseurl }}/"><img src={{ "assets/favicon/favicon-32x32.png" | prepend: site.baseurl }}></a></li>
126133
</ul>
127134
</div>
128135
</nav>

_projects/2015_fsae.md

+29

_projects/2016_alginate.md

+29

_projects/2016_csi.md

+29

_projects/2018_stratasys.md

+7

_projects/2019_artgans.md

+8

_projects/2019_burn.md

+7

_projects/2019_woaa.md

+8

assets/cv/CV.pdf

-47 Bytes
Binary file not shown.

assets/cv/resume.pdf

-177 Bytes
Binary file not shown.
4.1 KB
11.3 KB
-3.36 KB
Binary file not shown.
-3.37 KB
Binary file not shown.

assets/favicon/android-icon-36x36.png

-1.42 KB
Binary file not shown.

assets/favicon/android-icon-48x48.png

-1.62 KB
Binary file not shown.

assets/favicon/android-icon-72x72.png

-2.04 KB
Binary file not shown.

assets/favicon/android-icon-96x96.png

-2.46 KB
Binary file not shown.

assets/favicon/apple-icon-114x114.png

-2.73 KB
Binary file not shown.

assets/favicon/apple-icon-120x120.png

-2.87 KB
Binary file not shown.

assets/favicon/apple-icon-144x144.png

-3.36 KB
Binary file not shown.

assets/favicon/apple-icon-152x152.png

-3.53 KB
Binary file not shown.

assets/favicon/apple-icon-180x180.png

-7.2 KB
Binary file not shown.

assets/favicon/apple-icon-57x57.png

-1.75 KB
Binary file not shown.

assets/favicon/apple-icon-60x60.png

-1.83 KB
Binary file not shown.

assets/favicon/apple-icon-72x72.png

-2.04 KB
Binary file not shown.

assets/favicon/apple-icon-76x76.png

-2.07 KB
Binary file not shown.
-3.92 KB
Binary file not shown.

assets/favicon/apple-icon.png

-3.92 KB
Binary file not shown.

assets/favicon/apple-touch-icon.png

3.6 KB

assets/favicon/browserconfig.xml

-2
This file was deleted.

assets/favicon/favicon-16x16.png

-652 Bytes

assets/favicon/favicon-32x32.png

-719 Bytes

assets/favicon/favicon-96x96.png

-2.46 KB
Binary file not shown.

assets/favicon/favicon.ico

13.9 KB
Binary file not shown.

assets/favicon/manifest.json

-41
This file was deleted.

assets/favicon/ms-icon-144x144.png

-3.36 KB
Binary file not shown.

assets/favicon/ms-icon-150x150.png

-3.53 KB
Binary file not shown.

assets/favicon/ms-icon-310x310.png

-15.2 KB
Binary file not shown.

assets/favicon/ms-icon-70x70.png

-1.97 KB
Binary file not shown.

assets/images/hamradio.jpg

-72.7 KB
Binary file not shown.
File renamed without changes.
File renamed without changes.
392 KB
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
40.9 KB
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
65.7 KB
853 KB

assets/projects/2019_burn/glass.jpg

211 KB
1.89 MB
499 KB

0 commit comments

Comments
 (0)