-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (73 loc) · 2.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="icon" href="files/icons/favicon.png">
<meta name="description" content="Colin is a software engineer, currently working for Alarm.com, specializing in full-stack web development">
<meta name="keywords" content="colin, walsh, full, stack, front, end, frontend, backend, software, engineer, buffalo, ny, new york, syracuse, technology, ub, suny, beetosu, alarm.com">
<meta name="author" content="Colin Walsh">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="manifest" href="manifest.json">
<link rel="stylesheet" href="index.css" />
<meta name="theme-color" content="#282828"/>
<link rel="apple-touch-icon" href="files/icons/apple-touch-icon.png">
<script>
const devMessage =
`feel free to get a better view of this site / my other projects here!
https://github.com/beetosu/cwalsh.dev
٩(๑❛ᴗ❛๑)۶`;
console.log(devMessage);
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register("/serviceworker.js");
}
</script>
<script type="module">
const emojis = [
'🖼️', '🙇', '😎', '🐀', '🥸',
'👍', '🧍', '🧦', '🐸', '🐱',
'🐭', '🦆', '🦧', '🌱', '🪴',
'🍎', '🎨', '🏛️', '💾', '‼️',
'🦬', '🍊'
];
const idxEmoji = Math.floor(Math.random() * emojis.length);
const titleElement = document.getElementsByTagName("h1")[0];
titleElement.innerHTML = titleElement.innerHTML.replace('😄', emojis[idxEmoji]);
</script>
<title>Colin Walsh</title>
</head>
<body>
<div id="container">
<main>
<h1>Colin Walsh 😄</h1>
<address>
<a href="https://github.com/beetosu">GitHub</a> |
<a href="https://www.linkedin.com/in/colin-p-walsh/">LinkedIn</a> |
<a href="files/Resume.pdf">Résumé</a>
</address>
<p>
Hiya! 👋
</p>
<p>
My name is Colin <i>(he/they)</i>, I'm a software engineer currently residing in the Washington DC metro area!
</p>
<p>
Before moving to DC, I was a lifelong upstate New Yorker (raised in Syracuse, went to college in Buffalo).
</p>
<p>
I work at <a href="https://alarm.com">Alarm.com</a>, where I currently focus on full-stack web development as
a part of their home automation team (Ember.js, TypeScript, C#, SQL).
</p>
<p>
Outside of software engineering, I have a handful of creative projects, most of which you can check
out on my <a href="https://github.com/beetosu">GitHub</a> or <a href="https://beetosu.itch.io">Itch.io</a> page.
I'm also big fan of cats, farmers markets, music (mostly indie, hip-hop, punk), <a href="https://www.goodreads.com/grubgrub">books</a>
and <a href="https://letterboxd.com/beetosu">film</a> (big Coen brothers fan)!
</p>
</main>
</div>
<footer>
<a href="https://github.com/beetosu/cwalsh.dev/">Source</a> |
<a href="https://github.com/beetosu/cwalsh.dev/blob/master/LICENSE.md">License</a>
</footer>
</body>
</body>