-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (80 loc) · 4.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Hi, I'm Cameron</title>
<link href="https://fonts.googleapis.com/css?family=Poppins:400,700" rel="stylesheet">
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous" />
<!-- Google Analytics -->
<script>
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'UA-57942641-1', 'auto');
ga('send', 'pageview');
const captureOutboundLink = function(url) {
ga('send', 'event', 'outbound', 'click', url, {
'transport': 'beacon'
});
return false;
}
window.onload = function() {
const links = document.getElementsByTagName("a");
for (let elm of links) {
const href = elm.getAttribute('href');
if (href.startsWith('http') || href.startsWith('mailto:')) {
elm.addEventListener('click', captureOutboundLink.bind(null, href), false);
}
}
}
</script>
<script async src='https://www.google-analytics.com/analytics.js'></script>
<!-- End Google Analytics -->
</head>
<body>
<section id="header">
<img class="profile-picture" src="images/me.png" alt="Cameron Moreau">
<h1>Hi, I'm Cameron 👋</h1>
<p>
I'm a <a href="https://github.com/cameronmoreau" target="_blank">Software Engineer</a> based in <a href="https://en.wikipedia.org/wiki/San_Francisco" target="_blank">San Francisco, CA</a> but home is back in <a href="https://en.wikipedia.org/wiki/Dallas" target="_blank">Dallas, TX</a>. I primarily work on <a href="https://nodejs.org/en/about/" target="_blank">backend</a> and have a deep passion for <a href="https://devpost.com/_cameronmoreau" target="_blank">building cool things</a>, <a href="https://martinfowler.com/books/refactoring.html" target="_blank">beautiful code</a> and <a href="https://dribbble.com/cameronmoreau" target="_blank">user interaction and design</a>.
</p>
<div id="header-links">
<a class="main-link" href="https://github.com/cameronmoreau" target="_blank">
<i class="fab fa-github"></i>Github
</a>
<a class="main-link" href="https://devpost.com/_cameronmoreau" target="_blank">
<i class="fas fa-flask"></i>Devpost
</a>
<a class="main-link" href="https://www.linkedin.com/in/cameron-moreau" target="_blank">
<i class="fab fa-linkedin-in"></i>LinkedIn
</a>
<a class="main-link" href="https://www.dropbox.com/s/jrzl9ssbxsnaf3m/cameron_moreau_resume.pdf" target="_blank">
<i class="far fa-file-alt"></i>Resume
</a>
<a class="main-link" href="https://www.instagram.com/_cameronmoreau/" target="_blank">
<i class="fas fa-paw"></i>My dog, Twix
</a>
</div>
<p>Want to get in touch? <a href="mailto:[email protected]" target="_blank">Contact me</a></p>
</section>
<hr />
<section id="talks">
<div class="talk">
<div class="title">Bonus: Cameron Moreau, Gozova</div>
<div class="sub-title">Code Story, 2021</div>
<div class="extra"><a href="https://codestory.co/podcast/bonus-cameron-moreau-gozova/" target="_blank">View Episode</a></div>
</div>
<div class="talk">
<div class="title">All for Auth, Auth for All: Bringing End-user Identity into the Service Mesh</div>
<div class="sub-title">Service Mesh Day, 2019</div>
<div class="extra"><a href="https://www.youtube.com/watch?v=Rs3ug-ql8Ms" target="_blank">Watch on Youtube</a></div>
</div>
<div class="talk">
<div class="title">A Journey into React Native using Expo</div>
<div class="sub-title">ReactJS Dallas Meetup, 2018</div>
<div class="extra"><a href="https://github.com/cameronmoreau/react-native-dating-app" target="_blank">View demo</a></div>
</div>
</section>
</body>
</html>