Skip to content

Commit 9161f3b

Browse files
committed
Update CV, resize thumbnails
1 parent 14888ff commit 9161f3b

File tree

12 files changed

+18
-14
lines changed

12 files changed

+18
-14
lines changed

README.md

-8
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,6 @@ Test changes with:
1010
jekyll serve
1111
```
1212

13-
Push to the ML web directory:
14-
```
15-
rm -rf public_html
16-
mkdir public_html
17-
```
18-
```
19-
./__deploy.sh
20-
```
2113

2214
## External Libraries
2315
- Framework: [Jekyll](http://jekyllrb.com/)

_data/main_info.yaml

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: "Julia Di"
22
title: "Artist & Engineer"
3-
position: "Robotics PhD Student <br/> Stanford University"
3+
position: "Stanford PhD Student"
4+
5+
# last updated date
6+
date: "July 26, 2020"
7+
8+
# links
49
email: "mailto: [email protected]"
510
profile_pic: "/assets/images/profile.png"
611
twitter: "https://twitter.com/astroboticist"
@@ -10,4 +15,6 @@ linkedin: "https://www.linkedin.com/in/JuliaDi"
1015
github: "https://github.com/JuliaDi"
1116
CV: "/assets/cv/CV.pdf"
1217
google_scholar: "https://scholar.google.com/citations?hl=en&user=v4SvcqsAAAAJ"
18+
19+
# For site tracking
1320
google_analystics_tracking_id: 'UA-173589951-1'

_layouts/default.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,8 @@ <h1>{{ site.data.main_info.name }}</h1>
143143
{{ site.data.main_info.title }}
144144
</div>
145145
<div class="four columns">
146-
{{ site.data.main_info.position }}
146+
{{ site.data.main_info.position }} <br/>
147+
Updated: {{ site.data.main_info.date }}
147148
</div>
148149
<div class="four columns">
149150
<span onclick="window.open('{{ site.data.main_info.twitter }}')" style="cursor: pointer">

assets/cv/CV.pdf

1.52 KB
Binary file not shown.
File renamed without changes.

assets/projects/2019_artgans/main.png

853 KB
Loading
-657 KB
Loading
211 KB
Loading

assets/projects/2019_burn/glass.jpg

37.8 KB
Loading

index.html

+3-1
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ <h4>Publications</h4>
134134
<!-- ========== PROJECTS ========== -->
135135
<div class="docs-section" id="projects">
136136
<h4>Projects</h4>
137+
<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>
137138

138139
<ul class="tab-nav">
139140
<li><div class="button active" data-ref="#projects-selected">Selected</div></li>
@@ -367,5 +368,6 @@ <h4>Site Acknowledgements</h4>
367368
Adapted with permission using Martin Saveski's website template, available at
368369
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>.
369370
</p>
370-
<p> All opinions on this site are my own and do not reflect my employer. </p>
371+
<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>
372+
371373
</div>

libs/custom/my_css.css

+3-3
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ h4 {
174174
margin-bottom: 0;}
175175
.footer {
176176
text-align: center;
177-
color: rgba(255, 255, 255, 0.4);
177+
color: #636466;
178178
border-top: 1px solid #eee;
179179
padding: 15px 0 40px 0;
180180
margin-bottom: 0;}
@@ -358,12 +358,13 @@ h4 {
358358
}
359359

360360
body.light,
361+
footer.light-mode,
361362
body.light-mode button,
362363
body.light-mode .go-home,
363364
button.light-mode,
364365
button.light-mode button {
365366
background-color: #fff;
366-
font-color: #777;
367+
font-color: #222;
367368
}
368369

369370
.light-mode-toggler {
@@ -413,7 +414,6 @@ button.light-mode button {
413414
transition: all 0.4s ease-in;
414415
}
415416

416-
417417
.light,
418418
.light-mode,
419419
.light * {

libs/custom/my_js.js

+2
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,12 @@ $(document).ready(function() {
3232
if( !$( "body" ).hasClass( "light-mode" )) {
3333
$( "body" ).addClass( "light-mode" );
3434
$( "nav" ).addClass( "light-mode" );
35+
$( "footer" ).addClass( "light-mode" );
3536
$( ".light-mode-toggler" ).text( "OFF" );
3637
} else {
3738
$( "body" ).removeClass( "light-mode" );
3839
$( "nav" ).removeClass( "light-mode" );
40+
$( "footer" ).removeClass( "light-mode" );
3941
$( ".light-mode-toggler" ).text( "ON" );
4042
}
4143
});

0 commit comments

Comments
 (0)