-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathurls.html
2846 lines (2846 loc) · 192 KB
/
urls.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
<a href="https://blog.codinghorror.com/the-cloud-is-just-someone-elses-computer/">The Cloud Is Just Someone Else's Computer</a> <span> 17 Feb 2019</span>
<br>
<a href="https://blog.codinghorror.com/what-does-stack-overflow-want-to-be-when-it-grows-up/">What does Stack Overflow want to be when it grows up?</a> <span> 22 Oct 2018</span>
<br>
<a href="https://blog.codinghorror.com/there-is-no-longer-any-such-thing-as-computer-security/">There is no longer any such thing as Computer Security</a> <span> 21 Sep 2018</span>
<br>
<a href="https://blog.codinghorror.com/to-serve-man-with-software/">To Serve Man, with Software</a> <span> 31 Dec 2017</span>
<br>
<a href="https://blog.codinghorror.com/the-existential-terror-of-battle-royale/">The Existential Terror of Battle Royale</a> <span> 5 Nov 2017</span>
<br>
<a href="https://blog.codinghorror.com/hacker-hack-thyself/">Hacker, Hack Thyself</a> <span> 2 Jun 2017</span>
<br>
<a href="https://blog.codinghorror.com/thunderbolting-your-video-card/">Thunderbolting Your Video Card</a> <span> 24 Mar 2017</span>
<br>
<a href="https://blog.codinghorror.com/password-rules-are-bullshit/">Password Rules Are Bullshit</a> <span> 10 Mar 2017</span>
<br>
<a href="https://blog.codinghorror.com/im-loyal-to-nothing-except-the-dream/">I'm Loyal to Nothing Except the Dream</a> <span> 30 Jan 2017</span>
<br>
<a href="https://blog.codinghorror.com/an-inferno-on-the-head-of-a-pin/">An Inferno on the Head of a Pin</a> <span> 17 Jan 2017</span>
<br>
<a href="https://blog.codinghorror.com/lets-encrypt-everything/">Let's Encrypt Everything</a> <span> 23 Nov 2016</span>
<br>
<a href="https://blog.codinghorror.com/your-digital-pinball-machine/">Your Digital Pinball Machine</a> <span> 2 Nov 2016</span>
<br>
<a href="https://blog.codinghorror.com/can-software-make-you-less-racist/">Can Software Make You Less Racist?</a> <span> 25 Aug 2016</span>
<br>
<a href="https://blog.codinghorror.com/the-raspberry-pi-has-revolutionized-emulation/">The Raspberry Pi Has Revolutionized Emulation</a> <span> 24 Jul 2016</span>
<br>
<a href="https://blog.codinghorror.com/the-golden-age-of-x86-gaming/">The Golden Age of x86 Gaming</a> <span> 20 May 2016</span>
<br>
<a href="https://blog.codinghorror.com/your-own-personal-wifi-storage/">Your Own Personal WiFi Storage</a> <span> 7 May 2016</span>
<br>
<a href="https://blog.codinghorror.com/they-have-to-be-monsters/">They Have To Be Monsters</a> <span> 29 Apr 2016</span>
<br>
<a href="https://blog.codinghorror.com/heres-the-programming-game-you-never-asked-for/">Here's The Programming Game You Never Asked For</a> <span> 15 Apr 2016</span>
<br>
<a href="https://blog.codinghorror.com/thanks-for-ruining-another-game-forever-computers/">Thanks For Ruining Another Game Forever, Computers</a> <span> 25 Mar 2016</span>
<br>
<a href="https://blog.codinghorror.com/we-hire-the-best-just-like-everyone-else/">We Hire the Best, Just Like Everyone Else</a> <span> 4 Mar 2016</span>
<br>
<a href="https://blog.codinghorror.com/is-your-computer-stable/">Is Your Computer Stable?</a> <span> 14 Feb 2016</span>
<br>
<a href="https://blog.codinghorror.com/the-scooter-computer/">The Scooter Computer</a> <span> 3 Feb 2016</span>
<br>
<a href="https://blog.codinghorror.com/zopfli-optimization-literally-free-bandwidth/">Zopfli Optimization: Literally Free Bandwidth</a> <span> 2 Jan 2016</span>
<br>
<a href="https://blog.codinghorror.com/the-hugging-will-continue-until-morale-improves/">The Hugging Will Continue Until Morale Improves</a> <span> 4 Dec 2015</span>
<br>
<a href="https://blog.codinghorror.com/the-2016-htpc-build/">The 2016 HTPC Build</a> <span> 30 Nov 2015</span>
<br>
<a href="https://blog.codinghorror.com/to-ecc-or-not-to-ecc/">To ECC or Not To ECC</a> <span> 19 Nov 2015</span>
<br>
<a href="https://blog.codinghorror.com/building-a-pc-part-viii-iterating/">Building a PC, Part VIII: Iterating</a> <span> 17 Sep 2015</span>
<br>
<a href="https://blog.codinghorror.com/our-brave-new-world-of-4k-displays/">Our Brave New World of 4K Displays</a> <span> 18 Aug 2015</span>
<br>
<a href="https://blog.codinghorror.com/welcome-to-the-internet-of-compromised-things/">Welcome to The Internet of Compromised Things</a> <span> 8 Aug 2015</span>
<br>
<a href="https://blog.codinghorror.com/i-tried-vr-and-it-was-just-ok/">I Tried VR and It Was Just OK</a> <span> 5 Aug 2015</span>
<br>
<a href="https://blog.codinghorror.com/doing-terrible-things-to-your-code/">Doing Terrible Things To Your Code</a> <span> 30 Jul 2015</span>
<br>
<a href="https://blog.codinghorror.com/what-is-trolling/">What is Trolling?</a> <span> 30 Apr 2015</span>
<br>
<a href="https://blog.codinghorror.com/your-password-is-too-damn-short/">Your Password is Too Damn Short</a> <span> 23 Apr 2015</span>
<br>
<a href="https://blog.codinghorror.com/given-enough-money-all-bugs-are-shallow/">Given Enough Money, All Bugs Are Shallow</a> <span> 3 Apr 2015</span>
<br>
<a href="https://blog.codinghorror.com/toward-a-better-markdown-tutorial/">Toward a Better Markdown Tutorial</a> <span> 28 Mar 2015</span>
<br>
<a href="https://blog.codinghorror.com/our-programs-are-fun-to-use/">Our Programs Are Fun To Use</a> <span> 9 Mar 2015</span>
<br>
<a href="https://blog.codinghorror.com/the-god-login/">The God Login</a> <span> 9 Jan 2015</span>
<br>
<a href="https://blog.codinghorror.com/the-evolution-of-eink/">The Evolution of eInk</a> <span> 15 Dec 2014</span>
<br>
<a href="https://blog.codinghorror.com/because-reading-is-fundamental-2/">Because Reading is Fundamental</a> <span> 26 Nov 2014</span>
<br>
<a href="https://blog.codinghorror.com/the-tablet-turning-point/">The Tablet Turning Point</a> <span> 11 Nov 2014</span>
<br>
<a href="https://blog.codinghorror.com/what-if-we-could-weaponize-empathy/">What If We Could Weaponize Empathy?</a> <span> 23 Oct 2014</span>
<br>
<a href="https://blog.codinghorror.com/your-community-door/">Your Community Door</a> <span> 20 Oct 2014</span>
<br>
<a href="https://blog.codinghorror.com/level-one-the-intro-stage/">Level One: The Intro Stage</a> <span> 9 Oct 2014</span>
<br>
<a href="https://blog.codinghorror.com/standard-markdown-is-now-common-markdown/">Standard Markdown is now Common Markdown</a> <span> 4 Sep 2014</span>
<br>
<a href="https://blog.codinghorror.com/standard-flavored-markdown/">Standard Flavored Markdown</a> <span> 3 Sep 2014</span>
<br>
<a href="https://blog.codinghorror.com/the-just-in-time-theory/">The "Just In Time" Theory of User Behavior</a> <span> 17 Jul 2014</span>
<br>
<a href="https://blog.codinghorror.com/the-infinite-space-between-words/">The Infinite Space Between Words</a> <span> 16 May 2014</span>
<br>
<a href="https://blog.codinghorror.com/what-can-men-do/">What Can Men Do?</a> <span> 25 Apr 2014</span>
<br>
<a href="https://blog.codinghorror.com/three-things/">Three Things</a> <span> 16 Apr 2014</span>
<br>
<a href="https://blog.codinghorror.com/please-read-the-comments/">Please Read The Comments</a> <span> 19 Mar 2014</span>
<br>
<a href="https://blog.codinghorror.com/the-trap-you-set-for-yourself/">The Trap You Set For Yourself</a> <span> 17 Mar 2014</span>
<br>
<a href="https://blog.codinghorror.com/10-years-of-coding-horror/">10 Years of Coding Horror</a> <span> 28 Feb 2014</span>
<br>
<a href="https://blog.codinghorror.com/app-pocalypse-now/">App-pocalypse Now</a> <span> 24 Feb 2014</span>
<br>
<a href="https://blog.codinghorror.com/complaint-driven-development/">Complaint-Driven Development</a> <span> 18 Feb 2014</span>
<br>
<a href="https://blog.codinghorror.com/the-road-to-vr/">The Road to VR</a> <span> 16 Feb 2014</span>
<br>
<a href="https://blog.codinghorror.com/why-does-windows-have-terrible-battery-life/">Why Does Windows Have Terrible Battery Life?</a> <span> 21 Oct 2013</span>
<br>
<a href="https://blog.codinghorror.com/you-dont-need-millions-of-dollars/">You Don't Need Millions of Dollars</a> <span> 18 Oct 2013</span>
<br>
<a href="https://blog.codinghorror.com/updating-your-utility-belt/">Updating Your Utility Belt</a> <span> 14 Oct 2013</span>
<br>
<a href="https://blog.codinghorror.com/the-2013-htpc-build/">The 2013 HTPC Build</a> <span> 17 Sep 2013</span>
<br>
<a href="https://blog.codinghorror.com/the-code-keyboard/">The CODE Keyboard</a> <span> 27 Aug 2013</span>
<br>
<a href="https://blog.codinghorror.com/rule-of-three/">The Rule of Three</a> <span> 18 Jul 2013</span>
<br>
<a href="https://blog.codinghorror.com/so-you-dont-want-to-be-a-programmer-after-all/">So You Don't Want to be a Programmer After All</a> <span> 29 Apr 2013</span>
<br>
<a href="https://blog.codinghorror.com/why-ruby/">Why Ruby?</a> <span> 22 Mar 2013</span>
<br>
<a href="https://blog.codinghorror.com/civilized-discourse-construction-kit/">Civilized Discourse Construction Kit</a> <span> 5 Feb 2013</span>
<br>
<a href="https://blog.codinghorror.com/the-end-of-ragequitting/">The End of Ragequitting</a> <span> 21 Jan 2013</span>
<br>
<a href="https://blog.codinghorror.com/web-discussions-flat-by-design/">Web Discussions: Flat by Design</a> <span> 13 Dec 2012</span>
<br>
<a href="https://blog.codinghorror.com/the-organism-will-do-what-it-damn-well-pleases/">The Organism Will Do Whatever It Damn Well Pleases</a> <span> 1 Dec 2012</span>
<br>
<a href="https://blog.codinghorror.com/for-a-bit-of-colored-ribbon/">For a Bit of Colored Ribbon</a> <span> 26 Nov 2012</span>
<br>
<a href="https://blog.codinghorror.com/touch-laptops/">Touch Laptops</a> <span> 19 Nov 2012</span>
<br>
<a href="https://blog.codinghorror.com/a-ssd-in-your-pocket/">A SSD in Your Pocket</a> <span> 13 Nov 2012</span>
<br>
<a href="https://blog.codinghorror.com/do-you-wanna-touch/">Do You Wanna Touch</a> <span> 1 Nov 2012</span>
<br>
<a href="https://blog.codinghorror.com/the-future-of-markdown/">The Future of Markdown</a> <span> 25 Oct 2012</span>
<br>
<a href="https://blog.codinghorror.com/judging-websites/">Judging Websites</a> <span> 16 Oct 2012</span>
<br>
<a href="https://blog.codinghorror.com/building-servers-for-fun-and-prof-ok-maybe-just-for-fun/">Building Servers for Fun and Prof... OK, Maybe Just for Fun</a> <span> 15 Oct 2012</span>
<br>
<a href="https://blog.codinghorror.com/todont/">Todon't</a> <span> 4 Oct 2012</span>
<br>
<a href="https://blog.codinghorror.com/the-pc-is-over/">The PC is Over</a> <span> 1 Oct 2012</span>
<br>
<a href="https://blog.codinghorror.com/somebody-is-to-blame-for-this/">Somebody is to Blame for This</a> <span> 26 Sep 2012</span>
<br>
<a href="https://blog.codinghorror.com/the-last-pc-laptop/">The Last PC Laptop</a> <span> 23 Sep 2012</span>
<br>
<a href="https://blog.codinghorror.com/computer-crime-then-and-now/">Computer Crime, Then and Now</a> <span> 12 Sep 2012</span>
<br>
<a href="https://blog.codinghorror.com/i-was-a-teenage-hacker/">I Was a Teenage Hacker</a> <span> 8 Aug 2012</span>
<br>
<a href="https://blog.codinghorror.com/today-is-goof-off-at-work-day/">Today is Goof Off at Work Day</a> <span> 1 Aug 2012</span>
<br>
<a href="https://blog.codinghorror.com/the-ips-lcd-revolution/">The IPS LCD Revolution</a> <span> 26 Jul 2012</span>
<br>
<a href="https://blog.codinghorror.com/but-you-did-not-persuade-me/">But You Did Not Persuade Me</a> <span> 23 Jul 2012</span>
<br>
<a href="https://blog.codinghorror.com/new-programming-jargon/">New Programming Jargon</a> <span> 20 Jul 2012</span>
<br>
<a href="https://blog.codinghorror.com/coding-horror-the-book/">Coding Horror: The Book</a> <span> 10 Jul 2012</span>
<br>
<a href="https://blog.codinghorror.com/betting-the-company-on-windows-8/">Betting the Company on Windows 8</a> <span> 9 Jul 2012</span>
<br>
<a href="https://blog.codinghorror.com/the-php-singularity/">The PHP Singularity</a> <span> 29 Jun 2012</span>
<br>
<a href="https://blog.codinghorror.com/concluding-the-great-mp3-bitrate-experiment/">Concluding the Great MP3 Bitrate Experiment</a> <span> 27 Jun 2012</span>
<br>
<a href="https://blog.codinghorror.com/the-great-mp3-bitrate-experiment/">The Great MP3 Bitrate Experiment</a> <span> 21 Jun 2012</span>
<br>
<a href="https://blog.codinghorror.com/because-everyone-still-needs-a-router/">Because Everyone (Still) Needs a Router</a> <span> 18 Jun 2012</span>
<br>
<a href="https://blog.codinghorror.com/how-to-talk-to-human-beings/">How to Talk to Human Beings</a> <span> 14 Jun 2012</span>
<br>
<a href="https://blog.codinghorror.com/how-to-stop-sucking-and-be-awesome-instead/">How to Stop Sucking and Be Awesome Instead</a> <span> 31 May 2012</span>
<br>
<a href="https://blog.codinghorror.com/so-you-want-to-be-a-programmer/">So You Want to be a Programmer</a> <span> 25 May 2012</span>
<br>
<a href="https://blog.codinghorror.com/the-eternal-lorem-ipsum/">The Eternal Lorem Ipsum</a> <span> 19 May 2012</span>
<br>
<a href="https://blog.codinghorror.com/please-dont-learn-to-code/">Please Don't Learn to Code</a> <span> 15 May 2012</span>
<br>
<a href="https://blog.codinghorror.com/this-is-all-your-app-is-a-collection-of-tiny-details/">This Is All Your App Is: a Collection of Tiny Details</a> <span> 7 May 2012</span>
<br>
<a href="https://blog.codinghorror.com/buying-happiness/">Buying Happiness</a> <span> 3 May 2012</span>
<br>
<a href="https://blog.codinghorror.com/trust-me-im-lying/">Trust Me, I'm Lying</a> <span> 1 May 2012</span>
<br>
<a href="https://blog.codinghorror.com/geekatoo-the-geek-bat-signal/">Geekatoo, the Geek Bat-Signal</a> <span> 26 Apr 2012</span>
<br>
<a href="https://blog.codinghorror.com/will-apps-kill-websites/">Will Apps Kill Websites?</a> <span> 23 Apr 2012</span>
<br>
<a href="https://blog.codinghorror.com/make-your-email-hacker-proof/">Make Your Email Hacker Proof</a> <span> 17 Apr 2012</span>
<br>
<a href="https://blog.codinghorror.com/learn-to-read-the-source-luke/">Learn to Read the Source, Luke</a> <span> 16 Apr 2012</span>
<br>
<a href="https://blog.codinghorror.com/books-bits-vs-atoms/">Books: Bits vs. Atoms</a> <span> 10 Apr 2012</span>
<br>
<a href="https://blog.codinghorror.com/speed-hashing/">Speed Hashing</a> <span> 6 Apr 2012</span>
<br>
<a href="https://blog.codinghorror.com/preserving-the-internet-and-everything-else/">Preserving The Internet... and Everything Else</a> <span> 2 Apr 2012</span>
<br>
<a href="https://blog.codinghorror.com/visualizing-code-to-fail-faster/">Visualizing Code to Fail Faster</a> <span> 29 Mar 2012</span>
<br>
<a href="https://blog.codinghorror.com/the-end-of-pagination/">The End of Pagination</a> <span> 27 Mar 2012</span>
<br>
<a href="https://blog.codinghorror.com/what-you-cant-see-you-cant-get/">What You Can't See You Can't Get</a> <span> 23 Mar 2012</span>
<br>
<a href="https://blog.codinghorror.com/welcome-to-the-post-pc-era/">Welcome to the Post PC Era</a> <span> 19 Mar 2012</span>
<br>
<a href="https://blog.codinghorror.com/rubber-duck-problem-solving/">Rubber Duck Problem Solving</a> <span> 13 Mar 2012</span>
<br>
<a href="https://blog.codinghorror.com/how-to-hire-a-programmer/">How to Hire a Programmer</a> <span> 5 Mar 2012</span>
<br>
<a href="https://blog.codinghorror.com/should-all-web-traffic-be-encrypted/">Should All Web Traffic Be Encrypted?</a> <span> 23 Feb 2012</span>
<br>
<a href="https://blog.codinghorror.com/meetings-where-work-goes-to-die/">Meetings: Where Work Goes to Die</a> <span> 14 Feb 2012</span>
<br>
<a href="https://blog.codinghorror.com/farewell-stack-exchange/">Farewell Stack Exchange</a> <span> 6 Feb 2012</span>
<br>
<a href="https://blog.codinghorror.com/listen-to-your-community-but-dont-let-them-tell-you-what-to-do/">Listen to Your Community, But Don't Let Them Tell You What to Do</a> <span> 3 Feb 2012</span>
<br>
<a href="https://blog.codinghorror.com/the-one-button-mystique/">The One Button Mystique</a> <span> 1 Feb 2012</span>
<br>
<a href="https://blog.codinghorror.com/defeating-sopa-and-pipa-isnt-enough/">Defeating SOPA and PIPA Isn't Enough</a> <span> 18 Jan 2012</span>
<br>
<a href="https://blog.codinghorror.com/building-social-software-for-the-anti-social/">Building Social Software for the Anti-Social</a> <span> 19 Dec 2011</span>
<br>
<a href="https://blog.codinghorror.com/gifts-for-geeks-2011-edition/">Gifts for Geeks, 2011 Edition</a> <span> 13 Dec 2011</span>
<br>
<a href="https://blog.codinghorror.com/fast-approximate-anti-aliasing-fxaa/">Fast Approximate Anti-Aliasing (FXAA)</a> <span> 7 Dec 2011</span>
<br>
<a href="https://blog.codinghorror.com/bias-lighting/">Bias Lighting</a> <span> 7 Nov 2011</span>
<br>
<a href="https://blog.codinghorror.com/on-parenthood/">On Parenthood</a> <span> 24 Oct 2011</span>
<br>
<a href="https://blog.codinghorror.com/multiple-video-cards/">Multiple Video Cards</a> <span> 17 Oct 2011</span>
<br>
<a href="https://blog.codinghorror.com/serving-at-the-pleasure-of-the-king/">Serving at the Pleasure of the King</a> <span> 15 Oct 2011</span>
<br>
<a href="https://blog.codinghorror.com/the-gamification/">The Gamification</a> <span> 12 Oct 2011</span>
<br>
<a href="https://blog.codinghorror.com/cutting-the-gordian-knot-of-web-identity/">Cutting the Gordian Knot of Web Identity</a> <span> 6 Sep 2011</span>
<br>
<a href="https://blog.codinghorror.com/nobodys-going-to-help-you-and-thats-awesome/">Nobody's Going to Help You, and That's Awesome</a> <span> 27 Jul 2011</span>
<br>
<a href="https://blog.codinghorror.com/building-a-pc-part-vii-rebooting/">Building a PC, Part VII: Rebooting</a> <span> 18 Jul 2011</span>
<br>
<a href="https://blog.codinghorror.com/performance-is-a-feature/">Performance is a Feature</a> <span> 20 Jun 2011</span>
<br>
<a href="https://blog.codinghorror.com/geek-transportation-systems/">Geek Transportation Systems</a> <span> 10 Jun 2011</span>
<br>
<a href="https://blog.codinghorror.com/suspension-ban-or-hellban/">Suspension, Ban or Hellban?</a> <span> 4 Jun 2011</span>
<br>
<a href="https://blog.codinghorror.com/the-infinite-version/">The Infinite Version</a> <span> 23 May 2011</span>
<br>
<a href="https://blog.codinghorror.com/who-needs-a-sound-card-anyway/">Who Needs a Sound Card, Anyway?</a> <span> 4 May 2011</span>
<br>
<a href="https://blog.codinghorror.com/the-hot-crazy-solid-state-drive-scale/">The Hot/Crazy Solid State Drive Scale</a> <span> 2 May 2011</span>
<br>
<a href="https://blog.codinghorror.com/working-with-the-chaos-monkey/">Working with the Chaos Monkey</a> <span> 25 Apr 2011</span>
<br>
<a href="https://blog.codinghorror.com/revisiting-the-home-theater-pc/">Revisiting the Home Theater PC</a> <span> 28 Mar 2011</span>
<br>
<a href="https://blog.codinghorror.com/the-importance-of-net-neutrality/">The Importance of Net Neutrality</a> <span> 14 Feb 2011</span>
<br>
<a href="https://blog.codinghorror.com/how-to-write-without-writing/">How to Write Without Writing</a> <span> 4 Feb 2011</span>
<br>
<a href="https://blog.codinghorror.com/lived-fast-died-young-left-a-tired-corpse/">Lived Fast, Died Young, Left a Tired Corpse</a> <span> 31 Jan 2011</span>
<br>
<a href="https://blog.codinghorror.com/24-gigabytes-of-memory-ought-to-be-enough-for-anybody/">24 Gigabytes of Memory Ought to be Enough for Anybody</a> <span> 20 Jan 2011</span>
<br>
<a href="https://blog.codinghorror.com/trouble-in-the-house-of-google/">Trouble In the House of Google</a> <span> 3 Jan 2011</span>
<br>
<a href="https://blog.codinghorror.com/the-dirty-truth-about-web-passwords/">The Dirty Truth About Web Passwords</a> <span> 14 Dec 2010</span>
<br>
<a href="https://blog.codinghorror.com/my-holiday-in-beautiful-panau/">My Holiday in Beautiful Panau</a> <span> 28 Nov 2010</span>
<br>
<a href="https://blog.codinghorror.com/your-internet-drivers-license/">Your Internet Driver's License</a> <span> 24 Nov 2010</span>
<br>
<a href="https://blog.codinghorror.com/breaking-the-webs-cookie-jar/">Breaking the Web's Cookie Jar</a> <span> 13 Nov 2010</span>
<br>
<a href="https://blog.codinghorror.com/the-keyboard-cult/">The Keyboard Cult</a> <span> 22 Oct 2010</span>
<br>
<a href="https://blog.codinghorror.com/because-everyone-needs-a-router/">Because Everyone Needs a Router</a> <span> 25 Sep 2010</span>
<br>
<a href="https://blog.codinghorror.com/youtube-vs-fair-use/">YouTube vs. Fair Use</a> <span> 17 Sep 2010</span>
<br>
<a href="https://blog.codinghorror.com/revisiting-solid-state-hard-drives/">Revisiting Solid State Hard Drives</a> <span> 15 Sep 2010</span>
<br>
<a href="https://blog.codinghorror.com/go-that-way-really-fast/">Go That Way, Really Fast</a> <span> 11 Sep 2010</span>
<br>
<a href="https://blog.codinghorror.com/vampires-programmers-versus-werewolves-sysadmins/">Vampires (Programmers) versus Werewolves (Sysadmins)</a> <span> 27 Aug 2010</span>
<br>
<a href="https://blog.codinghorror.com/whats-on-your-utility-belt/">What's On Your Utility Belt?</a> <span> 13 Aug 2010</span>
<br>
<a href="https://blog.codinghorror.com/groundhog-day-or-the-problem-with-ab-testing/">Groundhog Day, or, the Problem with A/B Testing</a> <span> 20 Jul 2010</span>
<br>
<a href="https://blog.codinghorror.com/whatever-happened-to-voice-recognition/">Whatever Happened to Voice Recognition?</a> <span> 21 Jun 2010</span>
<br>
<a href="https://blog.codinghorror.com/the-vast-and-endless-sea/">The Vast and Endless Sea</a> <span> 1 Jun 2010</span>
<br>
<a href="https://blog.codinghorror.com/on-working-remotely/">On Working Remotely</a> <span> 6 May 2010</span>
<br>
<a href="https://blog.codinghorror.com/whats-wrong-with-css/">What's Wrong With CSS</a> <span> 30 Apr 2010</span>
<br>
<a href="https://blog.codinghorror.com/so-youd-like-to-send-some-email-through-code/">So You'd Like to Send Some Email (Through Code)</a> <span> 21 Apr 2010</span>
<br>
<a href="https://blog.codinghorror.com/three-monitors-for-every-user/">Three Monitors For Every User</a> <span> 4 Apr 2010</span>
<br>
<a href="https://blog.codinghorror.com/usability-on-the-cheap-and-easy/">Usability On The Cheap and Easy</a> <span> 31 Mar 2010</span>
<br>
<a href="https://blog.codinghorror.com/the-opposite-of-fitts-law/">The Opposite of Fitts' Law</a> <span> 24 Mar 2010</span>
<br>
<a href="https://blog.codinghorror.com/compiled-or-bust/">Compiled or Bust?</a> <span> 19 Mar 2010</span>
<br>
<a href="https://blog.codinghorror.com/the-nonprogramming-programmer/">The Non-Programming Programmer</a> <span> 22 Feb 2010</span>
<br>
<a href="https://blog.codinghorror.com/welcome-back-comments/">Welcome Back Comments</a> <span> 12 Feb 2010</span>
<br>
<a href="https://blog.codinghorror.com/cultivate-teams-not-ideas/">Cultivate Teams, Not Ideas</a> <span> 25 Jan 2010</span>
<br>
<a href="https://blog.codinghorror.com/the-great-newline-schism/">The Great Newline Schism</a> <span> 18 Jan 2010</span>
<br>
<a href="https://blog.codinghorror.com/a-democracy-of-netbooks/">A Democracy of Netbooks</a> <span> 10 Jan 2010</span>
<br>
<a href="https://blog.codinghorror.com/responsible-open-source-code-parenting/">Responsible Open Source Code Parenting</a> <span> 29 Dec 2009</span>
<br>
<a href="https://blog.codinghorror.com/building-a-pc-part-vi-rebuilding/">Building a PC, Part VI: Rebuilding</a> <span> 17 Dec 2009</span>
<br>
<a href="https://blog.codinghorror.com/international-backup-awareness-day/">International Backup Awareness Day</a> <span> 14 Dec 2009</span>
<br>
<a href="https://blog.codinghorror.com/microformats-boon-or-bane/">Microformats: Boon or Bane?</a> <span> 10 Dec 2009</span>
<br>
<a href="https://blog.codinghorror.com/version-1-sucks-but-ship-it-anyway/">Version 1 Sucks, But Ship It Anyway</a> <span> 3 Dec 2009</span>
<br>
<a href="https://blog.codinghorror.com/buy-bad-code-offsets-today/">Buy Bad Code Offsets Today!</a> <span> 19 Nov 2009</span>
<br>
<a href="https://blog.codinghorror.com/parsing-html-the-cthulhu-way/">Parsing Html The Cthulhu Way</a> <span> 15 Nov 2009</span>
<br>
<a href="https://blog.codinghorror.com/whitespace-the-silent-killer/">Whitespace: The Silent Killer</a> <span> 9 Nov 2009</span>
<br>
<a href="https://blog.codinghorror.com/preserving-our-digital-pre-history/">Preserving Our Digital Pre-History</a> <span> 5 Nov 2009</span>
<br>
<a href="https://blog.codinghorror.com/stack-overflow-careers-amplifying-your-awesome/">Stack Overflow Careers: Amplifying Your Awesome</a> <span> 3 Nov 2009</span>
<br>
<a href="https://blog.codinghorror.com/revisiting-the-fold/">Revisiting "The Fold"</a> <span> 26 Oct 2009</span>
<br>
<a href="https://blog.codinghorror.com/treating-user-myopia/">Treating User Myopia</a> <span> 22 Oct 2009</span>
<br>
<a href="https://blog.codinghorror.com/the-interview-with-the-programmer/">The Interview With The Programmer</a> <span> 18 Oct 2009</span>
<br>
<a href="https://blog.codinghorror.com/the-state-of-solid-state-hard-drives/">The State of Solid State Hard Drives</a> <span> 13 Oct 2009</span>
<br>
<a href="https://blog.codinghorror.com/the-xanadu-dream/">The Xanadu Dream</a> <span> 12 Oct 2009</span>
<br>
<a href="https://blog.codinghorror.com/email-the-variable-reinforcement-machine/">Email: The Variable Reinforcement Machine</a> <span> 28 Sep 2009</span>
<br>
<a href="https://blog.codinghorror.com/9-ways-marketing-weasels-will-try-to-manipulate-you/">9 Ways Marketing Weasels Will Try to Manipulate You</a> <span> 10 Sep 2009</span>
<br>
<a href="https://blog.codinghorror.com/if-it-looks-corporate-change-it/">If It Looks Corporate, Change It</a> <span> 2 Sep 2009</span>
<br>
<a href="https://blog.codinghorror.com/have-you-met-your-dog-patches/">Have You Met Your Dog, Patches?</a> <span> 27 Aug 2009</span>
<br>
<a href="https://blog.codinghorror.com/that-means-its-working/">That Means It's Working</a> <span> 24 Aug 2009</span>
<br>
<a href="https://blog.codinghorror.com/the-only-truly-failed-project/">The Only Truly Failed Project</a> <span> 19 Aug 2009</span>
<br>
<a href="https://blog.codinghorror.com/all-programming-is-web-programming/">All Programming is Web Programming</a> <span> 14 Aug 2009</span>
<br>
<a href="https://blog.codinghorror.com/are-you-a-digital-sharecropper/">Are You a Digital Sharecropper?</a> <span> 11 Aug 2009</span>
<br>
<a href="https://blog.codinghorror.com/cobol-everywhere-and-nowhere/">COBOL: Everywhere and Nowhere</a> <span> 9 Aug 2009</span>
<br>
<a href="https://blog.codinghorror.com/software-pricing-are-we-doing-it-wrong/">Software Pricing: Are We Doing It Wrong?</a> <span> 5 Aug 2009</span>
<br>
<a href="https://blog.codinghorror.com/the-paper-data-storage-option/">The Paper Data Storage Option</a> <span> 31 Jul 2009</span>
<br>
<a href="https://blog.codinghorror.com/coding-horror-movable-type-since-2004/">Coding Horror: Movable Type Since 2004</a> <span> 29 Jul 2009</span>
<br>
<a href="https://blog.codinghorror.com/windows-7-the-best-vista-service-pack-ever/">Windows 7: The Best Vista Service Pack Ever</a> <span> 26 Jul 2009</span>
<br>
<a href="https://blog.codinghorror.com/nobody-hates-software-more-than-software-developers/">Nobody Hates Software More Than Software Developers</a> <span> 21 Jul 2009</span>
<br>
<a href="https://blog.codinghorror.com/software-engineering-dead/">Software Engineering: Dead?</a> <span> 18 Jul 2009</span>
<br>
<a href="https://blog.codinghorror.com/meta-is-murder/">Meta Is Murder</a> <span> 13 Jul 2009</span>
<br>
<a href="https://blog.codinghorror.com/how-not-to-advertise-on-the-internet/">How Not to Advertise on the Internet</a> <span> 9 Jul 2009</span>
<br>
<a href="https://blog.codinghorror.com/testing-with-the-force/">Testing With "The Force"</a> <span> 7 Jul 2009</span>
<br>
<a href="https://blog.codinghorror.com/code-its-trivial/">Code: It's Trivial</a> <span> 6 Jul 2009</span>
<br>
<a href="https://blog.codinghorror.com/oh-you-wanted-awesome-edition/">Oh, You Wanted "Awesome" Edition</a> <span> 1 Jul 2009</span>
<br>
<a href="https://blog.codinghorror.com/all-abstractions-are-failed-abstractions/">All Abstractions Are Failed Abstractions</a> <span> 30 Jun 2009</span>
<br>
<a href="https://blog.codinghorror.com/the-iphone-software-revolution/">The iPhone Software Revolution</a> <span> 24 Jun 2009</span>
<br>
<a href="https://blog.codinghorror.com/scaling-up-vs-scaling-out-hidden-costs/">Scaling Up vs. Scaling Out: Hidden Costs</a> <span> 23 Jun 2009</span>
<br>
<a href="https://blog.codinghorror.com/monty-hall-monty-fall-monty-crawl/">Monty Hall, Monty Fall, Monty Crawl</a> <span> 21 Jun 2009</span>
<br>
<a href="https://blog.codinghorror.com/we-done-been-framed/">We Done Been ... Framed!</a> <span> 17 Jun 2009</span>
<br>
<a href="https://blog.codinghorror.com/url-shorteners-destroying-the-web-since-2002/">Url Shorteners: Destroying the Web Since 2002</a> <span> 16 Jun 2009</span>
<br>
<a href="https://blog.codinghorror.com/the-wrong-level-of-abstraction/">The Wrong Level of Abstraction</a> <span> 11 Jun 2009</span>
<br>
<a href="https://blog.codinghorror.com/regular-expressions-for-regular-programmers/">Regular Expressions for Regular Programmers</a> <span> 8 Jun 2009</span>
<br>
<a href="https://blog.codinghorror.com/unix-is-dead-long-live-unix/">Unix is Dead, Long Live Unix</a> <span> 7 Jun 2009</span>
<br>
<a href="https://blog.codinghorror.com/sharing-files-with-bittorrent/">Sharing Files With BitTorrent</a> <span> 3 Jun 2009</span>
<br>
<a href="https://blog.codinghorror.com/i-stopped-reading-your-blog-years-ago/">I Stopped Reading Your Blog Years Ago</a> <span> 2 Jun 2009</span>
<br>
<a href="https://blog.codinghorror.com/the-girl-who-proved-p-np/">The Girl Who Proved P = NP</a> <span> 1 Jun 2009</span>
<br>
<a href="https://blog.codinghorror.com/server-fault-calling-all-lusers/">Server Fault: Calling All Lusers</a> <span> 28 May 2009</span>
<br>
<a href="https://blog.codinghorror.com/beyond-raid/">Beyond RAID</a> <span> 26 May 2009</span>
<br>
<a href="https://blog.codinghorror.com/penny-auctions-theyre-gambling/">Penny Auctions: They're Gambling</a> <span> 25 May 2009</span>
<br>
<a href="https://blog.codinghorror.com/how-to-motivate-programmers/">How to Motivate Programmers</a> <span> 22 May 2009</span>
<br>
<a href="https://blog.codinghorror.com/the-bathroom-wall-of-code/">The Bathroom Wall of Code</a> <span> 19 May 2009</span>
<br>
<a href="https://blog.codinghorror.com/why-isnt-my-encryption-encrypting/">Why Isn't My Encryption.. Encrypting?</a> <span> 17 May 2009</span>
<br>
<a href="https://blog.codinghorror.com/why-do-computers-suck-at-math/">Why Do Computers Suck at Math?</a> <span> 13 May 2009</span>
<br>
<a href="https://blog.codinghorror.com/the-web-browser-address-bar-is-the-new-command-line/">The Web Browser Address Bar is the New Command Line</a> <span> 11 May 2009</span>
<br>
<a href="https://blog.codinghorror.com/pseudocode-or-code/">Pseudocode or Code?</a> <span> 8 May 2009</span>
<br>
<a href="https://blog.codinghorror.com/i-just-logged-in-as-you-how-it-happened/">I Just Logged In As You: How It Happened</a> <span> 5 May 2009</span>
<br>
<a href="https://blog.codinghorror.com/i-just-logged-in-as-you/">I Just Logged In As You</a> <span> 3 May 2009</span>
<br>
<a href="https://blog.codinghorror.com/optimizing-your-wallet/">Optimizing Your Wallet</a> <span> 30 Apr 2009</span>
<br>
<a href="https://blog.codinghorror.com/has-the-virtualization-future-arrived/">Has The Virtualization Future Arrived?</a> <span> 26 Apr 2009</span>
<br>
<a href="https://blog.codinghorror.com/a-modest-proposal-for-the-copy-and-paste-school-of-code-reuse/">A Modest Proposal for the Copy and Paste School of Code Reuse</a> <span> 21 Apr 2009</span>
<br>
<a href="https://blog.codinghorror.com/how-not-to-conduct-an-online-poll/">How Not to Conduct an Online Poll</a> <span> 20 Apr 2009</span>
<br>
<a href="https://blog.codinghorror.com/exception-driven-development/">Exception-Driven Development</a> <span> 16 Apr 2009</span>
<br>
<a href="https://blog.codinghorror.com/is-open-source-experience-overrated/">Is Open Source Experience Overrated?</a> <span> 15 Apr 2009</span>
<br>
<a href="https://blog.codinghorror.com/death-to-the-space-infidels/">Death to the Space Infidels!</a> <span> 13 Apr 2009</span>
<br>
<a href="https://blog.codinghorror.com/training-your-users/">Training Your Users</a> <span> 9 Apr 2009</span>
<br>
<a href="https://blog.codinghorror.com/sex-lies-and-software-development/">Sex, Lies, and Software Development</a> <span> 8 Apr 2009</span>
<br>
<a href="https://blog.codinghorror.com/almost-perfect/">Almost Perfect</a> <span> 5 Apr 2009</span>
<br>
<a href="https://blog.codinghorror.com/i-happen-to-like-heroic-coding/">I Happen to Like Heroic Coding</a> <span> 4 Apr 2009</span>
<br>
<a href="https://blog.codinghorror.com/the-eight-levels-of-programmers/">The Eight Levels of Programmers</a> <span> 3 Apr 2009</span>
<br>
<a href="https://blog.codinghorror.com/should-competent-programmers-be-mathematically-inclined/">Should Competent Programmers be "Mathematically Inclined"?</a> <span> 1 Apr 2009</span>
<br>
<a href="https://blog.codinghorror.com/the-ugly-american-programmer/">The Ugly American Programmer</a> <span> 29 Mar 2009</span>
<br>
<a href="https://blog.codinghorror.com/dont-like-it-code-it-yourself/">Don't Like It? Code it Yourself!</a> <span> 26 Mar 2009</span>
<br>
<a href="https://blog.codinghorror.com/whos-your-arch-enemy/">Who's Your Arch-Enemy?</a> <span> 22 Mar 2009</span>
<br>
<a href="https://blog.codinghorror.com/see-you-at-eclipsecon/">See You at EclipseCon!</a> <span> 21 Mar 2009</span>
<br>
<a href="https://blog.codinghorror.com/five-dollar-programming-words/">Five Dollar Programming Words</a> <span> 19 Mar 2009</span>
<br>
<a href="https://blog.codinghorror.com/the-hardest-interview-puzzle-question-ever/">The Hardest Interview Puzzle Question Ever</a> <span> 16 Mar 2009</span>
<br>
<a href="https://blog.codinghorror.com/the-worlds-largest-mmorpg-youre-playing-it-right-now/">The World's Largest MMORPG: You're Playing it Right Now</a> <span> 15 Mar 2009</span>
<br>
<a href="https://blog.codinghorror.com/spawned-a-new-process/">Spawned a New Process</a> <span> 12 Mar 2009</span>
<br>
<a href="https://blog.codinghorror.com/why-cant-error-messages-be-fun/">Why Can't Error Messages Be Fun?</a> <span> 10 Mar 2009</span>
<br>
<a href="https://blog.codinghorror.com/sharpening-the-saw/">Sharpening the Saw</a> <span> 10 Mar 2009</span>
<br>
<a href="https://blog.codinghorror.com/the-computer-performance-shell-game/">The Computer Performance Shell Game</a> <span> 9 Mar 2009</span>
<br>
<a href="https://blog.codinghorror.com/html-validation-does-it-matter/">HTML Validation: Does It Matter?</a> <span> 5 Mar 2009</span>
<br>
<a href="https://blog.codinghorror.com/procrastination-and-the-bikeshed-effect/">Procrastination and the Bikeshed Effect</a> <span> 3 Mar 2009</span>
<br>
<a href="https://blog.codinghorror.com/the-promise-and-peril-of-jumbo-frames/">The Promise and Peril of Jumbo Frames</a> <span> 1 Mar 2009</span>
<br>
<a href="https://blog.codinghorror.com/file-compression-in-the-multi-core-era/">File Compression in the Multi-Core Era</a> <span> 28 Feb 2009</span>
<br>
<a href="https://blog.codinghorror.com/paying-down-your-technical-debt/">Paying Down Your Technical Debt</a> <span> 27 Feb 2009</span>
<br>
<a href="https://blog.codinghorror.com/whos-your-coding-buddy/">Who's Your Coding Buddy?</a> <span> 25 Feb 2009</span>
<br>
<a href="https://blog.codinghorror.com/rate-limiting-and-velocity-checking/">Rate Limiting and Velocity Checking</a> <span> 23 Feb 2009</span>
<br>
<a href="https://blog.codinghorror.com/the-bad-apple-group-poison/">The Bad Apple: Group Poison</a> <span> 19 Feb 2009</span>
<br>
<a href="https://blog.codinghorror.com/are-you-an-expert/">Are You An Expert?</a> <span> 18 Feb 2009</span>
<br>
<a href="https://blog.codinghorror.com/real-ultimate-programming-power/">Real Ultimate Programming Power</a> <span> 13 Feb 2009</span>
<br>
<a href="https://blog.codinghorror.com/the-ferengi-programmer/">The Ferengi Programmer</a> <span> 11 Feb 2009</span>
<br>
<a href="https://blog.codinghorror.com/the-elephant-in-the-room-google-monoculture/">The Elephant in the Room: Google Monoculture</a> <span> 9 Feb 2009</span>
<br>
<a href="https://blog.codinghorror.com/dont-reinvent-the-wheel-unless-you-plan-on-learning-more-about-wheels/">Don't Reinvent The Wheel, Unless You Plan on Learning More About Wheels</a> <span> 7 Feb 2009</span>
<br>
<a href="https://blog.codinghorror.com/youre-doing-it-wrong/">You're Doing It Wrong</a> <span> 4 Feb 2009</span>
<br>
<a href="https://blog.codinghorror.com/mixing-oil-and-water-authorship-in-a-wiki-world/">Mixing Oil and Water: Authorship in a Wiki World</a> <span> 2 Feb 2009</span>
<br>
<a href="https://blog.codinghorror.com/have-keyboard-will-program/">Have Keyboard, Will Program</a> <span> 1 Feb 2009</span>
<br>
<a href="https://blog.codinghorror.com/the-sad-tragedy-of-micro-optimization-theater/">The Sad Tragedy of Micro-Optimization Theater</a> <span> 29 Jan 2009</span>
<br>
<a href="https://blog.codinghorror.com/the-ultimate-dogfooding-story/">The Ultimate Dogfooding Story</a> <span> 27 Jan 2009</span>
<br>
<a href="https://blog.codinghorror.com/a-scripter-at-heart/">A Scripter at Heart</a> <span> 25 Jan 2009</span>
<br>
<a href="https://blog.codinghorror.com/open-source-software-self-service-software/">Open Source Software, Self Service Software</a> <span> 22 Jan 2009</span>
<br>
<a href="https://blog.codinghorror.com/the-one-thing-programmers-and-musicians-have-in-common/">The One Thing Programmers and Musicians Have In Common</a> <span> 20 Jan 2009</span>
<br>
<a href="https://blog.codinghorror.com/a-visit-with-alan-kay/">A Visit With Alan Kay</a> <span> 19 Jan 2009</span>
<br>
<a href="https://blog.codinghorror.com/the-two-types-of-browser-zoom/">The Two Types of Browser Zoom</a> <span> 16 Jan 2009</span>
<br>
<a href="https://blog.codinghorror.com/die-you-gravy-sucking-pig-dog/">Die, You Gravy Sucking Pig Dog!</a> <span> 14 Jan 2009</span>
<br>
<a href="https://blog.codinghorror.com/top-25-most-dangerous-programming-mistakes/">Top 25 Most Dangerous Programming Mistakes</a> <span> 12 Jan 2009</span>
<br>
<a href="https://blog.codinghorror.com/if-you-dont-change-the-ui-nobody-notices/">If You Don't Change the UI, Nobody Notices</a> <span> 11 Jan 2009</span>
<br>
<a href="https://blog.codinghorror.com/overnight-success-it-takes-years/">Overnight Success: It Takes Years</a> <span> 8 Jan 2009</span>
<br>
<a href="https://blog.codinghorror.com/dictionary-attacks-101/">Dictionary Attacks 101</a> <span> 7 Jan 2009</span>
<br>
<a href="https://blog.codinghorror.com/are-you-creating-micromanagement-zombies/">Are You Creating Micromanagement Zombies?</a> <span> 4 Jan 2009</span>
<br>
<a href="https://blog.codinghorror.com/finishing-the-game/">Finishing The Game</a> <span> 31 Dec 2008</span>
<br>
<a href="https://blog.codinghorror.com/the-problem-of-the-unfinished-game/">The Problem of the Unfinished Game</a> <span> 30 Dec 2008</span>
<br>
<a href="https://blog.codinghorror.com/programming-love-it-or-leave-it/">Programming: Love It or Leave It</a> <span> 29 Dec 2008</span>
<br>
<a href="https://blog.codinghorror.com/my-software-is-being-pirated/">My Software Is Being Pirated</a> <span> 27 Dec 2008</span>
<br>
<a href="https://blog.codinghorror.com/best-or-worst-geek-christmas-ever/">Best (or Worst) Geek Christmas Ever</a> <span> 24 Dec 2008</span>
<br>
<a href="https://blog.codinghorror.com/pressing-the-software-turbo-button/">Pressing the Software Turbo Button</a> <span> 23 Dec 2008</span>
<br>
<a href="https://blog.codinghorror.com/gifts-for-geeks-2008-edition-sort-of/">Gifts for Geeks: 2008 Edition, Sort Of</a> <span> 21 Dec 2008</span>
<br>
<a href="https://blog.codinghorror.com/hardware-is-cheap-programmers-are-expensive/">Hardware is Cheap, Programmers are Expensive</a> <span> 18 Dec 2008</span>
<br>
<a href="https://blog.codinghorror.com/avoiding-the-uncanny-valley-of-user-interface/">Avoiding The Uncanny Valley of User Interface</a> <span> 16 Dec 2008</span>
<br>
<a href="https://blog.codinghorror.com/easy-efficient-hi-def-video-playback/">Easy, Efficient Hi-Def Video Playback</a> <span> 15 Dec 2008</span>
<br>
<a href="https://blog.codinghorror.com/profitable-until-deemed-illegal/">Profitable Until Deemed Illegal</a> <span> 11 Dec 2008</span>
<br>
<a href="https://blog.codinghorror.com/my-scaling-hero/">My Scaling Hero</a> <span> 10 Dec 2008</span>
<br>
<a href="https://blog.codinghorror.com/our-hacker-odyssey/">Our Hacker Odyssey</a> <span> 7 Dec 2008</span>
<br>
<a href="https://blog.codinghorror.com/blu-ray-is-it-time/">Blu-Ray: Is It Time?</a> <span> 4 Dec 2008</span>
<br>
<a href="https://blog.codinghorror.com/the-problem-with-logging/">The Problem With Logging</a> <span> 3 Dec 2008</span>
<br>
<a href="https://blog.codinghorror.com/tending-your-software-garden/">Tending Your Software Garden</a> <span> 30 Nov 2008</span>
<br>
<a href="https://blog.codinghorror.com/is-email-efail/">Is Email = Efail?</a> <span> 25 Nov 2008</span>
<br>
<a href="https://blog.codinghorror.com/can-you-really-rent-a-coder/">Can You Really Rent a Coder?</a> <span> 23 Nov 2008</span>
<br>
<a href="https://blog.codinghorror.com/thats-not-a-bug-its-a-feature-request/">That's Not a Bug, It's a Feature Request</a> <span> 19 Nov 2008</span>
<br>
<a href="https://blog.codinghorror.com/we-are-typists-first-programmers-second/">We Are Typists First, Programmers Second</a> <span> 17 Nov 2008</span>
<br>
<a href="https://blog.codinghorror.com/your-favorite-np-complete-cheat/">Your Favorite NP-Complete Cheat</a> <span> 15 Nov 2008</span>
<br>
<a href="https://blog.codinghorror.com/stop-me-if-you-think-youve-seen-this-word-before/">Stop Me If You Think You've Seen This Word Before</a> <span> 12 Nov 2008</span>
<br>
<a href="https://blog.codinghorror.com/feeding-my-graphics-card-addiction/">Feeding My Graphics Card Addiction</a> <span> 10 Nov 2008</span>
<br>
<a href="https://blog.codinghorror.com/coding-its-just-writing/">Coding: It's Just Writing</a> <span> 8 Nov 2008</span>
<br>
<a href="https://blog.codinghorror.com/remembering-the-dynabook/">Remembering the Dynabook</a> <span> 4 Nov 2008</span>
<br>
<a href="https://blog.codinghorror.com/hci-remixed/">HCI Remixed</a> <span> 30 Oct 2008</span>
<br>
<a href="https://blog.codinghorror.com/the-problem-with-urls/">The Problem With URLs</a> <span> 29 Oct 2008</span>
<br>
<a href="https://blog.codinghorror.com/the-web-browser-is-the-new-laptop/">The Web Browser is the New Laptop</a> <span> 25 Oct 2008</span>
<br>
<a href="https://blog.codinghorror.com/youre-reading-the-worlds-most-dangerous-programming-blog/">You're Reading The World's Most Dangerous Programming Blog</a> <span> 23 Oct 2008</span>
<br>
<a href="https://blog.codinghorror.com/the-one-thing-every-software-engineer-should-know/">The One Thing Every Software Engineer Should Know</a> <span> 22 Oct 2008</span>
<br>
<a href="https://blog.codinghorror.com/obscenity-filters-bad-idea-or-incredibly-intercoursing-bad-idea/">Obscenity Filters: Bad Idea, or Incredibly Intercoursing Bad Idea?</a> <span> 20 Oct 2008</span>
<br>
<a href="https://blog.codinghorror.com/programming-is-hard-lets-go-shopping/">Programming Is Hard, Let's Go Shopping!</a> <span> 16 Oct 2008</span>
<br>
<a href="https://blog.codinghorror.com/preventing-csrf-and-xsrf-attacks/">Preventing CSRF and XSRF Attacks</a> <span> 14 Oct 2008</span>
<br>
<a href="https://blog.codinghorror.com/the-importance-of-sitemaps/">The Importance of Sitemaps</a> <span> 12 Oct 2008</span>
<br>
<a href="https://blog.codinghorror.com/cross-site-request-forgeries-and-you/">Cross-Site Request Forgeries and You</a> <span> 23 Sep 2008</span>
<br>
<a href="https://blog.codinghorror.com/bill-gates-and-code-complete/">Bill Gates and Code Complete</a> <span> 18 Sep 2008</span>
<br>
<a href="https://blog.codinghorror.com/stack-overflow-none-of-us-is-as-dumb-as-all-of-us/">Stack Overflow: None of Us is as Dumb as All of Us</a> <span> 16 Sep 2008</span>
<br>
<a href="https://blog.codinghorror.com/spawning-a-new-process/">Spawning a New Process</a> <span> 7 Sep 2008</span>
<br>
<a href="https://blog.codinghorror.com/protecting-your-cookies-httponly/">Protecting Your Cookies: HttpOnly</a> <span> 28 Aug 2008</span>
<br>
<a href="https://blog.codinghorror.com/deadlocked/">Deadlocked!</a> <span> 24 Aug 2008</span>
<br>
<a href="https://blog.codinghorror.com/check-in-early-check-in-often/">Check In Early, Check In Often</a> <span> 20 Aug 2008</span>
<br>
<a href="https://blog.codinghorror.com/the-perils-of-fui-fake-user-interface/">The Perils of FUI: Fake User Interface</a> <span> 17 Aug 2008</span>
<br>
<a href="https://blog.codinghorror.com/secrets-of-the-javascript-ninjas/">Secrets of the JavaScript Ninjas</a> <span> 13 Aug 2008</span>
<br>
<a href="https://blog.codinghorror.com/music-to-not-code-by/">Music to (Not) Code By</a> <span> 9 Aug 2008</span>
<br>
<a href="https://blog.codinghorror.com/on-our-project-were-always-90-done/">On Our Project, We're Always 90% Done</a> <span> 4 Aug 2008</span>
<br>
<a href="https://blog.codinghorror.com/quantity-always-trumps-quality/">Quantity Always Trumps Quality</a> <span> 2 Aug 2008</span>
<br>
<a href="https://blog.codinghorror.com/alpha-beta-and-sometimes-gamma/">Alpha, Beta, and Sometimes Gamma</a> <span> 30 Jul 2008</span>
<br>
<a href="https://blog.codinghorror.com/is-money-useless-to-open-source-projects/">Is Money Useless to Open Source Projects?</a> <span> 28 Jul 2008</span>
<br>
<a href="https://blog.codinghorror.com/understanding-the-hardware/">Understanding The Hardware</a> <span> 26 Jul 2008</span>
<br>
<a href="https://blog.codinghorror.com/coding-without-comments/">Coding Without Comments</a> <span> 24 Jul 2008</span>
<br>
<a href="https://blog.codinghorror.com/building-tiny-ultra-low-power-pcs/">Building Tiny, Ultra Low Power PCs</a> <span> 22 Jul 2008</span>
<br>
<a href="https://blog.codinghorror.com/web-development-as-tag-soup/">Web Development as Tag Soup</a> <span> 20 Jul 2008</span>
<br>
<a href="https://blog.codinghorror.com/dealing-with-bad-apples/">Dealing With Bad Apples</a> <span> 17 Jul 2008</span>
<br>
<a href="https://blog.codinghorror.com/the-ultimate-software-gold-plating/">The Ultimate Software Gold Plating</a> <span> 15 Jul 2008</span>
<br>
<a href="https://blog.codinghorror.com/maybe-normalizing-isnt-normal/">Maybe Normalizing Isn't Normal</a> <span> 14 Jul 2008</span>
<br>
<a href="https://blog.codinghorror.com/monkeypatching-for-humans/">Monkeypatching For Humans</a> <span> 12 Jul 2008</span>
<br>
<a href="https://blog.codinghorror.com/itunes-is-anti-web/">iTunes is Anti-Web</a> <span> 9 Jul 2008</span>
<br>
<a href="https://blog.codinghorror.com/spartan-programming/">Spartan Programming</a> <span> 8 Jul 2008</span>
<br>
<a href="https://blog.codinghorror.com/the-problem-with-code-folding/">The Problem With Code Folding</a> <span> 6 Jul 2008</span>
<br>
<a href="https://blog.codinghorror.com/investing-in-a-quality-programming-chair/">Investing in a Quality Programming Chair</a> <span> 4 Jul 2008</span>
<br>
<a href="https://blog.codinghorror.com/why-cant-microsoft-ship-open-source-software/">Why Can't Microsoft Ship Open Source Software?</a> <span> 2 Jul 2008</span>
<br>
<a href="https://blog.codinghorror.com/alan-turing-the-father-of-computer-science/">Alan Turing, the Father of Computer Science</a> <span> 1 Jul 2008</span>
<br>
<a href="https://blog.codinghorror.com/open-wireless-and-the-illusion-of-security/">Open Wireless and the Illusion of Security</a> <span> 29 Jun 2008</span>
<br>
<a href="https://blog.codinghorror.com/regular-expressions-now-you-have-two-problems/">Regular Expressions: Now You Have Two Problems</a> <span> 27 Jun 2008</span>
<br>
<a href="https://blog.codinghorror.com/smart-enough-not-to-build-this-website/">Smart Enough Not To Build This Website</a> <span> 25 Jun 2008</span>
<br>
<a href="https://blog.codinghorror.com/revisiting-the-xml-angle-bracket-tax/">Revisiting the XML Angle Bracket Tax</a> <span> 23 Jun 2008</span>
<br>
<a href="https://blog.codinghorror.com/the-ultimate-code-kata/">The Ultimate Code Kata</a> <span> 22 Jun 2008</span>
<br>
<a href="https://blog.codinghorror.com/department-of-declaration-redundancy-department/">Department of Declaration Redundancy Department</a> <span> 19 Jun 2008</span>
<br>
<a href="https://blog.codinghorror.com/coding-for-violent-psychopaths/">Coding For Violent Psychopaths</a> <span> 17 Jun 2008</span>
<br>
<a href="https://blog.codinghorror.com/physics-based-games/">Physics Based Games</a> <span> 16 Jun 2008</span>
<br>
<a href="https://blog.codinghorror.com/dont-go-dark/">Don't Go Dark</a> <span> 14 Jun 2008</span>
<br>
<a href="https://blog.codinghorror.com/ascii-pronunciation-rules-for-programmers/">ASCII Pronunciation Rules for Programmers</a> <span> 12 Jun 2008</span>
<br>
<a href="https://blog.codinghorror.com/markov-and-you/">Markov and You</a> <span> 11 Jun 2008</span>
<br>
<a href="https://blog.codinghorror.com/exploring-wide-finder/">Exploring Wide Finder</a> <span> 9 Jun 2008</span>
<br>
<a href="https://blog.codinghorror.com/finally-a-definition-of-programming-i-can-actually-understand/">Finally, a Definition of Programming I Can Actually Understand</a> <span> 7 Jun 2008</span>
<br>
<a href="https://blog.codinghorror.com/the-greatest-invention-in-computer-science/">The Greatest Invention in Computer Science</a> <span> 6 Jun 2008</span>
<br>
<a href="https://blog.codinghorror.com/please-give-us-your-email-password/">Please Give Us Your Email Password</a> <span> 4 Jun 2008</span>
<br>
<a href="https://blog.codinghorror.com/large-usb-flash-drive-performance/">Large USB Flash Drive Performance</a> <span> 2 Jun 2008</span>
<br>
<a href="https://blog.codinghorror.com/whatever-happened-to-ui-consistency/">Whatever Happened to UI Consistency?</a> <span> 1 Jun 2008</span>
<br>
<a href="https://blog.codinghorror.com/revisiting-the-black-sunday-hack/">Revisiting the Black Sunday Hack</a> <span> 31 May 2008</span>
<br>
<a href="https://blog.codinghorror.com/strong-opinions-weakly-held/">Strong Opinions, Weakly Held</a> <span> 29 May 2008</span>
<br>
<a href="https://blog.codinghorror.com/designing-for-evil/">Designing For Evil</a> <span> 28 May 2008</span>
<br>
<a href="https://blog.codinghorror.com/its-clay-shirkys-internet-we-just-live-in-it/">It's Clay Shirky's Internet, We Just Live In It</a> <span> 26 May 2008</span>
<br>
<a href="https://blog.codinghorror.com/openid-does-the-world-really-need-yet-another-username-and-password/">OpenID: Does The World Really Need Yet Another Username and Password?</a> <span> 22 May 2008</span>
<br>
<a href="https://blog.codinghorror.com/php-sucks-but-it-doesnt-matter/">PHP Sucks, But It Doesn't Matter</a> <span> 20 May 2008</span>
<br>
<a href="https://blog.codinghorror.com/twitter-how-not-to-crash-responsibly/">Twitter: How Not To Crash Responsibly</a> <span> 19 May 2008</span>
<br>
<a href="https://blog.codinghorror.com/crash-responsibly/">Crash Responsibly</a> <span> 18 May 2008</span>
<br>
<a href="https://blog.codinghorror.com/oh-yeah-fork-you/">Oh Yeah? Fork You!</a> <span> 15 May 2008</span>
<br>
<a href="https://blog.codinghorror.com/is-html-a-humane-markup-language/">Is HTML a Humane Markup Language?</a> <span> 13 May 2008</span>
<br>
<a href="https://blog.codinghorror.com/cleaning-your-display-and-keyboard/">Cleaning Your Display and Keyboard</a> <span> 12 May 2008</span>
<br>
<a href="https://blog.codinghorror.com/xml-the-angle-bracket-tax/">XML: The Angle Bracket Tax</a> <span> 11 May 2008</span>
<br>
<a href="https://blog.codinghorror.com/supporting-drm-free-music/">Supporting DRM-Free Music</a> <span> 6 May 2008</span>
<br>
<a href="https://blog.codinghorror.com/understanding-model-view-controller/">Understanding Model-View-Controller</a> <span> 5 May 2008</span>
<br>
<a href="https://blog.codinghorror.com/the-mainstreaming-of-gps/">The Mainstreaming of GPS</a> <span> 4 May 2008</span>
<br>
<a href="https://blog.codinghorror.com/re-encoding-your-dvds/">Re-Encoding Your DVDs</a> <span> 1 May 2008</span>
<br>
<a href="https://blog.codinghorror.com/the-great-dub-dub-dub-debate/">The Great Dub-Dub-Dub Debate</a> <span> 30 Apr 2008</span>
<br>
<a href="https://blog.codinghorror.com/programmers-dont-read-books-but-you-should/">Programmers Don't Read Books -- But You Should</a> <span> 28 Apr 2008</span>
<br>
<a href="https://blog.codinghorror.com/building-your-own-home-theater-pc/">Building Your Own Home Theater PC</a> <span> 25 Apr 2008</span>
<br>
<a href="https://blog.codinghorror.com/the-problem-with-software-registration/">The Problem with Software Registration</a> <span> 24 Apr 2008</span>
<br>
<a href="https://blog.codinghorror.com/behold-wordpress-destroyer-of-cpus/">Behold WordPress, Destroyer of CPUs</a> <span> 22 Apr 2008</span>
<br>
<a href="https://blog.codinghorror.com/everything-i-needed-to-know-about-programming-i-learned-from-basic/">Everything I Needed to Know About Programming I Learned from BASIC</a> <span> 21 Apr 2008</span>
<br>
<a href="https://blog.codinghorror.com/should-all-developers-have-manycore-cpus/">Should All Developers Have Manycore CPUs?</a> <span> 18 Apr 2008</span>
<br>
<a href="https://blog.codinghorror.com/building-a-pc-part-v-upgrading/">Building a PC, Part V: Upgrading</a> <span> 17 Apr 2008</span>
<br>
<a href="https://blog.codinghorror.com/introducing-stackoverflow-com/">Introducing Stackoverflow.com</a> <span> 16 Apr 2008</span>
<br>
<a href="https://blog.codinghorror.com/your-session-has-timed-out/">Your Session Has Timed Out</a> <span> 15 Apr 2008</span>
<br>
<a href="https://blog.codinghorror.com/revisiting-how-much-power-does-my-laptop-really-use/">Revisiting "How Much Power Does My Laptop Really Use"?</a> <span> 13 Apr 2008</span>
<br>
<a href="https://blog.codinghorror.com/donating-5000-to-net-open-source/">Donating $5,000 to .NET Open Source</a> <span> 10 Apr 2008</span>
<br>
<a href="https://blog.codinghorror.com/we-dont-use-software-that-costs-money-here/">We Don't Use Software That Costs Money Here</a> <span> 9 Apr 2008</span>
<br>
<a href="https://blog.codinghorror.com/rediscovering-arcade-nostalgia/">Rediscovering Arcade Nostalgia</a> <span> 7 Apr 2008</span>
<br>
<a href="https://blog.codinghorror.com/help-name-our-website/">Help Name Our Website</a> <span> 6 Apr 2008</span>
<br>
<a href="https://blog.codinghorror.com/setting-up-subversion-on-windows/">Setting up Subversion on Windows</a> <span> 5 Apr 2008</span>
<br>
<a href="https://blog.codinghorror.com/mousing-surface-theory/">Mousing Surface Theory</a> <span> 3 Apr 2008</span>
<br>
<a href="https://blog.codinghorror.com/ui-first-software-development/">UI-First Software Development</a> <span> 2 Apr 2008</span>
<br>
<a href="https://blog.codinghorror.com/core-war-two-programs-enter-one-program-leaves/">Core War: Two Programs Enter, One Program Leaves</a> <span> 1 Apr 2008</span>
<br>
<a href="https://blog.codinghorror.com/let-that-be-a-lesson-to-you-son-never-upgrade/">Let That Be a Lesson To You, Son: Never Upgrade.</a> <span> 31 Mar 2008</span>
<br>
<a href="https://blog.codinghorror.com/revisiting-keyboard-vs-the-mouse-pt-1/">Revisiting "Keyboard vs. The Mouse, pt 1"</a> <span> 30 Mar 2008</span>
<br>
<a href="https://blog.codinghorror.com/just-a-little-bit-of-software-history-repeating/">Just a Little Bit of Software History Repeating</a> <span> 29 Mar 2008</span>
<br>
<a href="https://blog.codinghorror.com/what-should-the-middle-mouse-button-mean/">What Should The Middle Mouse Button Mean?</a> <span> 27 Mar 2008</span>
<br>
<a href="https://blog.codinghorror.com/i-entity-unicode/">I {entity} Unicode</a> <span> 26 Mar 2008</span>
<br>
<a href="https://blog.codinghorror.com/revisiting-the-facts-and-fallacies-of-software-engineering/">Revisiting The Facts and Fallacies of Software Engineering</a> <span> 25 Mar 2008</span>
<br>
<a href="https://blog.codinghorror.com/is-eeyore-designing-your-software/">Is Eeyore Designing Your Software?</a> <span> 24 Mar 2008</span>
<br>
<a href="https://blog.codinghorror.com/the-sierra-network-ii/">The Sierra Network II</a> <span> 23 Mar 2008</span>
<br>
<a href="https://blog.codinghorror.com/paul-grahams-participatory-narcissism/">Paul Graham's Participatory Narcissism</a> <span> 21 Mar 2008</span>
<br>
<a href="https://blog.codinghorror.com/the-first-rule-of-programming-its-always-your-fault/">The First Rule of Programming: It's Always Your Fault</a> <span> 20 Mar 2008</span>
<br>
<a href="https://blog.codinghorror.com/adventures-in-rechargeable-batteries/">Adventures in Rechargeable Batteries</a> <span> 19 Mar 2008</span>
<br>
<a href="https://blog.codinghorror.com/the-dark-side-of-extensions/">The Dark Side of Extensions</a> <span> 18 Mar 2008</span>
<br>
<a href="https://blog.codinghorror.com/does-more-than-one-monitor-improve-productivity/">Does More Than One Monitor Improve Productivity?</a> <span> 16 Mar 2008</span>
<br>
<a href="https://blog.codinghorror.com/whats-wrong-with-turkey/">What's Wrong With Turkey?</a> <span> 13 Mar 2008</span>
<br>
<a href="https://blog.codinghorror.com/choosing-your-own-adventure/">Choosing Your Own Adventure</a> <span> 11 Mar 2008</span>
<br>
<a href="https://blog.codinghorror.com/real-time-raytracing/">Real-Time Raytracing</a> <span> 10 Mar 2008</span>
<br>
<a href="https://blog.codinghorror.com/a-question-of-programming-ethics/">A Question of Programming Ethics</a> <span> 7 Mar 2008</span>
<br>
<a href="https://blog.codinghorror.com/death-threats-intimidation-and-blogging/">Death Threats, Intimidation, and Blogging</a> <span> 6 Mar 2008</span>
<br>
<a href="https://blog.codinghorror.com/see-you-at-mix08/">See You at MIX08!</a> <span> 5 Mar 2008</span>
<br>
<a href="https://blog.codinghorror.com/captcha-is-dead-long-live-captcha/">CAPTCHA is Dead, Long Live CAPTCHA!</a> <span> 4 Mar 2008</span>
<br>
<a href="https://blog.codinghorror.com/actual-performance-perceived-performance/">Actual Performance, Perceived Performance</a> <span> 2 Mar 2008</span>
<br>
<a href="https://blog.codinghorror.com/usware-vs-themware/">UsWare vs. ThemWare</a> <span> 28 Feb 2008</span>
<br>
<a href="https://blog.codinghorror.com/douchebaggery/">Douchebaggery</a> <span> 26 Feb 2008</span>
<br>
<a href="https://blog.codinghorror.com/i-repeat-do-not-listen-to-your-users/">I Repeat: Do Not Listen to Your Users</a> <span> 25 Feb 2008</span>
<br>
<a href="https://blog.codinghorror.com/on-escalating-communication/">On Escalating Communication</a> <span> 24 Feb 2008</span>
<br>
<a href="https://blog.codinghorror.com/code-isnt-beautiful/">Code Isn't Beautiful</a> <span> 20 Feb 2008</span>
<br>
<a href="https://blog.codinghorror.com/there-aint-no-such-thing-as-the-fastest-code/">There Ain't No Such Thing as the Fastest Code</a> <span> 19 Feb 2008</span>
<br>
<a href="https://blog.codinghorror.com/tivoization-and-the-gpl/">Tivoization and the GPL</a> <span> 18 Feb 2008</span>
<br>
<a href="https://blog.codinghorror.com/the-ultimate-unit-test-failure/">The Ultimate Unit Test Failure</a> <span> 14 Feb 2008</span>
<br>
<a href="https://blog.codinghorror.com/spatial-navigation-and-opera/">Spatial Navigation and Opera</a> <span> 13 Feb 2008</span>
<br>
<a href="https://blog.codinghorror.com/the-dramatic-password-reveal/">The Dramatic Password Reveal</a> <span> 11 Feb 2008</span>
<br>
<a href="https://blog.codinghorror.com/where-the-heck-is-my-focus/">Where the Heck is My Focus?</a> <span> 10 Feb 2008</span>
<br>
<a href="https://blog.codinghorror.com/the-years-of-experience-myth/">The Years of Experience Myth</a> <span> 7 Feb 2008</span>
<br>
<a href="https://blog.codinghorror.com/extending-your-wireless-network-with-better-antennas/">Extending Your Wireless Network With Better Antennas</a> <span> 6 Feb 2008</span>
<br>
<a href="https://blog.codinghorror.com/drm-ignorance-is-expensive/">DRM Ignorance is Expensive</a> <span> 4 Feb 2008</span>
<br>
<a href="https://blog.codinghorror.com/a-lesson-in-apple-economics/">A Lesson in Apple Economics</a> <span> 3 Feb 2008</span>
<br>
<a href="https://blog.codinghorror.com/get-your-database-under-version-control/">Get Your Database Under Version Control</a> <span> 2 Feb 2008</span>
<br>
<a href="https://blog.codinghorror.com/every-user-lies/">Every User Lies</a> <span> 31 Jan 2008</span>
<br>
<a href="https://blog.codinghorror.com/is-worse-really-better/">Is Worse Really Better?</a> <span> 30 Jan 2008</span>
<br>
<a href="https://blog.codinghorror.com/whats-your-backup-strategy/">What's Your Backup Strategy?</a> <span> 28 Jan 2008</span>
<br>
<a href="https://blog.codinghorror.com/why-doesnt-anyone-give-a-crap-about-freedom-zero/">Why Doesn't Anyone Give a Crap About Freedom Zero?</a> <span> 27 Jan 2008</span>
<br>
<a href="https://blog.codinghorror.com/what-can-you-build-in-600-lines-of-code/">What Can You Build in 600 Lines of Code?</a> <span> 24 Jan 2008</span>
<br>
<a href="https://blog.codinghorror.com/getting-the-interview-phone-screen-right/">Getting the Interview Phone Screen Right</a> <span> 22 Jan 2008</span>
<br>
<a href="https://blog.codinghorror.com/reinventing-the-clipboard/">Reinventing the Clipboard</a> <span> 21 Jan 2008</span>
<br>
<a href="https://blog.codinghorror.com/the-sesame-street-presentation-rule/">The Sesame Street Presentation Rule</a> <span> 19 Jan 2008</span>
<br>
<a href="https://blog.codinghorror.com/see-you-at-cusec-2008/">See You at CUSEC 2008</a> <span> 17 Jan 2008</span>
<br>
<a href="https://blog.codinghorror.com/typography-where-engineers-and-designers-meet/">Typography: Where Engineers and Designers Meet</a> <span> 16 Jan 2008</span>
<br>
<a href="https://blog.codinghorror.com/the-five-browser-shortcuts-everyone-should-know/">The Five Browser Shortcuts Everyone Should Know</a> <span> 15 Jan 2008</span>
<br>
<a href="https://blog.codinghorror.com/whats-on-your-keychain-2008-edition/">What's On Your Keychain, 2008 Edition</a> <span> 13 Jan 2008</span>
<br>
<a href="https://blog.codinghorror.com/how-should-we-teach-computer-science/">How Should We Teach Computer Science?</a> <span> 12 Jan 2008</span>
<br>
<a href="https://blog.codinghorror.com/the-enduring-art-of-computer-programming/">The Enduring Art of Computer Programming</a> <span> 10 Jan 2008</span>
<br>
<a href="https://blog.codinghorror.com/no-matter-what-they-tell-you-its-a-people-problem/">No Matter What They Tell You, It's a People Problem</a> <span> 9 Jan 2008</span>
<br>
<a href="https://blog.codinghorror.com/dont-pollute-user-space/">Don't Pollute User Space</a> <span> 8 Jan 2008</span>
<br>
<a href="https://blog.codinghorror.com/the-magpie-developer/">The Magpie Developer</a> <span> 6 Jan 2008</span>
<br>
<a href="https://blog.codinghorror.com/my-racing-simulation-rig/">My Racing Simulation Rig</a> <span> 4 Jan 2008</span>
<br>
<a href="https://blog.codinghorror.com/understanding-user-and-kernel-mode/">Understanding User and Kernel Mode</a> <span> 3 Jan 2008</span>
<br>
<a href="https://blog.codinghorror.com/the-trouble-with-pdfs/">The Trouble with PDFs</a> <span> 1 Jan 2008</span>
<br>
<a href="https://blog.codinghorror.com/an-inalienable-right-to-privacy/">An Inalienable Right to Privacy</a> <span> 28 Dec 2007</span>
<br>
<a href="https://blog.codinghorror.com/modern-logo/">Modern Logo</a> <span> 26 Dec 2007</span>
<br>
<a href="https://blog.codinghorror.com/size-is-the-enemy/">Size Is The Enemy</a> <span> 23 Dec 2007</span>
<br>
<a href="https://blog.codinghorror.com/digital-certificates-do-they-work/">Digital Certificates: Do They Work?</a> <span> 20 Dec 2007</span>
<br>
<a href="https://blog.codinghorror.com/the-great-browser-javascript-showdown/">The Great Browser JavaScript Showdown</a> <span> 19 Dec 2007</span>
<br>
<a href="https://blog.codinghorror.com/nobody-cares-what-your-code-looks-like/">Nobody Cares What Your Code Looks Like</a> <span> 18 Dec 2007</span>
<br>
<a href="https://blog.codinghorror.com/software-registration-keys/">Software Registration Keys</a> <span> 17 Dec 2007</span>
<br>
<a href="https://blog.codinghorror.com/on-the-meaning-of-coding-horror/">On The Meaning of "Coding Horror"</a> <span> 15 Dec 2007</span>
<br>
<a href="https://blog.codinghorror.com/our-fractured-online-identities/">Our Fractured Online Identities</a> <span> 13 Dec 2007</span>
<br>
<a href="https://blog.codinghorror.com/sorting-for-humans-natural-sort-order/">Sorting for Humans : Natural Sort Order</a> <span> 12 Dec 2007</span>
<br>
<a href="https://blog.codinghorror.com/blacklists-dont-work/">Blacklists Don't Work</a> <span> 11 Dec 2007</span>
<br>
<a href="https://blog.codinghorror.com/are-you-a-doer-or-a-talker/">Are You a Doer or a Talker?</a> <span> 10 Dec 2007</span>
<br>
<a href="https://blog.codinghorror.com/gifts-for-geeks-2007-edition/">Gifts for Geeks: 2007 Edition</a> <span> 9 Dec 2007</span>
<br>
<a href="https://blog.codinghorror.com/the-danger-of-naivete/">The Danger of Naïveté</a> <span> 7 Dec 2007</span>
<br>
<a href="https://blog.codinghorror.com/hashtables-pigeonholes-and-birthdays/">Hashtables, Pigeonholes, and Birthdays</a> <span> 6 Dec 2007</span>
<br>
<a href="https://blog.codinghorror.com/sharing-the-customers-pain/">Sharing The Customer's Pain</a> <span> 5 Dec 2007</span>
<br>
<a href="https://blog.codinghorror.com/please-dont-steal-my-focus/">Please Don't Steal My Focus</a> <span> 4 Dec 2007</span>
<br>
<a href="https://blog.codinghorror.com/shuffling/">Shuffling</a> <span> 3 Dec 2007</span>
<br>
<a href="https://blog.codinghorror.com/presentation-be-vain/">Presentation: Be Vain</a> <span> 2 Dec 2007</span>
<br>
<a href="https://blog.codinghorror.com/mort-elvis-einstein-and-you/">Mort, Elvis, Einstein, and You</a> <span> 29 Nov 2007</span>
<br>
<a href="https://blog.codinghorror.com/what-if-they-gave-a-browser-war-and-microsoft-never-came/">What If They Gave a Browser War and Microsoft Never Came?</a> <span> 28 Nov 2007</span>
<br>
<a href="https://blog.codinghorror.com/the-big-ball-of-mud-and-other-architectural-disasters/">The Big Ball of Mud and Other Architectural Disasters</a> <span> 26 Nov 2007</span>
<br>
<a href="https://blog.codinghorror.com/the-two-types-of-programmers/">The Two Types of Programmers</a> <span> 25 Nov 2007</span>
<br>
<a href="https://blog.codinghorror.com/has-captcha-been-broken/">Has CAPTCHA Been "Broken"?</a> <span> 20 Nov 2007</span>
<br>
<a href="https://blog.codinghorror.com/living-the-dream-rock-band/">Living the Dream: Rock Band</a> <span> 19 Nov 2007</span>
<br>
<a href="https://blog.codinghorror.com/pair-programming-vs-code-reviews/">Pair Programming vs. Code Reviews</a> <span> 18 Nov 2007</span>
<br>
<a href="https://blog.codinghorror.com/youre-now-competing-with-the-internet/">You're Now Competing With The Internet</a> <span> 15 Nov 2007</span>
<br>
<a href="https://blog.codinghorror.com/dont-forget-to-lock-your-computer/">Don't Forget To Lock Your Computer</a> <span> 14 Nov 2007</span>
<br>
<a href="https://blog.codinghorror.com/whats-in-a-project-name/">What's in a Project Name?</a> <span> 12 Nov 2007</span>
<br>
<a href="https://blog.codinghorror.com/the-sad-state-of-digital-software-distribution/">The Sad State of Digital Software Distribution</a> <span> 11 Nov 2007</span>
<br>
<a href="https://blog.codinghorror.com/is-it-time-for-64-bit-on-the-desktop/">Is It Time for 64-bit on the Desktop?</a> <span> 9 Nov 2007</span>
<br>
<a href="https://blog.codinghorror.com/making-donations-easy/">Making Donations Easy</a> <span> 7 Nov 2007</span>
<br>
<a href="https://blog.codinghorror.com/who-wrote-this-crap/">Who Wrote This Crap?</a> <span> 6 Nov 2007</span>
<br>
<a href="https://blog.codinghorror.com/dont-click-here-the-art-of-hyperlinking/">Don't Click Here: The Art of Hyperlinking</a> <span> 4 Nov 2007</span>
<br>
<a href="https://blog.codinghorror.com/not-all-lcd-panels-are-created-equal/">Not All LCD Panels Are Created Equal</a> <span> 1 Nov 2007</span>
<br>
<a href="https://blog.codinghorror.com/the-f5-key-is-not-a-build-process/">The F5 Key Is Not a Build Process</a> <span> 31 Oct 2007</span>
<br>
<a href="https://blog.codinghorror.com/embracing-languages-inside-languages/">Embracing Languages Inside Languages</a> <span> 30 Oct 2007</span>
<br>
<a href="https://blog.codinghorror.com/your-desktop-is-not-a-destination/">Your Desktop Is Not a Destination</a> <span> 28 Oct 2007</span>
<br>
<a href="https://blog.codinghorror.com/how-to-achieve-ultimate-blog-success-in-one-easy-step/">How To Achieve Ultimate Blog Success In One Easy Step</a> <span> 26 Oct 2007</span>
<br>
<a href="https://blog.codinghorror.com/id-consider-that-harmful-too/">I'd Consider That Harmful, Too</a> <span> 25 Oct 2007</span>
<br>
<a href="https://blog.codinghorror.com/hardware-assisted-brute-force-attacks-still-for-dummies/">Hardware Assisted Brute Force Attacks: Still For Dummies</a> <span> 24 Oct 2007</span>
<br>
<a href="https://blog.codinghorror.com/virtual-machine-server-hosting/">Virtual Machine Server Hosting</a> <span> 23 Oct 2007</span>
<br>
<a href="https://blog.codinghorror.com/lets-play-planning-poker/">Let's Play Planning Poker!</a> <span> 21 Oct 2007</span>
<br>
<a href="https://blog.codinghorror.com/are-features-the-enemy/">Are Features The Enemy?</a> <span> 18 Oct 2007</span>
<br>
<a href="https://blog.codinghorror.com/why-does-software-spoil/">Why Does Software Spoil?</a> <span> 17 Oct 2007</span>
<br>
<a href="https://blog.codinghorror.com/remember-this-stuff-is-supposed-to-be-fun/">Remember, This Stuff Is Supposed To Be Fun</a> <span> 15 Oct 2007</span>
<br>
<a href="https://blog.codinghorror.com/torrent-informatics/">Torrent Informatics</a> <span> 14 Oct 2007</span>
<br>
<a href="https://blog.codinghorror.com/mouse-ballistics/">Mouse Ballistics</a> <span> 13 Oct 2007</span>
<br>
<a href="https://blog.codinghorror.com/a-visual-explanation-of-sql-joins/">A Visual Explanation of SQL Joins</a> <span> 11 Oct 2007</span>
<br>
<a href="https://blog.codinghorror.com/a-lesson-in-control-simplicity/">A Lesson in Control Simplicity</a> <span> 10 Oct 2007</span>
<br>
<a href="https://blog.codinghorror.com/geek-diet-and-exercise-programs/">Geek Diet and Exercise Programs</a> <span> 8 Oct 2007</span>
<br>