-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
110 lines (96 loc) · 3.31 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
<!DOCTYPE html>
<html>
<head>
<title>Javier Solis</title>
<link rel="stylesheet" href="main.css">
<script src="main.js"></script>
</head>
<body>
<header>
<h1>Javier Solis</h1>
<p>MIT Alum</p>
<p>
<a class="header-email" href="mailto:[email protected]"></a>
<a class="header-github" href="https://github.com/javier-solis"></a>
<a class="header-linkedin" href="https://www.linkedin.com/in/javier-solis1/"></a>
</p>
</header>
<!-- todo: mention that blue-colored icons are links -->
<section>
<h2>Projects</h2>
<section>
<h3>Personal</h3>
<!-- <p><b>Informational</b></p>-->
<p><b>Analytical</b></p>
<ul>
<li> todoLint [<span class="proj-wip"></span>, <a class="proj-repo" href="https://github.com/javier-solis/todolint"></a>] – Lightweight tool for collecting and processing 'todo' comments</li>
<li> Ark [<span class="proj-wip"></span>, <a class="proj-repo" href="https://github.com/javier-solis/ark"></a>] – CLI app for Academic Record Keeping</li>
</ul>
<p><b>Creative</b></p>
<ul>
<li> javsolis.dev [<span class="proj-wip"></span>, <a class="proj-repo" href="https://github.com/javier-solis/javsolis.dev"></a>] – This portfolio website</li>
</ul>
</section>
<section>
<h3>Collaborative</h3>
<p><b>Student Information Processing Board (Club)</b></p>
<ul>
<li> Command Line Fundamentals <a class="proj-website" href="https://sipb.mit.edu/iap/2022/clf/"></a> – Beginner-friendly lectures on Unix shell commands and concepts</li>
</ul>
<p><b>Usable Programming (Research Group)</b></p>
<ul>
<li> GitStream <a class="proj-repo" href="https://github.com/uid/gitstream"></a> – An interactive Git tutorial system</li>
</ul>
<p><b>Coursework</b></p>
<ul>
<li> Smart Kicks <a class="proj-repo" href="https://github.com/javier-solis/smart-kicks"></a> – An IoT wearable for navigating MIT</li>
</ul>
</section>
</section>
<br>
<section>
<h2>Skill Sets</h2>
<div class="skill-set">
<h3>Languages</h3>
<ul>
<li>TypeScript</li>
<li>C</li>
<li>Python</li>
<li>HTML/JS/CSS</li>
<li>Bash</li>
<li>Rust</li>
<li>R</li>
</ul>
</div>
<div class="skill-set">
<h3>Technologies</h3>
<ul>
<li>GNU/Linux</li>
<li>Docker</li>
<li>Git</li>
<li>Nginx</li>
<li>Vim</li>
<li>VirtualBox</li>
<li>Node.js</li>
</ul>
</div>
<div class="skill-set">
<h3>Concepts</h3>
<ul>
<li>Operating Systems</li>
<li>Network Protocols</li>
<li>Distributed Systems</li>
<li>Server Administration</li>
</ul>
</div>
</section>
<br>
<hr>
<br>
<footer>
<!-- todo: add lightbulb icon -->
<div id="modeToggle" onclick="toggleColorTheme()"><p>light/dark toggle</p></div>
<div id="lastModified"></div>
</footer>
</body>
</html>