-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout2.html
executable file
·947 lines (619 loc) · 34.7 KB
/
about2.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
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
<!DOCTYPE html>
<!--[if lt IE 7]><html class="lt-ie9 lt-ie8 lt-ie7"><![endif]-->
<!--[if IE 7]><html class="lt-ie9 lt-ie8"><![endif]-->
<!--[if IE 8]><html class="lt-ie9"><![endif]-->
<!--[if gt IE 8]><!-->
<html>
<!--<![endif]-->
<head>
<!-- Metadata -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Who am I?</title>
<meta name="description" content="About Jeffrey Paletta">
<meta name="viewport" content="width=device-width">
<!-- Favicon -->
<link rel="icon" type="image/png" href="img/favicon/favicon2.png">
<!-- Global Styles -->
<link rel="stylesheet" href="css/fonts.css" type="text/css">
<link rel="stylesheet" href="assets/web-fonts/webfonts.css">
<link rel="stylesheet" href="css/style.css">
<!--[if lt IE 9]>
<script src="js/connect/html5shiv.js"></script>
<![endif]-->
<!-- Project Styles -->
<link rel="stylesheet" href="css/projects/argonaut.css">
<link rel="stylesheet" href="css/projects/clearance.css">
<link rel="stylesheet" href="css/projects/dada.css">
<link rel="stylesheet" href="css/projects/duck-hunt.css">
<link rel="stylesheet" href="css/projects/education.css">
<link rel="stylesheet" href="css/projects/experimental.css">
<link rel="stylesheet" href="css/projects/hamtramck.css">
<link rel="stylesheet" href="css/projects/intergram.css">
<link rel="stylesheet" href="css/projects/jazzfest.css">
<link rel="stylesheet" href="css/projects/kinect.css">
<link rel="stylesheet" href="css/projects/lorraine.css">
<link rel="stylesheet" href="css/projects/manifesto.css">
<link rel="stylesheet" href="css/projects/paint.css">
<link rel="stylesheet" href="css/projects/presidential.css">
<link rel="stylesheet" href="css/projects/red-emoji.css">
<link rel="stylesheet" href="css/projects/sincerely.css">
<link rel="stylesheet" href="css/projects/think-play-create.css">
<link rel="stylesheet" href="css/projects/wooemmaii.css">
<link rel="stylesheet" href="css/projects/about.css">
<!-- Global Scripts -->
<script src="js/jquery-1.11.2.min.js"></script>
<script src="js/connect.js"></script>
<script src="js/script.js"></script>
<!-- Redirect on Mobile -->
<!--
<script type="text/javascript"> // <![CDATA[
if ((navigator.userAgent.indexOf('iPhone') != -1) || (navigator.userAgent.indexOf('iPod') != -1) || (navigator.userAgent.indexOf('iPad') != -1)) {
document.location = "http://mobile.jeffpaletta.com";
} // ]]>
</script>
-->
</head>
<body class="random-2 colour-2 data-page-about" data-page="about">
<!--
<nav>
<ul>
<li class="link-1">
<a href="about.html" data-symbol="☺" data-link="link-1">
<span class="symbol" id="header">☺ </span></a>
<span class="title">Jeffrey Paletta</span>
<div class="hover-area"></div>
<span class="title-2">Who am I?</span>
</li>
<li class="link-2 fade-out">
<a href="hamtramck.html" data-symbol="?" data-link="link-2"><span class="symbol">?</span></a>
<span class="title">What if Hamtramck was a giant quilt?</span>
</li>
<li class="link-3 fade-out">
<a href="presidential.html" data-symbol="?" data-link="link-3"><span class="symbol">?</span></a>
<span class="title">What if there was a supply store for presidents?</span>
</li>
<li class="link-4 fade-out">
<a href="experimental.html" data-symbol="?" data-link="link-4"><span class="symbol">?</span></a>
<span class="title">What if you rewrote a book by cutting up or crossing out the parts you didn’t like?</span>
</li>
<li class="link-5 fade-out">
<a href="education.html" data-symbol="?" data-link="link-5"><span class="symbol">?</span></a>
<span class="title">What if finding the best school for your child only took ten minutes?</span>
</li>
<li class="link-6 fade-out">
<a href="dada.html" data-symbol="?" data-link="link-6"><span class="symbol">?</span></a>
<span class="title">What if Dadaism was still alive in 2015?</span>
</li>
<li class="link-7 fade-out">
<a href="paint.html" data-symbol="?" data-link="link-7"><span class="symbol">?</span></a>
<span class="title">What if you knew that your house paint could kill you?</span>
</li>
<li class="link-8 fade-out">
<a href="wooemmaii.html" data-symbol="?" data-link="link-8"><span class="symbol">?</span></a>
<span class="title">What if our memories defined who we are?</span>
</li>
<li class="link-9 fade-out">
<a href="sincerely.html" data-symbol="?" data-link="link-9"><span class="symbol">?</span></a>
<span class="title">What if emojis actually meant something again?</span>
</li>
<li class="link-10 fade-out">
<a href="red-emoji.html" data-symbol="?" data-link="link-10"><span class="symbol">?</span></a>
<span class="title">What if you needed a reminder to behave like an adult?</span>
</li>
<li class="link-11 fade-out">
<a href="duck-hunt.html" data-symbol="?" data-link="link-11"><span class="symbol">?</span></a>
<span class="title">What if a game encouraged you to stop playing?</span>
</li>
<li class="link-12 fade-out">
<a href="argonaut.html" data-symbol="?" data-link="link-12"><span class="symbol">?</span></a>
<span class="title">What if a typeface could tell a story?</span>
</li>
<li class="link-13 fade-out">
<a href="kinect.html" data-symbol="?" data-link="link-13"><span class="symbol">?</span></a>
<span class="title">What if content reacted to how we moved our bodies?</span>
</li>
<li class="link-14 fade-out">
<a href="think-play-create.html" data-symbol="?" data-link="link-14"><span class="symbol">?</span></a>
<span class="title">What if there was a better way of telling our story as design students?</span>
</li>
<li class="link-15 fade-out">
<a href="intergram.html" data-symbol="?" data-link="link-15"><span class="symbol">?</span></a>
<span class="title">What if identity was defined by your browsing history?</span>
</li>
<li class="link-16 fade-out">
<a href="clearance.html" data-symbol="?" data-link="link-16"><span class="symbol">?</span></a>
<span class="title">What if a sign painter designed a typeface?</span>
</li>
<li class="link-17 fade-out">
<a href="manifesto.html" data-symbol="?" data-link="link-17"><span class="symbol">?</span></a>
<span class="title">What if I wrote a manifesto of uncertainty?</span>
</li>
<li class="link-18 fade-out">
<a href="jazzfest.html" data-symbol="?" data-link="link-18"><span class="symbol">?</span></a>
<span class="title">What if Jazz was a design methodology?</span>
</li>
<li class="link-19 fade-out">
<a href="lorraine.html" data-symbol="?" data-link="link-12"><span class="symbol">?</span></a>
<span class="title">What if rules were better off broken?</span>
</li>
</ul>
<div class="lines"></div>
</nav>
-->
<div class="gallery"><div class="slide"></div></div>
<section data-project="">
<div class="section-inner">
<!--INTRO CAPTION-->
<div class="block text about" id="about-intro-caption">
<p>
On paper I call myself a communication <br>
designer, but that's really just an umbrella <br>
term I use to keep things succinct. I'm <br>
really just a problem solver who is always <br>
looking for a better way of doing things.</p>
<p>
As a kid I was building primitive “robots” <br>
to do my chores for me, and as a teen I <br>
was scheming up <s>romantic</s> creative <br>
ways to ask a crush to the next school <br>
dance. Doing things the default way is <br>
boring; there’s always a more exciting <br>
means to accomplish the ends.</p>
<p>
I’m basically a grown-up version of the <br>
annoying little kid who responds to every <br>
statement with “why?” But sometimes <br>
asking “why?” turns into a “what if?” My <br>
portfolio is a collection of these moments: <br>
fifteen different solutions that began by <br>
asking questions & exploring new ideas.</p>
<!--CONTACT INFO Mobile Only-->
<p class="mobile-only"><br><br><a target="_blank"
href="assets/resume.pdf">[ resume ]</a></p>
<p class="mobile-only"><a target="_blank"
href="archive/index.html">[ archive ]</a></p>
<p class="mobile-only"><br><br>
<a href="tel:+12489125733">+1 248 972 5733</a></p>
<p class="mobile-only">
<a href="mailto:[email protected]">[email protected]</a></p>
<p class="mobile-only"><a target="_blank"
href="http://instagram.com/jeff.archive">@jeff.archive</a></p>
</div>
<!--SELFIE IMAGE-->
<figure class="block portrait desktop-only" data-ratio="1" >
<div class="image" id="about-image-selfie" data-large="img/about/about-01.jpg" data-largewidth="750" data-largeheight="1553">
<img src="img/about/about-01.jpg" width="500" height="889">
</div>
</figure>
<!--CONTACT INFO-->
<figcaption id="about-contact-info" class="block description desktop-only">
<p>
<a href="tel:+12489125733">+1 248 972 5733</a><br>
<a href="mailto:[email protected]">[email protected]</a><br>
<a target="_blank" href="http://instagram.com/jeff.archive">@jeff.archive</a><br><br><br>
<a target="_blank" href="archive/index.html">[ see more work ]</a><br>
<a class="show-more-toggle">[ show resume ]</a>
<a class="show-more-content hide" target="_blank" href="assets/resume/jeffreyPaletta-resume-11.13.16-comp.pdf">[ pdf ]</a>
<p>
</figcaption>
<!--IMAGE DIPLOMA-->
<figure class="block landscape desktop-only show-more-content hide" data-ratio="1" >
<div class="image" id="about-image-diploma" data-large="img/about/about-03.jpg" data-largewidth="1200" data-largeheight="900">
<img src="img/about/about-03.jpg" width="500" height="375">
</div>
</figure>
<!--CAPTION EDUCATION-->
<figcaption id="about-caption-education" class="block resume desktop-only show-more-content hide">
<p class="first-line">
Bachelor of Fine Arts (B.F.A.) <br>
in Graphic & Communication Design <br>
at the College for Creative Studies <br>
in Detroit, Michigan — 3.221 CGPA
<!-- 09.2012—05.2016 -->
</p>
<h5 id="resume-date" class="first-line">09.2012—05.2016</h5>
</figcaption>
<!--EXPERIENCE-->
<!--EXPERIENCE-->
<!--EXPERIENCE-->
<!--IMAGE DEPROGRAM-->
<figure class="block landscape desktop-only show-more-content hide" data-ratio="1" >
<div class="image" id="about-image-deprogram" data-large="img/about/about-05.JPG" data-largewidth="1200" data-largeheight="900">
<img src="img/about/about-05.JPG" width="500" height="375">
</div>
</figure>
<!-- EXPERIENCE CONTAINER-->
<div id="about-experience-wrapper-1" class="block show-more-content force-reveal hide">
<!--SHINOLA CAPTION-->
<div id="about-caption-shinola" class="exp-table resume desktop-only show-more-content force-reveal hide">
<h2 class="about-title">Shinola Sponsored Project</h2>
<h5 id="resume-date" class="read-more-content-shinola hide">01.2015—05.2015</h5>
<p class="first-line">
Tasked by Shinola to dissect existing <br>
brand materials and to identify potential <br>
opportunities to more effectively tell the <br>
story of their brand. </p>
<p class="read-more-content-shinola hide">
Allowing me the opportunity to work <br>
under Shinola’s own team of designers, <br>
as well as a chance to collaborate with <br>
students from different majors. Working <br>
alongside teammates from alternate <br>
design backgrounds emphasized the <br>
importance of simple and clear presen- <br>
tation, and trained me to communicate <br>
my work and ideas in a more objective <br>
and comprehensible fashion.<br>
<br>
<a target="_blank" href="argonaut.html">[ project link ]</a><br>
</p>
<p class="show-more-link">
<a class="read-more-toggle-shinola">[ show more ]</a><br>
</p>
</div>
<!--DEPROGRAM CAPTION-->
<div id="about-caption-deprogram" class="exp-table resume desktop-only show-more-content force-reveal hide">
<h2 class="about-title">De Program</h2>
<h5 id="resume-date" class="read-more-content-deprogram hide">06.2105—07.2015</h5>
<p class="first-line">
A three-week program in the Netherlands <br>
consisting of two individual week-long <br>
projects hosted by Bob Van Dijk & Thomas<br>
Castro of LUST.</p>
<p class="read-more-content-deprogram hide">
I also had the chance to visit some of the <br>
world’s top internationally recognized <br>
designers. The experience of working <br>
within a new cultural context introduced <br>
me to new perspectives on design that <br>
would be tremendously influential to my <br>
own perception of what graphic design <br>
is, and how my work may translate into <br>
a broader context of design.<br>
<br>
<a target="_blank" href="wooemmaii.html">[ project link ]</a><br>
</p>
<p class="show-more-link">
<a class="read-more-toggle-deprogram">[ show more ]</a><br>
</p>
</div>
<!--PRACTICUM CAPTION-->
<div id="about-caption-practicum" class="exp-table-2 resume desktop-only show-more-content force-reveal hide">
<h2 class="about-title">GD Department Practicum</h2>
<h5 id="resume-date" class="read-more-content-practicum hide">08.2015—12.2015</h5>
<p class="first-line">
Tasked by the GD faculty at CCS to explore <br>
more efficient ways of communicating what <br>
being a graphic design student is all about. </p>
<p class="read-more-content-practicum hide">
My individual focus within the group was <br>
researching of our audience and current <br>
practices to inform new solutions for how <br>
student work should be documented, sub- <br>
mitted and showcased around the depart- <br>
ment space. <br>
<br>
<a target="_blank" href="think-play-create.html">[ project link ]</a>
</p>
<p class="show-more-link">
<a class="read-more-toggle-practicum">[ show more ]</a><br>
</p>
</div>
<!--WORKSHOP CAPTION-->
<div id="about-caption-workshop" class="exp-table-2 resume desktop-only show-more-content force-reveal hide">
<h2 class="about-title">Prototyping Workshop</h2>
<h5 id="resume-date" class="read-more-content-workshop hide">10.2015—11.2105</h5>
<p class="first-line">
a week-long workshop hosted by Brett <br>
Renfer from Collins in NYC, focused on <br>
generating ideas quickly & building them <br>
even quicker. </p>
<p class="read-more-content-workshop hide">
Using a simple prototyping tools such as <br>
cardboard, arduino, & projection mapping, <br>
the objective was to spend less time think- <br>
ing about whether an idea would work or <br>
not, and more time trying it out. <br>
<br>
<a target="_blank" href="http://jeffpaletta.squarespace.com/-2015-/#/workshop/">[ archive link ]</a>
</p>
<p class="show-more-link">
<a class="read-more-toggle-workshop">[ show more ]</a><br>
</p>
</div>
</div>
<!-- end container -->
<!--WORKSHOP 2 IMAGE-->
<figure class="block landscape desktop-only show-more-content hide" data-ratio="1" >
<div class="image" id="about-image-workshop-2" data-large="img/about/about-09.JPG" data-largewidth="1200" data-largeheight="800">
<img src="img/about/about-09.JPG" width="600" height="400">
</div>
</figure>
<!-- FREELANCE-->
<!-- FREELANCE-->
<!-- FREELANCE-->
<!--FREELANCE TOGGLE BUTTON-->
<figcaption id="about-caption-freelance" class="block resume desktop-only show-more-content hide">
<!-- <h3 id="freelance-header"><span style="letter-spacing: 0px !important;"> </span></h3> -->
<p><a class="show-more-freelance-toggle">[ show freelance ]</a><br></p>
</figcaption>
<!--FREELANCE CONTAINER-->
<div id="about-freelance-wrapper" class="block show-more-content hide">
<!--HEAVENLY DOGS-->
<figcaption id="about-caption-heavenly" class="exp-table-5 resume desktop-only show-more-freelance inline-block hide">
<h2 class="about-title">Heavenly Dogs</h2>
<h5 id="resume-date" class="read-more-content-heavenly hide">03.2013—01.2016</h5>
<p class="first-line">
Assisted in establishing an identity system <br>
for the collective, as well as designing and <br>
printing company merchandise.
</p>
<p class="read-more-content-heavenly hide">
<br>
<a target="_blank" href="http://heavenlydogs.org">[ website link ]</a><br>
<!-- <a target="_blank" href="http://jeffpaletta.squarespace.com/-2013-/#/faceplay/">[ archive link ]</a><br> -->
<!-- <a target="_blank" href="http://jeffpaletta.squarespace.com/-2013-/#/faceplay/">[ archive link ]</a> -->
</p>
<p>
<a class="read-more-toggle-heavenly">[ show more ]</a><br>
</p>
</figcaption>
<!--FACEPLAY-->
<figcaption id="about-caption-faceplay" class="exp-table-5 resume desktop-only show-more-freelance inline-block hide">
<h2 class="about-title">Faceplay for iOS</h2>
<h5 id="resume-date" class="read-more-content-faceplay hide">11.2013—05.2014</h5>
<p class="first-line">
Designed a user interface & streamlined <br>
the user experience for a Snapchat com- <br>
petitor called Faceplay.
</p>
<p class="read-more-content-faceplay hide">
Working with an outsourced developer <br>
built a good habit of delivering organized <br>
files with detailed instructions & compre- <br>
hensive comments. <br>
<br>
<!-- <a target="_blank" href="http://jeffpaletta.squarespace.com/-2013-/#/faceplay/">[ archive link ]</a> -->
<a target="_blank" href="http://faceplayapp.com">[ website link ]</a>
</p>
<p>
<a class="read-more-toggle-faceplay">[ show more ]</a><br>
</p>
</figcaption>
<!--SIGN PAINTING-->
<figcaption id="about-caption-painting" class="exp-table-6 resume desktop-only show-more-freelance hide">
<h2 class="about-title">Sign Painting and Murals</h2>
<h5 id="resume-date" class="read-more-content-sign hide">03.2014—10.2016</h5>
<p class="first-line">
I started hand lettering signs in college <br>
to make a few extra bucks.
</p>
<p class="read-more-content-sign hide">
It taught me how the tiniest details can imp- <br>
act a piece, and trained me to visualize <br>
my work on a bigger scale (as opposed <br>
to a tiny screen.)<br>
<br>
<a target="_blank" href="http://jeffpaletta.squarespace.com/sign-painting/">[ archive link ]</a><br>
<!-- <a target="_blank" href="http://jeffpaletta.squarespace.com/sign-painting/">[ archive link ]</a><br> -->
<!-- <a target="_blank" href="http://jeffpaletta.squarespace.com/sign-painting/">[ archive link ]</a><br> -->
<!-- <a target="_blank" href="http://jeffpaletta.squarespace.com/sign-painting/">[ archive link ]</a> -->
</p>
<p>
<a class="read-more-toggle-sign">[ show more ]</a><br>
</p>
</figcaption>
</div> <!--END container-->
<!--SKILLS-->
<!--SKILLS-->
<!--SKILLS-->
<!--SKILLS WRAPPER-->
<div id="about-skills-wrapper" class="block show-more-content hide">
<!--WORKED WITH-->
<div id="about-caption-worked" class="exp-table-3 resume desktop-only show-more-content hide">
<h3><span>I am familiar with...</span></h3>
<p class="first-line">
cinema 4d, php, excel, rasberry pi, <br>
json-t, mysql, python, wordpress, <br>
ruby, zbrush, kinect, less, node.js
</p>
</div>
<!--EXPERIENCED WITH-->
<div id="about-caption-experienced" class="exp-table-3 resume desktop-only show-more-content hide">
<h3><span>I am experienced with...</span></h3>
<p class="first-line">
after effects, premier, terminal, <br>
javascript, keynote, sketch, glyphs, <br>
robofont, maya, word, powerpoint, <br>
xcode, arduino, letterpress, ajax
</p>
</div>
<!--TERRIFIC WITH-->
<div id="about-caption-terrific" class="exp-table-4 resume desktop-only show-more-content hide">
<h3><span>I am exceptional with...</span></h3>
<p class="first-line">
iIllustrator, photoshop, indesign, <br>
html, css, jquery, git, processing, <br>
screen printing, conceptualizing, <br class="about-1336-only">
wire-framing, prototyping, story- <br class="about-1336-only">
telling, information architecture, <br class="about-800-only about-1336-only">
data visualization
</p>
</div>
<!-- WANT TO LEARN -->
<div id="about-caption-learn" class="exp-table-4 resume desktop-only show-more-content hide">
<h3><span>I want to get better with...</span></h3>
<p class="first-line">
objective-c, php, wordpress, ruby, <br>
cinema 4d, python, ssl, front end
</p>
</div>
</div> <!--END container-->
<!--WORKSH0P ALT IMAGE-->
<!--
<figure class="block landscape desktop-only show-more-content hide" data-ratio="1" >
<div class="image" id="about-image-workshop" data-large="img/about/about-09.JPG" data-largewidth="1200" data-largeheight="800">
<img src="img/about/about-09.JPG" width="600" height="400">
</div>
</figure>
-->
<!--GALLERY CAPTION-->
<figcaption id="about-caption-gallery" class="block resume desktop-only show-more-content hide">
<p>
Sometimes I do other things too. I've <br class="800-only">
started putting together an online <br class="800-only">
web archive of all the miscellaneous <br class="800-only">
things I work on. I'm no where near <br class="800-only">
complete with it, but you're free <br class="about-1336-only"> to <br class="800-only">
browse through the few projects I've <br class="800-only">
documented so far.
</p>
<p><br>
<a target="_blank" href="http://archive.jeffpaletta.com">[ archive ]</a>
</p>
</figcaption>
<!-- IMAGE GALLERY -->
<div class="block show-more-content hide" id="gallery-overlay"></div>
<div class="about-gallery-container block show-more-content hide" id="about-gallery">
<div class="about-gallery-image gallery-image" data-large="img/about/full-1.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-1.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-2.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-2.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-3.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-3.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-4.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-4.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-5.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-5.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-6.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-6.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-7.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-7.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-8.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-8.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-9.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-9.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-10.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-10.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-11.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-11.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-12.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-12.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-13.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-13.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-14.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-14.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-15.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-15.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-16.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-16.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-17.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-17.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-18.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-18.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-19.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-19.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-20.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-20.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-21.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-21.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-22.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-22.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-23.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-23.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-24.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-24.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-25.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-25.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-26.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-26.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-27.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-27.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-28.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-28.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-29.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-29.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-30.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-30.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-31.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-31.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-32.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-32.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-33.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-33.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-34.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-34.jpg" alt="name" class="about-photo-image" /></div>
<div class="about-gallery-image gallery-image" data-large="img/about/full-35.jpg" data-largewidth="800" data-largeheight="800">
<img src="img/about/thumb-35.jpg" alt="name" class="about-photo-image" /></div>
</div>
<!--AWARDS-->
<figcaption id="about-caption-award" class="block resume desktop-only show-more-content hide">
<h3><span>Awards</span></h3>
<p style="padding-top: 24px !important;">
My portfolio was awarded a “gold key” and <br class="about-800-only">
college scholarship from <a target="_blank" href="http://www.artandwriting.org" class="link-underline">Scholastic’s Art & <br class="about-800-only">
Writing Awards</a> contest in 2012.
</p>
<p><br>
My typeface “Clearance” was featured in <br class="about-800-only">
the sixth edition of Communication Arts’<br class="about-800-only">
<a target="_blank" href="http://www.commarts.com/magazine/2016-typography" class="link-underline">“Typographic Annual”</a> publication in 2015.
</p>
</figcaption>
<!--AWARDS-->
<figcaption id="about-caption-ref" class="block resume desktop-only show-more-content hide">
<h3><span>People who say nice things</span></h3>
<p style="padding-top: 24px !important;">
<a href="mailto:[email protected]">[ Doug Kisor, department chair ]</a><br>
<a href="mailto:[email protected]">[ Sue LaPorte, design professor ]</a><br>
<a href="mailto:[email protected]">[ Kikko Paradela, interaction professor ]</a><br>
</p>
</figcaption>
</div>
</section>
<div class="process">
<div class="cover"></div>
</div>
<footer>
<div style="max-width: 80%;margin-top: 33%;">
<p>
On paper I call myself a communication <br>
designer, but that's really just an umbrella <br>
term I use to keep things succinct. I'm <br>
really just a problem solver who is always <br>
looking for a better way of doing things.</p>
<p>
As a kid I was building primitive “robots” <br>
to do my chores for me, and as a teen I <br>
was scheming up <s>romantic</s> creative <br>
ways to ask my crush to the school <br>
dance. Doing things the default way is <br>
boring; there’s always a more exciting <br>
means to accomplish the ends.</p>
<p>
I’m basically a grown-up version of the <br>
annoying little kid who responds to every <br>
statement with “why?” But sometimes <br>
asking “why?” turns into a “what if?” My <br>
portfolio is a collection of these moments: <br>
fifteen different solutions that began by <br>
asking questions an exploring new ideas.</p>
<p>
<br><a href="tel:+12489125733">+1 248 972 5733</a>
<br><a href="mailto:[email protected]">[email protected]</a>
<br><a target="_blank" href="http://instagram.com/jeff.archive">@api.jeff</a>
</p>
</div>
<script src="js/gallery.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-83296506-1', 'auto');
ga('send', 'pageview');
</script>
</footer>
</body>
</html>