-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
431 lines (370 loc) · 15.5 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="I'm John Robb, a Munich-based UX designer. I design experiences through user observation and iterative design techniques" />
<meta name="author" content="John Robb">
<title>John Robb - UX Design Portfolio</title>
<!-- Normalize -->
<link href="css/normalize.css" rel="stylesheet">
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome -->
<script src="https://use.fontawesome.com/6570aa56bc.js"></script>
<!-- Custom CSS -->
<link href="robbstrap.css" rel="stylesheet">
<link href="media.css" rel="stylesheet">
<!-- FancyBox -->
<link rel="stylesheet" href="fancybox/source/jquery.fancybox.css?v=2.1.5" type="text/css" media="screen" />
<link rel="stylesheet" href="fancybox/source/helpers/jquery.fancybox-buttons.css?v=1.0.5" type="text/css" media="screen" />
<link rel="stylesheet" href="fancybox/source/helpers/jquery.fancybox-thumbs.css?v=1.0.7" type="text/css" media="screen" />
<!-- Fonts -->
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,700,900' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/css?family=Droid+Serif:400,400i,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Playfair+Display:400,400i,700,900" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Google Tag Manager -->
<noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-M688J4"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-M688J4');</script>
<!-- End Google Tag Manager -->
<!-- Fixed navbar -->
<nav class="navbar navbar-default navbar-fixed-top" >
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">Jr</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="index.html#projects">Projects</a></li>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<div class="jumbotron handshake">
<div class="container">
<div class="col-xs-10 col-sm-8 col-sm-offset-1 col-md-6 col-md-offset-1">
<h1>Hello!</h1>
<p>I'm John Robb, and I design experiences through user observation and iterative design techniques</p>
</div>
</div>
</div>
<!-- <hr/> -->
<div class="container intro">
<div class="container col-xs-10 col-sm-8 col-sm-offset-1 col-md-6 col-md-offset-1" style="padding:0">
<ul class="fa-ul">
<li>
<i class="fa-li fa fa-coffee"></i>
<p>
Seeking full-time UX Design work in Munich
</p>
<!-- <br/> -->
<p class="note">
Previously Google, Bentley UXC
</p>
<a href="https://linkedin.com/in/johnrobbjr" target="_blank" class="btn btn-linkedin" role="button">
Linkedin
</a>
<a href="https://docs.google.com/document/d/1lufBlTHdO-5UsvLDrjKLKHM84zha3DnKKod6WmiO9-8/edit" target="_blank" class="btn btn-default" role="button">
Resume
</a>
</li>
<li>
<i class="fa-li fa fa-graduation-cap"></i>
<p>
Bentley University
</p>
<p class="note" style="line-height:160%">
MS in Human Factors in Information Design
<br/>
BA in Communications from Pace University
</p>
</li>
<li>
<i class="fa-li fa fa-map-marker"></i>
<p>
Munich, Germany
<p>
</li>
</ul>
</div>
</div>
<!-- WORK -->
<div class="container work" id="projects"> <!--margin:0px might make it so there is no white-space on right of page-->
<div class="container col-md-10 col-md-offset-1" style="padding:0">
<h1>Projects</h1>
<div class="container col-md-12 work-piece well well-google">
<a href="article_google.html">
<i class="fa fa-google"></i>
<br/>
<h2>
A year of user research on Google’s news products
</h2>
<p>
2016 - 2017
</p>
</a>
</div>
<div class="container col-md-12 work-piece well well-reading">
<a href="article_readapp.html">
<i class="fa fa-book"></i>
<br/>
<h2>
Designing a Reading Companion
</h2>
<p>
2017
</p>
</a>
</div>
<div class="container col-md-12 work-piece well well-critter">
<a href="article_critter.html">
<img src="img/landing/[email protected]">
<br/>
<br/>
<h2>
Critter: Successfully Failed Mobile App
</h2>
<p>
2015
</p>
</a>
</div>
<div class="container col-md-12 work-piece well well-pp">
<a href="article_punchpal.html">
<img src="img/landing/[email protected]">
<br/>
<br/>
<h2>
Kronos: Gamifying Workforce Timekeeping
</h2>
<p class="note">
2016
</p>
</a>
</div>
<div class="container col-md-12 work-piece well well-ta">
<a href="article_ta.html">
<i class="fa fa-mouse-pointer"></i>
<br/>
<h2>
Tissue Analytics: Landing page redesign
</h2>
<p>
2015
</p>
</a>
</div>
</div> <!-- End Work Highlights-->
<!-- OTHER WORK -->
<!-- <div class="container" style="padding:0"> -->
<div class="container col-md-10 col-md-offset-1 otherwork-landing">
<br/>
<p>
Other projects:
<br/>
<a href="article_pl.html">Plainlanguage.gov: Information Architecture</a>
<br/>
<a href="article_nhc.html">Nursing Home Compare: Usability Test</a>
<br/>
<a href="article_biz.html">Business Magazine: UX Research</a>
</p>
</div>
<!-- </div> -->
</div> <!-- End work section -->
<div class="container-fluid about" id="about">
<div class="container col-md-offset-2 col-md-8">
<h1>About Me</h1>
<a class="fancybox" href="img/cfb.jpg">
<img class="img-responsive col-xs-12 col-sm-4 col-md-5" src="img/cfb.jpg" alt="About Me Image">
</a>
<h2 style="margin-top:0">
Why UX?
</h2>
<p>
I’m interested in UX because of its intersection between creativity, problem solving, and empathy. UX allows me to think about problems in new and creative ways by keeping people at the center of products.
</p>
</div>
<div class="container col-md-offset-2 col-md-8">
<!-- <p>
Being able to be a user advocate is another favorite part of UX; users are the foundation of any good product, and products can be created/improved with real evidence from real users as to why/why they don’t work.
</p> -->
<h2 style="margin-top:48px;">
My Journey
</h2>
<p>
During my undergraduate studies at Pace University, I competed in mobile app design competitions and took on internships at <b>Priceline.com</b> and <b>Warner Music Group</b> in NYC.
<p>
After completing my BA in Communications, I headed south to Baltimore and set up shop as a <b>freelance UXer</b> to further develop my skills. I then shipped up to Boston to learn about research methods and early-stage design at Bentley University. After a graduate assistantship and many late nights, I completed my <b>MS in Human Factors in Information Design</b>.
</p>
<p>
I was hired at <b>Google</b> for a 6 month contract as a UX Research Assistant for Google’s news-related products, which was extended to a year.
</p>
<p>
I turned down a full-time offer from Google to take the once-in-a-lifetime opportunity to join my girlfriend in <b>Munich</b> (Ich spreche nur ein bisschen Deutsch jetzt, aber ich lerne!) while she continues her graduate studies at LMU.
</p>
<h2>
Everything else
</h2>
<p>
Besides UX, I <a href="https://soundcloud.com/johnrobbjr" target="_blank">make</a> and listen to music (Spotify says I like “indietronica,” whatever that means), learn German, sketch, take photos, run through the city, and travel when I can.
</p>
<!-- <br/>
<p>
A few things I’m good at: taking and implementing feedback (sponges are my spirit animal), creating efficient processes to complete tasks, using whiteboards to better explain ideas, and playing well with others.
</p>
<p>
Currently focused on learning how to create positive change in teams, improve my visual design skills, and use emojis properly 🐢
</p> -->
</div>
<div class="container john-feed col-md-offset-2 col-md-8">
<h2>Other things I've been up to</h2>
<ul class="fa-ul">
<li>
<i class="fa fa-dribbble"></i>
<a href="https://dribbble.com/johnrobb" target="_blank">
Designing a new UI every day with the #100dailyUI challenge
</a>
</li>
<li>
<i class="fa fa-medium"></i>
<a href="https://medium.com/@johnrobbjr/how-to-proofread-an-essay-an-easy-way-to-explain-why-your-usability-study-only-needs-5-fd4179dd0d4f" target="_blank">
Wrote "How to proofread an essay: explaining why usability studies only need 5 participants"
</a>
</li>
<li>
<i class="fa fa-street-view"></i><a href="img/Boston-Light-Paths_poster.pdf" target="_blank">Entered into the City of Boston Public Space Invitational</a></li>
<li>
<i class="fa fa-pencil"></i>
<a href="http://www.bentley.edu/centers/user-experience-center/make-your-language-reflect-user-s-vision-not-yours" target="_blank">
Wrote "Make Your Language Reflect the User’s Vision, Not Yours"
</a>
</li>
<li>
<i class="fa fa-instagram"></i>
<a href="https://www.instagram.com/p/BDBxBdDQgrw/" target="_blank">
Sketched an experience every day for 30 days
</a>
</li>
<li><i class="fa fa-code"></i><a href="https://twitter.com/CodeForBoston/status/706578147257491456" target="_blank">Led product design for our team at the Code Across Boston Hackathon</a></li>
<!-- <li><i class="fa fa-github"></i><a href="https://github.com/johnrobbjr/Portfolio" target="_blank">Coded up this website</a></li> -->
<li><i class="fa fa-vimeo"></i><a href="https://vimeo.com/150081103" target="_blank">Entered into the IxDA Student Design Challenge</a></li>
</ul>
</div>
</div>
<div class="container-fluid skills">
<div class="container col-sm-offset-1 col-sm-10 col-md-offset-2 col-md-8 col-lg-offset-3 col-lg-6">
<div class="col-sm-4 text-center" style="margin-top: 32px;">
<i class="fa fa-pencil fa-2x"></i>
<h3>Design</h3>
<p>
Ideation
<br/>
User Research
<br/>
Interaction Design
<br/>
Design Validation
</p>
</div>
<div class="col-sm-4 text-center" style="margin-top: 32px;">
<i class="fa fa-search fa-2x"></i>
<h3>Research</h3>
<p>
Surveys
<br/>
Usability testing
<br/>
User journeys
<br/>
</p>
</div>
<div class="col-sm-4 text-center center-block" style="margin-top: 32px;">
<i class="fa fa-laptop fa-2x"></i>
<h3>Software</h3>
<p>
Sketch
<br/>
Axure
<br/>
Adobe Suite
<br/>
InVision
<br/>
Qualtrics
</p>
</div>
</div>
</div>
<!-- CONTACT -->
<div class="container-fluid contact">
<div class="container col-md-offset-2 col-md-8 text-center">
<h1 id="contact">Let's Talk!</h1>
<p>
<br/>
+1 (914) 356 9816
</p>
<a href="https://linkedin.com/in/johnrobbjr" target="_blank">
<span class="fa-stack fa-lg">
<!-- <i class="fa fa-circle fa-stack-2x" style="color: #006399"></i> -->
<i class="fa fa-linkedin fa-stack-1x" style="color: #fff"></i>
</span>
</a>
<a href="https://twitter.com/johnrobbdesign" target="_blank">
<span class="fa-stack fa-lg">
<!-- <i class="fa fa-circle fa-stack-2x" style="color: #55ACEE"></i> -->
<i class="fa fa-twitter fa-stack-1x" style="color: #fff"></i>
</span>
</a>
<a href="https://angel.co/johnrobbjr" target="_blank">
<span class="fa-stack fa-lg">
<!-- <i class="fa fa-circle fa-stack-2x" style="color: #fff"></i> -->
<i class="fa fa-angellist fa-stack-1x" style="color: #fff"></i>
</span>
</a>
</div>
</div>
<footer class="footer">
<p>Coded up by John Robb</p>
</footer>
<!-- Add jQuery library -->
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
<!-- Add mousewheel plugin (this is optional) -->
<script type="text/javascript" src="fancybox/lib/jquery.mousewheel-3.0.6.pack.js"></script>
<!-- Add fancyBox -->
<script type="text/javascript" src="fancybox/source/jquery.fancybox.pack.js?v=2.1.5"></script>
<!-- Optionally add helpers - button, thumbnail and/or media -->
<script type="text/javascript" src="fancybox/source/helpers/jquery.fancybox-buttons.js?v=1.0.5"></script>
<script type="text/javascript" src="fancybox/source/helpers/jquery.fancybox-media.js?v=1.0.6"></script>
<script type="text/javascript" src="fancybox/source/helpers/jquery.fancybox-thumbs.js?v=1.0.7"></script>
<script type="text/javascript">
$(document).ready(function() {
$(".fancybox").fancybox();
});
</script>
</body>
</html>