-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogramming.html
More file actions
290 lines (286 loc) · 16.6 KB
/
programming.html
File metadata and controls
290 lines (286 loc) · 16.6 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
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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
<html>
<head>
<title>mathspin - Programming</title>
<link href="./styles/output.css"
rel="stylesheet" />
<link rel="icon"
type="image/png"
href="./img/mathspin fav v1.png" />
</head>
<body class="bg-white dark:bg-gray-900 text-gray-900 dark:text-white">
<header>
<!-- Nav bar is from https://tailwindflex.com/@tofayel-islam/responsive-navbar-2 -->
<nav class="bg-white border-gray-200 dark:bg-gray-900">
<div class="max-w-screen-xl flex flex-wrap items-center justify-between mx-auto p-4">
<a href="#"
class="flex items-center space-x-3 rtl:space-x-reverse">
<img src="./img/mathspin logo v1.png"
class="h-8 filter dark:invert"
alt="Logo" />
<h1 class="self-center text-2xl font-semibold whitespace-nowrap dark:text-white">
Mathspin
</h1>
</a>
<button data-collapse-toggle="navbar-default"
type="button"
class="inline-flex items-center p-2 w-10 h-10 justify-center text-sm text-gray-500 rounded-lg md:hidden hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-gray-200 dark:text-gray-400 dark:hover:bg-gray-700 dark:focus:ring-gray-600"
aria-controls="navbar-default"
aria-expanded="false">
<span class="sr-only">Open main menu</span>
<svg class="w-5 h-5"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 17 14">
<path stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M1 1h15M1 7h15M1 13h15" />
</svg>
</button>
<div class="hidden w-full md:block md:w-auto"
id="navbar-default">
<ul
class="font-medium flex flex-col p-4 md:p-0 mt-4 border border-gray-100 rounded-lg bg-gray-50 md:flex-row md:space-x-8 rtl:space-x-reverse md:mt-0 md:border-0 md:bg-white dark:bg-gray-800 md:dark:bg-gray-900 dark:border-gray-700">
<li>
<a href="./index.html"
class="block py-2 px-3 text-gray-900 rounded hover:bg-gray-100 md:hover:bg-transparent md:border-0 md:hover:text-blue-700 md:p-0 dark:text-white md:dark:hover:text-blue-500 dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent">Home</a>
</li>
<li>
<a href="./about-me.html"
class="block py-2 px-3 text-gray-900 rounded hover:bg-gray-100 md:hover:bg-transparent md:border-0 md:hover:text-blue-700 md:p-0 dark:text-white md:dark:hover:text-blue-500 dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent"
aria-current="page">About Me</a>
</li>
<li>
<a href="#"
class="block py-2 px-3 text-white bg-blue-700 rounded md:bg-transparent md:text-blue-700 md:p-0 dark:text-white md:dark:text-blue-500">Programming</a>
</li>
<li>
<a href="./mathematics.html"
class="block py-2 px-3 text-gray-900 rounded hover:bg-gray-100 md:hover:bg-transparent md:border-0 md:hover:text-blue-700 md:p-0 dark:text-white md:dark:hover:text-blue-500 dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent">Mathematics</a>
</li>
<li>
<a href="./contact.html"
class="block py-2 px-3 text-gray-900 rounded hover:bg-gray-100 md:hover:bg-transparent md:border-0 md:hover:text-blue-700 md:p-0 dark:text-white md:dark:hover:text-blue-500 dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<a href=""
target="_blank"
rel="noopener noreferrer"
class="underline text-blue-600 hover:text-blue-800 visited:text-purple-600 dark:text-sky-600 dark:hover:text-sky-400 dark:visited:text-indigo-500"></a>
<main class="max-w-screen-sm mx-auto grid grid-flow-row grid-cols-1"><!--justify-items-center-->
<h2 class="text-2xl row-span-1 place-self-center">Programming</h2>
<br />
<h3 class="text-xl row-span-1 place-self-center">Languages</h3>
<br />
<p>
The languages that I've
used the most are <a href="https://www.python.org/">Python</a> and the
<a
href="https://en.wikipedia.org/wiki/Comparison_of_multi-paradigm_programming_languages">multi-paradigm</a>
<a href="https://en.wikipedia.org/wiki/Wolfram_Language">Wolfram Language</a>
(used in
<a href="https://en.wikipedia.org/wiki/Wolfram_Mathematica">Mathematica</a>), but I've also written a fair
bit in
<a href="https://www.haskell.org/">Haskell</a> and
<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript">Javascript</a>, and dabbled in many other
languages—<a href="https://en.wikipedia.org/wiki/Java_(programming_language)">Java</a>,
<a href="https://en.wikipedia.org/wiki/Kotlin_(programming_language)">Kotlin</a>, <a
href="https://www.purescript.org/">Purescript</a>,
<a href="https://en.wikipedia.org/wiki/C_(programming_language)">C</a>,
<a href="https://isocpp.org/">C++</a>,
<a href="https://www.ruby-lang.org/en/">Ruby</a>,
<a href="https://www.perl.org/">Perl</a>, …
</p>
<br />
<p>In addition, I've used other
sorts of languages, including <a href="https://en.wikipedia.org/wiki/HTML">HTML</a>, <a
href="https://en.wikipedia.org/wiki/CSS">CSS</a>, <a href="https://en.wikipedia.org/wiki/SQL">SQL</a>, <a
href="https://learn.microsoft.com/en-us/power-query/power-query-what-is-power-query">Power Query M</a>,
<a href="https://www.latex-project.org/">(La)TeX</a>, …
</p>
<br />
<p> Given my interest in education and my work with students from around the world, I'd like to highlight <a
href="https://www.hedycode.com/">Hedy</a>, which
scaffolds students along the path to learning Python via easier commands in their native language.
</p>
<br />
<h3 class="text-xl row-span-1 place-self-center">Work Projects</h3>
<br />
<ul class="row-span-1">
<li>
<details>
<summary>Moodle Image Extractor | Python</summary>
<br />
<ul class="list-disc list-outside">
<li>
Extracts base64-encoded images out of a Moodle question bank <span
class="font-mono">xml</span> file to save on a
multimedia server, producing an updated <span class="font-mono">xml</span> file with
appropriate links, and logging
the changes in a <span class="font-mono">tsv</span> spreadsheet
</li>
<li>
Saved team over 100 hours of tedious work in Moodle, while decreasing question bank
size-on-disk for
more efficient operation
</li>
<li>
<a href=https://github.com/sedram/Moodle-image-extractor>Github page</a>
</li>
</ul>
<br />
</details>
</li>
<li>
<details>
<summary>Video and Caption processor | Python</summary>
<br />
<ul class="list-disc list-outside">
<li>
Splits <span class="font-mono">mp4</span> videos and corresponding <span
class="font-mono">vtt</span> caption files into sections at timestamps dictated by a
<span class="font-mono">csv</span> spreadsheet
</li>
<li>
Produces corresponding <span class="font-mono">txt</span> and <span
class="font-mono">pdf</span> transcripts from the caption files
</li>
<li>
Promoted accessibility while saving team ~50 hours of manual file editing
</li>
<li>
<a href=https://github.com/sedram/Video-and-caption-splitting>Github page</a>
</li>
</ul>
<br />
</details>
</li>
<li>
<details>
<summary>Enrollment Dashboard | Power BI</summary>
<br />
<ul class="list-disc list-outside">
<li>
Extracts data from Excel sheets of enrollments and instructor/supervisor relationships,
transforms them (joins and calculations) with Power Query, and presents the data in a more
useful format using Power BI
</li>
<li>
Helps supervisors across the department make decisions about how to distribute work across
~250 part-time employees
</li>
<li>
Clarifies where needs are to enable data-driven seasonal hiring decisions
</li>
<!--TODO: Add an anonymized image of the dashboard here
<li>
<a href=https://github.com/sedram/Video-and-caption-splitting>Github page</a>
</li>
-->
</ul>
</details>
</li>
</ul>
</main>
<footer>
<!-- Footer adapted from https://tailwindflex.com/@manuela-bianka/responsive-footer -->
<div class="px-4 pt-16 mx-auto sm:max-w-xl md:max-w-full lg:max-w-screen-xl md:px-24 lg:px-8">
<!--
<div class="grid gap-10 row-gap-6 mb-8 sm:grid-cols-2 lg:grid-cols-4">
<div class="sm:col-span-2">
<a href="/" aria-label="Go home" title="Company" class="inline-flex items-center">
<svg class="w-8 text-deep-purple-accent-400" viewBox="0 0 24 24" stroke-linejoin="round" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" stroke="currentColor" fill="none">
<rect x="3" y="1" width="7" height="12"></rect>
<rect x="3" y="17" width="7" height="6"></rect>
<rect x="14" y="1" width="7" height="6"></rect>
<rect x="14" y="11" width="7" height="12"></rect>
</svg>
<span class="ml-2 text-xl font-bold tracking-wide text-gray-800 uppercase">Company</span>
</a>
<div class="mt-6 lg:max-w-sm">
<p class="text-sm text-gray-800">
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.
</p>
<p class="mt-4 text-sm text-gray-800">
Eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.
</p>
</div>
</div>
<div class="space-y-2 text-sm">
<p class="text-base font-bold tracking-wide text-gray-900">Contacts</p>
<div class="flex">
<p class="mr-1 text-gray-800">Phone:</p>
<a href="tel:850-123-5021" aria-label="Our phone" title="Our phone" class="transition-colors duration-300 text-deep-purple-accent-400 hover:text-deep-purple-800">850-123-5021</a>
</div>
<div class="flex">
<p class="mr-1 text-gray-800">Email:</p>
<a href="mailto:info@lorem.mail" aria-label="Our email" title="Our email" class="transition-colors duration-300 text-deep-purple-accent-400 hover:text-deep-purple-800">info@lorem.mail</a>
</div>
<div class="flex">
<p class="mr-1 text-gray-800">Address:</p>
<a href="https://www.google.com/maps" target="_blank" rel="noopener noreferrer" aria-label="Our address" title="Our address" class="transition-colors duration-300 text-deep-purple-accent-400 hover:text-deep-purple-800">
312 Lovely Street, NY
</a>
</div>
</div>
<div>
<span class="text-base font-bold tracking-wide text-gray-900">Social</span>
<div class="flex items-center mt-1 space-x-3">
<a href="/" class="text-gray-500 transition-colors duration-300 hover:text-deep-purple-accent-400">
<svg viewBox="0 0 24 24" fill="currentColor" class="h-5">
<path
d="M24,4.6c-0.9,0.4-1.8,0.7-2.8,0.8c1-0.6,1.8-1.6,2.2-2.7c-1,0.6-2,1-3.1,1.2c-0.9-1-2.2-1.6-3.6-1.6 c-2.7,0-4.9,2.2-4.9,4.9c0,0.4,0,0.8,0.1,1.1C7.7,8.1,4.1,6.1,1.7,3.1C1.2,3.9,1,4.7,1,5.6c0,1.7,0.9,3.2,2.2,4.1 C2.4,9.7,1.6,9.5,1,9.1c0,0,0,0,0,0.1c0,2.4,1.7,4.4,3.9,4.8c-0.4,0.1-0.8,0.2-1.3,0.2c-0.3,0-0.6,0-0.9-0.1c0.6,2,2.4,3.4,4.6,3.4 c-1.7,1.3-3.8,2.1-6.1,2.1c-0.4,0-0.8,0-1.2-0.1c2.2,1.4,4.8,2.2,7.5,2.2c9.1,0,14-7.5,14-14c0-0.2,0-0.4,0-0.6 C22.5,6.4,23.3,5.5,24,4.6z"
></path>
</svg>
</a>
<a href="/" class="text-gray-500 transition-colors duration-300 hover:text-deep-purple-accent-400">
<svg viewBox="0 0 30 30" fill="currentColor" class="h-6">
<circle cx="15" cy="15" r="4"></circle>
<path
d="M19.999,3h-10C6.14,3,3,6.141,3,10.001v10C3,23.86,6.141,27,10.001,27h10C23.86,27,27,23.859,27,19.999v-10 C27,6.14,23.859,3,19.999,3z M15,21c-3.309,0-6-2.691-6-6s2.691-6,6-6s6,2.691,6,6S18.309,21,15,21z M22,9c-0.552,0-1-0.448-1-1 c0-0.552,0.448-1,1-1s1,0.448,1,1C23,8.552,22.552,9,22,9z"
></path>
</svg>
</a>
<a href="/" class="text-gray-500 transition-colors duration-300 hover:text-deep-purple-accent-400">
<svg viewBox="0 0 24 24" fill="currentColor" class="h-5">
<path
d="M22,0H2C0.895,0,0,0.895,0,2v20c0,1.105,0.895,2,2,2h11v-9h-3v-4h3V8.413c0-3.1,1.893-4.788,4.659-4.788 c1.325,0,2.463,0.099,2.795,0.143v3.24l-1.918,0.001c-1.504,0-1.795,0.715-1.795,1.763V11h4.44l-1,4h-3.44v9H22c1.105,0,2-0.895,2-2 V2C24,0.895,23.105,0,22,0z"
></path>
</svg>
</a>
</div>
<p class="mt-4 text-sm text-gray-500">
Bacon ipsum dolor amet short ribs pig sausage prosciutto chicken spare ribs salami.
</p>
</div>
</div>
-->
<div class="flex flex-col-reverse justify-between pt-5 pb-10 border-t lg:flex-row">
<p class="text-sm text-gray-600 dark:text-gray-300">
© 2024 Mark Spindler. All rights reserved.
</p>
<!-- If I want lower right links like FAQ or VPAT
<ul class="flex flex-col mb-3 space-y-2 lg:mb-0 sm:space-y-0 sm:space-x-5 sm:flex-row">
<li>
<a href="/" class="text-sm text-gray-600 transition-colors duration-300 hover:text-deep-purple-accent-400">F.A.Q</a>
</li>
<li>
<a href="/" class="text-sm text-gray-600 transition-colors duration-300 hover:text-deep-purple-accent-400">Privacy Policy</a>
</li>
<li>
<a href="/" class="text-sm text-gray-600 transition-colors duration-300 hover:text-deep-purple-accent-400">Terms & Conditions</a>
</li>
</ul>
-->
</div>
</div>
</footer>
<script src="./scripts/formatting.js"></script>
</body>
</html>