-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
115 lines (113 loc) · 5.22 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<html>
<head>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="main.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="main.css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,400italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Dosis:400,200,500' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
</head>
<nav class="navbar navbar-default navbar-fixed-top transparent" id="transparent">
<div class="container-fluid">
<div class="navbar-header pull-left">
<a class="navbar-brand brand scroll" id="logo" href="#" hidden><span class="glyphicon glyphicon-menu-up" id="up-logo"></span></a>
</div>
<div class="navbar-header pull-right">
<ul class="nav nav-pills" id="see-through">
<li><a class="scroll" href="#about">ABOUT</a></li>
<li><a class="scroll" href="#projects">PROJECTS</a></li>
</ul>
</div>
</div>
</nav>
<div id="header-wrapper">
<header>
<div class="title">
<h1>DANIEL GARMAN</h1>
<h2><span class="thin">SOFTWARE ENGINEER</span></h2>
</div>
</header>
</div>
<container>
<div class="row about-section">
<div class="abouts">
<a id="about" name="about"></a>
<div class="col-sm-8 col-sm-offset-2">
<p class="readable">
I am a Software Engineer with about three years of professional
experience. My language and framework of choice is Ruby and Rails
though I enjoy Elixir, Phoenix, and Go.
</p>
<br />
<p class="readable">
What interests me the most in programming is the breadth
of technologies, languages, and paradigms that are available. For that
reason I love refactoring existing applications, and playing around
with whichever language tickles my fancy at the time. I have written
toy projects in React, Clojure, and most recently Elixir. My professional
experience is in Ruby and Go. I also have extensive AWS experience.
</p>
<br />
<p class="readable">
Some projects I have worked on include: a virtual showroom for art
shows, a CMS of sorts for educators, and a suite of applications
for multimedia warehousing that also provided a indexed and
user-friendly searchable interface.
</p>
</div>
</div>
</div>
<div class="row"><div class="col-sm-10 col-sm-offset-1 border"></div></div>
<div class="row projects-section">
<div class="projects-sections">
<a id="projects" name="projects"></a>
<div class="col-md-4 col-sm-12 project">
<a class="nav-blue" href="https://github.com/garman/darksky-elixir" target="_blank"><span class="heading">ELIXIR DARKSKY</span><img class="project-github" src="GitHub-Mark-32px.png"/></a>
<p class="center readable tight-margin">
An Elixir wrapper for the
<a href="https://developer.forecast.io/docs/v2" target="_blank">Darksky Forecast API</a>.
Allows a user to pass a <span class="param">key</span>,
<span class="param">lat</span>, <span class="param">long</span>,
an optional <span class="param">time</span>,
and a map of <span class="param">options</span>. Returns
a string of JSON data with the corresponding forecast, matching the
format desired in the passed options.
</p>
</div>
<div class="col-md-4 col-sm-12 project">
<a class="nav-blue" href="https://github.com/garman/danielgarman" target="_blank"><span class="heading">PERSONAL SITE</span><img class="project-github" src="GitHub-Mark-32px.png"/></a>
<p class="center readable tight-margin">
The raw HTML/CSS/JS for this site. Site is hosted on S3.
</p>
</div>
<div class="col-md-4 col-sm-12 project">
<a class="nav-blue" href="https://github.com/garman/nasa_apod" target="_blank"><span class="heading">NASA APOD</span><img class="project-github" src="GitHub-Mark-32px.png"/></a>
<p class="center readable tight-margin">
An iOS app that uses the
<a href="https://api.nasa.gov/api.html#apod" target="_blank">NASA APOD API</a>.
Pulls the last 10 'Astronomy Picture
of the Day,' displaying both with a list view and detail
view. Not in a finished state; simply learning some
React.js and some iOS development.
</p>
</div>
</div>
</div>
</container>
<footer>
<div class="row">
<div class="col-sm-12 contacts">
<a class="github" href="https://github.com/garman" target="_blank"></a>
<a class="linkedin" href="https://www.linkedin.com/profile/view?id=AAMAAAn5MuYB-t9JESGHIWNO62zIT32sV4zYMio&trk=hp-identity-name" target="_blank"></a>
</div>
</div>
<div class="row center">
<p class="email">[email protected]</p>
</div>
</div>
<div class="row center">
<p>© Copyright Daniel Garman, All Rights Reserved</p>
</div>
</footer>
</html>