forked from cs4241-22a/a1-gettingstarted
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (64 loc) · 2.1 KB
/
index.html
File metadata and controls
64 lines (64 loc) · 2.1 KB
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
<!doctype html>
<html lang="en">
<head>
<title>CS4241 Assignment 1</title>
<meta charset="utf-8">
</head>
<body>
<link rel="stylesheet" href="style.css">
<h1>Information about Patrick Salisbury</h1>
<h2>General:</h2>
<p>
My name is Patrick Salisbury, and I have no relation to the Salisbury family from the area
(as far as I know). I am a WPI student in the class of 2024.
</p>
<!-- hyperlink Brookline, New Hampshire later -->
<p>
I grew up in
<a href="https://en.wikipedia.org/wiki/Brookline,_New_Hampshire" target="_blank">Brookline, New Hampshire</a>
, a small town about an hour north of the WPI campus.
</p>
<p>
I tend to have an alarming number of hobbies.
I have attempted to list some of them below (in order of interest somewhat):
</p>
<ol>
<!-- add some photos of my L2 cert -->
<li>
<a href="images/hpr.jpg">High Powered Rocketry</a>
</li>
<li>Astronomy/Astrophotography</li>
<li>Gaming</li>
<li>Fishing</li>
<!-- hyperlink 4000 footers -->
<li>Hiking (the <a href="http://4000footers.com/nh.shtml" target="_blank">NH 4000 footers</a>
are on my bucket list)
</li>
<li>Cooking (in particular smoking/BBQ)</li>
</ol>
<h3>Major: Computer Science</h3>
<p>I have a particular interest in AI and software security.</p>
<h2>Experience:</h2>
<h3>Previous Courses:</h3>
<ol>
<li>CS 1101. INTRODUCTION TO PROGRAM DESIGN</li>
<li>CS 2102. OBJECT-ORIENTED DESIGN CONCEPTS</li>
<li>CS 2022. DISCRETE MATHEMATICS</li>
<li>CS 2303. SYSTEMS PROGRAMMING CONCEPTS</li>
<li>CS 2223. ALGORITHMS</li>
<li>CS 3013. OPERATING SYSTEMS</li>
<li>CS 3516. COMPUTER NETWORKS</li>
<li>CS 4731. COMPUTER GRAPHICS</li>
</ol>
<h3>Technologies and methods:</h3>
<ul>
<li>HTML: Some</li>
<li>CSS: Some</li>
<li>Java: A lot</li>
<li>Javascript: Some</li>
<li>Ruby: None</li>
<li>Python: A lot</li>
<li>Unit testing: Very little beyond CS2102</li>
</ul>
</body>
</html>