-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
139 lines (112 loc) · 4.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
Sophia Li: About
</title>
<!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<link rel='stylesheet' href='css/stylesheet.css' type="text/css"/>
<script src="js/jquery-1.7.2.min.js"></script>
</head>
<body>
<div class="content">
<div class="container">
<div class="navbar">
<table class="navtable">
<tr>
<td><a href="index.html">Home</a></td>
<td><a href="portfolio.html">Portfolio</a></td>
<td><a href="resume.html">Resume</a></td>
<td><a href="contact.html">Contact</a></td>
<td><a href="http://blog.justsophie.com">Blog</a></td>
</tr>
</table>
</div>
</br>
<h1>About Me</h1>
<div class="text">> ./stats</div>
</br>
<div class="text_holder">
Name: Sophia Li</br>
Born: April 3, 1995 (21)</br>
Fav. food: Tomato soup</br>
Least fav. food: Mushrooms</br>
</br>
Job: Software Dev @ Amazon Robotics <br>
College: <a href="http://www.olin.edu/" target="_blank">Olin College of Engineering</a></br>
Major: Robotics, Class of 2017</br>
Languages known: Python, C++/C, Java, Matlab, OCaml, Verilog</br>
Notable Projects: <a href="edwin.html" target="_blank">Edwin</a>, <a href="walle" target="_blank">WALL-E</a></br>
</div>
</br>
<div class="text">> ./hello</div>
</br>
<div class="text_holder">
Welcome!</br></br>
My name is Sophia Li (call me Sophie!), and I'm currently a Software Developer at Amazon Robotics where I work on the next generation of customer service robots. My passion is in human robot interactions, and I've done a fair amount in the space computer vision and indoor localization. My favorite project is a dinosaur named <a href="edwin.html">Edwin</a> and he is the cutest thing ever. As a result of my various projects, I am quite familiar with <a href="http://www.ros.org/" target="_blank">ROS (Robot Operating System)</a> and its various packages. I'm most comfortable in Python and C/C++, but I'm also learning Java and jS because it's fun.
</br>
</br>
On spoken languages, I'm fluent in French, Mandarin Chinese and can speak enough Japanese to survive if I'm ever suddenly dropped in the middle of Tokyo. I like to bake and play video games, but my passion is in music, though my voice or guitar. I write a bit, and sporadically post my ramblings on my blog.
</br>
</br>
I love tackling challenging problems, so if you've got some of those to solve, send them my way!
</br>
</br>
</div>
<div class="text">> </div>
<div class="writer">./did_you_know</div>
<div class="m_desc"></div>
<div class="m_spacer">> </div>
<div class="cursor">|</div>
</br>
</br>
</div>
<!-- <div class="footer">© Sophia Li 2016</div> -->
</div>
<script type="text/javascript">
$('.m_desc').hide();
$('.m_spacer').hide();
var captionLength = 0;
var caption = '';
var fact = new Array();
fact[0] = "Sea otters hold hands so they don't drift apart while sleeping.</br></br>"
fact[1] = "Owls are the only birds who can see the color blue.</br></br>"
fact[2] = "Banana trees aren't actually trees--they're giant herbs.</br></br>"
fact[3] = "Venus is the only planet that rotates clockwise.</br></br>"
fact[4] = "Pandas don't have specific sleeping spots--they fall asleep wherever they happen to be.</br></br>"
fact[5] = "A pigeon is a dove, but a dove isn't necessarily a pigeon.</br></br>"
fact[6] = "The earth moves just over 1000 miles per hour around the sun. </br></br>"
$(document).ready(function(){
setInterval('cursorAnimate()', 800);
captionEl = $('.writer');
caption = captionEl.html();
captionEl.html('');
setTimeout('type()', 10000);
});
function type() {
captionEl.html(caption.substr(0, captionLength++));
if(captionLength < caption.length+1) {
setTimeout('type()', Math.floor(Math.random() * 100) + 60 );
} else {
captionLength = 0;
caption = '';
setTimeout("factShow()", 1000);
setInterval("factShow()", 8000);
}
}
function factShow(){
$('.m_desc').html(fact[Math.floor(Math.random() * fact.length)]).show();
$('.m_spacer').show();
}
function cursorAnimate(){
$('.cursor').animate({
opacity: 0
}, 'medium', 'swing').animate({
opacity: 1
}, 'medium', 'swing');
}
</script>
</body>
</html>