116 lines
2.8 KiB
HTML
116 lines
2.8 KiB
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
<title>Damian Simon</title>
|
|
<link rel="stylesheet" href="index.css">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="Photography, programming, and other personal projects.">
|
|
<meta charset="UTF-8">
|
|
|
|
<style>
|
|
html {
|
|
color: rgb(51, 51, 46);
|
|
font-family: "monospace";
|
|
font-size: 1rem;
|
|
}
|
|
|
|
p {
|
|
max-width: 70ch;
|
|
}
|
|
|
|
pre {
|
|
font-size: 0.7rem;
|
|
}
|
|
|
|
.projects {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
margin-bottom: 2em;
|
|
}
|
|
|
|
.project {
|
|
display: flex;
|
|
align-items: baseline;
|
|
}
|
|
|
|
.project-link {
|
|
min-width: 20ch;
|
|
padding: 0 0.4em 0 0;
|
|
}
|
|
|
|
.project-desc {
|
|
padding: 0 0.4em;
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
html {
|
|
font-size: 1rem;
|
|
}
|
|
pre {
|
|
font-size: 2.6vw
|
|
}
|
|
.project {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
.project-link {
|
|
min-width: 0;
|
|
padding-right: 0;
|
|
}
|
|
}
|
|
|
|
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<pre aria-hidden="true">
|
|
|
|
_ _ _ _ _
|
|
| |__ ___| | | ___ __ _____ _ __| | __| |
|
|
| '_ \ / _ \ | |/ _ \ \ \ /\ / / _ \| '__| |/ _` |
|
|
| | | | __/ | | (_) | _ \ V V / (_) | | | | (_| |
|
|
|_| |_|\___|_|_|\___/ ( ) \_/\_/ \___/|_| |_|\__,_|
|
|
|/
|
|
</pre>
|
|
|
|
<p>
|
|
I'm a math undergraduate and hobbyist programmer with a growing interest in numerical methods and scientific computing.
|
|
</p>
|
|
|
|
<p><b>projects & hobbys</b></p>
|
|
|
|
<div class="projects">
|
|
<div class="project">
|
|
<a class="project-link" href="/git/damian/synth">synth</a>
|
|
<span class="project-desc">a modular synthesizer project to learn C</span>
|
|
</div>
|
|
|
|
<div class="project">
|
|
<a class="project-link" href="/mandelbrot">mandelbrot zoom</a>
|
|
<span class="project-desc">a simple mandelbrot zoom generator</span>
|
|
</div>
|
|
|
|
<div class="project">
|
|
<a class="project-link" href="/solvers">solvers</a>
|
|
<span class="project-desc">exercises in implementing numerical solvers</span>
|
|
</div>
|
|
|
|
<div class="project">
|
|
<a class="project-link" href="/boring">boring</a>
|
|
<span class="project-desc">a firefox extension to remove distractions on youtube and reddit</span>
|
|
</div>
|
|
|
|
<div class="project">
|
|
<a class="project-link" href="/photography">photography</a>
|
|
<span class="project-desc">some of my favourite photos</span>
|
|
</div>
|
|
</div>
|
|
|
|
<p>Feedback or suggestions are always welcome at <a href="mailto:damianhsimon@gmail.com">damianhsimon@gmail.com</a></p>
|
|
|
|
</body>
|
|
</html>
|