-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (46 loc) · 1.46 KB
/
index.html
File metadata and controls
53 lines (46 loc) · 1.46 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Scott Silver</title>
<link rel="stylesheet" type="text/css" href="css/styles.css"></link>
<link rel="stylesheet" type="text/css" href="css/snake.css"></link>
<link rel="stylesheet" type="text/css" href="css/oswald_font.css" >
<link rel="stylesheet" type="text/css" href="css/open_sans_font.css">
<script src="dist/snake.js" type="text/javascript"></script>
</head>
<body>
<div class="container text-center">
<h1 class="text-center">Scott Silver</h1>
<p class="text-center">
Senior Software Engineer
<br>
<a target="_blank" class="anchor"
href="http://www.linkedin.com/pub/scott-silver/86/47b/3b7/">LinkedIn</a>
</p>
<div id="snake" class="snake"></div>
<h2 class="section-header">
Summary
</h2>
<p class="text-center">
Senior engineer with >10 years experience (formerly Square, Flexport).
</p>
<p class="text-center">
Extensive experience with TypeScript, Ruby, Python, Clojure, React,
Node.js, GraphQL, Postgres.
</p>
<p class="text-center">
Additional experience with Rust, Golang, and Elixir.
</p>
<p class="text-center">
I love functional programming and distributed systems.
</p>
<p class="text-center">
I work best as part of a small, innovative team.
</p>
</div>
<script>
var snakeGame = new SnakeGame(document.getElementById('snake'));
snakeGame.setup();
</script>
</body>
</html>