-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
155 lines (136 loc) · 5.09 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>John Regner - Home</title>
<link rel="stylesheet" href="css/foundation.min.css" />
<script src="js/vendor/modernizr.js"></script>
<style>
#footer {
height: 50px;
bottom: 0px;
left: 0px;
line-height: 50px;
color: #aaa;
text-align: center;
width: 100%;
}
</style>
</head>
<body>
<!-- top navigation bar -->
<div class="fixed">
<nav class="top-bar" data-topbar>
<ul class="title-area">
<li class="name">
<h1>
<a href="index.html">Home</a>
</h1>
</li>
<li class="toggle-topbar menu-icon">
<a href="#">Links</a>
</li>
</ul>
<section class="top-bar-section">
<ul class="right">
<li class="">
<a href="./resume/resume.html">Resume.html</a>
</li>
<li class="">
<a href="./blog/blog.html">Blog</a>
</li>
<li class="">
<a href="https://github.com/regnerjr">GitHub</a>
</li>
<li class="">
<a href="https://twitter.com/john_regner">Twitter</a>
</li>
<li class="">
<a href="./resume/JohnRegnerResume.pdf">Resume.pdf</a>
</li>
</ul>
</section>
</nav>
</div>
<!-- Main content -->
<div class="row">
<div class="large-8 medium-8 small-9 columns">
<h1>John Regner</h1>
<p>My introduction to computers started like most; I enjoyed video games as a child,
instant message as a teen, and music production as a young adult. In college, I
discovered programming. I started with Assembly and C, and am now doing
Swift full-time.</p>
<p>I am always thirsting to know more. My Instapaper queue
is full of programming articles and I frequent blogs, podcasts, and follow many
programmers. Programming isn't just a career, it's also my interest.</p>
<p>I want to work with people who are genuinely excited by technology, who feel that
it is a privilege to do this work, and who want to improve the world through their
use of computers.</p>
</div>
<div class="large-4 medium-4 small-3 columns">
<p>
<img src="img/john088.jpeg" alt="Picture of me">
</p>
</div>
</div>
<div class="row">
<div class="large-10 medium-10 columns large-centered medium-centered small-centered">
<div class="panel radius">
<p>I believe in automation. If there is a possibility of having to do a
task again you should automate it.</p>
<p>I believe that documentation should be written in plain text. If a
document needs to be written it should be ‘generated’ by a script in a
reproducible manner.</p>
<p>I believe that people should strive to master their tools.</p>
<p>I believe source should always be under version control.
Commit messages should be long and detailed.
Commits should be small and easily understood.</p>
<p>I believe modern programming languages are the future.</p>
</div>
</div>
</div>
<!-- Work Week -->
<div class="row">
<!-- App Store Widget-->
<div class="small-12 medium-6 large-4 small-centered medium-uncentered large-uncentered columns">
<!-- div id='ibb-widget-root-980764060'></div> -->
<iframe
src="http://banners.itunes.apple.com/banner.html?partnerId=&aId=&bt=catalog&t=catalog_black&id=980764060&c=us&l=en-US&w=300&h=250"
frameborder=0
style="width:300px;height:250px;border:0px;margin-left:auto;margin-right:auto;display:block;"></iframe>
</div>
<div class="small-12 medium-6 large-8 columns">
<h4>Check out my app: WorkWeek</h4>
<p>Work Week is a app for improving your work life balance. Using a
preset location it keeps track of how much time you spend at work, and
sends you a simple reminder when it is time to go home. </p>
<p>The app is written entirely in Swift, and includes a pretty
comprehensive test suite. I am currently working on an update
targeting iOS9 and the latest Apple Frameworks. I am really excited
about UIStackView, and the new Swift Protocol Extensions.</p>
<p>You can read the source on <a
href="http://github.com/regnerjr/WorkWeek">GitHub</a>.</p>
</div>
</div>
<div class="row">
<div class="large-3 medium-6 small-8 small-centered columns panel radius">
<p class="text-center">
<a href="mailto:[email protected]"> Email: [email protected] </a><br>
<a href="tel:12627161799"> Phone: (262)716-1799 </a>
</p>
</div>
</div>
<div id="footer">
<p>
Copyright © 2022 John Regner -
<span class="credit">Created with
<a href="http://foundation.zurb.com">Foundation</a>
</span>
</p>
</div>
<script src="js/vendor/jquery.js "></script>
<script src="js/foundation.min.js "></script>
<script> $(document).foundation(); </script>
</body>
</html>