-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (102 loc) · 4.51 KB
/
index.html
File metadata and controls
103 lines (102 loc) · 4.51 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
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
<!DOCTYPE html>
<html>
<head>
<title>Patrick Mounts | Home</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<link href="bootstrap/css/bootstrap.css" rel="stylesheet" media="screen">
<link href="bootstrap/css/bootstrap-responsive.css" rel="stylesheet" media="screen">
<!--Custom CSS -->
<link href="stylesheet.css" rel="stylesheet" media="screen">
<link href='http://fonts.googleapis.com/css?family=Scada' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="container-fluid">
<div class="row-fluid">
<div class="page-header">
<h1>Patrick Mounts <small>Season, Reason, Lifetime</small></h1>
</div>
</div>
<div class="navbar">
<div class="navbar-inner">
<a class="brand" href="#">Welcome</a>
<!-- <ul class="nav"> -->
<!-- <li class="active"><a href="/index.html">Home</a></li> -->
<!-- <li><a href="/projects.html">Projects</a></li> -->
<!-- <li><a href="/social.html">Social</a></li> -->
<!-- <li><a href="/blog.html">Blog</a></li> -->
<!-- </ul> -->
</div>
</div>
<div class="row-fluid">
<div class="span6" id="contact">
<h4>Resumé<br>
<small><a href="files/patrickmnts_resume.pdf">Click to View!</a></small></h4>
<h4>Github<br>
<small><a href="http://www.github.com/patrickmnts">github.com/patrickmnts</a></small></h4>
<h4>Email:<br>
<small><a href="mailto:patrickmnts@gmail.com">patrickmnts@gmail.com</a></small></h4>
<h4>Social:<br>
<small><a href="http://www.twitter.com/Patrickmnts">@patrickmnts</a></small></h4>
<h4>Hometown:<br>
<small>PDX, OR</small></h4>
</div>
<div class="span5 offset1">
<div id="main-img">
<img src="img/bubble.jpg" alt="bubble" id="main-img">
</div>
</div>
</div>
<div class="row-fluid">
<div class="span12" id="current_end">
<h3>What I'm Up To</h3>
<hr>
<div>Currently I am working as a Mid-level Rails developer with <a href='http://www.conversahealth.com'>Conversa Health</a>. Where we are working to improve health care for patients through personalized conversations specifically created for a patient's unique experience.. </div>
<hr>
<h4>Previously</h4>
<hr>
<div>Ruby on Rails developer at Planet Argon. Managing development, deployment, and stabilization of apps for various clients. From Rails 2-4, the entire spectrum of Ruby versions, and a multitude of different Javascript tools and libraries.</div>
</div>
<div class="row-fluid">
<div class="span6" id="webskills">
<h4>Web Skills</h4>
<ul>
<li>HTML, CSS, JS, Forms</li>
<li>SQL, Databases, Relationships</li>
<li>Routing, Layout engines, Sinatra and Rails</li>
<li>CSS3/HTML5 elements, AJAX, Bootstrap, Grid layouts, Typography</li>
<li>Deployment, AWS services, Asset compilation and compression</li>
<li>Various gems and libraries</li>
</ul>
</div>
<div class="span6" id="progskills">
<h4>Programming Skills</h4>
<ul>
<li>Ruby, data structures, rvm/rbenv, Git/Github</li>
<li>Creating gems, classes and objects, meta-programming, common ruby idioms, programming patterns</li>
<li>Blocks/closures, queues, project estimation, regexes, OOP, Data modeling, refactoring</li>
<li>Pull requests, agile methods</li>
</ul>
</div>
</div>
<hr>
<footer class="modal-footer">
Patrick Mounts 2013
</footer>
</div>
<script src="http://code.jquery.com/jquery.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<!-- GOOGLE ANYLITICS -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-42027213-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>