-
Notifications
You must be signed in to change notification settings - Fork 0
/
speaking-events.html
64 lines (58 loc) · 2.48 KB
/
speaking-events.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Cabin+Sketch:wght@700&display=swap" rel="stylesheet">
<title>Public Speaking Events</title>
<link rel="stylesheet" href="styles.css" type="text/css">
</head>
<body>
<header id="header">
<a href="index.html">
<h1 id="site-logo">gingerzoealex</h1>
</a>
<hr>
</header>
<nav id="menu">
<a href="blog.html">Oh For Blog's Sake</a>
<br>
<a href="speaking-events.html">What Am I Talking About?</a>
<hr>
</nav>
<section class="section">
<h2>Public Speaking</h2>
<p>These are some of the public speaking events I've participated in. </p>
<h2>Technical Talks</h2>
<h4>What Even is a Dataset?</h4>
<p>
<a href="https://womentechmakersbelfast.com/speakers.html">Women Tech Makers 2019</a> & <a
href="https://www.meetup.com/Ladies-of-Code-Glasgow/events/263173813/">Ladies of Code Glasgow</a></p>
<h4>Data Processing in PHP, and Other Natural Disasters</h4>
<p>
<a href="https://www.nidevconf.com/sessions/zoegadonthompson/">NI Developer Conference 2019</a></p>
<h4>Vue-ing Data</h4>
<p>
<a href="https://www.meetup.com/Belfast-JS/events/262196011">BelfastJS - June 2019 Meetup</a></p>
<h4>Geometry in JS</h4>
<p>
<a href="https://www.meetup.com/belfast-lug/events/256107675/">BLUG November 2018</a></p>
<h4>The Adventures of a Ginger Trying to Make a JS Physics Simulation: The story of how a student developer who
doesn't know any physics had to try to learn physics to make a JS physics simulation...using physics.</h4>
<p>
<a href="https://www.meetup.com/Women-Who-Code-Belfast/events/253524217/">Women Who Code Lightning Talks -
September
2018</a> & <a href="https://www.meetup.com/Belfast-JS/events/255361173/">BelfastJS - October 2018</a></p>
<h2>Non-Technical Talks</h2>
<h4>I Don't Know What I'm Doing</h4>
<p><a href="https://2018.nidevconf.com/sessions/zoegadonthompson/">NI Developer Conference 2018</a></p>
</section>
<footer class="footer">
Made with ❤ by Zoe Gadon-Thompson.
<br />Hosted on Github Pages. <br />Written in plain HTML with CSS.
<br />
Feel free to <a href="mailto:[email protected]">contact me</a>.
</footer>
</body>
</html>