-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (89 loc) · 3.18 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
<!DOCTYPE html>
<html lang="en">
<!--Do you always read the comment section?-->
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-2YTEM6RT86"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-2YTEM6RT86");
</script>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4"
crossorigin="anonymous"
></script>
<div class="home-header">
<img
src="static/imgs/me_whiteboard.jpeg"
class="rounded-circle header-photo img-fluid"
alt="Mack Delany"
/>
<div class="header-titles">
<h1>Mack Delany</h1>
</div>
</div>
<div class="body-text">
<p>Hey -> I'm Mack. Thanks for stopping by.</p>
<p>
I'm an engineer who's built machine learning powered applications for
emergency medicine and carbon capture. I'm currently a Senior Software Engineer at
<a href="https://www.vitaler.com/">Vital</a>.
</p>
<p>
I previously founded and built
<a href="https://www.stantriage.com/">STAN</a>, a Supportive Triage
Assistant which helps emergency clinicians prioritise patients. STAN
supported over 50,000 patients.
</p>
<p>
I was also a founding engineer at
<a href="https://www.carboncrop.nz/">CarbonCrop</a>. We use remote
sensing, machine learning and good ole fashioned software to quantify
carbon sequested by forests. We then provide landowners with access to
carbon credits.
</p>
<p>
Past lifes? I've spent time in New York and Berlin at
<a href="https://www.mish.guru/">Mish Guru</a>. And I studied Civil and
Natural Resources Engineering at the University of Canterbury.
</p>
<p>
Get in touch with me at: <i>mackdelany [at] gmail.com<i>
</p>
<br />
<p>
<i><strong>More from me...</strong></i
><br />
<a href="stan.html">Supporting triage nurses with machine learning</a
><br />
<a href="armicroscopy.html">Building an augmented reality microscope</a
><br />
<a href="mlexplainer.html">Machine learning explained in 6 minutes</a
><br />
<a href="mylifeinphotos.html">Random memory generator</a><br />
<a href="./static/pdfs/mack_delany_resume.pdf" target="blank">Resume</a
><br />
<a href="https://github.com/mackdelany" target="blank">GitHub</a><br />
</p>
</div>
</body>
</html>