-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
882 lines (809 loc) · 45.7 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
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
<html>
<head>
<title>Blake Williford // Designer + Creative Technologist</title>
<meta charset="UTF-8">
<meta name="description" content="Design and Creative Technology services">
<meta name="keywords" content="Design, UX, UI, Research, Front-end development, HCI, Sketch Recognition, Creativity, Branding, Illustration, Sketch">
<meta name="author" content="Blake Williford">
<!-- Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-20461668-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-20461668-1');
</script>
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css">
<link rel="stylesheet" href="css/style3.css">
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--JS Frameworks-->
<script src="js/paper-full.min.js"></script>
<script src="js/noframework.waypoints.min.js"></script>
<link rel="apple-touch-icon" sizes="180x180" href="./images/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./images/favicons/favicon-16x16.png">
<link rel="mask-icon" href="./images/favicons/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="./images/favicons/favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="./images/favicons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<div class="navbar-fixed">
<nav class="transparent z-depth-0">
<div class="nav-wrapper">
<div class="row">
<div class="col s12">
<a href="#" data-activates="mobile-demo" class="button-collapse"></a>
<a href="#home" class="brand-logo">
<h4>BLAKE WILLIFORD</h4>
</a>
<ul id="nav" class="right hide-on-med-and-down">
<li><a id="nav-design" href="#design">DESIGN</a></li>
<!-- <li><a id="nav-research" href="#research">SCIENCE</a></li> -->
<li><a id="nav-art" href="#art">ART</a></li>
<li><a id="nav-bio" href="#bio">BIO</a></li>
<li><a id="nav-cv" href="#cv">CV</a></li>
<li><a id="nav-contact" href="#contact">CONTACT</a></li>
</ul>
</div>
</div>
<ul class="side-nav" id="mobile-demo" >
<a class="closeMenu sidenav-close"></a>
<li><a href="#design">DESIGN</a></li>
<!-- <li><a href="#research">SCIENCE</a></li> -->
<li><a href="#art">ART</a></li>
<li><a href="#bio">BIO</a></li>
<li><a href="#cv">CV</a></li>
<li><a href="#contact">CONTACT</a></li>
</ul>
</div>
</nav>
</div>
<div id="main-progressbar-container">
<div id="main-progressbar">
</div>
</div>
<a href="#design"><div class="down"></div>
</a>
<div class="home-wrap">
<canvas id="home" class="hide-on-med-and-down"></canvas>
<div class="section">
<div class="container">
<h1 style="font-size: 2.8rem; margin-top: 15vh; text-align: left">I'M A <span>PRODUCT DESIGNER</span> AND <span> INNOVATOR</span></h1>
<h4>I design and build world-class UI for clients like Adobe, Microsoft, and USAA. I have extensive experience in B2C, ed tech, innovation, and startups.</h4>
</div>
</div>
</div>
<div class="section" id="showcase" style="overflow: hidden;">
<img id="showcase1" class="showcase" src="images/showcase1.png"/>
<img id="showcase2" class="showcase" src="images/showcase2.png"/>
<img id="showcase3" class="showcase" src="images/showcase3.png"/>
</div>
<div class="section" id="design">
<div class="container">
<h1><span>DESIGN</span> AND INNOVATION WORK</h1>
<div class="row" id="clients">
<div class="col s12 m6 l6">
<a href="projects/chalkcast.html"><img class="portfolioTeaser" src="images/portfolio/chalkcast.png"></img>
</a>
</div>
<a href="projects/chalkcast.html"><div class="col s12 m6 l6">
<img class="portfolioLogo" src="images/clients/chalkcast.png"></img>
<h4>Virtual Classroom</h4>
<p>Innovative web app for teaching anything, to anyone, from anywhere.</p>
<!-- <ul class="portfolioSkills">
<li class="collab">UX Research</li>
<li class="collab">UX Design</li>
<li class="collab">UI Design</li>
<li class="collab">Front-end Development</li>
<li class="collab">Innovation</li>
</ul> -->
</div></a>
</div>
<div class="row" id="clients">
<div class="col s12 m6 l6">
<a href="projects/polygence.html"><img class="portfolioTeaser" src="images/portfolio/polygence2.png"></img>
</a>
</div>
<a href="projects/polygence.html"><div class="col s12 m6 l6">
<img class="portfolioLogo" src="images/portfolio/polygence/logo.png"></img>
<h4>Mentoring Platform</h4>
<p>An innovative mentoring platform that connects K-12 students with expert mentors to explore their interests.</p>
<!-- <ul class="portfolioSkills">
<li class="collab">UX Research</li>
<li class="collab">UX Design</li>
<li class="collab">UI Design</li>
<li class="collab">Front-end Development</li>
<li class="collab">Branding</li>
</ul> -->
</div></a>
</div>
<div class="row" id="clients">
<div class="col s12 m6 l6">
<a href="projects/sketchtivity.html"><img class="portfolioTeaser" src="images/portfolio/sketchtivity/teaser.png"></img>
</a>
</div>
<a href="projects/sketchtivity.html"><div class="col s12 m6 l6">
<img class="portfolioLogo" src="images/portfolio/sketchtivity/logo.svg"></img>
<h4>App for Learning Drawing</h4>
<p>A gamified app leveraging AI-driven feedback for learning basic drawing skills including drawing in perspective.</p>
<!-- <ul class="portfolioSkills">
<li class="collab">UX Research</li>
<li class="collab">UX Design</li>
<li class="collab">UI Design</li>
<li class="collab">Front-end Development</li>
<li class="collab">Branding</li>
<li class="collab">Innovation</li>
</ul> -->
</div></a>
</div>
<div class="row" id="clients">
<div class="col s12 m6 l6">
<a href="projects/snapfx.html"><img class="portfolioTeaser" src="images/portfolio/snapfx.png"></img>
</a>
</div>
<a href="projects/snapfx.html"><div class="col s12 m6 l6">
<img class="portfolioLogo" src="images/clients/adobe.png"></img>
<h4>SnapFX</h4>
<p>An experimental mobile app designed and developed at Adobe Research to help novices perform sophisticated image editing.</p>
<!-- <ul class="portfolioSkills">
<li class="collab">UX Research</li>
<li class="collab">UX Design</li>
<li class="collab">UI Design</li>
<li class="collab">Front-end Development</li>
<li class="collab">Innovation</li>
<li class="collab">Branding</li>
</ul> -->
</div>
</div></a>
<!--
<div class="row" id="clients">
<div class="col s12 m6 l6">
<a href="projects/medicarepathfinder.html"><img class="portfolioTeaser" src="images/portfolio/medicarepathfinder.png"></img>
</a>
</div>
<div class="col s12 m6 l6">
<h2 class="left-align">Medicare Pathfinder</h2>
<h4>Personalized Healthcare</h4>
<p>Web app for finding the perfect Medicare plan based on unique personal situation and predictive analytics.</p>
<ul class="portfolioSkills">
<li class="collab">UX Research</li>
<li class="collab">UX Design</li>
<li class="collab">UI Design</li>
<li class="collab">Front-end Development</li>
<li class="collab">Data Visualization</li>
</ul>
<a href="projects/medicarepathfinder.html"><div class="cta">View Case Study</div></a>
</div>
</div> -->
<!-- <div class="clear-40"></div>
<div class="col s12 m6 l4">
<img src="images/clients/adobe.png"></img>
<img src="images/clients/fjord.png"></img>
</div>
<div class="col s12 m6 l4">
<img src="images/clients/mfst.png"></img>
<img src="images/clients/usaa.png"></img>
</div>
<div class="col s12 m6 l4">
<img src="images/clients/stubhub.png"></img>
<img src="images/clients/celebrity.png"></img>
</div> -->
<div class="clear-60"></div>
<div class="row">
<div class="col s12 m6 l4">
<a href="projects/zensketch.html"><img class="portfolioTeaserCenter" src="images/portfolio/zensketch.png"></img>
</a>
<a href="projects/ubuntoo.html"><img class="portfolioTeaserCenter" src="images/portfolio/ubuntoo.png"></img>
</a>
</div>
<div class="col s12 m6 l4">
<a href="projects/mechanix.html"><img class="portfolioTeaserCenter" src="images/portfolio/mechanix.png"></img>
</a>
<a href="projects/fpl.html"><img class="portfolioTeaserCenter" src="images/portfolio/fpl.png"></img>
</a>
</div>
<div class="col s12 m6 l4">
<a href="projects/fossilsketch.html"><img class="portfolioTeaserCenter" src="images/portfolio/fossilsketch.png"></img>
</a>
<a href="projects/finalfrontier.html"><img class="portfolioTeaserCenter" src="images/portfolio/finalfrontier.png"></img></a>
</div>
</div>
</div>
</div>
<!-- <div class="section" id="research">
<div class="container">
<div class="row">
<h1 style="font-weight: 100;">MY <span>RESEARCH</span> EXPLORES METHODS FOR HELPING PEOPLE LEARN HOW TO DRAW AND BE MORE CREATIVE USING ARTIFICIAL INTELLIGENCE</span></h1>
</div>
<div class="clear-40"></div>
<div class="row">
<h4 style="color: #7227fd">PUBLICATIONS</h4>
<div class="publication">
<h5>Exploring the Potential of an Intelligent Tutoring System for Sketching Fundamentals</h5>
<h6><strong>Blake Williford</strong>, Matthew Runyon, Wayne Li, Julie Linsey, Tracy Hammond</h6>
<p><i>CHI 2020</i></p>
</div>
<div class="publication">
<h5>Recognizing Perspective Accuracy: An Intelligent User Interface for Assisting Novices</h5>
<h6><strong>Blake Williford</strong>, Matthew Runyon, Tracy Hammond</h6>
<p><i>IUI 2020</i></p>
</div>
<div class="publication">
<h5>A Framework for Motivating Sketching Practice with Sketch-based Gameplay</h5>
<h6><strong>Blake Williford</strong>, Matthew Runyon, Josh Cherian, Wayne Li, Julie Linsey, Tracy Hammond</h6>
<p><i>CHI Play 2019</i></p>
</div>
<div class="publication">
<h5>DrawMyPhoto: Assisting Novices in Drawing From Photographs</h5>
<h6><strong>Blake Williford</strong>, Abhay Doke, Michel Pahud, Ken Hinckley, Tracy Hammond</h6>
<p><i>Creativity and Cognition 2019</i></p>
</div>
<div class="publication">
<h5>It’s Not Just About Accuracy: Metrics That Matter When Measuring Expert Sketching Ability</h5>
<h6>Tracy Hammond, Shalini Kumar, Matthew Runyon, Josh Cherian, <strong>Blake Williford</strong>, Swarna Keshavabhotla, Wayne Li, Julie Linsey</h6>
<p><i>TiiS Intelligent Systems 2018</i></p>
</div>
<div class="publication">
<h5>Collaborative Live Media Curation: Shared Context for Participation in Online Learning</h5>
<h6>Bill Hamilton, Nic Lupfer, Nicholas Botello, Tyler Tesch, Alex Stacy, Jeremy Merrill, <strong>Blake Williford</strong>, Frank Bentley, Andruid Kerne</h6>
<p><i>CHI 2018</i></p>
</div>
<div class="publication">
<h5>ZenSketch: A Sketch-Based Game for Improving Line Work</h5>
<h6><strong>Blake Williford</strong>, Matthew Runyon, Adil Hamid Malla, Wayne Li, Julie Linsey, Tracy Hammond</h6>
<p><i>CHI Play 2017 Student Game Competition</i></p>
</div>
<div class="publication">
<h5>Conquering the Cube – Learning to Sketch Primitives in Perspective with an Intelligent Tutoring System</h5>
<h6>Swarna Keshavabhotla, <strong>Blake Williford</strong>, Shalini Kumar, Ethan Hilton, Wayne Li, Tracy Hammond and Julie Linsey</h6>
<p><i>Expressive (SBIM) 2017</i></p>
</div>
<div class="publication">
<h5>SketchTivity: Improving Creativity by Learning Sketching with an Intelligent Tutoring System</h5>
<h6><strong>Blake Williford</strong></h6>
<p><i>Creativity and Cognition 2017 Doctoral Consortium</i></p>
</div>
<div class="publication">
<h5>Everyone Can Sketch: Reviving Hand-drawn Sketching with an Intelligent Tutoring System</h5>
<h6><strong>Blake Williford</strong>, Wayne Li, Ethan Hilton, Julie Linsey, Tracy Hammond</h6>
<p><i>SketchingDIS: Hand-drawn Sketching in HCI workshop at Designing Interactive Systems Conference (DIS 2017)</i>
</p></div>
<div class="publication">
<h5>Consistently Evaluating Sketching Ability in Engineering Curriculum</h5>
<h6>Ethan Hilton, <strong>Blake Williford</strong>, Wayne Li, Erin McTigue, Tracy Hammond and Julie Linsey</h6>
<p><em>IDCC 2016</em></p>
</div>
<div class="publication">
<h5>PerSketchTivity – An Intelligent Pen-Based Educational Application for Design Sketching Instruction</h5>
<h6><strong>Blake Williford</strong>, Paul Taele, Trevor Nelligan, Wayne Li, Dr. Julie Linsey, Dr. Tracy Hammond</h6>
<p><em>Revolutionizing Education with Digital Ink 2016</em></p></div>
<div class="publication">
<h5>SketchMaster – Education for the Conceptual Age</h5>
<h6>Master’s Thesis</h6>
<p><em>2015</em></p>
</div>
</div>
</div>
</div> -->
<div class="section" id="art">
<div class="container">
<div class="row">
<h1>I LOVE TO <span>SKETCH</span>. HERE'S A SMALL COLLECTION OF MY SKETCHES</h1>
<div class="clear-40"></div>
<div class="col s6 m4 l3">
<img src="images/art/zerogcamera2.jpg" class="materialboxed" loading="lazy"></img>
<img src="images/art/zerogcamera.jpg" class="materialboxed" loading="lazy"></img>
<img src="images/art/cusco.jpg" class="materialboxed" loading="lazy"></img>
<img src="images/art/frog1.jpg" class="materialboxed" loading="lazy"></img>
</div>
<div class="col s6 m4 l3">
<img src="images/art/tractor3.jpg" class="materialboxed" loading="lazy"></img>
<img src="images/art/tractor2.jpg" class="materialboxed" loading="lazy"></img>
<img src="images/art/tractor1.jpg" class="materialboxed" loading="lazy"></img>
<img src="images/art/jabba.jpg" class="materialboxed" loading="lazy"></img>
<img src="images/art/frog2.jpg" class="materialboxed" loading="lazy"></img>
</div>
<div class="col s6 m4 l3">
<img src="images/art/porsche.jpg" class="materialboxed" loading="lazy"></img>
<img src="images/art/chromefrog.jpg" class="materialboxed" loading="lazy"></img>
<img src="images/art/creature.jpg" class="materialboxed" loading="lazy"></img>
<img src="images/art/city.jpg" class="materialboxed" loading="lazy"></img>
</div>
<div class="col s6 m4 l3">
<img src="images/art/watch.jpg" class="materialboxed" loading="lazy"></img>
<img src="images/art/spacetrain.jpg" class="materialboxed" loading="lazy"></img>
<img src="images/art/skull.jpg" class="materialboxed" loading="lazy"></img>
<img src="images/art/walterscott.jpg" class="materialboxed" loading="lazy"></img>
</div>
</div>
</div>
</div>
<div class="section" id="bio">
<div class="container">
<div class="row">
<div class="col s12 m6 l6">
<h1 style="text-align: left; font-weight: 200; font-size: 2rem">I'M A BRIDGE BETWEEN</br> <span id="bioterm-1">DESIGN</span> AND <span id="bioterm-2">ENGINEERING</span></h1>
<p>I'm a multi-disciplinary designer and creative technologist that's passionate about designing and prototyping interactive experiences that empower people and organizations. </p>
<p>I have been making clients and employers happy for 13 years with top-notch design solutions, clear communication, and leadership.</p>
<!-- <p>My specialized expertise is at the crossroads of HCI and AI, with applications in educational technology, healthcare technology, sketch-based interfaces, and creativity support.</p> -->
<p>When I'm not absorbed in design, I am likely playing music, drawing, or traveling.</p>
</div>
<div class="col s12 m6 l6">
</div>
</div>
</div>
</div>
<div class="section" id="cv">
<div class="container">
<div class="row">
<h1>CV</h1>
<div class="col s12 m4 l4">
<!-- <h4>SPECIALIZATIONS</h4>
<div class="skillset">
<h5>Educational Technology</h5>
<h5>Educational Games</h5>
<h5>Sketch-based UI / UX</h5>
<h5>Sketch Recognition</h5>
<h5>Creativity Support</h5>
</div> -->
<h4>SKILLS</h4>
<div class="skillset">
<h5>Design</h5>
<ul>
<li>Sketching</li>
<li>Information Architecture</li>
<li>Information Visualization</li>
<li>User Flows</li>
<li>Wireframing</li>
<li>Storyboarding</li>
<li>Prototyping</li>
<li>Responsive Web Design</li>
<li>Animation</li>
</ul>
</div>
<div class="skillset">
<h5>Development</h5>
<ul>
<li>JS</li>
<li>JQuery</li>
<li>HTML</li>
<li>CSS</li>
<li>C#</li>
<li>Java</li>
<li>Python</li>
</ul>
</div>
<div class="skillset">
<h5>Research</h5>
<ul>
<li>Semi-structured Interviews</li>
<li>Focus groups</li>
<li>Ethnography</li>
<li>Personas</li>
<li>Customer Journeys</li>
<li>Experience Mapping</li>
<li>Heuristic Evaluations</li>
<li>Usability Testing</li>
<li>Survey Design</li>
<li>Experiment Design</li>
</ul>
</div>
<div class="skillset">
<h5>Software</h5>
<ul>
<li>Figma</li>
<li>Adobe Photoshop</li>
<li>Adobe Illustrator</li>
<li>Adobe InDesign</li>
<li>Adobe Premiere</li>
<li>Adobe XD</li>
<li>Unity</li>
<li>Sketch</li>
<li>Invision</li>
<li>Axure</li>
<li>Microsoft Office Suite</li>
</ul>
</div>
<h4>AWARDS</h4>
<h5>CHI Play 2017 Student Game Design Competition</h5>
<h6 class="first">1st Place</h6>
<h5>Tapia 2017 Student Research Competition</h5>
<h6 class="second">2nd Place</h6>
</div>
<div class="col s12 m8 l8">
<h4>EDUCATION</h4>
<div class="education">
<h5>Ph.D. Computer Science (Human-Computer Interaction)</h5>
<h6>Texas A&M University</h6>
<h6><em>2016 – 2020</em></h6>
</div>
<div class="education">
<h5>M.S. Human-Computer Interaction</h5>
<h6>Georgia Institute of Technology</h6>
<h6><em>2013 – 2015</em></h6>
</div>
<div class="education">
<h5>B.S. Industrial Design</h5>
<h6>Georgia Institute of Technology</h6>
<h6><em>2007 – 2011</em></h6>
</div>
<h4>EXPERIENCE</h4>
<div class="experience">
<h5>Polygence</h5>
<h6>Lead UX / UI Designer</h6>
<h6><em>2022 - 2023</em></h6>
<p>Led UX / UI design for this educational technology startup (<a href="https://www.polygence.org/" alt="Research Opportunities for High School Students" target="blank">Research Opportunities for High School Students)</a></p>
<p>Facilitated a rebranding and visual refresh of website, web app, and native app</p>
<p>Conducted interviews and usability testing with dozens of mentors and students</p>
<p>Designed and facilitated numerous shipped features to create a world-class passion project experience for mentors and students, including tools for sharing resources, scheduling sessions, and a brand new native app</p>
<p>Company has impacted the lives of more than 2400 students from 44 countries</p>
</div>
<div class="experience">
<h5>ChalkCast</h5>
<h6>Lead UX / UI Designer</h6>
<h6><em>2021 – 2022</em></h6>
<p>Lead UX / UI design for this educational technology startup (virtual classroom tool).</p>
<p>Rebranded company and collaborated with mid-level UX designer to produce a more cohesive style guide.</p>
<p>Designed and coded company's front-facing brochure site.</p>
<p>Conducted semi-structured interviews and usability tests with more than 30 teachers and students.</p>
<p>Designed and prototyped numerous features for remote learning including quiz tool, chalkboard, attendance, etc.</p>
<p>Wrote articles on educational technology trends.</p>
</div>
<div class="experience">
<h5>Blake Williford Design</h5>
<h6>Freelance Designer</h6>
<h6><em>2010 – 2021</em></h6>
<p>Freelance UI / UX design, front-end development, branding, and illustration services with 10 years of experience working on projects for more than 50 clients including ~15 startups.</p>
<p>Met with clients and executives directly to discover needs and objectives, and honed skills as a highly effective communicator, leader, and facilitator of consistently successful design solutions.</p>
<p>Assisted various startups in launching websites and apps, building brands, and raising venture capital.</p>
<p>Entreprenuerial projects include: <a href="https://www.drawdojo.com" target="blank" alt="DrawDojo - An educational app for learning drawing skills">DrawDojo - An educational app for learning drawing skills</a></p>
</div>
<div class="experience">
<h5>Texas A&M University / Sketch Recognition Lab</h5>
<h6>Designer / Researcher</h6>
<h6><em>2016 – 2021</em></h6>
<p>Lead the design and development of “Sketchtivity” an educational platform for teaching the fundamentals of design sketching and improving creativity in people. It has been used by over 1000 students at 3 universities and 3 high
schools.
</p>
<p>Provided design and front-end development assistance with an intelligent educational software called "Mechanix" which is for teaching freebody diagrams. The software has been used by over 1000 students at five different universities.</p>
<p>Designed and developed another intelligent educational software called "FossilSketch" which is for teaching micropaleontology. It has not been deployed yet.</p>
<p>Designed and developed an PIXL (Mars 2020 Rover) XRF simulation interface for Aoleon Lab.</p>
<p>Award-winning design and research, and publications at top conferences around the world.</p>
</div>
<div class="experience">
<h5>Medicare Pathfinder</h5>
<h6>Lead UX / UI Designer</h6>
<h6><em>2015 – 2021</em></h6>
<p>Lead UX / UI design and front-end development for this healthcare startup.</p>
<p>Helped company raise more than $450,000 in venture capital.</p>
<p>Designed and developed a simple and clean patient-facing application to gather data on seniors and match them with best healthcare plans.</p>
<p>Designed and developed innovative visualizations for predictive analytics dashboard which can prevent providers from losing money.</p>
</div>
<div class="experience">
<h5>Adobe Research</h5>
<h6>Designer / Researcher</h6>
<h6><em>2019</em></h6>
<p>Worked with Holger Winnemoeller in Creative Intelligence Lab to design and develop a novel image editing creativity support tool. This tool leverages modularized Photoshop commands and a simple drag-and-drop user interface to make
sophisticated image editing much easier for novices.</p>
<p>Filed for US Patent as co-inventor</p>
</div>
<div class="experience">
<h5>Microsoft Research</h5>
<h6>Designer / Researcher</h6>
<h6><em>2018</em></h6>
<p>Worked with AI and Ink applied research group to conceptualize, design, and develop a novel sketch-based application leveraging Windows Ink</p>
<p>Collaborated with Ken Hinckley and Michel Pahud in MSR to conduct a user study of the application with 20 participants.</p>
<p>Filed for 2 US Patents as lead inventor</p>
</div>
<div class="experience">
<h5>Fjord</h5>
<h6>Interaction Designer</h6>
<h6><em>2015 – 2016</em></h6>
<p>Collaborated on several client projects for the Atlanta studio of this service design firm. Work involved research, interviews, journey mapping, persona creation, sketching, wireframing, prototyping and visual design.</p>
<p>Projects included a mortgage buying application for USAA, report outage and bill paying experiences for Florida Power & Light, and a booking experience for Celebrity Cruiselines</p>
</div>
<div class="experience">
<h5>Georgia Institute of Technology</h5>
<h6>Graduate Teaching Assistant</h6>
<h6><em>2015</em></h6>
<p>Assisted sophomore undergrad Industrial Design students in their main studio course. Responsibilities included helping them with research, ideation, giving them constructive feedback, and grading. Used my knowledge and experience
to ensure they get in to good habits, break bad habits, and are dedicated to process.</p>
</div>
<div class="experience">
<h5>Georgia Institute of Technology</h5>
<h6>Graduate Research Assistant</h6>
<h6><em>2014</em></h6>
<p>Performed research in the area of advancing spatial reasoning and creative skills in engineers through learning sketching – Specifically by using educational software. Closely related to my Master’s Thesis and PhD dissertation.</p>
</p>
</div>
<div class="experience">
<h5>StubHub / eBay</h5>
<h6>UX Designer Intern</h6>
<h6><em>2014</em></h6>
<p>Hybrid UX Designer role in which I designed and prototyped a new profile system concept for StubHub users called “My Hub”.</p>
<p>Worked closely with a Project Manager intern to conceptualize a site-wide personalization framework, with the goal of making StubHub a more personally catered experience for event discovery and planning.</p>
<p>Assisted UX team on several projects related to the responsive redesign of StubHub website by exploring page designs with sketches, wireframes, and prototypes.</p>
</div>
<div class="experience">
<h5>THINK Interactive</h5>
<h6>UX Designer</h6>
<h6><em>2013 – 2014</em>
<h6>
<p>Assisted UX team in the design of two responsive websites for national brands during a 3-month contract position with information architecture, wireframes, task-flows, and sitemaps.</p>
</div>
<div class="experience">
<h5>Cardinal Web Solutions</h5>
<h6>Lead UI / Visual Designer</h6>
<h6><em>2012 – 2013</em>
<h6>
<p>Led the design services of this growing digital agency as their first in-house designer.</p>
<p>Rebranded the company and its entire physical and digital presence, leading to a more clear, concise, and cohesive brand identity.</p>
<p>Directed a wide variety of projects for around 30+ local and national clients involving responsive web design, mobile site/app design, graphic design, and branding during a time in which the company tripled in size.</p>
</div>
<div class="experience">
<h5>Cooper Lighting</h5>
<h6>Industrial Design Intern</h6>
<h6><em>2011</em>
<h6>
<p>Supported design team and worked on a variety of commercial LED lighting products. Developed concepts for a family of products for InVue, re-imagining their high-end outdoor lighting brand.</p>
</div>
<div class="clear-40"></div>
<h4>SPEAKING</h4>
<div class="experience">
<h5>"Exploring Methods for Holistically Improving Drawing Ability with Artificial Intelligence"</h5>
<h6>Computer Science Department (Texas A&M)</h6>
<h6><em>December 13th, 2019</em></h6>
</div>
<div class="experience">
<h5>"A Framework for Motivating Sketching Practice with Sketch-based Gameplay"</h5>
<h6>CHI Play 2019</h6>
<h6><em>October 23rd, 2019</em></h6>
</div>
<div class="experience">
<h5>"Teaching Sketching with Artificial Intelligence: Integrating an Intelligent Tutoring System into Classrooms"</h5>
<h6>Educational Psychology Department (Texas A&M)</h6>
<h6><em>April 15th, 2019</em></h6>
</div>
<div class="experience">
<h5>"It’s Not Just About Accuracy: Metrics That Matter When Measuring Expert Sketching Ability"</h5>
<h6>IUI 2019</h6>
<h6><em>March 19th, 2019</em></h6>
</div>
<div class="experience">
<h5>"Facilitating Improvements in Drawing Ability, Self-efficacy, Motivation, and Creativity with Intelligent Systems"</h5>
<h6>Adobe Research</h6>
<h6><em>September 4th, 2018</em></h6>
</div>
<div class="experience">
<h5>"ZenSketch: A Novel Sketch-based Game for Improving Line work"</h5>
<h6>CHI Play 2017</h6>
<h6><em>October 18th, 2017</em></h6>
</div>
<div class="experience">
<h5>"Conquering the Cube: Learning to Sketch Primitives in Perspective with an Intelligent Tutoring System"</h5>
<h6>Expressive 2017</h6>
<h6><em>July 28th, 2017</em></h6>
</div>
<div class="experience">
<h5>"Education for the Conceptual Age"</h5>
<h6>WIPTTE 2015</h6>
<h6><em>April 28th, 2015</em></h6>
</div>
</div>
</div>
</div>
</div>
<div class="section" id="contact">
<div class="container">
<div class="row">
<div class="col s12 m6 l6">
<h4>CONNECT WITH ME</span>
</h4>
<p>Thanks for visiting my portfolio! I'd love to stay in touch.</br>
Here's a couple of ways to stay connected -</p>
<a href="https://www.linkedin.com/in/blakewilliford/" target="blank">
<div class="linkedin"></div>
</a>
<a href="https://www.instagram.com/renaissancekid/" target="blank">
<div class="insta"></div>
</a>
<div class="clear-60"></div>
</div>
<div class="col s12 m6 l6">
<h4>HIT ME UP</span>
</h4>
<p>I'm always happy to collaborate on creative projects! Feel free to reach out.</p>
<div class="email" onclick="copyToClipboard()">[email protected]</div>
<textarea id="my-email" style="opacity: 0;">[email protected]</textarea>
</div>
</div>
</div>
</div>
<div class="footer">
© BLAKE WILLIFORD <span class="love">CODED WITH ❤</span>
<a class="grey-text text-lighten-4 right" href="#!">VERSION 4.0 <em>SIZZLE</em></a>
</div>
<!--Import jQuery before materialize.js-->
<script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js"></script>
<script>
$('.button-collapse').sideNav({
menuWidth: 300, // Default is 240
closeOnClick: true, // Closes side-nav on <a> clicks, useful for Angular/Meteor
edge: 'right'
});
//Scrollbar
let winTop = window.scrollY;
let docHeight = document.body.scrollHeight;
let winHeight = window.innerHeight;
let initialScroll = Math.floor((winHeight/docHeight)*100);
document.getElementById('main-progressbar').style.height = initialScroll+'%';
$(document).ready(function() {
window.setInterval(function() {
toggleBioTerms();
}, 3000);
$(window).scroll(function() {
//Update progress bar
winTop = window.scrollY;
totalScroll = Math.floor(((winTop + winHeight)/docHeight)*100);
document.getElementById('main-progressbar').style.height = totalScroll+'%';
document.getElementById('showcase1').style.marginLeft = (winTop/10)+"px";
document.getElementById('showcase2').style.marginLeft = "-"+(winTop/10)+"px";
document.getElementById('showcase3').style.marginLeft = (winTop/15)+"px";
});
});
//UI Showcase
let lastKnownScrollPosition = 0;
let ticking = false;
function doSomething(scrollPos) {
// Do something with the scroll position
//Move elements
// var winTop = $(window).scrollTop();
// var docHeight = $('body').height();
// var winHeight = $(window).height();
// var totalScroll = Math.floor((winTop / docHeight) * 100);
// document.getElementById('showcase1').style.marginLeft = totalScroll / 10;
}
document.addEventListener("scroll", (event) => {
lastKnownScrollPosition = window.scrollY;
if (!ticking) {
window.requestAnimationFrame(() => {
doSomething(lastKnownScrollPosition);
ticking = false;
});
ticking = true;
}
});
//Update nav
var links = document.getElementById('nav').childNodes;
var waypoint1 = new Waypoint({
element: document.getElementById('design'),
handler: function() {
document.getElementById('nav-design').className = "active";
document.getElementById('nav-art').className = "";
document.getElementById('nav-bio').className = "";
document.getElementById('nav-cv').className = "";
document.getElementById('nav-contact').className = "";
}
});
var waypoint2 = new Waypoint({
element: document.getElementById('art'),
handler: function() {
document.getElementById('nav-design').className = "";
document.getElementById('nav-art').className = "active";
document.getElementById('nav-bio').className = "";
document.getElementById('nav-cv').className = "";
document.getElementById('nav-contact').className = "";
}
});
var waypoint3 = new Waypoint({
element: document.getElementById('bio'),
handler: function() {
document.getElementById('nav-design').className = "";
document.getElementById('nav-art').className = "";
document.getElementById('nav-bio').className = "active";
document.getElementById('nav-cv').className = "";
document.getElementById('nav-contact').className = "";
}
});
var waypoint4 = new Waypoint({
element: document.getElementById('cv'),
handler: function() {
document.getElementById('nav-design').className = "";
document.getElementById('nav-art').className = "";
document.getElementById('nav-bio').className = "";
document.getElementById('nav-cv').className = "active";
document.getElementById('nav-contact').className = "";
}
});
var waypoint5 = new Waypoint({
element: document.getElementById('contact'),
handler: function() {
document.getElementById('nav-design').className = "";
document.getElementById('nav-art').className = "";
document.getElementById('nav-bio').className = "";
document.getElementById('nav-cv').className = "";
document.getElementById('nav-contact').className = "active";
}
});
function toggleBioTerms() {
var term1 = document.getElementById('bioterm-1').innerHTML;
var term2 = document.getElementById('bioterm-2').innerHTML;
if (term1 == "DESIGN") {
document.getElementById('bioterm-1').innerHTML = "ART"
document.getElementById('bioterm-2').innerHTML = "SCIENCE"
} else {
document.getElementById('bioterm-1').innerHTML = "DESIGN"
document.getElementById('bioterm-2').innerHTML = "ENGINEERING"
}
}
function copyToClipboard() {
document.getElementById('my-email').select();
document.execCommand("Copy");
alert("Copied the text: [email protected]");
}
</script>
<script type="text/paperscript" canvas="home">
//Triangulation script by Blake Williford
var canvasHeight = paper.view.size.height;
var canvasWidth = paper.view.size.width;
var points = [];
var lines = [];
generateStars(100);
function generateStars(number) {
for (i=0; i<number; i++) {
randX = Math.random()*canvasWidth;
randY = Math.random()*canvasHeight;
point = new Point(randX, randY);
points.push(point);
}
}
function removeLines(line)
{
var fadeEffect = setInterval(function() {
if (line.opacity < 0.1)
{
line.remove();
clearInterval(fadeEffect);
}
else
{
line.opacity -= 0.1;
}
}, 100);
}
function graphGenerator(point) {
var tempPoints = [];
corner = new Point(point.x-160, point.y-160);
range = new Rectangle(corner, 320);
for (i=0; i< points.length; i++) {
if (range.contains(points[i])) {
//circle = new Path.Circle(points[i], 1);
//circle.fillColor = '#fff';
//var line = new Path.Line(point, points[i]);
//line.strokeColor = 'rgba(255,255,255,0.2)';
//lines.push(line);
tempPoints.push(points[i]);
}
}
for (i=0; i < tempPoints.length-1; i++) {
for (j=1; j < tempPoints.length-1; j++) {
var line = new Path.Line(tempPoints[i], tempPoints[j]);
line.strokeColor = 'rgba(150,150,250,0.02)';
removeLines(line);
}
}
}
function onMouseMove(event) {
graphGenerator(event.point);
}
</script>
</html>