-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
150 lines (150 loc) · 4.27 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
<!DOCTYPE html>
<html>
<head>
<title>MPL</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/png" href="favicon.png">
<script src="wx.js" type="text/javascript">
</script>
</head>
<body>
<h1>Index</h1>
<div class=box>
<h3>Quick rundown</h3>
<p>
I am a recent graduate of Keene State College
(B.S. Computer Science) seeking entry-level
work in the software industry. I have
experience primarily in Java and C#, as well as
with SQL, both through MySQL and Oracle DB.
I’ve completed projects for Windows, Linux/BSD,
and Android, as well as some web applications
using HTML5, CSS3, JavaScript, and PHP. I’ve
also found uses for Microsoft Excel and VB
macros in the workplace, in order to streamline
data validation tasks while ensuring
correctness.
</p>
<p>
I also have a background with mathematics,
although it stops short of an official minor. I
have taken Calculus 1 & 2, linear algebra,
and discrete mathematics; I’ve found it a very
worthwile addition to a standard programming
curriculum.
</p>
<p>
I exist in digital form on both <a
href="https://github.com/m-putnam">GitHub</a>
and <a href="https://www.linkedin.com/in/matthew-lavin-35633b199/">LinkedIn</a>.
You can also view <a href="https://github.com/m-putnam/m-putnam.github.io">
this website</a> in repository form.
</p>
</div>
<h2>Education & projects</h2>
<div class=box>
<h3>Keene State College, Spring 2022</h3>
<p>
Graduated Spring 2022, GPA 3.4, member of
Upsilon Pi Epsilon computer science honor
society. My coursework included the following:
</p>
<ul>
<li>
Software Engineering Project, a
semester-long course which
required work as a group to
design and build a software
program according to a starting
specification.
</li>
<li>
Digital Image Processing: An
introduction to digital image
processing through MATLAB, which
culminated in a final project to
identify lane markers in road
images.
</li>
<li>
Mobile Application Development:
An introduction to developing
Android-based mobile apps, as
well as principles of user
experience.
</li>
<li>Calculus 1 & 2</li>
<li>Discrete Mathematics</li>
<li>Linear algebra</li>
</ul>
</div>
<div class=box>
<h3>WxApp</h3>
<p>
Consider <a href="https://github.com/m-putnam/LavinM_WxApp">WxApp</a>,
a C#/.NET 6 app which uses WinForms and the
Windows Runtime geolocation API to retrieve and
display a weather forecast from the National
Weather Service web API, much as this website
gives the current conditions in Keene, New
Hampshire.
</p>
</div>
<h2>Work experience</h2>
<div class="box">
<h3>Independent contractor, Transparent
Language, Inc.</h3>
<p>
January–February &
June–August 2021
</p>
<ul>
<li>Created language-learning lessons according
to a standard format, using
linguist-provided resources</li>
<li>Resolved conflicts between sources with
linguist</li>
<li>Documented gaps in data to ensure
smooth transition of project to
subsequent employees</li>
<li>Identified and reported two software bugs
which caused loss of lesson data</li>
</ul>
<p>
In this assignment, I encountered plenty of need
for creativity: I had to learn from square one
the role of radicals in Mandarin Chinese
(they’re the building blocks of every single
character, and convey meaning themselves), and
conduct research both online and in print
sources to determine the meaning and usage of
each radical.
</p>
</div>
<div class="box">
<h3>Warehouse volunteer, Habitat for Humanity
ReStore</h3>
<p>
Throughout 2018
</p>
<ul>
<li>Assisted with donation intake, processing,
pricing, & shelving</li>
<li>Moved bulky items and furniture upon intake
and after purchase</li>
<li>Answered customer queries and assisted with
loading of items</li>
</ul>
</div>
<h2>Weather</h2>
<div class="box" id="weather">
<p id="wxheader">
Conditions in Keene, NH circa...
</p>
<table>
<tbody id="wxtable">
</tbody>
</table>
</div>
</body>
</html>