-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
264 lines (250 loc) · 11.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
<!DOCTYPE html>
<html>
<head>
<title>Tristin Xie</title>
<meta charset="utf-8">
<link rel="icon" href="./resources/Me.jpg">
</head>
<body>
<header>
<h1>Welcome to My Website</h1>
<h1>My name is </h1>
<pre>
_______ _ _ _ __ ___
|__ __| (_) | | (_) \ \ / (_)
| |_ __ _ ___| |_ _ _ __ \ V / _ ___
| | '__| / __| __| | '_ \ | |/ _ \
| | | | \__ \ |_| | | | | / . \| | __/
|_|_| |_|___/\__|_|_| |_| /_/ \_\_|\___|
</pre>
<h2>This site is still <span>under construction</span></h2>
</header>
<hr>
<nav>
<h3>Table of contents</h3>
<ul>
<li>Education</li>
<li>Short Bio</li>
<li>Projects</li>
<li>Fun Stuff</li>
<li>Contacts</li>
</ul>
</nav>
<hr>
<main>
<section>
<h1>Education</h1>
<p>Bachelor of Science in Computer Science at University of California San Diego</p>
<figure>
<img src="resources/UCSD_Seal.png"
alt="UC San Diego Seal">
<figcaption>The official untransformed seal of UC San Diego. I do not own this image, UC San Diego does. <a href="https://creativecommons.org/licenses/by-sa/4.0/deed.en">See license</a> </figcaption>
</figure>
</section>
<hr>
<section>
<h3>Short Bio</h3>
<div>
<p>Hello! My name is Tristin Xie and I’m a <em>second year Computer Science student.</em> Currently I’m taking <b>CSE 101: Design and Analysis of Algorithms,
<br>CSE 110: Software Engineering, CSE 140: Components and Design Techniques for Digital Systems, CSE 140L: Digital Systems Laboratory.</b><br>
My favorite food is pizza noodles. I like to program in many programming languages, including <strong>C/C++, Java, JavaScript, Python, and more!</strong>
</p>
</div>
</section>
<hr>
<section>
<h3>Projects</h3>
For any of these projects you can download them using <code>git clone.</code> You can run them with their respective language: <code>python3</code> or <code>npm.</code>
<ol>
<li><a href="https://github.com/LelandTLong/ACM_Project">ACM Teammate Finder</a></li>
<li>Here's a snippet of a main component I worked on: </li>
<li><a href="https://github.com/jerukan/EnviroSense">EnviroSense</a></li>
<li><a href="https://github.com/ucsd-cse-spis-2019/project-tristin-caroline">PictureTranslate</a></li>
</ol>
</section>
<hr>
<section>
<h3>Fun Stuff</h3>
My favorite internet cat right now<br>
<picture>
<source srcset="resources/cat1.jfif"
media="(min-width: 800px)">
<img src="resources/cat2.jpg" alt="picture of cat"/>
</picture>
<iframe
title="Fun Data Structures"
width="300"
height="200"
src="https://www.youtube.com/embed/rhpyqL5D7K0">
</iframe>
<p>I like to watch Data Structures videos by Professor Moshiri for fun.</p>
<figure>
<figcaption>Correct pronunciation of my name</figcaption>
<audio
controls
src="resources/name.m4a">
</audio>
</figure>
<h3>Timelapse of Queen of the night blooming</h3>
<video controls width="350">
<source src="resources/timelapse.mp4"
type="video/webm">
</video>
<h3>Is this a square or rectangle?</h3>
<svg viewBox="0 0 300 50" xmlns="http://www.w3.org/2000/svg" stroke="blue" fill="blue">
<rect height="50" width="50"/>
</svg>
<table>
<caption>Math is fun</caption>
<colgroup>
<col span="2">
</colgroup>
<tr>
<th>Fib(n)</th>
<th>Number</th>
</tr>
<tr>
<td>
Fib(1)
</td>
<td>1</td>
</tr>
<tr>
<td>
Fib(2)
</td>
<td>1</td>
</tr>
<tr>
<td>
Fib(3)
</td>
<td>2</td>
</tr>
<tr>
<td>
Fib(4)
</td>
<td>3</td>
</tr>
<tr>
<td>
Fib(5)
</td>
<td>5</td>
</tr>
<tr>
<td>
Fib(6)
</td>
<td>8</td>
</tr>
<tr>
<td>
Fib(n)
</td>
<td>F(n-1) + F(n-2)</td>
</tr>
</table>
</section>
<hr>
<section>
<h3>Apply to Tristin LLC</h3>
<form>
<label>First Name</label>
<input>
<br>
<label>Last Name</label>
<input>
<br>
<label>Are you a UCSD student?</label>
<input type="checkbox">
</form><label for="dino-select">Choose a major or Department</label>
<select id="dino-select">
<optgroup label="Major">
<option>Computer Science</option>
<option>Computer Engineering</option>
<option>Math-CS</option>
</optgroup>
<optgroup label="Department">
<option>CSE</option>
<option>ECE</option>
<option>MATH</option>
</optgroup>
</select>
<label>Email</label>
<input type="email">
<br>
<label>Favorite color</label>
<input type="color">
<br>
<label>Resume</label>
<input type="file">
<br>
<label>Favorite Number</label>
<input type="number">
<br>
<label>How excited are you?</label>
<input type="range">
<br>
<label>Date of Graduation</label>
<input type="month">
<fieldset>
<legend>Select your gender</legend>
<input type="radio" name="gender">
<label>Male</label><br/>
<input type="radio" name="gender">
<label>Female</label><br/>
<input type="radio" name="gender">
<label>Other/Prefer not to say</label>
</fieldset>
<label>Why do you want to be part of Tristin INC?</label>
<br>
<textarea id="why" name="why"
rows="5" cols="33">
Please no longer than 5 words
</textarea>
<br>
<label>Choose a location:</label>
<input list="locations" id="Locations" name="Locations" />
<datalist id="locations">
<option value="Los Angeles, California">
<option value="San Diego, California">
<option value="San Jose California">
</datalist>
<details>
<summary>Terms and Conditions</summary>
Nothing lol.
</details> <label>Agree?</label><input type="checkbox">
<br>
<button
type="button">
Does nothing
</button>
<input type="reset">
<input type="submit">
<template id="status">Submitted!</template>
</section>
<hr>
<section>
<h3>Contacts</h3>
<ol>
<li>School Email: <a href="mailto:[email protected]">[email protected]</a></li>
<li> Personal Email: <a href="mailto:[email protected]">[email protected]</a></li>
<li>Github: <a href="https://www.github.com/tristinxie"><img
src="resources/GitHub-Mark-32px.png"
alt="GitHub icon">tristinxie</a></li>
<li>Linkedin: <a href="https://www.linkedin.com/in/tristin-xie-245918167/">Tristin Xie</a></li>
</ol>
</section>
</main>
<hr>
<footer>
<p>© 2021 Tristin Xie</p>
<aside>
All rights reserved
</aside>
<canvas width="50" height="50">Made with ♥ by Tristin Xie</canvas>
</footer>
</body>
</html>