forked from ioccc-src/winner
-
Notifications
You must be signed in to change notification settings - Fork 8
/
years.html
1719 lines (1617 loc) · 66.4 KB
/
years.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
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 xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<!-- START: two lines up starts content from: inc/top.default.html -->
<!-- END: this line ends content from: inc/top.default.html -->
<!-- START: this line starts content from: inc/head.default.html -->
<head>
<link rel="stylesheet" href="./ioccc.css">
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap" rel="stylesheet">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<title>The International Obfuscated C Code Contest</title>
<link rel="icon" type="image/x-icon" href="./favicon.ico">
<meta name="description" content="IOCCC Winning Entries by Year">
<meta name="keywords" content="IOCCC, entry, entries, IOCCC Winning Entries by Year, download IOCCC entry source, IOCCC entry source">
</head>
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<!-- !!! DO NOT MODIFY THIS FILE - This file is generated by a tool !!! -->
<!-- !!! DO NOT MODIFY THIS FILE - This file is generated by a tool !!! -->
<!-- !!! DO NOT MODIFY THIS FILE - This file is generated by a tool !!! -->
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<!-- END: this line ends content from: inc/head.default.html -->
<!-- -->
<!-- This web page was formed via the tool: bin/gen-years.sh -->
<!-- The main section of this web page came from JSON and other data files -->
<!-- -->
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<!-- The main section of this web page was generated via the tool: bin/gen-years.sh -->
<!-- The main section of this web page was generated via the tool: bin/gen-years.sh -->
<!-- The main section of this web page was generated via the tool: bin/gen-years.sh -->
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<!-- Markdown content was converted into HTML via the tool: bin/md2html.sh -->
<!-- START: this line starts content from: inc/body.default.html -->
<body>
<!-- END: this line ends content from: inc/body.default.html -->
<!-- START: this line starts content from: inc/topbar.default.html -->
<div class="theader">
<nav class="topbar">
<div class="container">
<div class="logo">
<a href="./index.html" class="logo-link">
IOCCC
</a>
</div>
<div class="topbar-items">
<div class="item">
<span class="item-header">
Entries
</span>
<div class="sub-item">
<div class="outfit-font">
<a href="./years.html" class="sub-item-link">
Winning entries
</a>
</div>
<div class="outfit-font">
<a href="./authors.html" class="sub-item-link">
Winning authors
</a>
</div>
<div class="outfit-font">
<a href="./location.html" class="sub-item-link">
Location of authors
</a>
</div>
<div class="outfit-font">
<a href="./bugs.html" class="sub-item-link">
Bugs and (mis)features
</a>
</div>
<div class="outfit-font">
<a href="./faq.html#fix_an_entry" class="sub-item-link">
Fixing entries
</a>
</div>
<div class="outfit-font">
<a href="./faq.html#fix_author" class="sub-item-link">
Updating author info
</a>
</div>
</div>
</div>
<div class="item">
<span class="item-header">
Status
</span>
<div class="sub-item">
<div class="outfit-font">
<a href="./news.html" class="sub-item-link">
News
</a>
</div>
<div class="outfit-font">
<a href="./status.html" class="sub-item-link">
Contest status
</a>
</div>
<div class="outfit-font">
<a href="./next/index.html" class="sub-item-link">
Rules and guidelines
</a>
</div>
<div class="outfit-font">
<a href="./markdown.html" class="sub-item-link">
Markdown guidelines
</a>
</div>
<div class="outfit-font">
<a href="./SECURITY.html" class="sub-item-link">
Security policy
</a>
</div>
</div>
</div>
<div class="item">
<span class="item-header">
FAQ
</span>
<div class="sub-item">
<div class="outfit-font">
<a href="./faq.html" class="sub-item-link">
Frequently Asked Questions
</a>
</div>
<div class="outfit-font">
<a href="./faq.html#submit" class="sub-item-link">
How to enter
</a>
</div>
<div class="outfit-font">
<a href="./faq.html#compiling" class="sub-item-link">
Compiling entries
</a>
</div>
<div class="outfit-font">
<a href="./faq.html#running_entries" class="sub-item-link">
Running entries
</a>
</div>
<div class="outfit-font">
<a href="./faq.html#help" class="sub-item-link">
How to help
</a>
</div>
</div>
</div>
<div class="item">
<span class="item-header">
About
</span>
<div class="sub-item">
<div class="outfit-font">
<a href="./index.html" class="sub-item-link">
Home page
</a>
</div>
<div class="outfit-font">
<a href="./about.html" class="sub-item-link">
About the IOCCC
</a>
</div>
<div class="outfit-font">
<a href="./judges.html" class="sub-item-link">
The Judges
</a>
</div>
<div class="outfit-font">
<a href="./thanks-for-help.html" class="sub-item-link">
Thanks for the help
</a>
</div>
<div class="outfit-font">
<a href="./contact.html" class="sub-item-link">
Contact us
</a>
</div>
</div>
</div>
</div>
</div>
</nav>
<div class="header-mobile-menu">
<noscript>
<a href="./nojs-menu.html" class="topbar-js-label">
Please Enable JavaScript
</a>
</noscript>
<button id="header-open-menu-button" class="topbar-mobile-menu">
<img
src="./png/hamburger-icon-open.png"
alt="hamburger style menu icon - open state"
width=48
height=48>
</button>
<button id="header-close-menu-button" class="hide-content">
<img
src="./png/hamburger-icon-closed.png"
alt="hamburger style menu icon - closed state"
width=48
height=48>
</button>
<div id="mobile-menu-panel" class="hide-content">
<div class="mobile-menu-container">
<div class="mobile-menu-wrapper">
<div class="mobile-menu-item">
Entries
</div>
<div class="mobile-submenu-wrapper">
<a class="mobile-submenu-item" href="./years.html">
Winning entries
</a>
<a class="mobile-submenu-item" href="./authors.html">
Winning authors
</a>
<a class="mobile-submenu-item" href="./location.html">
Location of authors
</a>
<a class="mobile-submenu-item" href="./bugs.html">
Bugs and (mis)features
</a>
<a class="mobile-submenu-item" href="./faq.html#fix_an_entry">
Fixing entries
</a>
<a class="mobile-submenu-item" href="./faq.html#fix_author">
Updating author info
</a>
<a class="mobile-submenu-item" href="./thanks-for-help.html">
Thanks for the help
</a>
</div>
</div>
<div class="mobile-menu-wrapper">
<div class="mobile-menu-item">
Status
</div>
<div class="mobile-submenu-wrapper">
<a class="mobile-submenu-item" href="./news.html">
News
</a>
<a class="mobile-submenu-item" href="./status.html">
Contest status
</a>
<a class="mobile-submenu-item" href="./next/index.html">
Rules and guidelines
</a>
<a class="mobile-submenu-item" href="./markdown.html">
Markdown guidelines
</a>
<a class="mobile-submenu-item" href="./SECURITY.html">
Security policy
</a>
</div>
</div>
<div class="mobile-menu-wrapper">
<div class="mobile-menu-item">
FAQ
</div>
<div class="mobile-submenu-wrapper">
<a class="mobile-submenu-item" href="./faq.html">
Frequently Asked Questions
</a>
<a class="mobile-submenu-item" href="./faq.html#submit">
How to enter
</a>
<a class="mobile-submenu-item" href="./faq.html#compiling">
Compiling entries
</a>
<a class="mobile-submenu-item" href="./faq.html#running_entries">
Running entries
</a>
<a class="mobile-submenu-item" href="./faq.html#help">
How to help
</a>
</div>
</div>
<div class="mobile-menu-wrapper">
<div class="mobile-menu-item">
About
</div>
<div class="mobile-submenu-wrapper">
<a class="mobile-submenu-item" href="./index.html">
Home page
</a>
<a class="mobile-submenu-item" href="./about.html">
About the IOCCC
</a>
<a class="mobile-submenu-item" href="./judges.html">
The Judges
</a>
<a class="mobile-submenu-item" href="./contact.html">
Contact us
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
var headerOpenMenuButton = document.getElementById("header-open-menu-button");
var headerCloseMenuButton = document.getElementById("header-close-menu-button");
var mobileMenuPanel = document.getElementById("mobile-menu-panel");
headerOpenMenuButton.addEventListener("click", () => {
headerOpenMenuButton.classList.remove("topbar-mobile-menu");
headerOpenMenuButton.classList.add("hide-content");
headerCloseMenuButton.classList.remove("hide-content");
headerCloseMenuButton.classList.add("topbar-mobile-menu");
mobileMenuPanel.classList.remove("hide-content");
mobileMenuPanel.classList.add("topbar-mobile-panel");
});
headerCloseMenuButton.addEventListener("click", () => {
headerCloseMenuButton.classList.remove("topbar-mobile-menu");
headerCloseMenuButton.classList.add("hide-content");
mobileMenuPanel.classList.add("hide-content");
mobileMenuPanel.classList.remove("topbar-mobile-panel");
headerOpenMenuButton.classList.add("topbar-mobile-menu");
headerOpenMenuButton.classList.remove("hide-content");
});
</script>
<!-- END: this line ends content from: inc/topbar.default.html -->
<!-- START: this line starts content from: inc/header.default.html -->
<div class="header">
<a href="./2011/zucker/index.html">
<img src="./png/ioccc.png"
alt="IOCCC image by Matt Zucker"
width=300
height=110>
</a>
<h1>The International Obfuscated C Code Contest</h1>
<h2>IOCCC Winning Entries by Year</h2>
</div>
<!-- END: this line ends content from: inc/header.default.html -->
<!-- START: this line starts content from: inc/navbar.empty.html -->
<div class="navbar">
<a class="Right" href="https://validator.w3.org/nu/?doc=https%3A%2F%2Fioccc-src.github.io%2Ftemp-test-ioccc%2Fyears.html">✓</a>
</div>
<!-- END: this line ends content from: inc/navbar.empty.html -->
<!-- START: this line starts content from: inc/before-content.default.html -->
<div class="content" id="content">
<!-- END: this line ends content from: inc/before-content.default.html -->
<!-- START: this line starts content for HTML phase 21 by: bin/pandoc-wrapper.sh via bin/md2html.sh -->
<!-- BEFORE: 1st line of markdown file: years.md -->
<h1 id="ioccc-winning-entries-by-year">IOCCC Winning Entries by Year</h1>
<h3 id="jump-to">Jump to:</h3>
<p><a href="#2020">2020</a> | <a href="#2019">2019</a> | <a href="#2018">2018</a> | <a href="#2015">2015</a> | <a href="#2014">2014</a> | <a href="#2013">2013</a> | <a href="#2012">2012</a> | <a href="#2011">2011</a><br><br>
<a href="#2006">2006</a> | <a href="#2005">2005</a> | <a href="#2004">2004</a> | <a href="#2001">2001</a> | <a href="#2000">2000</a> | <a href="#1998">1998</a> | <a href="#1996">1996</a> | <a href="#1995">1995</a><br><br>
<a href="#1994">1994</a> | <a href="#1993">1993</a> | <a href="#1992">1992</a> | <a href="#1991">1991</a> | <a href="#1990">1990</a> | <a href="#1989">1989</a> | <a href="#1988">1988</a> | <a href="#1987">1987</a><br><br>
<a href="#1986">1986</a> | <a href="#1985">1985</a> | <a href="#1984">1984</a></p>
<p><a href="#year_level"><strong>Year level tarballs</strong></a></p>
<div id="2020">
<h2 id="the-27th-ioccc">2020 - The 27th IOCCC</h2>
<a class="normal" href="2020/index.html">About the 27th IOCCC (2020)</a><br>
<a class="normal" href="2020/2020.tar.bz2">Download all IOCCC winning entries of 2020</a>
</div>
<ul>
<li><div id="2020_burton">
<a class="normal" href="2020/burton/index.html">2020/burton</a> - Best one liner
</div></li>
<li><div id="2020_carlini">
<a class="normal" href="2020/carlini/index.html">2020/carlini</a> - Best of Show - abuse of libc
</div></li>
<li><div id="2020_endoh1">
<a class="normal" href="2020/endoh1/index.html">2020/endoh1</a> - Most explosive
</div></li>
<li><div id="2020_endoh2">
<a class="normal" href="2020/endoh2/index.html">2020/endoh2</a> - Best perspective
</div></li>
<li><div id="2020_endoh3">
<a class="normal" href="2020/endoh3/index.html">2020/endoh3</a> - Most head-turning
</div></li>
<li><div id="2020_ferguson1">
<a class="normal" href="2020/ferguson1/index.html">2020/ferguson1</a> - Don’t tread on me award
</div></li>
<li><div id="2020_ferguson2">
<a class="normal" href="2020/ferguson2/index.html">2020/ferguson2</a> - Most enigmatic
</div></li>
<li><div id="2020_giles">
<a class="normal" href="2020/giles/index.html">2020/giles</a> - Most phony
</div></li>
<li><div id="2020_kurdyukov1">
<a class="normal" href="2020/kurdyukov1/index.html">2020/kurdyukov1</a> - Best utility
</div></li>
<li><div id="2020_kurdyukov2">
<a class="normal" href="2020/kurdyukov2/index.html">2020/kurdyukov2</a> - Least detailed
</div></li>
<li><div id="2020_kurdyukov3">
<a class="normal" href="2020/kurdyukov3/index.html">2020/kurdyukov3</a> - Bset slaml prragom
</div></li>
<li><div id="2020_kurdyukov4">
<a class="normal" href="2020/kurdyukov4/index.html">2020/kurdyukov4</a> - Best abuse of lámatyávë
</div></li>
<li><div id="2020_otterness">
<a class="normal" href="2020/otterness/index.html">2020/otterness</a> - Most percussive
</div></li>
<li><div id="2020_tsoj">
<a class="normal" href="2020/tsoj/index.html">2020/tsoj</a> - Most misleading indentation
</div></li>
<li><div id="2020_yang">
<a class="normal" href="2020/yang/index.html">2020/yang</a> - Best abuse of CPP
</div></li>
</ul>
<p> <strong>Jump to:</strong> <a href="#">top</a></p>
<div id="2019">
<h2 id="the-26th-ioccc">2019 - The 26th IOCCC</h2>
<a class="normal" href="2019/index.html">About the 26th IOCCC (2019)</a><br>
<a class="normal" href="2019/2019.tar.bz2">Download all IOCCC winning entries of 2019</a>
</div>
<ul>
<li><div id="2019_adamovsky">
<a class="normal" href="2019/adamovsky/index.html">2019/adamovsky</a> - Most functional interpreter
</div></li>
<li><div id="2019_burton">
<a class="normal" href="2019/burton/index.html">2019/burton</a> - Best one liner
</div></li>
<li><div id="2019_ciura">
<a class="normal" href="2019/ciura/index.html">2019/ciura</a> - Most alphabetic
</div></li>
<li><div id="2019_diels-grabsch1">
<a class="normal" href="2019/diels-grabsch1/index.html">2019/diels-grabsch1</a> - Best small program
</div></li>
<li><div id="2019_diels-grabsch2">
<a class="normal" href="2019/diels-grabsch2/index.html">2019/diels-grabsch2</a> - Most self-aware
</div></li>
<li><div id="2019_dogon">
<a class="normal" href="2019/dogon/index.html">2019/dogon</a> - Best use of space and time
</div></li>
<li><div id="2019_duble">
<a class="normal" href="2019/duble/index.html">2019/duble</a> - Best collaborative graphics
</div></li>
<li><div id="2019_endoh">
<a class="normal" href="2019/endoh/index.html">2019/endoh</a> - Most in need of debugging
</div></li>
<li><div id="2019_giles">
<a class="normal" href="2019/giles/index.html">2019/giles</a> - Most in need of wide space
</div></li>
<li><div id="2019_karns">
<a class="normal" href="2019/karns/index.html">2019/karns</a> - Most in need of whitespace
</div></li>
<li><div id="2019_lynn">
<a class="normal" href="2019/lynn/index.html">2019/lynn</a> - Most functional compiler
</div></li>
<li><div id="2019_mills">
<a class="normal" href="2019/mills/index.html">2019/mills</a> - Most in need to be tweeted
</div></li>
<li><div id="2019_poikola">
<a class="normal" href="2019/poikola/index.html">2019/poikola</a> - Most calendrical
</div></li>
<li><div id="2019_yang">
<a class="normal" href="2019/yang/index.html">2019/yang</a> - Most in need of transparency
</div></li>
</ul>
<p> <strong>Jump to:</strong> <a href="#">top</a></p>
<div id="2018">
<h2 id="the-25th-ioccc">2018 - The 25th IOCCC</h2>
<a class="normal" href="2018/index.html">About the 25th IOCCC (2018)</a><br>
<a class="normal" href="2018/2018.tar.bz2">Download all IOCCC winning entries of 2018</a>
</div>
<ul>
<li><div id="2018_algmyr">
<a class="normal" href="2018/algmyr/index.html">2018/algmyr</a> - Most cacophonic
</div></li>
<li><div id="2018_anderson">
<a class="normal" href="2018/anderson/index.html">2018/anderson</a> - Most able to divine code gaps
</div></li>
<li><div id="2018_bellard">
<a class="normal" href="2018/bellard/index.html">2018/bellard</a> - Most inflationary
</div></li>
<li><div id="2018_burton1">
<a class="normal" href="2018/burton1/index.html">2018/burton1</a> - Best one liner
</div></li>
<li><div id="2018_burton2">
<a class="normal" href="2018/burton2/index.html">2018/burton2</a> - Best abuse of the rules
</div></li>
<li><div id="2018_ciura">
<a class="normal" href="2018/ciura/index.html">2018/ciura</a> - Most likely to be awarded
</div></li>
<li><div id="2018_endoh1">
<a class="normal" href="2018/endoh1/index.html">2018/endoh1</a> - Best tool to reveal holes
</div></li>
<li><div id="2018_endoh2">
<a class="normal" href="2018/endoh2/index.html">2018/endoh2</a> - Best use of python
</div></li>
<li><div id="2018_ferguson">
<a class="normal" href="2018/ferguson/index.html">2018/ferguson</a> - Best use of weasel words
</div></li>
<li><div id="2018_giles">
<a class="normal" href="2018/giles/index.html">2018/giles</a> - Most unstable
</div></li>
<li><div id="2018_hou">
<a class="normal" href="2018/hou/index.html">2018/hou</a> - Most likely to top the charts
</div></li>
<li><div id="2018_mills">
<a class="normal" href="2018/mills/index.html">2018/mills</a> - Best of Show
</div></li>
<li><div id="2018_poikola">
<a class="normal" href="2018/poikola/index.html">2018/poikola</a> - Most stellar
</div></li>
<li><div id="2018_vokes">
<a class="normal" href="2018/vokes/index.html">2018/vokes</a> - Most connected
</div></li>
<li><div id="2018_yang">
<a class="normal" href="2018/yang/index.html">2018/yang</a> - Most shifty
</div></li>
</ul>
<p> <strong>Jump to:</strong> <a href="#">top</a></p>
<div id="2015">
<h2 id="the-24th-ioccc">2015 - The 24th IOCCC</h2>
<a class="normal" href="2015/index.html">About the 24th IOCCC (2015)</a><br>
<a class="normal" href="2015/2015.tar.bz2">Download all IOCCC winning entries of 2015</a>
</div>
<ul>
<li><div id="2015_burton">
<a class="normal" href="2015/burton/index.html">2015/burton</a> - Most useful
</div></li>
<li><div id="2015_dogon">
<a class="normal" href="2015/dogon/index.html">2015/dogon</a> - Most crafty
</div></li>
<li><div id="2015_duble">
<a class="normal" href="2015/duble/index.html">2015/duble</a> - Best handwriting
</div></li>
<li><div id="2015_endoh1">
<a class="normal" href="2015/endoh1/index.html">2015/endoh1</a> - Most diffused reaction
</div></li>
<li><div id="2015_endoh2">
<a class="normal" href="2015/endoh2/index.html">2015/endoh2</a> - Most overlooked obfuscation
</div></li>
<li><div id="2015_endoh3">
<a class="normal" href="2015/endoh3/index.html">2015/endoh3</a> - Back to the Future Award
</div></li>
<li><div id="2015_endoh4">
<a class="normal" href="2015/endoh4/index.html">2015/endoh4</a> - Best one liner
</div></li>
<li><div id="2015_hou">
<a class="normal" href="2015/hou/index.html">2015/hou</a> - Most well rounded hash
</div></li>
<li><div id="2015_howe">
<a class="normal" href="2015/howe/index.html">2015/howe</a> - Most different
</div></li>
<li><div id="2015_mills1">
<a class="normal" href="2015/mills1/index.html">2015/mills1</a> - For the Birds! Award
</div></li>
<li><div id="2015_mills2">
<a class="normal" href="2015/mills2/index.html">2015/mills2</a> - Most compact
</div></li>
<li><div id="2015_muth">
<a class="normal" href="2015/muth/index.html">2015/muth</a> - Most complete use of CPP
</div></li>
<li><div id="2015_schweikhardt">
<a class="normal" href="2015/schweikhardt/index.html">2015/schweikhardt</a> - Best documented
</div></li>
<li><div id="2015_yang">
<a class="normal" href="2015/yang/index.html">2015/yang</a> - Most pointed reaction
</div></li>
</ul>
<p> <strong>Jump to:</strong> <a href="#">top</a></p>
<div id="2014">
<h2 id="the-23rd-ioccc">2014 - The 23rd IOCCC</h2>
<a class="normal" href="2014/index.html">About the 23rd IOCCC (2014)</a><br>
<a class="normal" href="2014/2014.tar.bz2">Download all IOCCC winning entries of 2014</a>
</div>
<ul>
<li><div id="2014_birken">
<a class="normal" href="2014/birken/index.html">2014/birken</a> - Best use of port 1701
</div></li>
<li><div id="2014_deak">
<a class="normal" href="2014/deak/index.html">2014/deak</a> - Most underscored argument
</div></li>
<li><div id="2014_endoh1">
<a class="normal" href="2014/endoh1/index.html">2014/endoh1</a> - Most square (YODA Award)
</div></li>
<li><div id="2014_endoh2">
<a class="normal" href="2014/endoh2/index.html">2014/endoh2</a> - Best use of bioinformatics
</div></li>
<li><div id="2014_maffiodo1">
<a class="normal" href="2014/maffiodo1/index.html">2014/maffiodo1</a> - Homage to a classic game
</div></li>
<li><div id="2014_maffiodo2">
<a class="normal" href="2014/maffiodo2/index.html">2014/maffiodo2</a> - Most tweetable entry
</div></li>
<li><div id="2014_morgan">
<a class="normal" href="2014/morgan/index.html">2014/morgan</a> - Most likely to succeed
</div></li>
<li><div id="2014_sinon">
<a class="normal" href="2014/sinon/index.html">2014/sinon</a> - Best choice of optimization
</div></li>
<li><div id="2014_skeggs">
<a class="normal" href="2014/skeggs/index.html">2014/skeggs</a> - Most dynamic
</div></li>
<li><div id="2014_vik">
<a class="normal" href="2014/vik/index.html">2014/vik</a> - Best handling of beeps
</div></li>
<li><div id="2014_wiedijk">
<a class="normal" href="2014/wiedijk/index.html">2014/wiedijk</a> - Most functional
</div></li>
</ul>
<p> <strong>Jump to:</strong> <a href="#">top</a></p>
<div id="2013">
<h2 id="the-22nd-ioccc">2013 - The 22nd IOCCC</h2>
<a class="normal" href="2013/index.html">About the 22nd IOCCC (2013)</a><br>
<a class="normal" href="2013/2013.tar.bz2">Download all IOCCC winning entries of 2013</a>
</div>
<ul>
<li><div id="2013_birken">
<a class="normal" href="2013/birken/index.html">2013/birken</a> - Best painting tool
</div></li>
<li><div id="2013_cable1">
<a class="normal" href="2013/cable1/index.html">2013/cable1</a> - Most partisan one liner
</div></li>
<li><div id="2013_cable2">
<a class="normal" href="2013/cable2/index.html">2013/cable2</a> - Best of Show
</div></li>
<li><div id="2013_cable3">
<a class="normal" href="2013/cable3/index.html">2013/cable3</a> - Largest small system emulator
</div></li>
<li><div id="2013_dlowe">
<a class="normal" href="2013/dlowe/index.html">2013/dlowe</a> - Best sparkling utility
</div></li>
<li><div id="2013_endoh1">
<a class="normal" href="2013/endoh1/index.html">2013/endoh1</a> - Most lazy SKIer
</div></li>
<li><div id="2013_endoh2">
<a class="normal" href="2013/endoh2/index.html">2013/endoh2</a> - Most recyclable
</div></li>
<li><div id="2013_endoh3">
<a class="normal" href="2013/endoh3/index.html">2013/endoh3</a> - Most tweetable one liner
</div></li>
<li><div id="2013_endoh4">
<a class="normal" href="2013/endoh4/index.html">2013/endoh4</a> - Most solid
</div></li>
<li><div id="2013_hou">
<a class="normal" href="2013/hou/index.html">2013/hou</a> - Best use of one infinite loop
</div></li>
<li><div id="2013_mills">
<a class="normal" href="2013/mills/index.html">2013/mills</a> - Most timely rendered
</div></li>
<li><div id="2013_misaka">
<a class="normal" href="2013/misaka/index.html">2013/misaka</a> - Most catty
</div></li>
<li><div id="2013_morgan1">
<a class="normal" href="2013/morgan1/index.html">2013/morgan1</a> - Smallest large system simulator
</div></li>
<li><div id="2013_morgan2">
<a class="normal" href="2013/morgan2/index.html">2013/morgan2</a> - Most playfully versatile
</div></li>
<li><div id="2013_robison">
<a class="normal" href="2013/robison/index.html">2013/robison</a> - Most poetic use of strings
</div></li>
</ul>
<p> <strong>Jump to:</strong> <a href="#">top</a></p>
<div id="2012">
<h2 id="the-21st-ioccc">2012 - The 21st IOCCC</h2>
<a class="normal" href="2012/index.html">About the 21st IOCCC (2012)</a><br>
<a class="normal" href="2012/2012.tar.bz2">Download all IOCCC winning entries of 2012</a>
</div>
<ul>
<li><div id="2012_blakely">
<a class="normal" href="2012/blakely/index.html">2012/blakely</a> - Most GIFted expressions
</div></li>
<li><div id="2012_deckmyn">
<a class="normal" href="2012/deckmyn/index.html">2012/deckmyn</a> - Most notable and best tool
</div></li>
<li><div id="2012_dlowe">
<a class="normal" href="2012/dlowe/index.html">2012/dlowe</a> - Best way to lose a life
</div></li>
<li><div id="2012_endoh1">
<a class="normal" href="2012/endoh1/index.html">2012/endoh1</a> - Most complex ASCII fluid - Honorable mention
</div></li>
<li><div id="2012_endoh2">
<a class="normal" href="2012/endoh2/index.html">2012/endoh2</a> - PiE in the sky award
</div></li>
<li><div id="2012_grothe">
<a class="normal" href="2012/grothe/index.html">2012/grothe</a> - Most conspiratorial
</div></li>
<li><div id="2012_hamano">
<a class="normal" href="2012/hamano/index.html">2012/hamano</a> - Silver Award - Most elementary use of C
</div></li>
<li><div id="2012_hou">
<a class="normal" href="2012/hou/index.html">2012/hou</a> - Most useful obfuscation
</div></li>
<li><div id="2012_kang">
<a class="normal" href="2012/kang/index.html">2012/kang</a> - Best short program
</div></li>
<li><div id="2012_konno">
<a class="normal" href="2012/konno/index.html">2012/konno</a> - Best one liner
</div></li>
<li><div id="2012_omoikane">
<a class="normal" href="2012/omoikane/index.html">2012/omoikane</a> - Most surreptitious
</div></li>
<li><div id="2012_tromp">
<a class="normal" href="2012/tromp/index.html">2012/tromp</a> - Most functional
</div></li>
<li><div id="2012_vik">
<a class="normal" href="2012/vik/index.html">2012/vik</a> - Bronze Award - Best use of cocoa
</div></li>
<li><div id="2012_zeitak">
<a class="normal" href="2012/zeitak/index.html">2012/zeitak</a> - Gold Award - Balanced use of obfuscation
</div></li>
</ul>
<p> <strong>Jump to:</strong> <a href="#">top</a></p>
<div id="2011">
<h2 id="the-20th-ioccc">2011 - The 20th IOCCC</h2>
<a class="normal" href="2011/index.html">About the 20th IOCCC (2011)</a><br>
<a class="normal" href="2011/2011.tar.bz2">Download all IOCCC winning entries of 2011</a>
</div>
<ul>
<li><div id="2011_akari">
<a class="normal" href="2011/akari/index.html">2011/akari</a> - Best of Show - Most Shrinkable
</div></li>
<li><div id="2011_blakely">
<a class="normal" href="2011/blakely/index.html">2011/blakely</a> - Most devolving
</div></li>
<li><div id="2011_borsanyi">
<a class="normal" href="2011/borsanyi/index.html">2011/borsanyi</a> - Best data utility
</div></li>
<li><div id="2011_dlowe">
<a class="normal" href="2011/dlowe/index.html">2011/dlowe</a> - Most self deprecating
</div></li>
<li><div id="2011_eastman">
<a class="normal" href="2011/eastman/index.html">2011/eastman</a> - Best ball
</div></li>
<li><div id="2011_fredriksson">
<a class="normal" href="2011/fredriksson/index.html">2011/fredriksson</a> - Most useful
</div></li>
<li><div id="2011_goren">
<a class="normal" href="2011/goren/index.html">2011/goren</a> - Most artistic
</div></li>
<li><div id="2011_hamaji">
<a class="normal" href="2011/hamaji/index.html">2011/hamaji</a> - Best solved puzzle
</div></li>
<li><div id="2011_hou">
<a class="normal" href="2011/hou/index.html">2011/hou</a> - Best self documenting program
</div></li>
<li><div id="2011_konno">
<a class="normal" href="2011/konno/index.html">2011/konno</a> - Best one liner
</div></li>
<li><div id="2011_richards">
<a class="normal" href="2011/richards/index.html">2011/richards</a> - Most surprisingly portable
</div></li>
<li><div id="2011_toledo">
<a class="normal" href="2011/toledo/index.html">2011/toledo</a> - Best non-chess game
</div></li>
<li><div id="2011_vik">
<a class="normal" href="2011/vik/index.html">2011/vik</a> - Most sound
</div></li>
<li><div id="2011_zucker">
<a class="normal" href="2011/zucker/index.html">2011/zucker</a> - Most shiny
</div></li>
</ul>
<p> <strong>Jump to:</strong> <a href="#">top</a></p>
<div id="2006">
<h2 id="the-19th-ioccc">2006 - The 19th IOCCC</h2>
<a class="normal" href="2006/index.html">About the 19th IOCCC (2006)</a><br>
<a class="normal" href="2006/2006.tar.bz2">Download all IOCCC winning entries of 2006</a>
</div>
<ul>
<li><div id="2006_birken">
<a class="normal" href="2006/birken/index.html">2006/birken</a> - EDAMAME Award
</div></li>
<li><div id="2006_borsanyi">
<a class="normal" href="2006/borsanyi/index.html">2006/borsanyi</a> - Most useful
</div></li>
<li><div id="2006_grothe">
<a class="normal" href="2006/grothe/index.html">2006/grothe</a> - Most obfuscated audio
</div></li>
<li><div id="2006_hamre">
<a class="normal" href="2006/hamre/index.html">2006/hamre</a> - Most irrational
</div></li>
<li><div id="2006_meyer">
<a class="normal" href="2006/meyer/index.html">2006/meyer</a> - Best game
</div></li>
<li><div id="2006_monge">
<a class="normal" href="2006/monge/index.html">2006/monge</a> - Best compiled graphics
</div></li>
<li><div id="2006_night">
<a class="normal" href="2006/night/index.html">2006/night</a> - Best abuse of computation
</div></li>
<li><div id="2006_sloane">
<a class="normal" href="2006/sloane/index.html">2006/sloane</a> - Homer’s favorite
</div></li>
<li><div id="2006_stewart">
<a class="normal" href="2006/stewart/index.html">2006/stewart</a> - Best computed graphics
</div></li>
<li><div id="2006_sykes1">
<a class="normal" href="2006/sykes1/index.html">2006/sykes1</a> - Best assembler
</div></li>
<li><div id="2006_sykes2">
<a class="normal" href="2006/sykes2/index.html">2006/sykes2</a> - Best one liner
</div></li>
<li><div id="2006_toledo1">
<a class="normal" href="2006/toledo1/index.html">2006/toledo1</a> - Best small program
</div></li>
<li><div id="2006_toledo2">
<a class="normal" href="2006/toledo2/index.html">2006/toledo2</a> - Best of Show
</div></li>
<li><div id="2006_toledo3">
<a class="normal" href="2006/toledo3/index.html">2006/toledo3</a> - Most portable chess set
</div></li>
</ul>
<p> <strong>Jump to:</strong> <a href="#">top</a></p>
<div id="2005">
<h2 id="the-18th-ioccc">2005 - The 18th IOCCC</h2>
<a class="normal" href="2005/index.html">About the 18th IOCCC (2005)</a><br>
<a class="normal" href="2005/2005.tar.bz2">Download all IOCCC winning entries of 2005</a>
</div>
<ul>
<li><div id="2005_aidan">
<a class="normal" href="2005/aidan/index.html">2005/aidan</a> - Most ingenious puzzle solution
</div></li>
<li><div id="2005_anon">
<a class="normal" href="2005/anon/index.html">2005/anon</a> - Best 3D puzzle
</div></li>
<li><div id="2005_boutines">
<a class="normal" href="2005/boutines/index.html">2005/boutines</a> - Most superfluous output
</div></li>
<li><div id="2005_chia">
<a class="normal" href="2005/chia/index.html">2005/chia</a> - Most ambiguous language
</div></li>
<li><div id="2005_giljade">
<a class="normal" href="2005/giljade/index.html">2005/giljade</a> - Best 2D puzzle
</div></li>
<li><div id="2005_jetro">
<a class="normal" href="2005/jetro/index.html">2005/jetro</a> - Most sonorous output
</div></li>
<li><div id="2005_klausler">
<a class="normal" href="2005/klausler/index.html">2005/klausler</a> - Abuse of the rules
</div></li>
<li><div id="2005_mikeash">
<a class="normal" href="2005/mikeash/index.html">2005/mikeash</a> - Best use of parenthesis
</div></li>
<li><div id="2005_mynx">
<a class="normal" href="2005/mynx/index.html">2005/mynx</a> - Best use of the WWW
</div></li>
<li><div id="2005_persano">
<a class="normal" href="2005/persano/index.html">2005/persano</a> - Best of Show
</div></li>
<li><div id="2005_sykes">
<a class="normal" href="2005/sykes/index.html">2005/sykes</a> - Best emulator
</div></li>
<li><div id="2005_timwi">
<a class="normal" href="2005/timwi/index.html">2005/timwi</a> - Most discourteous interpreter
</div></li>
<li><div id="2005_toledo">
<a class="normal" href="2005/toledo/index.html">2005/toledo</a> - Best game
</div></li>
<li><div id="2005_vik">
<a class="normal" href="2005/vik/index.html">2005/vik</a> - Most circuitous walk
</div></li>
<li><div id="2005_vince">
<a class="normal" href="2005/vince/index.html">2005/vince</a> - Most beauteous visuals
</div></li>
</ul>
<p> <strong>Jump to:</strong> <a href="#">top</a></p>
<div id="2004">
<h2 id="the-17th-ioccc">2004 - The 17th IOCCC</h2>
<a class="normal" href="2004/index.html">About the 17th IOCCC (2004)</a><br>
<a class="normal" href="2004/2004.tar.bz2">Download all IOCCC winning entries of 2004</a>
</div>
<ul>
<li><div id="2004_anonymous">
<a class="normal" href="2004/anonymous/index.html">2004/anonymous</a> - Best use of ‘Precious’ Lines
</div></li>
<li><div id="2004_arachnid">
<a class="normal" href="2004/arachnid/index.html">2004/arachnid</a> - Best use of vision
</div></li>
<li><div id="2004_burley">
<a class="normal" href="2004/burley/index.html">2004/burley</a> - Best calculated risk
</div></li>
<li><div id="2004_gavare">
<a class="normal" href="2004/gavare/index.html">2004/gavare</a> - Best use of light and spheres
</div></li>
<li><div id="2004_gavin">
<a class="normal" href="2004/gavin/index.html">2004/gavin</a> - Best of Show
</div></li>
<li><div id="2004_hibachi">
<a class="normal" href="2004/hibachi/index.html">2004/hibachi</a> - Best abuse of the guidelines
</div></li>
<li><div id="2004_hoyle">
<a class="normal" href="2004/hoyle/index.html">2004/hoyle</a> - Most functional output
</div></li>
<li><div id="2004_jdalbec">
<a class="normal" href="2004/jdalbec/index.html">2004/jdalbec</a> - Best abuse of the periodic table
</div></li>
<li><div id="2004_kopczynski">
<a class="normal" href="2004/kopczynski/index.html">2004/kopczynski</a> - Best one liner
</div></li>
<li><div id="2004_newbern">
<a class="normal" href="2004/newbern/index.html">2004/newbern</a> - Best font engine
</div></li>
<li><div id="2004_omoikane">
<a class="normal" href="2004/omoikane/index.html">2004/omoikane</a> - Best utility
</div></li>
<li><div id="2004_schnitzi">
<a class="normal" href="2004/schnitzi/index.html">2004/schnitzi</a> - Best non-use of curses
</div></li>
<li><div id="2004_sds">
<a class="normal" href="2004/sds/index.html">2004/sds</a> - Best abuse of indentation
</div></li>
<li><div id="2004_vik1">
<a class="normal" href="2004/vik1/index.html">2004/vik1</a> - Best X11 game
</div></li>
<li><div id="2004_vik2">
<a class="normal" href="2004/vik2/index.html">2004/vik2</a> - Best abuse of CPP
</div></li>
</ul>
<p> <strong>Jump to:</strong> <a href="#">top</a></p>
<div id="2001">
<h2 id="the-16th-ioccc">2001 - The 16th IOCCC</h2>
<a class="normal" href="2001/index.html">About the 16th IOCCC (2001)</a><br>
<a class="normal" href="2001/2001.tar.bz2">Download all IOCCC winning entries of 2001</a>
</div>
<ul>
<li><div id="2001_anonymous">
<a class="normal" href="2001/anonymous/index.html">2001/anonymous</a> - Dishonorable mention
</div></li>
<li><div id="2001_bellard">
<a class="normal" href="2001/bellard/index.html">2001/bellard</a> - Best abuse of the rules