-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.html
More file actions
1700 lines (1686 loc) · 196 KB
/
Copy pathsample.html
File metadata and controls
1700 lines (1686 loc) · 196 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
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
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" dir="ltr" class="client-nojs">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="UTF-8">
<title>Steve Wozniak - Wikipedia, the free encyclopedia</title>
<meta name="generator" content="MediaWiki 1.26wmf11">
<link rel="alternate" href="android-app://org.wikipedia/http/en.m.wikipedia.org/wiki/Steve_Wozniak">
<link rel="alternate" type="application/x-wiki" title="Edit this page" href="/w/index.php?title=Steve_Wozniak&action=edit">
<link rel="edit" title="Edit this page" href="/w/index.php?title=Steve_Wozniak&action=edit">
<link rel="apple-touch-icon" href="/static/apple-touch/wikipedia.png">
<link rel="shortcut icon" href="/static/favicon/wikipedia.ico">
<link rel="search" type="application/opensearchdescription+xml" href="/w/opensearch_desc.php" title="Wikipedia (en)">
<link rel="EditURI" type="application/rsd+xml" href="//en.wikipedia.org/w/api.php?action=rsd">
<link rel="alternate" hreflang="x-default" href="/wiki/Steve_Wozniak">
<link rel="copyright" href="//creativecommons.org/licenses/by-sa/3.0/">
<link rel="alternate" type="application/atom+xml" title="Wikipedia Atom feed" href="/w/index.php?title=Special:RecentChanges&feed=atom">
<link rel="canonical" href="https://en.wikipedia.org/wiki/Steve_Wozniak">
<link rel="stylesheet" href="//en.wikipedia.org/w/load.php?debug=false&lang=en&modules=ext.uls.nojs%7Cext.visualEditor.viewPageTarget.noscript%7Cext.wikihiero%7Cmediawiki.legacy.commonPrint%2Cshared%7Cmediawiki.sectionAnchor%7Cmediawiki.skinning.interface%7Cmediawiki.ui.button%7Cskins.vector.styles%7Cwikibase.client.init&only=styles&skin=vector&*">
<meta name="ResourceLoaderDynamicStyles" content="">
<link rel="stylesheet" href="//en.wikipedia.org/w/load.php?debug=false&lang=en&modules=site&only=styles&skin=vector&*">
<style>a:lang(ar),a:lang(kk-arab),a:lang(mzn),a:lang(ps),a:lang(ur){text-decoration:none}
/* cache key: enwiki:resourceloader:filter:minify-css:7:3904d24a08aa08f6a68dc338f9be277e */</style>
<script src="//en.wikipedia.org/w/load.php?debug=false&lang=en&modules=startup&only=scripts&skin=vector&*"></script>
<script>if(window.mw){
mw.config.set({"wgCanonicalNamespace":"","wgCanonicalSpecialPageName":false,"wgNamespaceNumber":0,"wgPageName":"Steve_Wozniak","wgTitle":"Steve Wozniak","wgCurRevisionId":668735252,"wgRevisionId":668735252,"wgArticleId":27848,"wgIsArticle":true,"wgIsRedirect":false,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":["All articles with dead external links","Articles with dead external links from June 2014","Articles with dead external links from March 2015","Use American English from May 2015","All Wikipedia articles written in American English","Use mdy dates from April 2015","Articles with hCards","Articles needing additional references from June 2015","All articles needing additional references","Wikipedia articles with VIAF identifiers","Wikipedia articles with LCCN identifiers","Wikipedia articles with ISNI identifiers","Wikipedia articles with GND identifiers","Wikipedia articles with BNF identifiers","Wikipedia articles with NLA identifiers","1950 births","Living people","Amateur radio people","American atheists","American agnostics","American computer businesspeople","American computer programmers","American computer scientists","American engineers","American inventors","American people of Polish descent","American people of Swiss-German descent","American people of English descent","American people of Irish descent","American people of German descent","Apple II family","Apple Inc. executives","Computer designers","Grace Murray Hopper Award laureates","Hewlett-Packard people","National Medal of Technology recipients","Businesspeople from San Jose, California","University of California, Berkeley alumni","University of Colorado alumni","People from Los Gatos, California","People from Sunnyvale, California","Members of the United States National Academy of Engineering","People with brain injuries","University of Technology, Sydney faculty"],"wgBreakFrames":false,"wgPageContentLanguage":"en","wgPageContentModel":"wikitext","wgSeparatorTransformTable":["",""],"wgDigitTransformTable":["",""],"wgDefaultDateFormat":"dmy","wgMonthNames":["","January","February","March","April","May","June","July","August","September","October","November","December"],"wgMonthNamesShort":["","Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"wgRelevantPageName":"Steve_Wozniak","wgRelevantArticleId":27848,"wgIsProbablyEditable":true,"wgRestrictionEdit":[],"wgRestrictionMove":[],"wgMediaViewerOnClick":true,"wgMediaViewerEnabledByDefault":true,"wgVisualEditor":{"pageLanguageCode":"en","pageLanguageDir":"ltr","usePageImages":true,"usePageDescriptions":true},"wikilove-recipient":"","wikilove-anon":0,"wgPoweredByHHVM":true,"wgULSAcceptLanguageList":["en-us","en"],"wgULSCurrentAutonym":"English","wgWikiEditorEnabledModules":{"toolbar":true,"dialogs":true,"hidesig":true,"preview":false,"publish":false},"wgBetaFeaturesFeatures":[],"wgGatherShouldShowTutorial":true,"wgGatherPageImageThumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Steve_Wozniak.jpg/81px-Steve_Wozniak.jpg","wgFlaggedRevsParams":{"tags":{"status":{"levels":1,"quality":2,"pristine":3}}},"wgStableRevisionId":null,"wgCategoryTreePageCategoryOptions":"{\"mode\":0,\"hideprefix\":20,\"showcount\":true,\"namespaces\":false}","wgNoticeProject":"wikipedia","wgWikibaseItemId":"Q483382"});
}</script><script>if(window.mw){
mw.loader.implement("user.options",function($,jQuery){mw.user.options.set({"variant":"en"});});
/* cache key: enwiki:resourceloader:filter:minify-js:7:b2706269305541eba923c165462b22c4 */
}</script>
<script>if(window.mw){
mw.loader.implement("user.tokens",function($,jQuery){mw.user.tokens.set({"editToken":"+\\","patrolToken":"+\\","watchToken":"+\\"});});
}</script>
<script>if(window.mw){
mw.loader.load(["mediawiki.page.startup","mediawiki.legacy.wikibits","mediawiki.legacy.ajax","ext.centralauth.centralautologin","mmv.head","ext.imageMetrics.head","ext.visualEditor.viewPageTarget.init","ext.uls.init","ext.uls.interface","ext.centralNotice.bannerController","skins.vector.js"]);
}</script>
<link rel="dns-prefetch" href="//meta.wikimedia.org">
<!--[if lt IE 7]><style type="text/css">body{behavior:url("/w/static/1.26wmf11/skins/Vector/csshover.min.htc")}</style><![endif]-->
</head>
<body class="mediawiki ltr sitedir-ltr ns-0 ns-subject page-Steve_Wozniak skin-vector action-view">
<div id="mw-page-base" class="noprint"></div>
<div id="mw-head-base" class="noprint"></div>
<div id="content" class="mw-body" role="main">
<a id="top"></a>
<div id="siteNotice"><!-- CentralNotice --></div>
<div class="mw-indicators">
</div>
<h1 id="firstHeading" class="firstHeading" lang="en">Steve Wozniak</h1>
<div id="bodyContent" class="mw-body-content">
<div id="siteSub">From Wikipedia, the free encyclopedia</div>
<div id="contentSub"></div>
<div id="jump-to-nav" class="mw-jump">
Jump to: <a href="#mw-head">navigation</a>, <a href="#p-search">search</a>
</div>
<div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr">
<table class="infobox biography vcard" style="width:22em">
<tr>
<th colspan="2" style="text-align:center;font-size:125%;font-weight:bold"><span class="fn">Steve Wozniak</span></th>
</tr>
<tr>
<td colspan="2" style="text-align:center">
<a href="/wiki/File:Steve_Wozniak.jpg" class="image"><img alt="Steve Wozniak.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Steve_Wozniak.jpg/220px-Steve_Wozniak.jpg" width="220" height="270" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Steve_Wozniak.jpg/330px-Steve_Wozniak.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Steve_Wozniak.jpg/440px-Steve_Wozniak.jpg 2x" data-file-width="825" data-file-height="1014"></a>
<div>Wozniak in June 2005</div>
</td>
</tr>
<tr>
<th scope="row" style="padding-right:0.6em;">Born</th>
<td>
<span class="nickname">Stephan Gary Wozniak<sup id="cite_ref-iWoz_1-0" class="reference"><a href="#cite_note-iWoz-1"><span>[</span>1<span>]</span></a></sup><sup class="reference" style="white-space:nowrap;">:18</sup></span><br>
<span style="display:none">(<span class="bday">1950-08-11</span>)</span> August 11, 1950 <span class="noprint ForceAgeToShow">(age 64)</span><br>
<span class="birthplace"><a href="/wiki/San_Jose,_California" title="San Jose, California">San Jose</a>, <a href="/wiki/California" title="California">California</a>, U.S.</span>
</td>
</tr>
<tr>
<th scope="row" style="padding-right:0.6em;">Nationality</th>
<td class="category">American</td>
</tr>
<tr>
<th scope="row" style="padding-right:0.6em;">Other names</th>
<td class="nickname">
<div class="plainlist">
<ul>
<li>Berkeley Blue</li>
<li>Stephen Wozniak<sup id="cite_ref-iWoz_1-1" class="reference"><a href="#cite_note-iWoz-1"><span>[</span>1<span>]</span></a></sup><sup class="reference" style="white-space:nowrap;">:18</sup>
</li>
<li>Woz</li>
</ul>
</div>
</td>
</tr>
<tr>
<th scope="row" style="padding-right:0.6em;">Alma mater</th>
<td>
<div class="plainlist">
<ul>
<li><a href="/wiki/University_of_Colorado,_Boulder" title="University of Colorado, Boulder" class="mw-redirect">University of Colorado, Boulder</a></li>
<li><a href="/wiki/De_Anza_College" title="De Anza College">De Anza College</a></li>
<li><a href="/wiki/University_of_California,_Berkeley" title="University of California, Berkeley">University of California, Berkeley</a></li>
</ul>
</div>
</td>
</tr>
<tr>
<th scope="row" style="padding-right:0.6em;">Occupation</th>
<td class="role">
<div class="plainlist">
<ul>
<li><a href="/wiki/Electronic_engineering" title="Electronic engineering">Electronics engineer</a></li>
<li><a href="/wiki/Computer_programmer" title="Computer programmer" class="mw-redirect">Computer programmer</a></li>
</ul>
</div>
</td>
</tr>
<tr>
<th scope="row" style="padding-right:0.6em;">Known for</th>
<td>Cofounding <a href="/wiki/Apple_Inc." title="Apple Inc.">Apple Inc.</a>
</td>
</tr>
<tr>
<th scope="row" style="padding-right:0.6em;"><span style="white-space:nowrap;">Spouse(s)</span></th>
<td>
<div class="plainlist">
<ul>
<li><span>Alice Robertson (<abbr title="married">m.</abbr> 1976–80)</span></li>
<li><span><a href="/wiki/Candice_Clark" title="Candice Clark">Candice Clark</a> (<abbr title="married">m.</abbr> 1981–87)</span></li>
<li><span>Suzanne Mulkern (<abbr title="married">m.</abbr> 1990–2004)</span></li>
<li><span>Janet Hill (<abbr title="married">m.</abbr> 2008)</span></li>
</ul>
</div>
</td>
</tr>
<tr>
<th scope="row" style="padding-right:0.6em;">Children</th>
<td>3</td>
</tr>
<tr>
<th scope="row" style="padding-right:0.6em;">Call-sign</th>
<td>ex-WA6BND (ex-WV6VLY)</td>
</tr>
<tr>
<th colspan="2" style="text-align:center">Website</th>
</tr>
<tr>
<td colspan="2" style="text-align:center"><span class="url"><a rel="nofollow" class="external text" href="http://www.woz.org/">www<wbr></wbr>.woz<wbr></wbr>.org</a></span></td>
</tr>
</table>
<p><b>Stephen</b> (or <b>Stephan</b>) <b>Gary</b> "<b>Steve</b>" <b>Wozniak</b><sup id="cite_ref-iWoz_1-2" class="reference"><a href="#cite_note-iWoz-1"><span>[</span>1<span>]</span></a></sup><sup class="reference" style="white-space:nowrap;">:18</sup> (born August 11, 1950),<sup id="cite_ref-biography.com_2-0" class="reference"><a href="#cite_note-biography.com-2"><span>[</span>2<span>]</span></a></sup> known as "<b>Woz</b>", is an American pioneer of the <a href="/wiki/Microcomputer_revolution" title="Microcomputer revolution">personal computer revolution of the 1970s</a> (along with <a href="/wiki/Apple_Computer" title="Apple Computer" class="mw-redirect">Apple Computer</a> co-founder, <a href="/wiki/Steve_Jobs" title="Steve Jobs">Steve Jobs</a>). Wozniak is an American <a href="/wiki/Inventor" title="Inventor" class="mw-redirect">inventor</a>, <a href="/wiki/Electronics_engineer" title="Electronics engineer" class="mw-redirect">electronics engineer</a>, and <a href="/wiki/Computer_programmer" title="Computer programmer" class="mw-redirect">computer programmer</a> who single-handedly developed the 1976 <a href="/wiki/Apple_I" title="Apple I">Apple I</a>, the computer that launched Apple. He primarily designed the 1977 <a href="/wiki/Apple_II" title="Apple II">Apple II</a>, but Jobs oversaw the development of its unusual case and <a href="/wiki/Rod_Holt" title="Rod Holt">Rod Holt</a> developed the unique power supply.<sup id="cite_ref-mit_3-0" class="reference"><a href="#cite_note-mit-3"><span>[</span>3<span>]</span></a></sup></p>
<p><a href="/wiki/Seth_Rogen" title="Seth Rogen">Seth Rogen</a> will portray Wozniak in the upcoming film <i><a href="/wiki/Steve_Jobs_(film)" title="Steve Jobs (film)">Steve Jobs</a>.</i> <a href="/wiki/Josh_Gad" title="Josh Gad">Josh Gad</a> portrayed him in the 2013 film <i><a href="/wiki/Jobs_(film)" title="Jobs (film)">Jobs</a>,</i> and <a href="/wiki/Joey_Slotnick" title="Joey Slotnick">Joey Slotnick</a> portrayed him in the 1999 TNT film <i><a href="/wiki/Pirates_of_Silicon_Valley" title="Pirates of Silicon Valley">Pirates of Silicon Valley</a>.</i></p>
<p></p>
<div id="toc" class="toc">
<div id="toctitle">
<h2>Contents</h2>
</div>
<ul>
<li class="toclevel-1 tocsection-1">
<a href="#Early_life_and_career"><span class="tocnumber">1</span> <span class="toctext">Early life and career</span></a>
<ul>
<li class="toclevel-2 tocsection-2"><a href="#Names"><span class="tocnumber">1.1</span> <span class="toctext">Names</span></a></li>
</ul>
</li>
<li class="toclevel-1 tocsection-3">
<a href="#Apple_Computer"><span class="tocnumber">2</span> <span class="toctext">Apple Computer</span></a>
<ul>
<li class="toclevel-2 tocsection-4"><a href="#Origins_of_Apple"><span class="tocnumber">2.1</span> <span class="toctext">Origins of Apple</span></a></li>
<li class="toclevel-2 tocsection-5"><a href="#Airplane_crash"><span class="tocnumber">2.2</span> <span class="toctext">Airplane crash</span></a></li>
<li class="toclevel-2 tocsection-6"><a href="#US_Festivals"><span class="tocnumber">2.3</span> <span class="toctext">US Festivals</span></a></li>
</ul>
</li>
<li class="toclevel-1 tocsection-7"><a href="#Post-Apple_career"><span class="tocnumber">3</span> <span class="toctext">Post-Apple career</span></a></li>
<li class="toclevel-1 tocsection-8"><a href="#Patents"><span class="tocnumber">4</span> <span class="toctext">Patents</span></a></li>
<li class="toclevel-1 tocsection-9"><a href="#Philanthropy"><span class="tocnumber">5</span> <span class="toctext">Philanthropy</span></a></li>
<li class="toclevel-1 tocsection-10">
<a href="#Honors_and_awards"><span class="tocnumber">6</span> <span class="toctext">Honors and awards</span></a>
<ul>
<li class="toclevel-2 tocsection-11"><a href="#Honorary_degrees"><span class="tocnumber">6.1</span> <span class="toctext">Honorary degrees</span></a></li>
</ul>
</li>
<li class="toclevel-1 tocsection-12">
<a href="#Media"><span class="tocnumber">7</span> <span class="toctext">Media</span></a>
<ul>
<li class="toclevel-2 tocsection-13"><a href="#Documentaries"><span class="tocnumber">7.1</span> <span class="toctext">Documentaries</span></a></li>
<li class="toclevel-2 tocsection-14"><a href="#Feature_Films"><span class="tocnumber">7.2</span> <span class="toctext">Feature Films</span></a></li>
<li class="toclevel-2 tocsection-15"><a href="#Television"><span class="tocnumber">7.3</span> <span class="toctext">Television</span></a></li>
</ul>
</li>
<li class="toclevel-1 tocsection-16"><a href="#Personal_life"><span class="tocnumber">8</span> <span class="toctext">Personal life</span></a></li>
<li class="toclevel-1 tocsection-17"><a href="#Photographs"><span class="tocnumber">9</span> <span class="toctext">Photographs</span></a></li>
<li class="toclevel-1 tocsection-18"><a href="#See_also"><span class="tocnumber">10</span> <span class="toctext">See also</span></a></li>
<li class="toclevel-1 tocsection-19"><a href="#References"><span class="tocnumber">11</span> <span class="toctext">References</span></a></li>
<li class="toclevel-1 tocsection-20"><a href="#External_links"><span class="tocnumber">12</span> <span class="toctext">External links</span></a></li>
</ul>
</div>
<p></p>
<h2>
<span class="mw-headline" id="Early_life_and_career">Early life and career</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Steve_Wozniak&action=edit&section=1" title="Edit section: Early life and career">edit</a><span class="mw-editsection-bracket">]</span></span>
</h2>
<p>Wozniak was born in San Jose, California, the son of Margaret Elaine (Kern) and Jacob Francis "Jerry" Wozniak. He is of <a href="/wiki/Poles" title="Poles">Polish</a> and <a href="/wiki/Swiss_Germans" title="Swiss Germans" class="mw-redirect">Swiss-German</a> ancestry on his father's side, and of <a href="/wiki/Germans" title="Germans">German</a>, <a href="/wiki/Irish_people" title="Irish people">Irish</a>, and <a href="/wiki/English_people" title="English people">English</a> descent on his mother's.<sup id="cite_ref-4" class="reference"><a href="#cite_note-4"><span>[</span>4<span>]</span></a></sup><sup id="cite_ref-5" class="reference"><a href="#cite_note-5"><span>[</span>5<span>]</span></a></sup></p>
<h3>
<span class="mw-headline" id="Names">Names</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Steve_Wozniak&action=edit&section=2" title="Edit section: Names">edit</a><span class="mw-editsection-bracket">]</span></span>
</h3>
<p>The name on Wozniak's birth certificate is "Stephan Gary Wozniak", but Steve's mother said that she intended it to be spelled "Stephen", and "Steve" is what he uses.<sup id="cite_ref-iWoz_1-3" class="reference"><a href="#cite_note-iWoz-1"><span>[</span>1<span>]</span></a></sup><sup class="reference" style="white-space:nowrap;">:18</sup></p>
<p>Wozniak has been referred to frequently by the nickname "Woz", "The Wonderful Wizard of Woz", or "The Woz";<sup id="cite_ref-6" class="reference"><a href="#cite_note-6"><span>[</span>6<span>]</span></a></sup> "WoZ" (short for "<a href="/wiki/Wheels_of_Zeus" title="Wheels of Zeus">Wheels of Zeus</a>") is also the name of a company Wozniak founded. In the early 1970s, Wozniak was also known as "Berkeley Blue" in the <a href="/wiki/Phreaking" title="Phreaking">phone phreak</a> community.<sup id="cite_ref-7" class="reference"><a href="#cite_note-7"><span>[</span>7<span>]</span></a></sup></p>
<h2>
<span class="mw-headline" id="Apple_Computer">Apple Computer</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Steve_Wozniak&action=edit&section=3" title="Edit section: Apple Computer">edit</a><span class="mw-editsection-bracket">]</span></span>
</h2>
<h3>
<span class="mw-headline" id="Origins_of_Apple">Origins of Apple</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Steve_Wozniak&action=edit&section=4" title="Edit section: Origins of Apple">edit</a><span class="mw-editsection-bracket">]</span></span>
</h3>
<div class="thumb tright">
<div class="thumbinner" style="width:222px;">
<a href="/wiki/File:Woz_notebook.png" class="image"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Woz_notebook.png/220px-Woz_notebook.png" width="220" height="165" class="thumbimage" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Woz_notebook.png/330px-Woz_notebook.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Woz_notebook.png/440px-Woz_notebook.png 2x" data-file-width="1600" data-file-height="1200"></a>
<div class="thumbcaption">
<div class="magnify"><a href="/wiki/File:Woz_notebook.png" class="internal" title="Enlarge"></a></div>
Excerpt from the <a href="/wiki/Apple_I" title="Apple I">Apple I</a> design manual, including Wozniak's hand-drawn diagrams</div>
</div>
</div>
<p>In 1971 Wozniak's friend <a href="/wiki/Bill_Fernandez" title="Bill Fernandez">Bill Fernandez</a> introduced him to Steve Jobs. At the time Fernandez and Jobs were attending <a href="/wiki/Homestead_High_School_(Cupertino,_California)" title="Homestead High School (Cupertino, California)">Homestead High School</a>. Jobs and Wozniak became friends when Jobs worked for the summer at <a href="/wiki/Hewlett-Packard" title="Hewlett-Packard">Hewlett-Packard</a> (HP), where Wozniak too was employed, working on a <a href="/wiki/Mainframe_computer" title="Mainframe computer">mainframe computer</a>.<sup id="cite_ref-8" class="reference"><a href="#cite_note-8"><span>[</span>8<span>]</span></a></sup> Also in 1971 Wozniak withdrew from the <a href="/wiki/University_of_California,_Berkeley" title="University of California, Berkeley">University of California, Berkeley</a>, only one year after enrolling. This was recounted by Wozniak in a 2007 interview with <a href="/wiki/ABC_News" title="ABC News">ABC News</a>, of how and when he first met <a href="/wiki/Steve_Jobs" title="Steve Jobs">Steve Jobs</a>: "We first met in 1971 during my college years, while he was in high school. A friend said, 'you should meet Steve Jobs, because he likes electronics and he also plays pranks.' So he introduced us."<sup id="cite_ref-9" class="reference"><a href="#cite_note-9"><span>[</span>9<span>]</span></a></sup></p>
<p>In 1973, Jobs was working for <a href="/wiki/Arcade_game" title="Arcade game">arcade game</a> company <a href="/wiki/Atari,_Inc." title="Atari, Inc.">Atari, Inc.</a> in <a href="/wiki/Los_Gatos,_California" title="Los Gatos, California">Los Gatos, California</a>.<sup id="cite_ref-intoday1_10-0" class="reference"><a href="#cite_note-intoday1-10"><span>[</span>10<span>]</span></a></sup> He was assigned to create a <a href="/wiki/Circuit_board" title="Circuit board" class="mw-redirect">circuit board</a> for the arcade video game <i><a href="/wiki/Breakout_(arcade_game)" title="Breakout (arcade game)" class="mw-redirect">Breakout</a></i>. According to Atari co-founder <a href="/wiki/Nolan_Bushnell" title="Nolan Bushnell">Nolan Bushnell</a>, Atari offered $100 for each chip that was eliminated in the machine. Jobs had little knowledge of circuit board design and made a deal with Wozniak to split the fee evenly between them if Wozniak could minimize the number of chips. Wozniak reduced the number of chips by 50 by using <a href="/wiki/RAM" title="RAM" class="mw-redirect">RAM</a> for the brick representation. Too complex to be fully comprehended at the time, the fact that this prototype also had no scoring or coin mechanisms meant Woz's prototype could not be used. Jobs was paid the full bonus regardless. Jobs told Wozniak that Atari gave them only $700 and that Wozniak's share was thus $350.<sup id="cite_ref-breakout_11-0" class="reference"><a href="#cite_note-breakout-11"><span>[</span>11<span>]</span></a></sup> Wozniak did not learn about the actual bonus until ten years later, but said that if Jobs had told him about it and had said he needed the money, Wozniak would have given it to him.</p>
<p>On June 29, 1975 Wozniak tested his first working prototype, displaying a few letters and running sample programs. It was the first time in history that a <a href="/wiki/Character_(computing)" title="Character (computing)">character</a> displayed on a TV screen was generated by a home computer.<sup id="cite_ref-iWoz_1-4" class="reference"><a href="#cite_note-iWoz-1"><span>[</span>1<span>]</span></a></sup> With the Apple I design, he and Jobs were largely working to impress other members of the <a href="/wiki/Palo_Alto,_California" title="Palo Alto, California">Palo Alto</a>-based <a href="/wiki/Homebrew_Computer_Club" title="Homebrew Computer Club">Homebrew Computer Club</a>, a local group of electronics hobbyists interested in computing. The Club was one of several key centers which established the home hobbyist era, essentially creating the microcomputer industry over the next few decades. Unlike other Homebrew designs, the Apple had an easy-to-achieve video capability that drew a crowd when it was unveiled.<sup id="cite_ref-FireValley_12-0" class="reference"><a href="#cite_note-FireValley-12"><span>[</span>12<span>]</span></a></sup></p>
<p>In 1976, Wozniak developed the computer that eventually made him famous. He alone designed the hardware, circuit board designs, and operating system for the <a href="/wiki/Apple_I" title="Apple I">Apple I</a>.<sup id="cite_ref-FireValley_12-1" class="reference"><a href="#cite_note-FireValley-12"><span>[</span>12<span>]</span></a></sup> Jobs had the idea to sell the <a href="/wiki/Apple_I" title="Apple I">Apple I</a> as a fully assembled <a href="/wiki/Printed_circuit_board" title="Printed circuit board">printed circuit board</a>. Wozniak, at first skeptical, was later convinced by Jobs that even if they were not successful they could at least say to their grandkids they had had their own company. Together they sold some of their possessions (such as Wozniak's HP <a href="/wiki/Scientific_calculator" title="Scientific calculator">scientific calculator</a> and Jobs' <a href="/wiki/Volkswagen_Type_2" title="Volkswagen Type 2">Volkswagen van</a>), raised $1,300, and assembled the first boards in Jobs' bedroom and later (when there was no space left) in Jobs' garage. Wozniak's apartment in <a href="/wiki/San_Jose,_California" title="San Jose, California">San Jose</a> was filled with monitors, electronic devices, and some computer games Wozniak had developed. The Apple I sold for $666.66. (Wozniak later said he had no idea about the relation between the number and the <a href="/wiki/Number_of_the_Beast" title="Number of the Beast">mark of the beast</a>, and "I came up with [it] because I like repeating digits.") Jobs and Wozniak sold their first 50 system boards to <a href="/wiki/Paul_Terrell" title="Paul Terrell">Paul Terrell</a>, who was starting a new computer shop, called the Byte Shop, in <a href="/wiki/Mountain_View,_California" title="Mountain View, California">Mountain View, California</a>.<sup id="cite_ref-iWoz_1-5" class="reference"><a href="#cite_note-iWoz-1"><span>[</span>1<span>]</span></a></sup></p>
<p>On April 1, 1976, Jobs and Wozniak formed <a href="/wiki/Apple_Computer" title="Apple Computer" class="mw-redirect">Apple Computer</a>. Wozniak resigned from his job at <a href="/wiki/Hewlett-Packard" title="Hewlett-Packard">Hewlett-Packard</a> and became the vice president in charge of research and development at Apple. Wozniak's Apple I was similar to the <a href="/wiki/Altair_8800" title="Altair 8800">Altair 8800</a>, the first commercially available microcomputer, except the Apple I had no provision for internal expansion cards. With expansion cards the Altair could attach to a computer terminal and be programmed in <a href="/wiki/BASIC" title="BASIC">BASIC</a>. In contrast, the Apple I was a hobbyist machine. Wozniak's design included a $25 <a href="/wiki/Microprocessor" title="Microprocessor">microprocessor</a> (<a href="/wiki/MOS_Technology_6502" title="MOS Technology 6502">MOS 6502</a>) on a single circuit board with 256 bytes of <a href="/wiki/Read-only_memory" title="Read-only memory">ROM</a>, 4K or 8K bytes of <a href="/wiki/Random_access_memory" title="Random access memory" class="mw-redirect">RAM</a>, and a 40-character by 24-row display controller. Apple's first computer lacked a case, power supply, keyboard, and display, all components the user had to provide.</p>
<p>After the success of the Apple I, Wozniak designed the <a href="/wiki/Apple_II" title="Apple II">Apple II</a>, the first personal computer that had the ability to display color graphics, and BASIC programming language built-in.<sup id="cite_ref-iWoz_1-6" class="reference"><a href="#cite_note-iWoz-1"><span>[</span>1<span>]</span></a></sup> Inspired by "the technique <a href="/wiki/Atari" title="Atari">Atari</a> used to simulate colors on its first <a href="/wiki/Arcade_game" title="Arcade game">arcade games</a>", Wozniak found a way to putting colors into the <a href="/wiki/NTSC" title="NTSC">NTSC</a> system by using a $1 chip,<sup id="cite_ref-13" class="reference"><a href="#cite_note-13"><span>[</span>13<span>]</span></a></sup> while colors in the <a href="/wiki/PAL" title="PAL">PAL</a> system was achieved by "accident" when a dot occurred on a line, and to this day he has no idea how it works.<sup id="cite_ref-14" class="reference"><a href="#cite_note-14"><span>[</span>14<span>]</span></a></sup> During the design stage, Steve Jobs argued that the Apple II should have two <a href="/wiki/Expansion_slot" title="Expansion slot" class="mw-redirect">expansion slots</a>, while Wozniak wanted six. After a heated argument, during which Wozniak had threatened for Jobs to 'go get himself another computer', they decided to go with eight slots. The Apple II became one of the first highly successful mass-produced personal computers.</p>
<div class="thumb tright">
<div class="thumbinner" style="width:172px;">
<a href="/wiki/File:Steve_Wozniak,_1983.jpg" class="image"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Steve_Wozniak%2C_1983.jpg/170px-Steve_Wozniak%2C_1983.jpg" width="170" height="252" class="thumbimage" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Steve_Wozniak%2C_1983.jpg/255px-Steve_Wozniak%2C_1983.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Steve_Wozniak%2C_1983.jpg/340px-Steve_Wozniak%2C_1983.jpg 2x" data-file-width="432" data-file-height="640"></a>
<div class="thumbcaption">
<div class="magnify"><a href="/wiki/File:Steve_Wozniak,_1983.jpg" class="internal" title="Enlarge"></a></div>
Steve Wozniak in 1983</div>
</div>
</div>
<h3>
<span class="mw-headline" id="Airplane_crash">Airplane crash</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Steve_Wozniak&action=edit&section=5" title="Edit section: Airplane crash">edit</a><span class="mw-editsection-bracket">]</span></span>
</h3>
<p>On February 7, 1981, the <a href="/wiki/Beechcraft_Bonanza" title="Beechcraft Bonanza">Beechcraft Bonanza</a> A36TC Wozniak was piloting crashed soon after takeoff from the <a href="/wiki/Santa_Cruz_Sky_Park" title="Santa Cruz Sky Park">Sky Park Airport</a> in <a href="/wiki/Scotts_Valley,_California" title="Scotts Valley, California">Scotts Valley</a>, <a href="/wiki/California" title="California">California</a>.<sup id="cite_ref-15" class="reference"><a href="#cite_note-15"><span>[</span>15<span>]</span></a></sup> The plane stalled while climbing, then bounced down the runway, went through two fences, and crashed into an embankment. Wozniak and his three passengers, then-fiance <a href="/wiki/Candice_Clark" title="Candice Clark">Candice Clark</a>, her brother and his girlfriend, were injured. Wozniak sustained severe face and head injuries, including losing a tooth, and also suffered for five weeks after the crash from <a href="/wiki/Anterograde_amnesia" title="Anterograde amnesia">anterograde amnesia</a>, the inability to create new memories. He had no memory of the crash, and did not remember his name in the hospital or the things he did after he was released from the hospital.<sup id="cite_ref-byte198501_16-0" class="reference"><a href="#cite_note-byte198501-16"><span>[</span>16<span>]</span></a></sup><sup id="cite_ref-17" class="reference"><a href="#cite_note-17"><span>[</span>17<span>]</span></a></sup> The <a href="/wiki/National_Transportation_Safety_Board" title="National Transportation Safety Board">National Transportation Safety Board</a> investigation report cited premature liftoff and pilot inexperience as probable causes of the crash.<sup id="cite_ref-18" class="reference"><a href="#cite_note-18"><span>[</span>18<span>]</span></a></sup> Wozniak did not immediately return after recovering from the <a href="#Airplane_crash">airplane crash</a>, seeing it as a good reason to leave.<sup id="cite_ref-byte198501_16-1" class="reference"><a href="#cite_note-byte198501-16"><span>[</span>16<span>]</span></a></sup></p>
<h3>
<span class="mw-headline" id="US_Festivals">US Festivals</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Steve_Wozniak&action=edit&section=6" title="Edit section: US Festivals">edit</a><span class="mw-editsection-bracket">]</span></span>
</h3>
<p>In May 1982 and 1983, Wozniak sponsored two <a href="/wiki/US_Festival" title="US Festival">US Festivals</a> to celebrate evolving technologies; they ended up as a technology exposition and a rock festival as a combination of music, computers, television and people.</p>
<p>Also in 1983, Wozniak returned to Apple product development, desiring no more of a role than that of an engineer and a motivational factor for the Apple workforce.<sup id="cite_ref-iWoz_1-7" class="reference"><a href="#cite_note-iWoz-1"><span>[</span>1<span>]</span></a></sup></p>
<p>Even with the success he helped create at Apple, Wozniak felt that <a href="/wiki/Apple_Inc." title="Apple Inc.">Apple</a> was a hindrance to become who he wanted to be, and that it was "the bane of his existence".<sup id="cite_ref-Flatow_19-0" class="reference"><a href="#cite_note-Flatow-19"><span>[</span>19<span>]</span></a></sup> He enjoyed engineering, not management, and as other engineers joined the growing company, he no longer felt needed at Apple, and by early 1985, Wozniak again left Apple. Stating that the company had "been going in the wrong direction for the last five years", he sold most of his stock.<sup id="cite_ref-rice19850415_20-0" class="reference"><a href="#cite_note-rice19850415-20"><span>[</span>20<span>]</span></a></sup></p>
<div class="thumb tright">
<div class="thumbinner" style="width:222px;">
<a href="/wiki/File:Steve_Wozniak_and_Andy_Hertzfeld_1985.jpg" class="image"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/0c/Steve_Wozniak_and_Andy_Hertzfeld_1985.jpg/220px-Steve_Wozniak_and_Andy_Hertzfeld_1985.jpg" width="220" height="164" class="thumbimage" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/0c/Steve_Wozniak_and_Andy_Hertzfeld_1985.jpg/330px-Steve_Wozniak_and_Andy_Hertzfeld_1985.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/0/0c/Steve_Wozniak_and_Andy_Hertzfeld_1985.jpg/440px-Steve_Wozniak_and_Andy_Hertzfeld_1985.jpg 2x" data-file-width="1264" data-file-height="944"></a>
<div class="thumbcaption">
<div class="magnify"><a href="/wiki/File:Steve_Wozniak_and_Andy_Hertzfeld_1985.jpg" class="internal" title="Enlarge"></a></div>
Steve Wozniak and <a href="/wiki/Andy_Hertzfeld" title="Andy Hertzfeld">Andy Hertzfeld</a> at an Apple Computer Users Group meeting in 1985</div>
</div>
</div>
<h2>
<span class="mw-headline" id="Post-Apple_career">Post-Apple career</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Steve_Wozniak&action=edit&section=7" title="Edit section: Post-Apple career">edit</a><span class="mw-editsection-bracket">]</span></span>
</h2>
<p>One thing Wozniak wanted to do was teach elementary school because of the important role teachers play in students' lives. Eventually, he did teach computer classes to children from the fifth through ninth grades and teachers as well.<sup id="cite_ref-Flatow_19-1" class="reference"><a href="#cite_note-Flatow-19"><span>[</span>19<span>]</span></a></sup></p>
<p>Wozniak remains an employee of Apple and receives a stipend, estimated to be $120,000 per year.<sup id="cite_ref-iWoz_1-8" class="reference"><a href="#cite_note-iWoz-1"><span>[</span>1<span>]</span></a></sup><sup id="cite_ref-21" class="reference"><a href="#cite_note-21"><span>[</span>21<span>]</span></a></sup><sup id="cite_ref-wozemployee_22-0" class="reference"><a href="#cite_note-wozemployee-22"><span>[</span>22<span>]</span></a></sup> He is also an Apple shareholder.<sup id="cite_ref-wozstock_23-0" class="reference"><a href="#cite_note-wozstock-23"><span>[</span>23<span>]</span></a></sup> He also maintained connections with Steve Jobs until Jobs' death in October 2011,<sup id="cite_ref-24" class="reference"><a href="#cite_note-24"><span>[</span>24<span>]</span></a></sup> although, in 2006, Wozniak stated that he and Jobs were not close friends.<sup id="cite_ref-25" class="reference"><a href="#cite_note-25"><span>[</span>25<span>]</span></a></sup> In a 2013 interview, Wozniak said that the Macintosh "failed" under Steve Jobs, and that it wasn't until Jobs left that it became a success. Jobs called the <a href="/wiki/Apple_Lisa" title="Apple Lisa">Apple Lisa</a> group, the team that had kicked Jobs out, idiots for making the Lisa computer too expensive. To compete with the Lisa, Jobs and his new team produced a cheaper computer, one that, according to Wozniak, was "weak", "lousy" and "still at a fairly high price". "He made it by cutting the RAM down, by forcing you to swap disks here and there", says Wozniak. He attributed the eventual success of the Macintosh to people like <a href="/wiki/John_Sculley" title="John Sculley">John Sculley</a> "who worked to build a Macintosh market when the Apple II went away".<sup id="cite_ref-26" class="reference"><a href="#cite_note-26"><span>[</span>26<span>]</span></a></sup></p>
<p>Wozniak founded a new venture called <a href="/wiki/CL_9" title="CL 9">CL 9</a>, which developed and brought the first programmable <a href="/wiki/Universal_remote" title="Universal remote">universal remote control</a> to market in 1987.<sup id="cite_ref-iWoz_1-9" class="reference"><a href="#cite_note-iWoz-1"><span>[</span>1<span>]</span></a></sup></p>
<p>In 2001, Wozniak founded <a href="/wiki/Wheels_of_Zeus" title="Wheels of Zeus">Wheels of Zeus</a> (WOZ), to create wireless <a href="/wiki/GPS" title="GPS" class="mw-redirect">GPS</a> technology to "help everyday people find everyday things much more easily." In 2002, he joined the Board of Directors of <a href="/wiki/Ripcord_Networks" title="Ripcord Networks">Ripcord Networks, Inc.</a>, joining <a href="/wiki/Ellen_Hancock" title="Ellen Hancock">Ellen Hancock</a>, <a href="/wiki/Gil_Amelio" title="Gil Amelio">Gil Amelio</a>, Mike Connor, and <a href="/wiki/Wheels_of_Zeus" title="Wheels of Zeus">Wheels of Zeus</a> co-founder <a href="/wiki/Alex_Fielding" title="Alex Fielding">Alex Fielding</a>, all Apple alumni, in a new <a href="/wiki/Telecommunications" title="Telecommunications" class="mw-redirect">telecommunications</a> venture. Later the same year he joined the Board of Directors of <a href="/wiki/Danger_(company)" title="Danger (company)">Danger, Inc.</a>, the maker of the <a href="/wiki/Danger_Hiptop" title="Danger Hiptop">Hip Top</a> (a.k.a. Side Kick from T-Mobile).</p>
<p>In 2006, Wheels of Zeus was closed, and Wozniak founded <a href="/wiki/Acquicor_Technology" title="Acquicor Technology" class="mw-redirect">Acquicor Technology</a>, a <a href="/wiki/Holding_company" title="Holding company">holding company</a> for acquiring technology companies and developing them, with Apple alumnae <a href="/wiki/Ellen_Hancock" title="Ellen Hancock">Ellen Hancock</a> and <a href="/wiki/Gil_Amelio" title="Gil Amelio">Gil Amelio</a>.</p>
<p>In March 2006, Wozniak attended the <a href="/wiki/FIRST" title="FIRST" class="mw-redirect">FIRST</a> National Competition in Atlanta to show off <a href="/wiki/Lego" title="Lego">Lego</a> robots.<sup id="cite_ref-FIRST_27-0" class="reference"><a href="#cite_note-FIRST-27"><span>[</span>27<span>]</span></a></sup> In 2010, he attended another FIRST event, a regional event in downtown Phoenix Arizona at the <a href="/wiki/Arizona_State_Fairgrounds" title="Arizona State Fairgrounds" class="mw-redirect">Arizona State Fairgrounds</a>. In 2012, he attended and was a judge at another FIRST event, the FRC Las Vegas Regional.</p>
<p>In September 2006, Wozniak published his autobiography, <i><a href="/wiki/IWoz" title="IWoz">iWoz: From Computer Geek to Cult Icon: How I Invented the Personal Computer, Co-Founded Apple, and Had Fun Doing It</a>.</i> It was co-authored by writer Gina Smith.</p>
<p>In September 2007, Wozniak joined <a href="/wiki/Scottevest" title="Scottevest">Scottevest</a> as an Advisory Board Member.<sup id="cite_ref-28" class="reference"><a href="#cite_note-28"><span>[</span>28<span>]</span></a></sup></p>
<p>In February 2009, Wozniak joined <a href="/wiki/Fusion-io" title="Fusion-io">Fusion-io</a>, a data storage and server company, in <a href="/wiki/Salt_Lake_City" title="Salt Lake City">Salt Lake City</a>, <a href="/wiki/Utah" title="Utah">Utah</a> as their chief scientist.<sup id="cite_ref-29" class="reference"><a href="#cite_note-29"><span>[</span>29<span>]</span></a></sup></p>
<p>On November 18, 2010, Wozniak gave a speech at the <i><a href="/wiki/Meet_the_Future,_Science_%26_Technology_Summit_2010" title="Meet the Future, Science & Technology Summit 2010">Science & Technology Summit</a></i> at the <a href="/wiki/World_Forum_Convention_Center" title="World Forum Convention Center" class="mw-redirect">World Forum Convention Center</a> in <a href="/wiki/The_Hague" title="The Hague">The Hague</a> in which he predicted that Android would be dominant over the iPhone market-wise but the iPhone would retain the quality edge.<sup id="cite_ref-30" class="reference"><a href="#cite_note-30"><span>[</span>30<span>]</span></a></sup></p>
<p>On June 9, 2011, Wozniak joined members of <a href="/wiki/Fusion-io" title="Fusion-io">Fusion-io</a>’s management team to celebrate the company’s first day of trading on the <a href="/wiki/New_York_Stock_Exchange" title="New York Stock Exchange">NYSE</a> by ringing The Opening Bell.<sup id="cite_ref-31" class="reference"><a href="#cite_note-31"><span>[</span>31<span>]</span></a></sup></p>
<p>On October 20, 2011, Wozniak delivered a <a href="/wiki/Keynote" title="Keynote">keynote</a> presentation titled "Today’s Science Fiction, Tomorrow’s Science Fact" at IP EXPO, a <a href="/wiki/Computer_expo" title="Computer expo">Computer expo</a> which took place at <a href="/wiki/Earls_Court_Exhibition_Centre" title="Earls Court Exhibition Centre">Earls Court Exhibition Centre</a> in <a href="/wiki/London" title="London">London</a>.<sup id="cite_ref-32" class="reference"><a href="#cite_note-32"><span>[</span>32<span>]</span></a></sup></p>
<p>On November 14, 2011, Wozniak was the keynote speaker at "Rutgers Entrepreneurship Day" at <a href="/wiki/Rutgers_University" title="Rutgers University">Rutgers University</a> in <a href="/wiki/New_Brunswick,_New_Jersey" title="New Brunswick, New Jersey">New Brunswick, New Jersey</a>.<sup id="cite_ref-33" class="reference"><a href="#cite_note-33"><span>[</span>33<span>]</span></a></sup></p>
<p>On May 16, 2012, Wozniak spoke at the "WOZ Live" event at the <a href="/wiki/Melbourne_Exhibition_and_Convention_Centre" title="Melbourne Exhibition and Convention Centre" class="mw-redirect">Melbourne Exhibition and Convention Centre</a>, Australia.</p>
<p>On October 20, 2012, Wozniak spoke at the "<a href="/w/index.php?title=Tijuana_Innovadora&action=edit&redlink=1" class="new" title="Tijuana Innovadora (page does not exist)">Tijuana Innovadora</a>" event at the <a href="/wiki/Tijuana_Cultural_Center" title="Tijuana Cultural Center">Tijuana Cultural Center</a>, in Tijuana, Mexico.<sup id="cite_ref-34" class="reference"><a href="#cite_note-34"><span>[</span>34<span>]</span></a></sup></p>
<p>On November 13, 2013 Wozniak was the keynote speaker at the Internet Summit in Raleigh, NC.</p>
<p>In 2014 Wozniak became an Adjunct Professor in the Faculty of Engineering & Information Technology at the <a href="/wiki/University_of_Technology,_Sydney" title="University of Technology, Sydney">University of Technology, Sydney</a>, Australia.<sup id="cite_ref-35" class="reference"><a href="#cite_note-35"><span>[</span>35<span>]</span></a></sup></p>
<div class="thumb tright">
<div class="thumbinner" style="width:222px;">
<a href="/wiki/File:Steve_Wozniak_2012.jpg" class="image"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/6/63/Steve_Wozniak_2012.jpg/220px-Steve_Wozniak_2012.jpg" width="220" height="146" class="thumbimage" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/6/63/Steve_Wozniak_2012.jpg/330px-Steve_Wozniak_2012.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/6/63/Steve_Wozniak_2012.jpg/440px-Steve_Wozniak_2012.jpg 2x" data-file-width="5462" data-file-height="3614"></a>
<div class="thumbcaption">
<div class="magnify"><a href="/wiki/File:Steve_Wozniak_2012.jpg" class="internal" title="Enlarge"></a></div>
Woz on stage at the <a href="/wiki/Melbourne_Convention_and_Exhibition_Centre" title="Melbourne Convention and Exhibition Centre">Melbourne Convention and Exhibition Centre</a>, Australia, May 16, 2012</div>
</div>
</div>
<h2>
<span class="mw-headline" id="Patents">Patents</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Steve_Wozniak&action=edit&section=8" title="Edit section: Patents">edit</a><span class="mw-editsection-bracket">]</span></span>
</h2>
<p>Wozniak is listed as the sole inventor on the following Apple patents:</p>
<ul>
<li>US Patent No. 4,136,359: "Microcomputer for use with video display"<sup id="cite_ref-36" class="reference"><a href="#cite_note-36"><span>[</span>36<span>]</span></a></sup>—for which he was inducted into the National Inventors Hall of Fame.</li>
<li>US Patent No. 4,210,959: "Controller for magnetic disc, recorder, or the like"<sup id="cite_ref-37" class="reference"><a href="#cite_note-37"><span>[</span>37<span>]</span></a></sup>
</li>
<li>US Patent No. 4,217,604: "Apparatus for digitally controlling <a href="/wiki/PAL" title="PAL">PAL</a> color display"<sup id="cite_ref-38" class="reference"><a href="#cite_note-38"><span>[</span>38<span>]</span></a></sup>
</li>
<li>US Patent No. 4,278,972: "Digitally-controlled color signal generation means for use with display"<sup id="cite_ref-39" class="reference"><a href="#cite_note-39"><span>[</span>39<span>]</span></a></sup>
</li>
</ul>
<h2>
<span class="mw-headline" id="Philanthropy">Philanthropy</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Steve_Wozniak&action=edit&section=9" title="Edit section: Philanthropy">edit</a><span class="mw-editsection-bracket">]</span></span>
</h2>
<p>Since leaving Apple, Wozniak has provided all the money, as well as a good amount of on-site technical support, for the technology program in his local school district.<sup id="cite_ref-iWoz_1-10" class="reference"><a href="#cite_note-iWoz-1"><span>[</span>1<span>]</span></a></sup> Un.U.Son. (Unite Us In Song), an organization Wozniak formed to organize the two US festivals, is now primarily tasked with supporting his educational and philanthropic projects.<sup id="cite_ref-iWoz_1-11" class="reference"><a href="#cite_note-iWoz-1"><span>[</span>1<span>]</span></a></sup> In 1986, Wozniak lent his name to the Stephen G. Wozniak Achievement Awards (popularly known as "Wozzie Awards"), which he presented to six Bay Area high school and college students for their innovative use of computers in the fields of business, art and music. More recently, Woz was the subject of a student-made film production of his friend's (Joe Patane) nonprofit Dream Camp Foundation for high-level need youth titled <i>Camp Woz: The Admirable Lunacy of Philanthropy</i>.</p>
<h2>
<span class="mw-headline" id="Honors_and_awards">Honors and awards</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Steve_Wozniak&action=edit&section=10" title="Edit section: Honors and awards">edit</a><span class="mw-editsection-bracket">]</span></span>
</h2>
<p>In 1979, Wozniak was awarded the ACM <a href="/wiki/Grace_Murray_Hopper_Award" title="Grace Murray Hopper Award">Grace Murray Hopper Award</a>. In 1985, Wozniak received the <a href="/wiki/National_Medal_of_Technology" title="National Medal of Technology" class="mw-redirect">National Medal of Technology</a> (with Steve Jobs) from US President <a href="/wiki/Ronald_Reagan" title="Ronald Reagan">Ronald Reagan</a>.<sup id="cite_ref-iWoz_1-12" class="reference"><a href="#cite_note-iWoz-1"><span>[</span>1<span>]</span></a></sup> In December 1989, he received an honorary <a href="/wiki/Doctor_of_Engineering" title="Doctor of Engineering">Doctor of Engineering</a> degree from the <a href="/wiki/University_of_Colorado_at_Boulder" title="University of Colorado at Boulder" class="mw-redirect">University of Colorado at Boulder</a>, where he studied in the late sixties.<sup id="cite_ref-uofc_40-0" class="reference"><a href="#cite_note-uofc-40"><span>[</span>40<span>]</span></a></sup> Later he donated funds to create the "Woz Lab" at the University of Colorado at Boulder. In 1997, he was named a Fellow of the <a href="/wiki/Computer_History_Museum" title="Computer History Museum">Computer History Museum</a> "for co-founding Apple Computer and inventing the Apple I personal computer."<sup id="cite_ref-41" class="reference"><a href="#cite_note-41"><span>[</span>41<span>]</span></a></sup> Wozniak was a key contributor and benefactor to the <a href="/wiki/Children%27s_Discovery_Museum_of_San_Jose" title="Children's Discovery Museum of San Jose">Children's Discovery Museum of San Jose</a>; the street in front of the museum has been renamed Woz Way in his honor.<sup id="cite_ref-42" class="reference"><a href="#cite_note-42"><span>[</span>42<span>]</span></a></sup></p>
<p>In September 2000, Wozniak was inducted into the <a href="/wiki/National_Inventors_Hall_of_Fame" title="National Inventors Hall of Fame">National Inventors Hall of Fame</a>,<sup id="cite_ref-43" class="reference"><a href="#cite_note-43"><span>[</span>43<span>]</span></a></sup> and in 2001 he was awarded the 7th Annual <a href="/wiki/Heinz_Award" title="Heinz Award" class="mw-redirect">Heinz Award</a> for Technology, the Economy and Employment.<sup id="cite_ref-44" class="reference"><a href="#cite_note-44"><span>[</span>44<span>]</span></a></sup> The <a href="/wiki/American_Humanist_Association" title="American Humanist Association">American Humanist Association</a> awarded him the <a href="/wiki/Isaac_Asimov_Awards" title="Isaac Asimov Awards">Isaac Asimov Science Award</a> in 2011.</p>
<p>In December 2005, Wozniak was awarded an honorary Doctor of Engineering degree from <a href="/wiki/Kettering_University" title="Kettering University">Kettering University</a>.<sup id="cite_ref-45" class="reference"><a href="#cite_note-45"><span>[</span>45<span>]</span></a></sup> He also received honorary degrees from <a href="/wiki/North_Carolina_State_University" title="North Carolina State University">North Carolina State University</a><sup id="cite_ref-NCSU_46-0" class="reference"><a href="#cite_note-NCSU-46"><span>[</span>46<span>]</span></a></sup> and <a href="/wiki/Nova_Southeastern_University" title="Nova Southeastern University">Nova Southeastern University</a>, and the Telluride Tech Festival Award of Technology. In May 2011, Wozniak received an honorary Doctor of Engineering degree from <a href="/wiki/Michigan_State_University" title="Michigan State University">Michigan State University</a>.<sup id="cite_ref-47" class="reference"><a href="#cite_note-47"><span>[</span>47<span>]</span></a></sup> In June 2012, Wozniak was awarded an honorary Doctor of Engineering degree from Santa Clara University.</p>
<p>He was awarded the Global Award of the President of Armenia for Outstanding Contribution to Humanity Through IT in 2011.<sup id="cite_ref-48" class="reference"><a href="#cite_note-48"><span>[</span>48<span>]</span></a></sup></p>
<p>On February 17, 2014, in Los Angeles, Steve Wozniak was awarded the 66th Hoover Medal from IEEE President & CEO J. Roberto de Marca. The award is presented to an engineer whose professional achievements and personal endeavors have advanced the well-being of humankind and is administered by a board representing five engineering organizations: The American Society of Mechanical Engineers; the American Society of Civil Engineers; the American Institute of Chemical Engineers; the American Institute of Mining, Metallurgical and Petroleum Engineers; and IEEE.</p>
<p>The New York City Chapter of Young Presidents' Organization presented their 2014 Lifetime Achievement Award to Steve Wozniak on October, 16, 2014 at the American Museum of Natural History.</p>
<p>In November 2014, Industry Week added Steve Wozniak to the Manufacturing Hall of Fame.</p>
<p>On June 19, 2015 Woz received the Legacy for Children Award from the Children's Discovery Museum in San Jose. The Legacy for Children Award honors an individual whose legacy has significantly benefited the learning and lives of children. The purpose of the Award is to focus Silicon Valley's attention on the needs of our children, encouraging us all to take responsibility for their well-being. Candidates are nominated by a committee of notable community members involved in children's education, health care, human and social services, and the arts.<sup id="cite_ref-49" class="reference"><a href="#cite_note-49"><span>[</span>49<span>]</span></a></sup></p>
<p>On June 20, 2015, The Cal Alumni Association (UC Berkeley's Alumni Association) presented Woz with the 2015 Alumnus of the Year Award. "We are honored to recognize Steve Wozniak with CAA’s most esteemed award," said CAA President Cynthia So Schroeder '91. "His invaluable contributions to education and to UC Berkeley place him among Cal's most accomplished and respected alumni."<sup id="cite_ref-50" class="reference"><a href="#cite_note-50"><span>[</span>50<span>]</span></a></sup></p>
<h3>
<span class="mw-headline" id="Honorary_degrees">Honorary degrees</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Steve_Wozniak&action=edit&section=11" title="Edit section: Honorary degrees">edit</a><span class="mw-editsection-bracket">]</span></span>
</h3>
<table class="metadata plainlinks ambox ambox-content ambox-Refimprove" role="presentation">
<tr>
<td class="mbox-image">
<div style="width:52px"><a href="/wiki/File:Question_book-new.svg" class="image"><img alt="" src="//upload.wikimedia.org/wikipedia/en/thumb/9/99/Question_book-new.svg/50px-Question_book-new.svg.png" width="50" height="39" srcset="//upload.wikimedia.org/wikipedia/en/thumb/9/99/Question_book-new.svg/75px-Question_book-new.svg.png 1.5x, //upload.wikimedia.org/wikipedia/en/thumb/9/99/Question_book-new.svg/100px-Question_book-new.svg.png 2x" data-file-width="262" data-file-height="204"></a></div>
</td>
<td class="mbox-text"><span class="mbox-text-span">This section <b>needs additional citations for <a href="/wiki/Wikipedia:Verifiability" title="Wikipedia:Verifiability">verification</a></b>. <span class="hide-when-compact">Please help <a class="external text" href="//en.wikipedia.org/w/index.php?title=Steve_Wozniak&action=edit">improve this article</a> by <a href="/wiki/Help:Introduction_to_referencing/1" title="Help:Introduction to referencing/1">adding citations to reliable sources</a>. Unsourced material may be challenged and removed.</span> <small><i>(June 2015)</i></small></span></td>
</tr>
</table>
<p>For his contributions to technology, Wozniak has been awarded a number of Honorary Doctor of Engineering degrees which include the following:</p>
<ul>
<li>University of Colorado at Boulder: 1989</li>
<li>North Carolina State University: 2004<sup id="cite_ref-NCSU_46-1" class="reference"><a href="#cite_note-NCSU-46"><span>[</span>46<span>]</span></a></sup>
</li>
<li>Kettering University: 2005</li>
<li>Nova Southeastern University: 2005</li>
<li>ESPOL University in Ecuador: 2008</li>
<li>Michigan State University: 2011</li>
<li>Concordia University in Montreal Canada: June 22, 2011</li>
<li>State Engineering University of Armenia: November 11, 2011</li>
<li>Santa Clara University: June 16, 2012</li>
<li>University Camilo Jose Cela in Madrid, Spain: November 8, 2013</li>
<li>Universidad Nacional de Ingenieria in Lima, Peru: November 22, 2013</li>
<li>Universidad San Juan Bautista in Lima, Peru: June 9, 2015</li>
</ul>
<h2>
<span class="mw-headline" id="Media">Media</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Steve_Wozniak&action=edit&section=12" title="Edit section: Media">edit</a><span class="mw-editsection-bracket">]</span></span>
</h2>
<h3>
<span class="mw-headline" id="Documentaries">Documentaries</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Steve_Wozniak&action=edit&section=13" title="Edit section: Documentaries">edit</a><span class="mw-editsection-bracket">]</span></span>
</h3>
<ul>
<li>
<i><a href="/wiki/Mobilize_(2014_film)" title="Mobilize (2014 film)" class="mw-redirect">Mobilize: A Film About Cell Phone Radiation</a></i> – a 2014 documentary featuring Wozniak.</li>
<li>
<i>Camp Woz: The Admirable Lunacy of Philanthropy</i> – a 2009 documentary<sup id="cite_ref-51" class="reference"><a href="#cite_note-51"><span>[</span>51<span>]</span></a></sup>
</li>
<li>
<i><a href="/wiki/The_Secret_History_of_Hacking" title="The Secret History of Hacking">The Secret History of Hacking</a></i> – a 2001 documentary film featuring Wozniak.</li>
<li>
<i><a href="/wiki/Triumph_of_the_Nerds" title="Triumph of the Nerds">Triumph of the Nerds</a></i> – a 1996 PBS documentary series about the rise of the personal computer.</li>
</ul>
<h3>
<span class="mw-headline" id="Feature_Films">Feature Films</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Steve_Wozniak&action=edit&section=14" title="Edit section: Feature Films">edit</a><span class="mw-editsection-bracket">]</span></span>
</h3>
<ul>
<li>2015: <i><a href="/wiki/Steve_Jobs_(film)" title="Steve Jobs (film)">Steve Jobs</a></i> – an upcoming <a href="/wiki/Feature_film" title="Feature film">feature film</a> by <a href="/wiki/Danny_Boyle" title="Danny Boyle">Danny Boyle</a>, with a screenplay written by <a href="/wiki/Aaron_Sorkin" title="Aaron Sorkin">Aaron Sorkin</a>. Wozniak will be portrayed by <a href="/wiki/Seth_Rogen" title="Seth Rogen">Seth Rogen</a>, while Jobs will be portrayed by <a href="/wiki/Michael_Fassbender" title="Michael Fassbender">Michael Fassbender</a>.</li>
<li>2015: <i><a href="/wiki/Steve_Jobs" title="Steve Jobs">Steve Jobs</a> vs. <a href="/wiki/Bill_Gates" title="Bill Gates">Bill Gates</a>: The Competition to Control the Personal Computer, 1974-1999</i>: Original film from the <a href="/wiki/National_Geographic_Channel" title="National Geographic Channel">National Geographic Channel</a> for the <i>American Genius</i> series.<sup id="cite_ref-52" class="reference"><a href="#cite_note-52"><span>[</span>52<span>]</span></a></sup>
</li>
<li>2013: <i><a href="/wiki/Jobs_(film)" title="Jobs (film)">Jobs</a></i> – a film directed by <a href="/wiki/Joshua_Michael_Stern" title="Joshua Michael Stern">Joshua Michael Stern</a>. Wozniak is portrayed by <a href="/wiki/Josh_Gad" title="Josh Gad">Josh Gad</a>, while Jobs is portrayed by <a href="/wiki/Ashton_Kutcher" title="Ashton Kutcher">Ashton Kutcher</a>.</li>
<li>1999: <i><a href="/wiki/Pirates_of_Silicon_Valley" title="Pirates of Silicon Valley">Pirates of Silicon Valley</a></i> – a <a href="/wiki/TNT_(TV_channel)" title="TNT (TV channel)">TNT</a> film directed by <a href="/wiki/Martyn_Burke" title="Martyn Burke">Martyn Burke</a>.</li>
</ul>
<h3>
<span class="mw-headline" id="Television">Television</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Steve_Wozniak&action=edit&section=15" title="Edit section: Television">edit</a><span class="mw-editsection-bracket">]</span></span>
</h3>
<p>After seeing her stand-up performance in <a href="/wiki/Saratoga,_California" title="Saratoga, California">Saratoga, California</a>, Wozniak began dating comedian <a href="/wiki/Kathy_Griffin" title="Kathy Griffin">Kathy Griffin</a>.<sup id="cite_ref-bestweek_53-0" class="reference"><a href="#cite_note-bestweek-53"><span>[</span>53<span>]</span></a></sup> Together, they attended the <a href="/wiki/59th_Primetime_Emmy_Awards" title="59th Primetime Emmy Awards">2007 Emmy Awards</a>,<sup id="cite_ref-ceosmack_54-0" class="reference"><a href="#cite_note-ceosmack-54"><span>[</span>54<span>]</span></a></sup> and he subsequently made many appearances on the fourth season of her show <i><a href="/wiki/Kathy_Griffin:_My_Life_on_the_D-List" title="Kathy Griffin: My Life on the D-List">Kathy Griffin: My Life on the D-List</a></i>. Woz is on the show as her date for the <a href="/wiki/Producers_Guild_of_America" title="Producers Guild of America">Producers Guild of America</a> award show. However, on a June 19, 2008 appearance on <i><a href="/wiki/The_Howard_Stern_Show" title="The Howard Stern Show">The Howard Stern Show</a></i>, Griffin confirmed that they were no longer dating and decided to remain friends.<sup id="cite_ref-55" class="reference"><a href="#cite_note-55"><span>[</span>55<span>]</span></a></sup></p>
<p>Wozniak portrays a parody of himself in the first episode of the television series <i><a href="/wiki/Code_Monkeys" title="Code Monkeys">Code Monkeys</a></i>; he plays the owner of Gameavision before selling it to help fund Apple. He later appears again in the twelfth episode when he is in <a href="/wiki/Las_Vegas_Valley" title="Las Vegas Valley">Las Vegas</a> at the annual Video Game Convention and sees Dave and Jerry. He also appears in a parody of the "Get a Mac" ads featured in the final episode of <i>Code Monkeys'</i> second season. Wozniak is also interviewed and featured in the documentary <i><a href="/wiki/Hackers_Wanted" title="Hackers Wanted">Hackers Wanted</a></i> and on BBC.</p>
<p>Wozniak competed on Season 8 of <i><a href="/wiki/Dancing_with_the_Stars_(U.S._season_8)" title="Dancing with the Stars (U.S. season 8)">Dancing with the Stars</a></i> in 2009<sup id="cite_ref-56" class="reference"><a href="#cite_note-56"><span>[</span>56<span>]</span></a></sup><sup id="cite_ref-57" class="reference"><a href="#cite_note-57"><span>[</span>57<span>]</span></a></sup> where he danced with <a href="/wiki/Karina_Smirnoff" title="Karina Smirnoff">Karina Smirnoff</a>. Despite Wozniak and Smirnoff receiving 10 combined points from the three judges out of 30, the lowest score of the evening, he remained in the competition. He later posted on a <a href="/wiki/Social_networking" title="Social networking" class="mw-redirect">social networking</a> site that he felt that the vote count was not legitimate and suggested that the <i>Dancing with the Stars</i> judges had lied about the vote count to keep him on the show.<sup id="cite_ref-58" class="reference"><a href="#cite_note-58"><span>[</span>58<span>]</span></a></sup> After being briefed on the method of judging and vote counting, he retracted and apologized for his statements.<sup id="cite_ref-59" class="reference"><a href="#cite_note-59"><span>[</span>59<span>]</span></a></sup> Despite suffering a pulled <a href="/wiki/Hamstring" title="Hamstring">hamstring</a> and a fracture in his foot, Wozniak continued to compete,<sup id="cite_ref-60" class="reference"><a href="#cite_note-60"><span>[</span>60<span>]</span></a></sup> but was eliminated from the competition on March 31, with a score of 12 out of 30 for an <a href="/wiki/Argentine_Tango" title="Argentine Tango" class="mw-redirect">Argentine Tango</a>.<sup id="cite_ref-61" class="reference"><a href="#cite_note-61"><span>[</span>61<span>]</span></a></sup></p>
<p>On September 30, 2010, he appeared as himself on <i><a href="/wiki/The_Big_Bang_Theory" title="The Big Bang Theory">The Big Bang Theory</a></i> season 4 episode "<a href="/wiki/The_Cruciferous_Vegetable_Amplification" title="The Cruciferous Vegetable Amplification">The Cruciferous Vegetable Amplification</a>". While dining in <a href="/wiki/The_Cheesecake_Factory" title="The Cheesecake Factory">The Cheesecake Factory</a> where Penny works, he is approached by a (robot) Sheldon (which is Remote Presence on a <a href="/w/index.php?title=Texai&action=edit&redlink=1" class="new" title="Texai (page does not exist)">Texai</a>). Leonard tries to explain to Penny who Wozniak is, but she says she already knows him from <i>Dancing with the Stars</i>.</p>
<p>On September 30, 2013, he appeared along with Apple alum <a href="/wiki/Daniel_Kottke" title="Daniel Kottke">Daniel Kottke</a> and <a href="/wiki/Andy_Hertzfeld" title="Andy Hertzfeld">Andy Hertzfeld</a> on the television show <i><a href="/wiki/John_Wants_Answers" title="John Wants Answers">John Wants Answers</a></i> to discuss the movie <i><a href="/wiki/Jobs_(film)" title="Jobs (film)">Jobs</a></i>.</p>
<div class="thumb tright">
<div class="thumbinner" style="width:222px;">
<a href="/wiki/File:Woz_signs_Modbook.jpg" class="image"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c2/Woz_signs_Modbook.jpg/220px-Woz_signs_Modbook.jpg" width="220" height="165" class="thumbimage" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c2/Woz_signs_Modbook.jpg/330px-Woz_signs_Modbook.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/c/c2/Woz_signs_Modbook.jpg/440px-Woz_signs_Modbook.jpg 2x" data-file-width="4224" data-file-height="3168"></a>
<div class="thumbcaption">
<div class="magnify"><a href="/wiki/File:Woz_signs_Modbook.jpg" class="internal" title="Enlarge"></a></div>
Steve Wozniak signs a <a href="/wiki/Axiotron_Modbook" title="Axiotron Modbook">Modbook</a> for a fan during an appearance at the Axiotron booth during <a href="/wiki/Macworld_Expo" title="Macworld Expo" class="mw-redirect">Macworld Expo</a> 2009.</div>
</div>
</div>
<h2>
<span class="mw-headline" id="Personal_life">Personal life</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Steve_Wozniak&action=edit&section=16" title="Edit section: Personal life">edit</a><span class="mw-editsection-bracket">]</span></span>
</h2>
<p>Wozniak lives in <a href="/wiki/Los_Gatos,_California" title="Los Gatos, California">Los Gatos</a>, <a href="/wiki/California" title="California">California</a>. He has recently applied for Australian citizenship, and has stated that he would like to live in <a href="/wiki/Melbourne,_Australia" title="Melbourne, Australia" class="mw-redirect">Melbourne, Australia</a> in the future.<sup id="cite_ref-62" class="reference"><a href="#cite_note-62"><span>[</span>62<span>]</span></a></sup></p>
<p>He is a <a href="/wiki/Freemasonry" title="Freemasonry">Freemason</a>, despite not having faith in a supreme being (which is required by Masonic rules). Wozniak describes his impetus for joining the Freemasons as being able to spend more time with his wife at the time, Alice. Alice belonged to the <a href="/wiki/Order_of_the_Eastern_Star" title="Order of the Eastern Star">Order of the Eastern Star</a>, associated with the Masons. Wozniak has said that he quickly rose to a third degree Freemason because, whatever he does, he tries to do well. He was initiated in 1979 at Charity Lodge No. 362 in <a href="/wiki/Campbell,_California" title="Campbell, California">Campbell, California</a>, now part of Mt. Moriah Lodge No. 292 in Los Gatos.<sup id="cite_ref-63" class="reference"><a href="#cite_note-63"><span>[</span>63<span>]</span></a></sup></p>
<p>Wozniak was married to <a href="/wiki/Candice_Clark" title="Candice Clark">Candice Clark</a> from June 1981 to 1987. They have three children together, the youngest being born after their divorce was finalized.<sup id="cite_ref-64" class="reference"><a href="#cite_note-64"><span>[</span>64<span>]</span></a></sup> After a high-profile relationship with actress <a href="/wiki/Kathy_Griffin" title="Kathy Griffin">Kathy Griffin</a>, Wozniak married Janet Hill, his current spouse.<sup id="cite_ref-65" class="reference"><a href="#cite_note-65"><span>[</span>65<span>]</span></a></sup></p>
<p>On his religious views, Wozniak called himself an "atheist or agnostic".<sup id="cite_ref-66" class="reference"><a href="#cite_note-66"><span>[</span>66<span>]</span></a></sup><sup id="cite_ref-67" class="reference"><a href="#cite_note-67"><span>[</span>67<span>]</span></a></sup></p>
<p>He is a member of a <a href="/wiki/Segway_Polo" title="Segway Polo" class="mw-redirect">Segway Polo</a> team, the <i>Silicon Valley Aftershocks</i>.</p>
<p>Wozniak's favorite video game is <i><a href="/wiki/Tetris" title="Tetris">Tetris</a></i>,<sup id="cite_ref-68" class="reference"><a href="#cite_note-68"><span>[</span>68<span>]</span></a></sup> and he had a high score for <i><a href="/wiki/Sabotage_(computer_game)" title="Sabotage (computer game)" class="mw-redirect">Sabotage</a></i>.<sup id="cite_ref-softline198109_69-0" class="reference"><a href="#cite_note-softline198109-69"><span>[</span>69<span>]</span></a></sup> In the 1990s he submitted so many high scores for Tetris to <i><a href="/wiki/Nintendo_Power" title="Nintendo Power">Nintendo Power</a></i> that they would no longer print his scores, so he started sending them in under the alphabetically reversed "Evets Kainzow".<sup id="cite_ref-70" class="reference"><a href="#cite_note-70"><span>[</span>70<span>]</span></a></sup></p>
<h2>
<span class="mw-headline" id="Photographs">Photographs</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Steve_Wozniak&action=edit&section=17" title="Edit section: Photographs">edit</a><span class="mw-editsection-bracket">]</span></span>
</h2>
<ul>
<li>Edwards, Jim. <i><a rel="nofollow" class="external text" href="http://www.businessinsider.com/pictures-of-apples-first-employees-2013-12">These Pictures Of Apple's First Employees Are Absolutely Wonderful</a></i> - <i><a href="/wiki/Business_Insider" title="Business Insider">Business Insider</a></i>, December 26, 2013.</li>
<li>
<a rel="nofollow" class="external text" href="http://www.cnet.com/uk/pictures/macintosh-creators-rekindle-the-twiggy-mac-pictures/22/">Woz and Rod Holt c. 2013</a>. - <a href="/wiki/CNET" title="CNET">CNET</a>
</li>
<li><a rel="nofollow" class="external text" href="http://www.twiggymac.com/twiggy-lives-at-the-computer-museum/">Twiggy Lives! At the Computer Museum: Happiness is a good friend – Woz and Rod Holt</a></li>
</ul>
<h2>
<span class="mw-headline" id="See_also">See also</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Steve_Wozniak&action=edit&section=18" title="Edit section: See also">edit</a><span class="mw-editsection-bracket">]</span></span>
</h2>
<ul>
<li><a href="/wiki/Blue_box" title="Blue box">Blue box</a></li>
<li><i><a href="/wiki/Breakout_(video_game)" title="Breakout (video game)">Breakout</a></i></li>
</ul>
<h2>
<span class="mw-headline" id="References">References</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Steve_Wozniak&action=edit&section=19" title="Edit section: References">edit</a><span class="mw-editsection-bracket">]</span></span>
</h2>
<div class="reflist columns references-column-width" style="-moz-column-width: 30em; -webkit-column-width: 30em; column-width: 30em; list-style-type: decimal;">
<ol class="references">
<li id="cite_note-iWoz-1">
<span class="mw-cite-backlink">^ <a href="#cite_ref-iWoz_1-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-iWoz_1-1"><sup><i><b>b</b></i></sup></a> <a href="#cite_ref-iWoz_1-2"><sup><i><b>c</b></i></sup></a> <a href="#cite_ref-iWoz_1-3"><sup><i><b>d</b></i></sup></a> <a href="#cite_ref-iWoz_1-4"><sup><i><b>e</b></i></sup></a> <a href="#cite_ref-iWoz_1-5"><sup><i><b>f</b></i></sup></a> <a href="#cite_ref-iWoz_1-6"><sup><i><b>g</b></i></sup></a> <a href="#cite_ref-iWoz_1-7"><sup><i><b>h</b></i></sup></a> <a href="#cite_ref-iWoz_1-8"><sup><i><b>i</b></i></sup></a> <a href="#cite_ref-iWoz_1-9"><sup><i><b>j</b></i></sup></a> <a href="#cite_ref-iWoz_1-10"><sup><i><b>k</b></i></sup></a> <a href="#cite_ref-iWoz_1-11"><sup><i><b>l</b></i></sup></a> <a href="#cite_ref-iWoz_1-12"><sup><i><b>m</b></i></sup></a></span> <span class="reference-text">Wozniak, S. G.; Smith, G. (2006), <i><a href="/wiki/IWoz" title="IWoz">iWoz</a>.</i> <a href="/wiki/W._W._Norton_%26_Company" title="W. W. Norton & Company">W. W. Norton & Company</a></span>
</li>
<li id="cite_note-biography.com-2">
<span class="mw-cite-backlink"><b><a href="#cite_ref-biography.com_2-0">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://www.biography.com/people/stephen-wozniak-9537334">"Stephen Wozniak"</a>. <i>biography</i>. biography.com<span class="reference-accessdate">. Retrieved <span class="nowrap">April 6,</span> 2012</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.atitle=Stephen+Wozniak&rft.genre=article&rft_id=http%3A%2F%2Fwww.biography.com%2Fpeople%2Fstephen-wozniak-9537334&rft.jtitle=biography&rft.pub=biography.com&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-mit-3">
<span class="mw-cite-backlink"><b><a href="#cite_ref-mit_3-0">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://www.atariage.com/forums/topic/161774-nolan-bushnell-appointed-to-atari-board/page__view__findpost__p__2001071">"Nolan Bushnell Appointed to Atari Board — AtariAge Forums — Page 30"</a>. Atariage.com. April 29, 2010<span class="reference-accessdate">. Retrieved <span class="nowrap">November 11,</span> 2010</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.btitle=Nolan+Bushnell+Appointed+to+Atari+Board+%E2%80%94+AtariAge+Forums+%E2%80%94+Page+30&rft.date=April+29%2C+2010&rft.genre=book&rft_id=http%3A%2F%2Fwww.atariage.com%2Fforums%2Ftopic%2F161774-nolan-bushnell-appointed-to-atari-board%2Fpage__view__findpost__p__2001071&rft.pub=Atariage.com&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-4">
<span class="mw-cite-backlink"><b><a href="#cite_ref-4">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://wc.rootsweb.ancestry.com/cgi-bin/igm.cgi?op=GET&db=dowfam3&id=I191909">RootsWeb's WorldConnect Project: Dowling Family Genealogy</a>. Wc.rootsweb.ancestry.com (December 28, 1925). Retrieved on August 24, 2013.</span>
</li>
<li id="cite_note-5">
<span class="mw-cite-backlink"><b><a href="#cite_ref-5">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://archive.woz.org/letters/general/63.html">"Letters-General Questions Answered"</a>. Woz.org. March 1, 2000<span class="reference-accessdate">. Retrieved <span class="nowrap">February 6,</span> 2012</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.btitle=Letters-General+Questions+Answered&rft.date=March+1%2C+2000&rft.genre=book&rft_id=http%3A%2F%2Farchive.woz.org%2Fletters%2Fgeneral%2F63.html&rft.pub=Woz.org&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-6">
<span class="mw-cite-backlink"><b><a href="#cite_ref-6">^</a></b></span> <span class="reference-text"><span class="citation web">Sean Mulligan. <a rel="nofollow" class="external text" href="http://www.americanhumanist.org/HNN/details/2011-03-steve-the-woz-wozniak-2011-isaac-asimov-science-awar">"STEVE "THE WOZ" WOZNIAK: 2011 ISAAC ASIMOV SCIENCE AWARD"</a>. American Humanist Association<span class="reference-accessdate">. Retrieved <span class="nowrap">May 13,</span> 2012</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.aulast=Sean+Mulligan&rft.au=Sean+Mulligan&rft.btitle=STEVE+%22THE+WOZ%22+WOZNIAK%3A+2011+ISAAC+ASIMOV+SCIENCE+AWARD&rft.genre=book&rft_id=http%3A%2F%2Fwww.americanhumanist.org%2FHNN%2Fdetails%2F2011-03-steve-the-woz-wozniak-2011-isaac-asimov-science-awar&rft.pub=American+Humanist+Association&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-7">
<span class="mw-cite-backlink"><b><a href="#cite_ref-7">^</a></b></span> <span class="reference-text"><span class="citation web">Lapsley, Phil (February 16, 2013). <a rel="nofollow" class="external text" href="http://www.salon.com/2013/02/16/from_phreaks_to_apple_steve_jobs_and_steve_wozniaks_eureka_moment/">"From "phreaks" to Apple: Steve Jobs and Steve Wozniak’s "eureka!" moment"</a>. Salon.com<span class="reference-accessdate">. Retrieved <span class="nowrap">March 22,</span> 2013</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.aufirst=Phil&rft.au=Lapsley%2C+Phil&rft.aulast=Lapsley&rft.btitle=From+%22phreaks%22+to+Apple%3A+Steve+Jobs+and+Steve+Wozniak%E2%80%99s+%22eureka%21%22+moment&rft.date=February+16%2C+2013&rft.genre=book&rft_id=http%3A%2F%2Fwww.salon.com%2F2013%2F02%2F16%2Ffrom_phreaks_to_apple_steve_jobs_and_steve_wozniaks_eureka_moment%2F&rft.pub=Salon.com&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-8">
<span class="mw-cite-backlink"><b><a href="#cite_ref-8">^</a></b></span> <span class="reference-text"><span class="citation book">Young, Jeffrey S. (December 1988). <i>Steve Jobs: The Journey is the Reward</i>. Lynx Books. <a href="/wiki/International_Standard_Book_Number" title="International Standard Book Number">ISBN</a> <a href="/wiki/Special:BookSources/1-55802-378-X" title="Special:BookSources/1-55802-378-X">1-55802-378-X</a>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.aufirst=Jeffrey+S.&rft.aulast=Young&rft.au=Young%2C+Jeffrey+S.&rft.btitle=Steve+Jobs%3A+The+Journey+is+the+Reward&rft.date=December+1988&rft.genre=book&rft.isbn=1-55802-378-X&rft.pub=Lynx+Books&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-9">
<span class="mw-cite-backlink"><b><a href="#cite_ref-9">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://abcnews.go.com/Technology/PCWorld/story?id=3396207">"Three Minutes With Steve Wozniak"</a>. ABCNews.go.com. July 20, 2007<span class="reference-accessdate">. Retrieved <span class="nowrap">November 10,</span> 2013</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.btitle=Three+Minutes+With+Steve+Wozniak&rft.date=July+20%2C+2007&rft.genre=book&rft_id=http%3A%2F%2Fabcnews.go.com%2FTechnology%2FPCWorld%2Fstory%3Fid%3D3396207&rft.pub=ABCNews.go.com&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-intoday1-10">
<span class="mw-cite-backlink"><b><a href="#cite_ref-intoday1_10-0">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://archive.is/20120916/http://indiatoday.intoday.in/story/india-visit-gave-a-vision-to-steve-jobs/1/154785.html">"An exclusive interview with Daniel Kottke"</a>. India Today. September 13, 2011. Archived from <a rel="nofollow" class="external text" href="http://indiatoday.intoday.in/story/india-visit-gave-a-vision-to-steve-jobs/1/154785.html">the original</a> on September 16, 2012<span class="reference-accessdate">. Retrieved <span class="nowrap">October 27,</span> 2011</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.btitle=An+exclusive+interview+with+Daniel+Kottke&rft.date=September+13%2C+2011&rft.genre=book&rft_id=http%3A%2F%2Findiatoday.intoday.in%2Fstory%2Findia-visit-gave-a-vision-to-steve-jobs%2F1%2F154785.html&rft.pub=India+Today&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-breakout-11">
<span class="mw-cite-backlink"><b><a href="#cite_ref-breakout_11-0">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="https://web.archive.org/web/20110612071502/http://www.woz.org/letters/general/91.html"><i>Letters – General Questions Answered</i></a> at the <a href="/wiki/Wayback_Machine" title="Wayback Machine">Wayback Machine</a> (archived June 12, 2011), Woz.org<br>
Wozniak, Steven: "<a href="/wiki/IWoz" title="IWoz">iWoz</a>", a: pp. 147–48, b: p. 180. <a href="/wiki/W._W._Norton" title="W. W. Norton" class="mw-redirect">W. W. Norton</a>, 2006. <a href="/wiki/Special:BookSources/9780393061437" class="internal mw-magiclink-isbn">ISBN 978-0-393-06143-7</a><br>
Kent, Stevn: "The Ultimate History of Video Games", pp. 71–3. Three Rivers, 2001. <a href="/wiki/Special:BookSources/0761536434" class="internal mw-magiclink-isbn">ISBN 0-7615-3643-4</a><br>
<span class="citation web"><a rel="nofollow" class="external text" href="http://www.arcade-history.com/index.php?page=detail&id=3397">"Breakout"</a>. Arcade History. June 25, 2002<span class="reference-accessdate">. Retrieved <span class="nowrap">April 19,</span> 2010</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.btitle=Breakout&rft.date=June+25%2C+2002&rft.genre=book&rft_id=http%3A%2F%2Fwww.arcade-history.com%2Findex.php%3Fpage%3Ddetail%26id%3D3397&rft.pub=Arcade+History&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span><br>
<span class="citation web"><a rel="nofollow" class="external text" href="http://archive.is/20120708/http://classicgaming.gamespy.com/View.php?view=Articles.Detail&id=395">"Classic Gaming: A Complete History of Breakout"</a>. GameSpy. Archived from <a rel="nofollow" class="external text" href="http://classicgaming.gamespy.com/View.php?view=Articles.Detail&id=395">the original</a> on July 8, 2012<span class="reference-accessdate">. Retrieved <span class="nowrap">April 19,</span> 2010</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.btitle=Classic+Gaming%3A+A+Complete+History+of+Breakout&rft.genre=book&rft_id=http%3A%2F%2Fclassicgaming.gamespy.com%2FView.php%3Fview%3DArticles.Detail%26id%3D395&rft.pub=GameSpy&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-FireValley-12">
<span class="mw-cite-backlink">^ <a href="#cite_ref-FireValley_12-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-FireValley_12-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text"><span class="citation book"><a href="/wiki/Paul_Freiberger" title="Paul Freiberger" class="mw-redirect">Freiberger, Paul</a>; <a href="/wiki/Michael_Swaine_(author)" title="Michael Swaine (author)" class="mw-redirect">Swaine, Michael</a> (2000). <i>Fire in the Valley</i>. McGraw-Hill. <a href="/wiki/International_Standard_Book_Number" title="International Standard Book Number">ISBN</a> <a href="/wiki/Special:BookSources/0-07-135892-7" title="Special:BookSources/0-07-135892-7">0-07-135892-7</a>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.aufirst=Paul&rft.au=Freiberger%2C+Paul&rft.aulast=Freiberger&rft.au=Swaine%2C+Michael&rft.btitle=Fire+in+the+Valley&rft.date=2000&rft.genre=book&rft.isbn=0-07-135892-7&rft.pub=McGraw-Hill&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-13">
<span class="mw-cite-backlink"><b><a href="#cite_ref-13">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://www.macstories.net/news/woz-putting-color-in-the-computer-was-one-of-the-biggest-things-apple-ever-did/">"Woz: Putting Color In The Computer Was One Of The Biggest Things Apple Ever Did"</a>. <i>macstories.net</i>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.atitle=Woz%3A+Putting+Color+In+The+Computer+Was+One+Of+The+Biggest+Things+Apple+Ever+Did&rft.genre=article&rft_id=http%3A%2F%2Fwww.macstories.net%2Fnews%2Fwoz-putting-color-in-the-computer-was-one-of-the-biggest-things-apple-ever-did%2F&rft.jtitle=macstories.net&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-14">
<span class="mw-cite-backlink"><b><a href="#cite_ref-14">^</a></b></span> <span class="reference-text"><span class="citation web">Dan Schawbel. <a rel="nofollow" class="external text" href="http://www.forbes.com/sites/danschawbel/2012/11/26/steve-wozniak-his-career-challenges-steve-jobs-tech-trends-and-advice/">"Steve Wozniak: His Career Challenges, Steve Jobs, Tech Trends and Advice"</a>. <i>Forbes</i>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.atitle=Steve+Wozniak%3A+His+Career+Challenges%2C+Steve+Jobs%2C+Tech+Trends+and+Advice&rft.au=Dan+Schawbel&rft.aulast=Dan+Schawbel&rft.genre=article&rft_id=http%3A%2F%2Fwww.forbes.com%2Fsites%2Fdanschawbel%2F2012%2F11%2F26%2Fsteve-wozniak-his-career-challenges-steve-jobs-tech-trends-and-advice%2F&rft.jtitle=Forbes&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-15">
<span class="mw-cite-backlink"><b><a href="#cite_ref-15">^</a></b></span> <span class="reference-text"><span class="citation book">Tirrell, Rick (2009). <i>The wisdom of resilience builders : how our best leaders create the world's most enduring enterprises</i>. Bloomington, IN: AuthorHouse. p. 236. <a href="/wiki/International_Standard_Book_Number" title="International Standard Book Number">ISBN</a> <a href="/wiki/Special:BookSources/1449053238" title="Special:BookSources/1449053238">1449053238</a>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.aufirst=Rick&rft.aulast=Tirrell&rft.au=Tirrell%2C+Rick&rft.btitle=The+wisdom+of+resilience+builders+%3A+how+our+best+leaders+create+the+world%27s+most+enduring+enterprises&rft.date=2009&rft.genre=book&rft.isbn=1449053238&rft.pages=236&rft.place=Bloomington%2C+IN&rft.pub=AuthorHouse&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-byte198501-16">
<span class="mw-cite-backlink">^ <a href="#cite_ref-byte198501_16-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-byte198501_16-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text"><span class="citation news">Williams, Gregg; Moore, Rob (January 1985). <a rel="nofollow" class="external text" href="https://archive.org/stream/byte-magazine-1985-01/1985_01_BYTE_10-01_Through_the_Hourglass#page/n167/mode/2up">"The Apple Story / Part 2: More History and the Apple III"</a>. <i>BYTE</i> (interview). p. 166<span class="reference-accessdate">. Retrieved <span class="nowrap">October 26,</span> 2013</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.atitle=The+Apple+Story+%2F+Part+2%3A+More+History+and+the+Apple+III&rft.aulast=Williams%2C+Gregg%3B+Moore%2C+Rob&rft.au=Williams%2C+Gregg%3B+Moore%2C+Rob&rft.date=January+1985&rft.genre=article&rft_id=https%3A%2F%2Farchive.org%2Fstream%2Fbyte-magazine-1985-01%2F1985_01_BYTE_10-01_Through_the_Hourglass%23page%2Fn167%2Fmode%2F2up&rft.jtitle=BYTE&rft.pages=166&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-17">
<span class="mw-cite-backlink"><b><a href="#cite_ref-17">^</a></b></span> <span class="reference-text"><span class="citation book">O'Grady, Jason D. (2009). <i>Apple Inc</i>. Westport, Conn.: Greenwood Press. p. 27. <a href="/wiki/International_Standard_Book_Number" title="International Standard Book Number">ISBN</a> <a href="/wiki/Special:BookSources/0313362440" title="Special:BookSources/0313362440">0313362440</a>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.aufirst=Jason+D.&rft.aulast=O%27Grady&rft.au=O%27Grady%2C+Jason+D.&rft.btitle=Apple+Inc.&rft.date=2009&rft.genre=book&rft.isbn=0313362440&rft.pages=27&rft.place=Westport%2C+Conn.&rft.pub=Greenwood+Press&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-18">
<span class="mw-cite-backlink"><b><a href="#cite_ref-18">^</a></b></span> <span class="reference-text"><span class="citation book">Linzmayer, Owen W. (2004). <i>Apple confidential 2.0 : the definitive history of the world's most colorful company</i> ([Rev. 2. ed.]. ed.). San Francisco, Calif.: No Starch Press. pp. 28–30. <a href="/wiki/International_Standard_Book_Number" title="International Standard Book Number">ISBN</a> <a href="/wiki/Special:BookSources/1593270100" title="Special:BookSources/1593270100">1593270100</a>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.aufirst=Owen+W.&rft.aulast=Linzmayer&rft.au=Linzmayer%2C+Owen+W.&rft.btitle=Apple+confidential+2.0+%3A+the+definitive+history+of+the+world%27s+most+colorful+company&rft.date=2004&rft.edition=%5BRev.+2.+ed.%5D.&rft.genre=book&rft.isbn=1593270100&rft.pages=28-30&rft.place=San+Francisco%2C+Calif.&rft.pub=No+Starch+Press&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-Flatow-19">
<span class="mw-cite-backlink">^ <a href="#cite_ref-Flatow_19-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-Flatow_19-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text">Flatow, Ira. <i>Present at the Future: From Evolution to Nanotechnology, Candid and Controversial Conversations on Science and Nature</i>. USA: HarperCollins, 2007. 263-4. Print.</span>
</li>
<li id="cite_note-rice19850415-20">
<span class="mw-cite-backlink"><b><a href="#cite_ref-rice19850415_20-0">^</a></b></span> <span class="reference-text"><span class="citation news">Rice, Valerie (April 15, 1985). <a rel="nofollow" class="external text" href="https://books.google.com/books?id=zC4EAAAAMBAJ&lpg=PA13&ots=a_Fs_n1Np8&pg=PA35#v=onepage&q&f=false">"Unrecognized Apple II Employees Exit"</a>. <i>InfoWorld</i>. p. 35<span class="reference-accessdate">. Retrieved <span class="nowrap">February 4,</span> 2015</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.atitle=Unrecognized+Apple+II+Employees+Exit&rft.aulast=Rice%2C+Valerie&rft.au=Rice%2C+Valerie&rft.date=April+15%2C+1985&rft.genre=article&rft_id=https%3A%2F%2Fbooks.google.com%2Fbooks%3Fid%3DzC4EAAAAMBAJ%26lpg%3DPA13%26ots%3Da_Fs_n1Np8%26pg%3DPA35%23v%3Donepage%26q%26f%3Dfalse&rft.jtitle=InfoWorld&rft.pages=35&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-21">
<span class="mw-cite-backlink"><b><a href="#cite_ref-21">^</a></b></span> <span class="reference-text"><span class="citation news"><a rel="nofollow" class="external text" href="http://www.cnn.com/video/?/video/bestoftv/2011/08/25/exp.piers.wozniak.jobs.reaction.cnn">"CNN.com Video"</a>. <i>CNN</i>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.atitle=CNN.com+Video&rft.genre=article&rft_id=http%3A%2F%2Fwww.cnn.com%2Fvideo%2F%3F%2Fvideo%2Fbestoftv%2F2011%2F08%2F25%2Fexp.piers.wozniak.jobs.reaction.cnn&rft.jtitle=CNN&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-wozemployee-22">
<span class="mw-cite-backlink"><b><a href="#cite_ref-wozemployee_22-0">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://www.woz.org/letters/general/53.html">Letters-General Questions Answered</a>, Woz.org</span>
</li>
<li id="cite_note-wozstock-23">
<span class="mw-cite-backlink"><b><a href="#cite_ref-wozstock_23-0">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://www.fool.com/research/2000/features000302.htm">Apple's <i>Other</i> Steve (Stock Research)</a> March 2, 2000, Fool.com</span>
</li>
<li id="cite_note-24">
<span class="mw-cite-backlink"><b><a href="#cite_ref-24">^</a></b></span> <span class="reference-text"><span class="citation web">Krishnamoorthy, Anand; Li, Susan. <a rel="nofollow" class="external text" href="http://www.bloomberg.com/news/articles/2011-10-06/steve-jobs-s-death-struck-like-john-lennon-jfk-getting-shot-wozniak-says">"Jobs's Death Was Like Lennon, JFK Getting Shot, Wozniak Says"</a>. <i><a href="/wiki/Bloomberg_Business" title="Bloomberg Business" class="mw-redirect">Bloomberg Businessweek</a></i><span class="reference-accessdate">. Retrieved <span class="nowrap">March 25,</span> 2015</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.atitle=Jobs%27s+Death+Was+Like+Lennon%2C+JFK+Getting+Shot%2C+Wozniak+Says&rft.aufirst=Anand&rft.au=Krishnamoorthy%2C+Anand&rft.aulast=Krishnamoorthy&rft.au=Li%2C+Susan&rft.genre=article&rft_id=http%3A%2F%2Fwww.bloomberg.com%2Fnews%2Farticles%2F2011-10-06%2Fsteve-jobs-s-death-struck-like-john-lennon-jfk-getting-shot-wozniak-says&rft.jtitle=Bloomberg+Businessweek&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-25">
<span class="mw-cite-backlink"><b><a href="#cite_ref-25">^</a></b></span> <span class="reference-text"><span class="citation web">Peterson, Kim (April 16, 2006). <a rel="nofollow" class="external text" href="http://seattletimes.nwsource.com/html/businesstechnology/2002929498_wozqa14.html">"Steve Wozniak Q & A"</a>. Seattletimes.nwsource.com<span class="reference-accessdate">. Retrieved <span class="nowrap">March 22,</span> 2013</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.aufirst=Kim&rft.aulast=Peterson&rft.au=Peterson%2C+Kim&rft.btitle=Steve+Wozniak+Q+%26+A&rft.date=April+16%2C+2006&rft.genre=book&rft_id=http%3A%2F%2Fseattletimes.nwsource.com%2Fhtml%2Fbusinesstechnology%2F2002929498_wozqa14.html&rft.pub=Seattletimes.nwsource.com&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-26">
<span class="mw-cite-backlink"><b><a href="#cite_ref-26">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://archive.is/iGZQl">"Steve Wozniak on Newton, Tesla, and why the original Macintosh was a 'lousy' product"</a>. Archived from <a rel="nofollow" class="external text" href="http://www.theverge.com/2013/6/27/4468314/steve-wozniak-on-how-the-newton-changed-his-life">the original</a> on June 28, 2013<span class="reference-accessdate">. Retrieved <span class="nowrap">June 28,</span> 2013</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.btitle=Steve+Wozniak+on+Newton%2C+Tesla%2C+and+why+the+original+Macintosh+was+a+%27lousy%27+product&rft.genre=book&rft_id=http%3A%2F%2Fwww.theverge.com%2F2013%2F6%2F27%2F4468314%2Fsteve-wozniak-on-how-the-newton-changed-his-life&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-FIRST-27">
<span class="mw-cite-backlink"><b><a href="#cite_ref-FIRST_27-0">^</a></b></span> <span class="reference-text">Weisman, Robert (March 25, 2006). <a rel="nofollow" class="external text" href="http://www.boston.com/business/technology/articles/2006/03/25/a_star_who_aims_to_spark_innovation_by_students">A star who aims to spark innovation by students.</a>, The Boston Globe.</span>
</li>
<li id="cite_note-28">
<span class="mw-cite-backlink"><b><a href="#cite_ref-28">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://www.scottevest.com/company/management_team.shtml">"Scottevest Board of Advisors"</a>. Scottevest.com<span class="reference-accessdate">. Retrieved <span class="nowrap">June 8,</span> 2014</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.btitle=Scottevest+Board+of+Advisors&rft.genre=book&rft_id=http%3A%2F%2Fwww.scottevest.com%2Fcompany%2Fmanagement_team.shtml&rft.pub=Scottevest.com&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-29">
<span class="mw-cite-backlink"><b><a href="#cite_ref-29">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://www.nytimes.com/2009/02/05/technology/business-computing/05wozniak.html?_r=1&ref=technology">Wozniak Accepts Post at a Storage Start-Up</a> <a href="/wiki/New_York_Times" title="New York Times" class="mw-redirect">New York Times</a> February 4, 2009.</span>
</li>
<li id="cite_note-30">
<span class="mw-cite-backlink"><b><a href="#cite_ref-30">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://nexus404.com/Blog/2010/11/18/iphone-vs-android-steve-wozniak-says-android-will-be-dominant-one-day-apple-co-founder-says-that-androids-features-will-put-it-out-on-top/">iPhone vs. Android: Steve Wozniak Says Android Will Be Dominant One Day</a>, Nexus404.com, November 18, 2010.</span>
</li>
<li id="cite_note-31">
<span class="mw-cite-backlink"><b><a href="#cite_ref-31">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://www.nyse.com/press/1307399416887.html">Fusion-io Celebrates Initial Public Offering and First Day of Trading on the New York Stock Exchange</a> <a href="/wiki/NYSE_Euronext" title="NYSE Euronext">NYSE Euronext</a> New York, June 9, 2011.</span>
</li>
<li id="cite_note-32">
<span class="mw-cite-backlink"><b><a href="#cite_ref-32">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://online.ipexpo.co.uk/Editorial-Analysis/Steve-Wozniak-s-lessons-for-innovators">Steve Wozniak’s lessons for innovators</a> IPEXPO ONLINE Fri, October 21, 2011.</span>
</li>
<li id="cite_note-33">
<span class="mw-cite-backlink"><b><a href="#cite_ref-33">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external autonumber" href="http://psm.rutgers.edu/content/entrepreneurship-day-rutgers-innovation-corridor-keynote-speaker-steve-wozniak-0">[1]</a><sup class="noprint Inline-Template"><span style="white-space: nowrap;">[<i><a href="/wiki/Wikipedia:Link_rot" title="Wikipedia:Link rot"><span title=" since June 2014">dead link</span></a></i>]</span></sup> Rutgers Professional Science Masters Webpage, April 15, 2012.</span>
</li>
<li id="cite_note-34">
<span class="mw-cite-backlink"><b><a href="#cite_ref-34">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://tijuanainnovadora.com/2012/eng/conferencistas.php?id=7">"Conference Speakers: Stephen Gary Wozniak"</a>. <i>Tijuana Innovadora</i><span class="reference-accessdate">. Retrieved <span class="nowrap">June 1,</span> 2013</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.atitle=Conference+Speakers%3A+Stephen+Gary+Wozniak&rft.genre=article&rft_id=http%3A%2F%2Ftijuanainnovadora.com%2F2012%2Feng%2Fconferencistas.php%3Fid%3D7&rft.jtitle=Tijuana+Innovadora&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;"> </span></span><sup class="noprint Inline-Template"><span style="white-space: nowrap;">[<i><a href="/wiki/Wikipedia:Link_rot" title="Wikipedia:Link rot"><span title=" since June 2014">dead link</span></a></i>]</span></sup></span>
</li>
<li id="cite_note-35">
<span class="mw-cite-backlink"><b><a href="#cite_ref-35">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://www.smh.com.au/technology/technology-news/apple-cofounder-steve-wozniak-joins-uts-20141022-119qco.html">"Apple co-founder Steve Wozniak joins UTS"</a>. <i>SMH</i><span class="reference-accessdate">. Retrieved <span class="nowrap">October 22,</span> 2014</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.atitle=Apple+co-founder+Steve+Wozniak+joins+UTS&rft.genre=article&rft_id=http%3A%2F%2Fwww.smh.com.au%2Ftechnology%2Ftechnology-news%2Fapple-cofounder-steve-wozniak-joins-uts-20141022-119qco.html&rft.jtitle=SMH&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-36">
<span class="mw-cite-backlink"><b><a href="#cite_ref-36">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://ip.com/pat/US4136359">US Patent No. 4,136,359</a>, US Patent & Trademark Office, Patent Full Text and Image Database.</span>
</li>
<li id="cite_note-37">
<span class="mw-cite-backlink"><b><a href="#cite_ref-37">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://ip.com/patent/US4210959">Controller for magnetic disc, recorder, or the like</a><sup class="noprint Inline-Template"><span style="white-space: nowrap;">[<i><a href="/wiki/Wikipedia:Link_rot" title="Wikipedia:Link rot"><span title=" since June 2014">dead link</span></a></i>]</span></sup> US Patent 4210959.</span>
</li>
<li id="cite_note-38">
<span class="mw-cite-backlink"><b><a href="#cite_ref-38">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://ip.com/patent/US4217604">Apparatus for digitally controlling PAL color display</a><sup class="noprint Inline-Template"><span style="white-space: nowrap;">[<i><a href="/wiki/Wikipedia:Link_rot" title="Wikipedia:Link rot"><span title=" since June 2014">dead link</span></a></i>]</span></sup> US Patent 4217604.</span>
</li>
<li id="cite_note-39">
<span class="mw-cite-backlink"><b><a href="#cite_ref-39">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://ip.com/patent/US4278972">Digitally-controlled color signal generation means for use with display</a><sup class="noprint Inline-Template"><span style="white-space: nowrap;">[<i><a href="/wiki/Wikipedia:Link_rot" title="Wikipedia:Link rot"><span title=" since June 2014">dead link</span></a></i>]</span></sup> US Patent 4278972.</span>
</li>
<li id="cite_note-uofc-40">
<span class="mw-cite-backlink"><b><a href="#cite_ref-uofc_40-0">^</a></b></span> <span class="reference-text"><span class="citation web">Seibold, Chris. <a rel="nofollow" class="external text" href="http://www.applematters.com/index.php/section/history/2006/12/28/">"This Day in Apple History December 28, 1989: Woz Gets Honorary Doctorate, Dish Incident Forgotten"</a><span class="reference-accessdate">. Retrieved <span class="nowrap">July 31,</span> 2007</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.aufirst=Chris&rft.aulast=Seibold&rft.au=Seibold%2C+Chris&rft.btitle=This+Day+in+Apple+History+December+28%2C+1989%3A+Woz+Gets+Honorary+Doctorate%2C+Dish+Incident+Forgotten&rft.genre=book&rft_id=http%3A%2F%2Fwww.applematters.com%2Findex.php%2Fsection%2Fhistory%2F2006%2F12%2F28%2F&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-41">
<span class="mw-cite-backlink"><b><a href="#cite_ref-41">^</a></b></span> <span class="reference-text"><span class="citation web">CHM. <a rel="nofollow" class="external text" href="http://www.computerhistory.org/fellowawards/hall/bios/Steve,Wozniak/">"Steve Wozniak — CHM Fellow Award Winner"</a><span class="reference-accessdate">. Retrieved <span class="nowrap">March 30,</span> 2015</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.au=CHM&rft.aulast=CHM&rft.btitle=Steve+Wozniak+%E2%80%94+CHM+Fellow+Award+Winner&rft.genre=book&rft_id=http%3A%2F%2Fwww.computerhistory.org%2Ffellowawards%2Fhall%2Fbios%2FSteve%2CWozniak%2F&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-42">
<span class="mw-cite-backlink"><b><a href="#cite_ref-42">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://maps.google.com/maps?f=q&hl=en&q=woz+way,+san+jose,+ca&t=h&ll=37.326361,-121.891733&spn=0.003686,0.008497&t=h">"maps.google.com"</a>. maps.google.com. January 1, 1970<span class="reference-accessdate">. Retrieved <span class="nowrap">November 11,</span> 2010</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.btitle=maps.google.com&rft.date=January+1%2C+1970&rft.genre=book&rft_id=http%3A%2F%2Fmaps.google.com%2Fmaps%3Ff%3Dq%26hl%3Den%26q%3Dwoz%2Bway%2C%2Bsan%2Bjose%2C%2Bca%26t%3Dh%26ll%3D37.326361%2C-121.891733%26spn%3D0.003686%2C0.008497%26t%3Dh&rft.pub=maps.google.com&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-43">
<span class="mw-cite-backlink"><b><a href="#cite_ref-43">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://www.invent.org/Hall_Of_Fame/155.html">Inventor Profile</a><sup class="noprint Inline-Template"><span style="white-space: nowrap;">[<i><a href="/wiki/Wikipedia:Link_rot" title="Wikipedia:Link rot"><span title=" since June 2014">dead link</span></a></i>]</span></sup> — National Inventors Hall of Fame.</span>
</li>
<li id="cite_note-44">
<span class="mw-cite-backlink"><b><a href="#cite_ref-44">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://www.heinzawards.net/recipients/steve-wozniak">"The Heinz Awards, Steve Wozniak profile"</a>. Heinzawards.net<span class="reference-accessdate">. Retrieved <span class="nowrap">November 11,</span> 2010</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.btitle=The+Heinz+Awards%2C+Steve+Wozniak+profile&rft.genre=book&rft_id=http%3A%2F%2Fwww.heinzawards.net%2Frecipients%2Fsteve-wozniak&rft.pub=Heinzawards.net&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-45">
<span class="mw-cite-backlink"><b><a href="#cite_ref-45">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://www.kettering.edu/visitors/presidentsoffice/honorary_degrees.jsp">Honorary Doctorate</a><sup class="noprint Inline-Template"><span style="white-space: nowrap;">[<i><a href="/wiki/Wikipedia:Link_rot" title="Wikipedia:Link rot"><span title=" since June 2014">dead link</span></a></i>]</span></sup> — Kettering University List of Honorary Degrees.</span>
</li>
<li id="cite_note-NCSU-46">
<span class="mw-cite-backlink">^ <a href="#cite_ref-NCSU_46-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-NCSU_46-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://www.ncsu.edu/about-nc-state/university-leadership/board-of-trustees/honorary-degrees/degrees-conferred/">Honorary Doctorate</a> — North Carolina State University List of Honorary Degrees.</span>
</li>
<li id="cite_note-47">
<span class="mw-cite-backlink"><b><a href="#cite_ref-47">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://commencement.msu.edu/">"Commencement | MSU Commencement"</a>. Commencement.msu.edu<span class="reference-accessdate">. Retrieved <span class="nowrap">March 22,</span> 2013</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.btitle=Commencement+%26%23124%3B+MSU+Commencement&rft.genre=book&rft_id=http%3A%2F%2Fcommencement.msu.edu%2F&rft.pub=Commencement.msu.edu&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-48">
<span class="mw-cite-backlink"><b><a href="#cite_ref-48">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://www.globalitaward.am/en/laureate2.html">"Global Award of the President of Armenia for Outstanding Contribution to Humanity Through IT"</a>. Globalitaward.am<span class="reference-accessdate">. Retrieved <span class="nowrap">March 22,</span> 2013</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.btitle=Global+Award+of+the+President+of+Armenia+for+Outstanding+Contribution+to+Humanity+Through+IT&rft.genre=book&rft_id=http%3A%2F%2Fwww.globalitaward.am%2Fen%2Flaureate2.html&rft.pub=Globalitaward.am&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span><sup class="noprint Inline-Template"><span style="white-space: nowrap;">[<i><a href="/wiki/Wikipedia:Link_rot" title="Wikipedia:Link rot"><span title=" since March 2015">dead link</span></a></i>]</span></sup></span>
</li>
<li id="cite_note-49">
<span class="mw-cite-backlink"><b><a href="#cite_ref-49">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="https://www.cdm.org/connect/support/legacy-for-children/">Legacy for Children Award 2015</a></span>
</li>
<li id="cite_note-50">
<span class="mw-cite-backlink"><b><a href="#cite_ref-50">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://alumni.berkeley.edu/announcements/caa-announcements/caa-announces-2015-alumnus-year-steve-wozniak-bs-86-and-other-alumni">CAA Announces the 2015 Alumnus of the Year Steve Wozniak, B.S. '86 and Other Alumni Award Recipients</a></span>
</li>
<li id="cite_note-51">
<span class="mw-cite-backlink"><b><a href="#cite_ref-51">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://www.imdb.com/title/tt1227767/"><i>Camp Woz: The Admirable Lunacy of Philanthropy</i></a> at the <a href="/wiki/Internet_Movie_Database" title="Internet Movie Database">Internet Movie Database</a></span>
</li>
<li id="cite_note-52">
<span class="mw-cite-backlink"><b><a href="#cite_ref-52">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://americangenius.nationalgeographic.com/episode/jobs-vs-gates/">Steve Jobs vs. Bill Gates: The Competition to Control the Personal Computer: 1974-1999</a></span>
</li>
<li id="cite_note-bestweek-53">
<span class="mw-cite-backlink"><b><a href="#cite_ref-bestweek_53-0">^</a></b></span> <span class="reference-text"><span class="citation web">Collins, Michelle. <a rel="nofollow" class="external text" href="https://web.archive.org/web/20070820012223/http://www.bestweekever.tv/2007/08/17/off-the-market-kathy-griffin-finds-a-new-man/">"VH1 Best Week Ever — Off The Market: Kathy Griffin Finds a New Man!"</a>. Archived from <a rel="nofollow" class="external text" href="http://www.bestweekever.tv/2007/08/17/off-the-market-kathy-griffin-finds-a-new-man/">the original</a> on August 20, 2007<span class="reference-accessdate">. Retrieved <span class="nowrap">September 18,</span> 2007</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.au=Collins%2C+Michelle&rft.aufirst=Michelle&rft.aulast=Collins&rft.btitle=VH1+Best+Week+Ever+%E2%80%94+Off+The+Market%3A+Kathy+Griffin+Finds+a+New+Man%21&rft.genre=book&rft_id=http%3A%2F%2Fwww.bestweekever.tv%2F2007%2F08%2F17%2Foff-the-market-kathy-griffin-finds-a-new-man%2F&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-ceosmack-54">
<span class="mw-cite-backlink"><b><a href="#cite_ref-ceosmack_54-0">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://web.archive.org/web/20071217011722/http://www.ceosmack.com/2007/09/18/apple-co-founder-steve-wozniak-escorted-comedian-kathy-griffin-her-potty-mouth-to-the-emmys/">"Apple Co-Founder Steve Wozniak Escorted Comedian Kathy Griffin & Her Potty Mouth To The Emmy’s."</a>. Archived from <a rel="nofollow" class="external text" href="http://www.ceosmack.com/2007/09/18/apple-co-founder-steve-wozniak-escorted-comedian-kathy-griffin-her-potty-mouth-to-the-emmys/">the original</a> on December 17, 2007<span class="reference-accessdate">. Retrieved <span class="nowrap">September 18,</span> 2007</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.btitle=Apple+Co-Founder+Steve+Wozniak+Escorted+Comedian+Kathy+Griffin+%26+Her+Potty+Mouth+To+The+Emmy%E2%80%99s.&rft.genre=book&rft_id=http%3A%2F%2Fwww.ceosmack.com%2F2007%2F09%2F18%2Fapple-co-founder-steve-wozniak-escorted-comedian-kathy-griffin-her-potty-mouth-to-the-emmys%2F&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span>(<a rel="nofollow" class="external text" href="https://web.archive.org/web/20071217011722/http://www.ceosmack.com/2007/09/18/apple-co-founder-steve-wozniak-escorted-comedian-kathy-griffin-her-potty-mouth-to-the-emmys/">Archived</a> December 17, 2007 at the <a href="/wiki/Wayback_Machine" title="Wayback Machine">Wayback Machine</a>)</span>
</li>
<li id="cite_note-55">
<span class="mw-cite-backlink"><b><a href="#cite_ref-55">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://www.howardstern.com/rundown.hs?month=June&day=19&year=2008&x=45&y=9">Who’s so vain?</a><sup class="noprint Inline-Template"><span style="white-space: nowrap;">[<i><a href="/wiki/Wikipedia:Link_rot" title="Wikipedia:Link rot"><span title=" since June 2014">dead link</span></a></i>]</span></sup> June 19, 2008 — The Howard Stern Show.</span>
</li>
<li id="cite_note-56">
<span class="mw-cite-backlink"><b><a href="#cite_ref-56">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://latimesblogs.latimes.com/technology/2009/02/wozniak-dancing.html">"Apple co-founder Steve Wozniak to compete on 'Dancing With the Stars'"</a> from <i><a href="/wiki/Los_Angeles_Times" title="Los Angeles Times">Los Angeles Times</a></i>. Retrieved on February 8, 2009.</span>
</li>
<li id="cite_note-57">
<span class="mw-cite-backlink"><b><a href="#cite_ref-57">^</a></b></span> <span class="reference-text"><span class="citation news"><a rel="nofollow" class="external text" href="http://news.bbc.co.uk/2/hi/programmes/click_online/7741472.stm">"Why Apple founders got 'fired up.<span style="padding-right:0.2em;">'</span>"</a>. BBC News. November 21, 2008<span class="reference-accessdate">. Retrieved <span class="nowrap">February 5,</span> 2009</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.btitle=Why+Apple+founders+got+%27fired+up.%27&rft.date=November+21%2C+2008&rft.genre=book&rft_id=http%3A%2F%2Fnews.bbc.co.uk%2F2%2Fhi%2Fprogrammes%2Fclick_online%2F7741472.stm&rft.pub=BBC+News&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-58">
<span class="mw-cite-backlink"><b><a href="#cite_ref-58">^</a></b></span> <span class="reference-text"><span class="citation news">Matyszczyk, Chris (March 17, 2009). <a rel="nofollow" class="external text" href="http://news.cnet.com/8301-17852_3-10198341-71.html?tag=mncol;txt">"Woz in ABC 'outright lie' accusation"</a>. CNET.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.aufirst=Chris&rft.aulast=Matyszczyk&rft.au=Matyszczyk%2C+Chris&rft.btitle=Woz+in+ABC+%27outright+lie%27+accusation&rft.date=March+17%2C+2009&rft.genre=book&rft_id=http%3A%2F%2Fnews.cnet.com%2F8301-17852_3-10198341-71.html%3Ftag%3Dmncol%3Btxt&rft.pub=CNET&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-59">
<span class="mw-cite-backlink"><b><a href="#cite_ref-59">^</a></b></span> <span class="reference-text"><span class="citation news">Fashingbauer Cooper, Gael (March 19, 2009). <a rel="nofollow" class="external text" href="http://www.msnbc.msn.com/id/29777570/">"Wozniak sorry he called ‘Dancing’ show ‘fake’"</a>. MSNBC.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.au=Fashingbauer+Cooper%2C+Gael&rft.aufirst=Gael&rft.aulast=Fashingbauer+Cooper&rft.btitle=Wozniak+sorry+he+called+%E2%80%98Dancing%E2%80%99+show+%E2%80%98fake%E2%80%99&rft.date=March+19%2C+2009&rft.genre=book&rft_id=http%3A%2F%2Fwww.msnbc.msn.com%2Fid%2F29777570%2F&rft.pub=MSNBC&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-60">
<span class="mw-cite-backlink"><b><a href="#cite_ref-60">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://tvwatch.people.com/2009/03/23/injured-steve-wozniak-will-perform-on-mondays-dwts/">Injured Woz Will Perform</a> People.com, March 23, 2009.</span>
</li>
<li id="cite_note-61">
<span class="mw-cite-backlink"><b><a href="#cite_ref-61">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://kara.allthingsd.com/20090401/woz-gets-hipchecked-off-the-dance-floor-big-big-sigh">Woz Gets Hipchecked Off the Dance Floor</a>, by Kara Swisher, April 1, 2009, All Things Digital.</span>
</li>
<li id="cite_note-62">
<span class="mw-cite-backlink"><b><a href="#cite_ref-62">^</a></b></span> <span class="reference-text"><span class="citation web">Hopewell, Luke (September 25, 2012). <a rel="nofollow" class="external text" href="http://www.gizmodo.com.au/2012/09/steve-wozniak-is-becoming-an-australian-citizen/">"Steve Wozniak Is Becoming An Australian Citizen"</a>. <i>Gizmodo</i><span class="reference-accessdate">. Retrieved <span class="nowrap">June 12,</span> 2014</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.atitle=Steve+Wozniak+Is+Becoming+An+Australian+Citizen&rft.aufirst=Luke&rft.au=Hopewell%2C+Luke&rft.aulast=Hopewell&rft.date=September+25%2C+2012&rft.genre=article&rft_id=http%3A%2F%2Fwww.gizmodo.com.au%2F2012%2F09%2Fsteve-wozniak-is-becoming-an-australian-citizen%2F&rft.jtitle=Gizmodo&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-63">
<span class="mw-cite-backlink"><b><a href="#cite_ref-63">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://freemasonry.bcy.ca/biography/wozniak_s/wozniak_s.html">"A Few Famous Masons"</a>. Grand Lodge of British Columbia and Yukon<span class="reference-accessdate">. Retrieved <span class="nowrap">March 25,</span> 2013</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.btitle=A+Few+Famous+Masons&rft.genre=book&rft_id=http%3A%2F%2Ffreemasonry.bcy.ca%2Fbiography%2Fwozniak_s%2Fwozniak_s.html&rft.pub=Grand+Lodge+of+British+Columbia+and+Yukon&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-64">
<span class="mw-cite-backlink"><b><a href="#cite_ref-64">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://www.macobserver.com/columns/thisweek/2004/20040613.shtml">"This Week in Apple History - June 7 - 13: The Woz Marries, Switcher Campaign Starts, IE Ended"</a>. The Mac Observer<span class="reference-accessdate">. Retrieved <span class="nowrap">November 28,</span> 2012</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.btitle=This+Week+in+Apple+History+-+June+7+-+13%3A+The+Woz+Marries%2C+Switcher+Campaign+Starts%2C+IE+Ended&rft.genre=book&rft_id=http%3A%2F%2Fwww.macobserver.com%2Fcolumns%2Fthisweek%2F2004%2F20040613.shtml&rft.pub=The+Mac+Observer&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-65">
<span class="mw-cite-backlink"><b><a href="#cite_ref-65">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://tech.fortune.cnn.com/2012/03/16/im-in-trouble-says-wozs-wife/">"'I'm in trouble' says Woz's wife"</a> from <i>Apple 2.0" on CNNMoney</i></span>
</li>
<li id="cite_note-66">
<span class="mw-cite-backlink"><b><a href="#cite_ref-66">^</a></b></span> <span class="reference-text"><span class="citation web">Steve Wozniak (2002). <a rel="nofollow" class="external text" href="http://archive.woz.org/letters/general/72.html">"Letters-General Questions Answered"</a>. Los Gatos, California: Unuson Corp<span class="reference-accessdate">. Retrieved <span class="nowrap">June 20,</span> 2013</span>. <q>I am also atheist or agnostic (I don't even know the difference). I've never been to church and prefer to think for myself. I do believe that religions stand for good things, and that if you make irrational sacrifices for a religion, then everyone can tell that your religion is important to you and can trust that your most important inner faiths are strong.</q></span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.aulast=Steve+Wozniak&rft.au=Steve+Wozniak&rft.btitle=Letters-General+Questions+Answered&rft.date=2002&rft.genre=book&rft_id=http%3A%2F%2Farchive.woz.org%2Fletters%2Fgeneral%2F72.html&rft.place=Los+Gatos%2C+California&rft.pub=Unuson+Corp&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-67">
<span class="mw-cite-backlink"><b><a href="#cite_ref-67">^</a></b></span> <span class="reference-text"><span class="citation web">Brian Riley (2012). <a rel="nofollow" class="external text" href="http://brianriley.us/interview_with_steve_wozniak.html">"Interview with Steve Wozniak"</a>. Davis, California: BrianRiley.us<span class="reference-accessdate">. Retrieved <span class="nowrap">August 17,</span> 2014</span>. <q>I’m kind of spiritual inside. I have a lot of philosophies of how to be a good person, how to treat people, and I’ve worked them out, thinking over and over, reflecting inside my mind the way shy people do, and I was very shy, and coming up with my own little keys and rules for life, and they stayed with me…</q></span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.au=Brian+Riley&rft.aulast=Brian+Riley&rft.btitle=Interview+with+Steve+Wozniak&rft.date=2012&rft.genre=book&rft_id=http%3A%2F%2Fbrianriley.us%2Finterview_with_steve_wozniak.html&rft.place=Davis%2C+California&rft.pub=BrianRiley.us&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-68">
<span class="mw-cite-backlink"><b><a href="#cite_ref-68">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://news.cnet.com/8301-13772_3-9832348-52.html">"Woz and I agree: 'Tetris' for the Gameboy is the best game ever</a>, by Daniel Terdiman, December 11, 2007, Geek Gestalt on CNET News.</span>
</li>
<li id="cite_note-softline198109-69">
<span class="mw-cite-backlink"><b><a href="#cite_ref-softline198109_69-0">^</a></b></span> <span class="reference-text"><span class="citation news"><a rel="nofollow" class="external text" href="http://www.cgwmuseum.org/galleries/index.php?year=1981&pub=6&id=1">"High Scores"</a>. <i>Softline</i>. September 1981. p. 28<span class="reference-accessdate">. Retrieved <span class="nowrap">July 13,</span> 2014</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3ASteve+Wozniak&rft.atitle=High+Scores&rft.date=September+1981&rft.genre=article&rft_id=http%3A%2F%2Fwww.cgwmuseum.org%2Fgalleries%2Findex.php%3Fyear%3D1981%26pub%3D6%26id%3D1&rft.jtitle=Softline&rft.pages=28&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;"> </span></span></span>
</li>
<li id="cite_note-70">
<span class="mw-cite-backlink"><b><a href="#cite_ref-70">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://www.woz.org/letters/evets-kainzow">"Evets Kainzow"</a>, by Steve Wozniak, Undated, Woz.org</span>
</li>
</ol>
</div>
<h2>
<span class="mw-headline" id="External_links">External links</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Steve_Wozniak&action=edit&section=20" title="Edit section: External links">edit</a><span class="mw-editsection-bracket">]</span></span>
</h2>
<table class="mbox-small plainlinks sistersitebox" style="border:1px solid #aaa;background-color:#f9f9f9">
<tr>
<td class="mbox-image"><img alt="" src="//upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/30px-Commons-logo.svg.png" width="30" height="40" srcset="//upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/45px-Commons-logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/59px-Commons-logo.svg.png 2x" data-file-width="1024" data-file-height="1376"></td>
<td class="mbox-text plainlist">Wikimedia Commons has media related to <i><b><a href="//commons.wikimedia.org/wiki/Steve_Wozniak" class="extiw" title="commons:Steve Wozniak">Steve Wozniak</a></b></i>.</td>
</tr>
</table>
<table class="mbox-small plainlinks sistersitebox" style="border:1px solid #aaa;background-color:#f9f9f9">
<tr>
<td class="mbox-image"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/34px-Wikiquote-logo.svg.png" width="34" height="40" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/51px-Wikiquote-logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/68px-Wikiquote-logo.svg.png 2x" data-file-width="300" data-file-height="355"></td>
<td class="mbox-text plainlist">Wikiquote has quotations related to: <i><b><a href="//en.wikiquote.org/wiki/Special:Search/Steve_Wozniak" class="extiw" title="q:Special:Search/Steve Wozniak">Steve Wozniak</a></b></i>
</td>
</tr>
</table>
<ul>
<li><a rel="nofollow" class="external text" href="http://www.woz.org/">Wozniak's official website</a></li>
<li>
<a rel="nofollow" class="external text" href="http://www.folklore.org/ProjectView.py?project=Macintosh&characters=Steve%20Wozniak">Steve Wozniak</a> @ <a href="/wiki/Andy_Hertzfeld" title="Andy Hertzfeld">Andy Hertzfeld</a>'s <i>The Original Macintosh</i> (folklore.org)</li>
<li>
<a href="http://www.imdb.com/character/ch0053360/" class="extiw" title="imdbcharacter:0053360">Steve Wozniak</a> at the <a href="/wiki/Internet_Movie_Database" title="Internet Movie Database">Internet Movie Database</a>
</li>
</ul>
<p><br></p>
<table class="navbox" style="border-spacing:0">
<tr>
<td style="padding:2px">
<table class="nowraplinks collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit">
<tr>
<th scope="col" class="navbox-title" colspan="3">
<div class="plainlinks hlist navbar mini">
<ul>
<li class="nv-view"><a href="/wiki/Template:Woz" title="Template:Woz"><span title="View this template" style=";;background:none transparent;border:none;">v</span></a></li>
<li class="nv-talk"><a href="/wiki/Template_talk:Woz" title="Template talk:Woz"><span title="Discuss this template" style=";;background:none transparent;border:none;">t</span></a></li>
<li class="nv-edit"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Template:Woz&action=edit"><span title="Edit this template" style=";;background:none transparent;border:none;">e</span></a></li>
</ul>
</div>
<div style="font-size:110%"><strong class="selflink">Steve Wozniak</strong></div>
</th>
</tr>
<tr style="height:2px">
<td colspan="2"></td>
</tr>
<tr>
<th scope="row" class="navbox-group">Products and projects</th>
<td class="navbox-list navbox-odd hlist" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px">
<div style="padding:0em 0.25em">
<ul>
<li><a href="/wiki/Apple_I" title="Apple I">Apple I</a></li>
<li><a href="/wiki/Apple_II" title="Apple II">Apple II</a></li>
<li><a href="/wiki/Apple_Desktop_Bus" title="Apple Desktop Bus">Apple Desktop Bus</a></li>
<li><a href="/wiki/Breakout_(video_game)" title="Breakout (video game)"><i>Breakout</i></a></li>
<li><i><a href="/wiki/IWoz" title="IWoz">iWoz</a></i></li>
<li><a href="/wiki/US_Festival" title="US Festival">US Festival</a></li>
</ul>
</div>
</td>
<td class="navbox-image" rowspan="11" style="width:0%;padding:0px 0px 0px 2px">
<div><a href="/wiki/File:Steve_Wozniak.jpg" class="image"><img alt="Steve Wozniak.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Steve_Wozniak.jpg/125px-Steve_Wozniak.jpg" width="125" height="154" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Steve_Wozniak.jpg/188px-Steve_Wozniak.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Steve_Wozniak.jpg/250px-Steve_Wozniak.jpg 2x" data-file-width="825" data-file-height="1014"></a></div>
</td>
</tr>
<tr style="height:2px">
<td colspan="2"></td>
</tr>
<tr>
<th scope="row" class="navbox-group">Companies</th>
<td class="navbox-list navbox-even hlist" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px">
<div style="padding:0em 0.25em">
<ul>
<li>
<a href="/wiki/Jazz_Semiconductor" title="Jazz Semiconductor">Acquicor</a> <small style="font-size:85%;">(co-founder)</small>
</li>
<li>
<a href="/wiki/Apple,_Inc." title="Apple, Inc." class="mw-redirect">Apple, Inc.</a> <small style="font-size:85%;">(co-founder)</small>
</li>
<li>
<a href="/wiki/CL_9" title="CL 9">CL 9</a> <small style="font-size:85%;">(founder)</small>
</li>
<li>
<a href="/wiki/Fusion-io" title="Fusion-io">Fusion-io</a> <small style="font-size:85%;">(chief scientist)</small>
</li>
<li>
<a href="/wiki/Wheels_of_Zeus" title="Wheels of Zeus">Wheels of Zeus</a> <small style="font-size:85%;">(founder)</small>
</li>
</ul>
</div>
</td>
</tr>
<tr style="height:2px">
<td colspan="2"></td>
</tr>
<tr>
<th scope="row" class="navbox-group">Awards</th>
<td class="navbox-list navbox-odd hlist" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px">
<div style="padding:0em 0.25em">
<ul>
<li>
<a href="/wiki/Grace_Murray_Hopper_Award" title="Grace Murray Hopper Award">Grace Murray Hopper Award</a> (1979)</li>
<li>
<a href="/wiki/National_Medal_of_Technology_and_Innovation" title="National Medal of Technology and Innovation">National Medal of Technology and Innovation</a> (1985, with Steve Jobs)</li>
</ul>
</div>
</td>
</tr>
<tr style="height:2px">
<td colspan="2"></td>
</tr>
<tr>
<th scope="row" class="navbox-group">Film</th>
<td class="navbox-list navbox-even hlist" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px">
<div style="padding:0em 0.25em">
<ul>
<li><i><a href="/wiki/Jobs_(film)" title="Jobs (film)">Jobs</a></i></li>
<li><i><a href="/wiki/Pirates_of_Silicon_Valley" title="Pirates of Silicon Valley">Pirates of Silicon Valley</a></i></li>
<li><i><a href="/wiki/Steve_Jobs_(film)" title="Steve Jobs (film)">Steve Jobs</a></i></li>
<li><i><a href="/wiki/Triumph_of_the_Nerds" title="Triumph of the Nerds">Triumph of the Nerds</a></i></li>
</ul>
</div>
</td>
</tr>
<tr style="height:2px">
<td colspan="2"></td>
</tr>
<tr>
<th scope="row" class="navbox-group">TV appearances</th>
<td class="navbox-list navbox-odd hlist" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px">
<div style="padding:0em 0.25em">
<ul>
<li>"<a href="/wiki/The_Cruciferous_Vegetable_Amplification" title="The Cruciferous Vegetable Amplification">The Cruciferous Vegetable Amplification</a>" <small style="font-size:85%;">(<i>The Big Bang Theory</i>)</small>
</li>
<li><a href="/wiki/Dancing_with_the_Stars_(U.S._season_8)" title="Dancing with the Stars (U.S. season 8)"><i>Dancing with the Stars</i> season 8</a></li>
<li><a href="/wiki/Kathy_Griffin:_My_Life_on_the_D-List#Season_4:_2008" title="Kathy Griffin: My Life on the D-List"><i>Kathy Griffin: My Life on the D-List</i> season 4</a></li>
</ul>
</div>
</td>
</tr>
<tr style="height:2px">
<td colspan="2"></td>
</tr>
<tr>
<th scope="row" class="navbox-group">Related</th>
<td class="navbox-list navbox-even hlist" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px">
<div style="padding:0em 0.25em">
<ul>
<li><a href="/wiki/Apple_IIGS#Limited_Edition_.28.22Woz.22_signed_case.29" title="Apple IIGS">Apple IIGS with limited edition signed case</a></li>
<li><a href="/wiki/Blue_box" title="Blue box">Blue box</a></li>
<li><i><a href="/wiki/Hackers:_Heroes_of_the_Computer_Revolution" title="Hackers: Heroes of the Computer Revolution">Hackers: Heroes of the Computer Revolution</a></i></li>
<li><a href="/wiki/Homebrew_Computer_Club" title="Homebrew Computer Club">Homebrew Computer Club</a></li>
<li><a href="/wiki/Steve_Jobs" title="Steve Jobs">Steve Jobs</a></li>
<li><a href="/wiki/Phreaking" title="Phreaking">Phreaking</a></li>
<li><a href="/wiki/Segway_polo" title="Segway polo">Segway polo</a></li>
</ul>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
<table class="navbox" style="border-spacing:0">
<tr>
<td style="padding:2px">
<table class="nowraplinks collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit">
<tr>
<th scope="col" class="navbox-title" colspan="2">
<div class="plainlinks hlist navbar mini">
<ul>
<li class="nv-view"><a href="/wiki/Template:Apple_celeb" title="Template:Apple celeb"><span title="View this template" style=";;background:none transparent;border:none;">v</span></a></li>
<li class="nv-talk"><a href="/wiki/Template_talk:Apple_celeb" title="Template talk:Apple celeb"><span title="Discuss this template" style=";;background:none transparent;border:none;">t</span></a></li>
<li class="nv-edit"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Template:Apple_celeb&action=edit"><span title="Edit this template" style=";;background:none transparent;border:none;">e</span></a></li>
</ul>
</div>
<div style="font-size:110%">Key figures in the <a href="/wiki/History_of_Apple_Inc." title="History of Apple Inc.">history of Apple Inc.</a>
</div>
</th>
</tr>
<tr style="height:2px">
<td colspan="2"></td>
</tr>
<tr>
<th scope="row" class="navbox-group">CEOs</th>
<td class="navbox-list navbox-odd hlist" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px">
<div style="padding:0em 0.25em">
<ul>
<li>
<a href="/wiki/Michael_Scott_(Apple)" title="Michael Scott (Apple)">Michael Scott</a> (1977–1981)</li>
<li>
<a href="/wiki/Mike_Markkula" title="Mike Markkula">Mike Markkula</a> (1981–1983)</li>
<li>
<a href="/wiki/John_Sculley" title="John Sculley">John Sculley</a> (1983–1993)</li>
<li>
<a href="/wiki/Michael_Spindler" title="Michael Spindler">Michael Spindler</a> (1993–1996)</li>
<li>
<a href="/wiki/Gil_Amelio" title="Gil Amelio">Gil Amelio</a> (1996–1997)</li>
<li>
<a href="/wiki/Steve_Jobs" title="Steve Jobs">Steve Jobs</a> (1997–2011)</li>
<li>
<a href="/wiki/Tim_Cook" title="Tim Cook">Tim Cook</a> (2011–present)</li>
</ul>
</div>
</td>
</tr>
<tr style="height:2px">
<td colspan="2"></td>
</tr>
<tr>
<th scope="row" class="navbox-group">Employees</th>
<td class="navbox-list navbox-even hlist" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px">
<div style="padding:0em 0.25em">
<ul>
<li><a href="/wiki/Angela_Ahrendts" title="Angela Ahrendts">Angela Ahrendts</a></li>
<li><a href="/wiki/Bill_Atkinson" title="Bill Atkinson">Bill Atkinson</a></li>
<li><a href="/wiki/Susan_Barnes_(computing)" title="Susan Barnes (computing)">Susan Barnes</a></li>
<li><a href="/wiki/Chrisann_Brennan" title="Chrisann Brennan">Chrisann Brennan</a></li>
<li><a href="/wiki/Steve_Capps" title="Steve Capps">Steve Capps</a></li>
<li><a href="/wiki/George_Crow" title="George Crow">George Crow</a></li>
<li><a href="/wiki/Chris_Espinosa" title="Chris Espinosa">Chris Espinosa</a></li>
<li><a href="/wiki/Craig_Federighi" title="Craig Federighi">Craig Federighi</a></li>
<li><a href="/wiki/Bill_Fernandez" title="Bill Fernandez">Bill Fernandez</a></li>
<li><a href="/wiki/Scott_Forstall" title="Scott Forstall">Scott Forstall</a></li>
<li><a href="/wiki/Jean-Louis_Gass%C3%A9e" title="Jean-Louis Gassée">Jean-Louis Gassée</a></li>
<li><a href="/wiki/Andy_Hertzfeld" title="Andy Hertzfeld">Andy Hertzfeld</a></li>
<li><a href="/wiki/Bruce_Horn" title="Bruce Horn">Bruce Horn</a></li>
<li><a href="/wiki/Guy_Kawasaki" title="Guy Kawasaki">Guy Kawasaki</a></li>
<li><a href="/wiki/Susan_Kare" title="Susan Kare">Susan Kare</a></li>
<li><a href="/wiki/Daniel_Kottke" title="Daniel Kottke">Daniel Kottke</a></li>
<li><a href="/wiki/Joanna_Hoffman" title="Joanna Hoffman">Joanna Hoffman</a></li>
<li><a href="/wiki/Rod_Holt" title="Rod Holt">Rod Holt</a></li>
<li><a href="/wiki/Jonathan_Ive" title="Jonathan Ive">Jonathan Ive</a></li>
<li><a href="/wiki/Bob_Mansfield" title="Bob Mansfield">Bob Mansfield</a></li>
<li><a href="/wiki/David_Nagel" title="David Nagel">David Nagel</a></li>
<li><a href="/wiki/Rich_Page" title="Rich Page">Rich Page</a></li>
<li><a href="/wiki/Jef_Raskin" title="Jef Raskin">Jef Raskin</a></li>
<li><a href="/wiki/Phil_Schiller" title="Phil Schiller">Phil Schiller</a></li>
<li><a href="/wiki/Bertrand_Serlet" title="Bertrand Serlet">Bertrand Serlet</a></li>
<li><a href="/wiki/Burrell_Smith" title="Burrell Smith">Burrell Smith</a></li>
<li><a href="/wiki/Avie_Tevanian" title="Avie Tevanian">Avie Tevanian</a></li>
<li><a href="/wiki/Bud_Tribble" title="Bud Tribble">Bud Tribble</a></li>
<li><strong class="selflink">Steve Wozniak</strong></li>
<li><a href="/wiki/Ronald_Wayne" title="Ronald Wayne">Ronald Wayne</a></li>
<li><a href="/wiki/Del_Yocam" title="Del Yocam">Del Yocam</a></li>
</ul>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
<table class="navbox" style="border-spacing:0">
<tr>
<td style="padding:2px">
<table class="nowraplinks collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit">
<tr>
<th scope="col" class="navbox-title" colspan="2">
<div class="plainlinks hlist navbar mini">
<ul>
<li class="nv-view"><a href="/wiki/Template:Hopper_winners" title="Template:Hopper winners"><span title="View this template" style=";;background:none transparent;border:none;">v</span></a></li>
<li class="nv-talk"><a href="/wiki/Template_talk:Hopper_winners" title="Template talk:Hopper winners"><span title="Discuss this template" style=";;background:none transparent;border:none;">t</span></a></li>
<li class="nv-edit"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Template:Hopper_winners&action=edit"><span title="Edit this template" style=";;background:none transparent;border:none;">e</span></a></li>
</ul>
</div>
<div style="font-size:110%">
<a href="/wiki/Grace_Murray_Hopper_Award" title="Grace Murray Hopper Award">Grace Murray Hopper Award</a> recipients</div>
</th>
</tr>
<tr style="height:2px">
<td colspan="2"></td>
</tr>
<tr>
<td colspan="2" class="navbox-list navbox-odd hlist" style="width:100%;padding:0px">
<div style="padding:0em 0.25em">
<ul>
<li>
<a href="/wiki/Donald_Knuth" title="Donald Knuth">Knuth</a> <small>(1971)</small>
</li>
<li>
<a href="/wiki/Paul_H._Dirksen" title="Paul H. Dirksen" class="mw-redirect">Dirksen</a> <small>(1972)</small>
</li>
<li>
<a href="/wiki/Paul_H._Cress" title="Paul H. Cress">Cress</a> <small>(1972)</small>
</li>
<li>
<a href="/wiki/Lawrence_M._Breed" title="Lawrence M. Breed">Breed</a>/<a href="/wiki/Richard_H._Lathwell" title="Richard H. Lathwell">Lathwell</a>/<a href="/wiki/Roger_Moore_(computer_scientist)" title="Roger Moore (computer scientist)">Moore</a> <small>(1973)</small>
</li>
<li>
<a href="/w/index.php?title=George_N._Baird&action=edit&redlink=1" class="new" title="George N. Baird (page does not exist)">Baird</a> <small>(1974)</small>
</li>
<li>
<a href="/w/index.php?title=Allan_L._Scherr&action=edit&redlink=1" class="new" title="Allan L. Scherr (page does not exist)">Scherr</a> <small>(1975)</small>
</li>
<li>
<a href="/wiki/Edward_H._Shortliffe" title="Edward H. Shortliffe">Shortliffe</a> <small>(1976)</small>
</li>
<li>
<a href="/wiki/Ray_Kurzweil" title="Ray Kurzweil">Kurzweil</a> <small>(1978)</small>
</li>
<li>
<strong class="selflink">Wozniak</strong> <small>(1979)</small>
</li>
<li>
<a href="/wiki/Robert_M._Metcalfe" title="Robert M. Metcalfe" class="mw-redirect">Metcalfe</a> <small>(1980)</small>
</li>
<li>
<a href="/wiki/Daniel_S._Bricklin" title="Daniel S. Bricklin" class="mw-redirect">Bricklin</a> <small>(1981)</small>
</li>
<li>
<a href="/wiki/Brian_Reid_(computer_scientist)" title="Brian Reid (computer scientist)">Reid</a> <small>(1982)</small>
</li>
<li>
<a href="/wiki/Daniel_Henry_Holmes_Ingalls,_Jr." title="Daniel Henry Holmes Ingalls, Jr.">Ingalls</a> <small>(1984)</small>
</li>
<li>
<a href="/w/index.php?title=Cordell_Green&action=edit&redlink=1" class="new" title="Cordell Green (page does not exist)">Green</a> <small>(1985)</small>
</li>
<li>
<a href="/wiki/Bill_Joy" title="Bill Joy">Joy</a> <small>(1986)</small>
</li>
<li>
<a href="/wiki/John_Ousterhout" title="John Ousterhout">Ousterhout</a> <small>(1987)</small>
</li>
<li>
<a href="/wiki/Guy_L._Steele" title="Guy L. Steele" class="mw-redirect">Steele</a> <small>(1988)</small>
</li>
<li>
<a href="/wiki/W._Daniel_Hillis" title="W. Daniel Hillis" class="mw-redirect">Hillis</a> <small>(1989)</small>
</li>
<li>
<a href="/wiki/Richard_Stallman" title="Richard Stallman">Stallman</a> <small>(1990)</small>
</li>
<li>
<a href="/wiki/Feng-hsiung_Hsu" title="Feng-hsiung Hsu">Hsu</a> <small>(1991)</small>
</li>
<li>
<a href="/wiki/Bjarne_Stroustrup" title="Bjarne Stroustrup">Stroustrup</a> <small>(1993)</small>
</li>
<li>
<a href="/wiki/Shafrira_Goldwasser" title="Shafrira Goldwasser" class="mw-redirect">Goldwasser</a> <small>(1996)</small>
</li>
<li>
<a href="/wiki/Wen-mei_Hwu" title="Wen-mei Hwu">Hwu</a> <small>(1999)</small>
</li>
<li>
<a href="/wiki/Lydia_Kavraki" title="Lydia Kavraki">Kavraki</a> <small>(2000)</small>
</li>
<li>
<a href="/wiki/George_Necula" title="George Necula">Necula</a> <small>(2001)</small>
</li>
<li>
<a href="/wiki/Ramakrishnan_Srikant" title="Ramakrishnan Srikant">Srikant</a> <small>(2002)</small>
</li>
<li>
<a href="/w/index.php?title=Stephen_W._Keckler&action=edit&redlink=1" class="new" title="Stephen W. Keckler (page does not exist)">Keckler</a> <small>(2003)</small>
</li>
<li>
<a href="/wiki/Jennifer_Rexford" title="Jennifer Rexford">Rexford</a> <small>(2004)</small>
</li>
<li>
<a href="/wiki/Omer_Reingold" title="Omer Reingold">Reingold</a> <small>(2005)</small>
</li>
<li>
<a href="/wiki/Dan_Klein" title="Dan Klein">Klein</a> <small>(2006)</small>
</li>
<li>
<a href="/wiki/Vern_Paxson" title="Vern Paxson">Paxson</a> <small>(2007)</small>
</li>
<li>
<a href="/w/index.php?title=Dawson_Engler&action=edit&redlink=1" class="new" title="Dawson Engler (page does not exist)">Engler</a> <small>(2008)</small>
</li>
<li>
<a href="/wiki/Tim_Roughgarden" title="Tim Roughgarden">Roughgarden</a> <small>(2009)</small>
</li>
<li>Gentry <small>(2010)</small>
</li>
<li>
<a href="/wiki/Luis_von_Ahn" title="Luis von Ahn">Ahn</a> <small>(2011)</small>