This repository has been archived by the owner on Sep 25, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1490 lines (1185 loc) · 60.9 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Tumblr slideshow</title>
<meta name="description" content="A slideshow of GIFs from a Tumblr">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/black.css" id="theme">
<!-- Code syntax highlighting -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section>
<h3>Me writing boolean values</h3>
<img id="slideshow-image-1" data-src="http://33.media.tumblr.com/3b73a6717cdf9bbd11fb266762cb24fb/tumblr_inline_ngfqibT95J1qc7io9.jpg" class="stretch">
</section>
<section>
<h3>Me overclocking the Unix Django</h3>
<img id="slideshow-image-2" data-src="http://31.media.tumblr.com/9dc9f98aceef3661c65f67fa0ca3ebea/tumblr_inline_nbkc6gm5bT1qc7io9.png" class="stretch">
</section>
<section>
<h3>Me when Django makes an appearance in “What is Code?”</h3>
<img id="slideshow-image-3" data-src="http://www.bloomberg.com/graphics/2015-paul-ford-what-is-code/images/emotes/love.gif" class="stretch">
</section>
<section>
<h3>Me when Django celebrates its 10th birthday</h3>
<img id="slideshow-image-4" data-src="http://33.media.tumblr.com/998ca8201ac7ff27531e16de9ca9c936/tumblr_inline_nrhntfZTXd1qc7io9_500.gif" class="stretch">
</section>
<section>
<h3>Me harnessing the awesome power of Jinja2 templates</h3>
<img id="slideshow-image-5" data-src="http://i.giphy.com/njCenuUU8yH7O.gif" class="stretch">
</section>
<section>
<h3>Me wondering if the obvious way to do it is pip list, pip freeze, or lssitepackages</h3>
<img id="slideshow-image-6" data-src="http://38.media.tumblr.com/63fa76e4aae8a9c69b11c0ba5327a06c/tumblr_inline_n476yatGJH1qc7io9.gif" class="stretch">
</section>
<section>
<h3>Me writing a recursive function</h3>
<img id="slideshow-image-8" data-src="http://i.imgur.com/zImu2my.gif" class="stretch">
</section>
<section>
<h3>Me hearing about the Cactus app</h3>
<img id="slideshow-image-9" data-src="http://38.media.tumblr.com/e4646432caa1c8b080305ad8c2a25a1c/tumblr_inline_n45o4j9pHE1qc7io9.gif" class="stretch">
</section>
<section>
<h3>Me typecasting a variable</h3>
<img id="slideshow-image-10" data-src="http://i.imgur.com/HDy8jzt.gif" class="stretch">
</section>
<section>
<h3>Me imagining the core team after 1.8, the fastest Django release ever</h3>
<img id="slideshow-image-11" data-src="http://media4.giphy.com/media/J8ePTAHTx7E6Q/giphy.gif" class="stretch">
</section>
<section>
<h3>Me prepping for my BarCamp Django SF session</h3>
<img id="slideshow-image-12" data-src="http://i.imgur.com/fxcd1Ao.gif" class="stretch">
</section>
<section>
<h3>Me enjoying the new Django project redesign</h3>
<img id="slideshow-image-13" data-src="http://38.media.tumblr.com/bbe8e8412e2e2b43bca0e8ba43ec5802/tumblr_inline_ni384pVCej1qc7io9.gif" class="stretch">
</section>
<section>
<h3>Me when people find out I installed a login throttler years ago</h3>
<img id="slideshow-image-15" data-src="http://i0.kym-cdn.com/photos/images/newsfeed/000/407/491/563.gif" class="stretch">
</section>
<section>
<h3>Me reading that some developers think Django is “outdated”</h3>
<img id="slideshow-image-16" data-src="http://i.imgur.com/Mv9qG4l.gif" class="stretch">
</section>
<section>
<h3>Me after installing TastyPie</h3>
<img id="slideshow-image-19" data-src="http://i.imgur.com/Pp6dDUN.gif" class="stretch">
</section>
<section>
<h3>Me still hearing lack of migrations as an excuse not to use Django</h3>
<img id="slideshow-image-21" data-src="http://i.imgur.com/2F7A8U3.gif" class="stretch">
</section>
<section>
<h3>Me when a designer commits PSDs to the repo</h3>
<img id="slideshow-image-22" data-src="https://i.imgur.com/vO7ssNY.gif" class="stretch">
</section>
<section>
<h3>Me trying to import global site packages</h3>
<img id="slideshow-image-23" data-src="http://i.imgur.com/TSV0sxa.gif" class="stretch">
</section>
<section>
<h3>Me deploying on Fridays</h3>
<img id="slideshow-image-24" data-src="http://i.imgur.com/Jskrgd5.gif" class="stretch">
</section>
<section>
<h3>Me sending email notifications in Django</h3>
<img id="slideshow-image-26" data-src="http://i.imgur.com/5YovKN3.gif" class="stretch">
</section>
<section>
<h3>Me when Pip lists packages I’ve never seen before</h3>
<img id="slideshow-image-27" data-src="http://i.imgur.com/0PJ7ud5.gif" class="stretch">
</section>
<section>
<h3>Me forgetting to pip freeze after pushing</h3>
<img id="slideshow-image-28" data-src="http://38.media.tumblr.com/c3db23e6f79c1c6bf3c5b54f76935bbb/tumblr_inline_mq2e4mEKtE1qz4rgp.gif" class="stretch">
</section>
<section>
<h3>Me using “except Exception as e”</h3>
<img id="slideshow-image-29" data-src="http://s3-ec.buzzfed.com/static/2014-01/enhanced/webdr06/30/13/anigif_enhanced-6236-1391104872-10.gif" class="stretch">
</section>
<section>
<h3>Me when Django says could not import settings is it on sys.path</h3>
<img id="slideshow-image-30" data-src="http://33.media.tumblr.com/e6a302616b812388e8e2a8db7efddf7e/tumblr_inline_mr6dgeUGKC1qz4rgp.gif" class="stretch">
</section>
<section>
<h3>Me after Pycon</h3>
<img id="slideshow-image-31" data-src="http://33.media.tumblr.com/45e8df38d29e9ab29e4541e8b99c184a/tumblr_inline_moxovhWMkR1qz4rgp.gif" class="stretch">
</section>
<section>
<h3>Me rolling back that one commit</h3>
<img id="slideshow-image-32" data-src="http://33.media.tumblr.com/665bf0723bed86789a6b62e7aea5e0d6/tumblr_mwsz5xuwIV1qdlh1io1_400.gif" class="stretch">
</section>
<section>
<h3>Me when someone says chemistry students use Python</h3>
<img id="slideshow-image-33" data-src="http://i.imgur.com/6SAiyP2.gif" class="stretch">
</section>
<section>
<h3>Me avoiding database lava on the 26th floor of the Hyatt Regency</h3>
<img id="slideshow-image-34" data-src="http://i.imgur.com/fXv2Q.gif" class="stretch">
</section>
<section>
<h3>Me going back to Lawrence to celebrate Django’s 10th birthday</h3>
<img id="slideshow-image-35" data-src="http://media.giphy.com/media/YqruxpTQqHwXK/giphy.gif" class="stretch">
</section>
<section>
<h3>Me discovering the cost of Djangocon this year</h3>
<img id="slideshow-image-36" data-src="http://i.imgur.com/3rvYmpW.gif" class="stretch">
</section>
<section>
<h3>Me when migrations landed in Django</h3>
<img id="slideshow-image-37" data-src="http://i.imgur.com/WSA6hsE.gif" class="stretch">
</section>
<section>
<h3>Me when Adrian said CBVs weren’t worth the cognitive load</h3>
<img id="slideshow-image-38" data-src="http://i.imgur.com/CmzKlWi.gif" class="stretch">
</section>
<section>
<h3>Me hearing EveryBlock is back</h3>
<img id="slideshow-image-40" data-src="http://i.imgur.com/uv8D5nZ.gif" class="stretch">
</section>
<section>
<h3>Me finding the EveryBlock teaser for Jan 22 on Jan 21</h3>
<img id="slideshow-image-41" data-src="http://i.imgur.com/hjOStEG.gif" class="stretch">
</section>
<section>
<h3>Me confirming to collect static files</h3>
<img id="slideshow-image-42" data-src="http://i.imgur.com/b9tvFK8.gif" class="stretch">
</section>
<section>
<h3>Me when I heard Adrian and Jacob retiring as BDFLs</h3>
<img id="slideshow-image-43" data-src="http://33.media.tumblr.com/tumblr_m2e9ujmopG1qdxpkd.gif" class="stretch">
</section>
<section>
<h3>Me running the full test suite after merging in a feature branch</h3>
<img id="slideshow-image-44" data-src="http://i.imgur.com/6wNbsL1.gif" class="stretch">
</section>
<section>
<h3>Me working with virtualenv</h3>
<img id="slideshow-image-45" data-src="https://ci3.googleusercontent.com/proxy/nIF1CzQisJ1t4WP03JZ6C-Y7FbabXLcBbYFJYDoL_3tEWsKaGg_5jZtdSm9VjhNcKPom3j7FBpwxDmtAV7P2zpR2rainnNiAy36hrXrwZdXG5CdQ2nRrMlrfNcM=s0-d-e1-ft#http://i1112.photobucket.com/albums/k497/animalsbeingdicks/abd-258.gif" class="stretch">
</section>
<section>
<h3>Me when a Python package still requires PIL</h3>
<img id="slideshow-image-46" data-src="http://31.media.tumblr.com/fcce66818305f8ee8ac9e99d75b5b924/tumblr_inline_mq2dohEhlD1qz4rgp.gif" class="stretch">
</section>
<section>
<h3>Me imaginging the django.contrib.cash drive</h3>
<img id="slideshow-image-47" data-src="http://i.imgur.com/KuqNlNE.jpg" class="stretch">
</section>
<section>
<h3>Me when I find just the right app to save me a week of work</h3>
<img id="slideshow-image-48" data-src="http://i.imgur.com/hC8QLPK.gif" class="stretch">
</section>
<section>
<h3>Me at a React meetup</h3>
<img id="slideshow-image-49" data-src="http://38.media.tumblr.com/c62c839a3317367b3199c16f587b9198/tumblr_inline_nlh6qdT1U01t9bsnt.gif" class="stretch">
</section>
<section>
<h3>Me when I mess up with ssh deployment keys</h3>
<img id="slideshow-image-50" data-src="http://s3-ec.buzzfed.com/static/enhanced/webdr01/2013/5/30/18/anigif_enhanced-buzz-28461-1369954132-21.gif" class="stretch">
</section>
<section>
<h3>Me writing my own view</h3>
<img id="slideshow-image-51" data-src="http://i.imgur.com/fJBRMl2.gif" class="stretch">
</section>
<section>
<h3>Me doing ‘pip search django-‘</h3>
<img id="slideshow-image-52" data-src="https://i.chzbgr.com/maxW500/7483060224/h315504A3/" class="stretch">
</section>
<section>
<h3>Me when I need to maintain someone else’s project</h3>
<img id="slideshow-image-53" data-src="http://s3-ec.buzzfed.com/static/enhanced/webdr05/2013/5/30/17/anigif_enhanced-buzz-12716-1369949373-1.gif" class="stretch">
</section>
<section>
<h3>Me adding “-unchained” whenever looking up Django stuff</h3>
<img id="slideshow-image-54" data-src="http://i.imgur.com/JvImkD8.gif" class="stretch">
</section>
<section>
<h3>Heavily loaded production site after switching cache from DB to Redis</h3>
<img id="slideshow-image-55" data-src="http://i.imgur.com/Drj4GRj.gif" class="stretch">
</section>
<section>
<h3>Me when I figured out Instagram publicly installed Django’s admin</h3>
<img id="slideshow-image-56" data-src="http://i.imgur.com/K77FIhe.gif" class="stretch">
</section>
<section>
<h3>Me when one BDFL loves Heroku and another not so much</h3>
<img id="slideshow-image-57" data-src="http://i.imgur.com/BxDVoRI.gif" class="stretch">
</section>
<section>
<h3>Me when a package maintainer doesn’t respond to issues</h3>
<img id="slideshow-image-59" data-src="http://38.media.tumblr.com/tumblr_lkaah1QaKl1qzma8no1_500.gif" class="stretch">
</section>
<section>
<h3>Me when I find the secret preview link to the Djangocon 2013 site</h3>
<img id="slideshow-image-60" data-src="http://33.media.tumblr.com/fb88d622708fb38be40572ce0465ea2a/tumblr_inline_mm23dbm85N1qz4rgp.gif" class="stretch">
</section>
<section>
<h3>Me breaking out old code into new apps</h3>
<img id="slideshow-image-61" data-src="http://38.media.tumblr.com/1ed144e85a4ba988b391ba160b146977/tumblr_inline_mln580Tvf81qz4rgp.gif" class="stretch">
</section>
<section>
<h3>Me forgetting the colon at the end of my for statement</h3>
<img id="slideshow-image-62" data-src="http://33.media.tumblr.com/58d9ab164eb7c0021d3fe3af6194fb15/tumblr_inline_mlrpbaN3SV1qz4rgp.gif" class="stretch">
</section>
<section>
<h3>WHen PyPi goes down during deployment</h3>
<img id="slideshow-image-63" data-src="https://i.chzbgr.com/maxW500/7174347776/hC58BE757/" class="stretch">
</section>
<section>
<h3>Me writing my URLconf</h3>
<img id="slideshow-image-64" data-src="http://33.media.tumblr.com/2fa618eeb7c8a8705742310b2c263a91/tumblr_inline_mmir36WUCW1qz4rgp.gif" class="stretch">
</section>
<section>
<h3>Me when the DjangoCon site launches</h3>
<img id="slideshow-image-66" data-src="http://33.media.tumblr.com/b06f7cd05d8525ca251fd97c775cc591/tumblr_inline_mmpzh3l4pz1qz4rgp.gif" class="stretch">
</section>
<section>
<h3>Me demoing my backup system</h3>
<img id="slideshow-image-67" data-src="http://38.media.tumblr.com/91742338775b64dcb2cc3a097fc65b60/tumblr_inline_mmet1vxWRF1qz4rgp.gif" class="stretch">
</section>
<section>
<h3>Me reading about AbstractBaseUser in the docs</h3>
<img id="slideshow-image-68" data-src="http://i.imgur.com/0zUIZny.gif" class="stretch">
</section>
<section>
<h3>Me using datetime.datetime</h3>
<img id="slideshow-image-69" data-src="http://2.bp.blogspot.com/-1m97yUn7jKc/ULo2kLNPUHI/AAAAAAAADlw/trPGRA9bFQg/s1600/Marty-McFly.gif" class="stretch">
</section>
<section>
<h3>Me accepting pull requests</h3>
<img id="slideshow-image-70" data-src="http://www.reactiongifs.com/wp-content/uploads/2012/12/gimme-five.gif" class="stretch">
</section>
<section>
<h3>Me running a cURL</h3>
<img id="slideshow-image-71" data-src="http://www.reactiongifs.com/wp-content/uploads/2012/02/cute_happy.gif" class="stretch">
</section>
<section>
<h3>Me looking at the number of queries on a Django CMS site with the debug toolbar</h3>
<img id="slideshow-image-72" data-src="http://33.media.tumblr.com/tumblr_mdu84dweR71qbbnfeo1_250.gif" class="stretch">
</section>
<section>
<h3>Me when someone asks for a Django template theme</h3>
<img id="slideshow-image-73" data-src="http://www.reactiongifs.com/wp-content/uploads/2013/01/new.gif" class="stretch">
</section>
<section>
<h3>Me when I finally configure Varnish correctly</h3>
<img id="slideshow-image-74" data-src="http://38.media.tumblr.com/69eb4f42d0a0973c0fa3ae601355f9e4/tumblr_inline_mk6u17ImpK1qz4rgp.gif" class="stretch">
</section>
<section>
<h3>Me facing a broken migration</h3>
<img id="slideshow-image-75" data-src="http://38.media.tumblr.com/b5e8f83067eab9c71e62dd99df97c26c/tumblr_mkuarmJJbM1s2hgjso1_400.gif" class="stretch">
</section>
<section>
<h3>When someone invites me to a Django sprint</h3>
<img id="slideshow-image-76" data-src="http://38.media.tumblr.com/55ccd96351acb35308d97947505f5c7a/tumblr_inline_mqesdmwJXw1qz4rgp.gif" class="stretch">
</section>
<section>
<h3>Me imagining the core team hanging out</h3>
<img id="slideshow-image-77" data-src="http://i.imgur.com/aKRA0YN.gif" class="stretch">
</section>
<section>
<h3>Me after So Yeah Django comes back from hiatus</h3>
<img id="slideshow-image-78" data-src="http://i.imgur.com/hAa1Re2.gif" class="stretch">
</section>
<section>
<h3>Django’s admin HTML</h3>
<img id="slideshow-image-79" data-src="http://i.imgur.com/lmj3Jgi.gif" class="stretch">
</section>
<section>
<h3>Me rolling back a commit</h3>
<img id="slideshow-image-80" data-src="http://i.imgur.com/YsGCEsB.gif" class="stretch">
</section>
<section>
<h3>Me finally getting Haskell to work</h3>
<img id="slideshow-image-81" data-src="http://i.imgur.com/X6I4oGH.gif" class="stretch">
</section>
<section>
<h3>Me when my virtualenvwrapper doesn’t match up with my working directory</h3>
<img id="slideshow-image-82" data-src="http://i.imgur.com/myUt4ZN.gif" class="stretch">
</section>
<section>
<h3>After submitting my first pull request contribution to Django</h3>
<img id="slideshow-image-83" data-src="http://i.imgur.com/5CVi5fv.gif" class="stretch">
</section>
<section>
<h3>Me watching Guido van Rossum’s PyCon talk</h3>
<img id="slideshow-image-84" data-src="http://i.imgur.com/xFPNL.gif" class="stretch">
</section>
<section>
<h3>Me hoping for more Django tutorials by ubernostrum</h3>
<img id="slideshow-image-85" data-src="http://i.imgur.com/1LVS1vP.gif" class="stretch">
</section>
<section>
<h3>Me looking through Django’s source code</h3>
<img id="slideshow-image-86" data-src="http://i.imgur.com/CeiFQ4X.gif" class="stretch">
</section>
<section>
<h3>Me enjoying some Raspberry Pi</h3>
<img id="slideshow-image-87" data-src="http://i.imgur.com/OzBt6tJ.gif" class="stretch">
</section>
<section>
<h3>Me when I write my URLconf</h3>
<img id="slideshow-image-88" data-src="http://33.media.tumblr.com/f56caecfea13fc93cfd3d710dce0c600/tumblr_inline_mk98l7Cj9g1qz4rgp.gif" class="stretch">
</section>
<section>
<h3>When I write a template tag for the first time</h3>
<img id="slideshow-image-89" data-src="http://i.imgur.com/Itt4ncL.gif" class="stretch">
</section>
<section>
<h3>Me when I see when a project’s last commit was years ago</h3>
<img id="slideshow-image-90" data-src="http://38.media.tumblr.com/72d59f2ebee66c4d615571c28220beb2/tumblr_inline_mla2xelst31qz4rgp.gif" class="stretch">
</section>
<section>
<h3>Me raising an exception</h3>
<img id="slideshow-image-91" data-src="http://i.imgur.com/oVA2YuG.gif" class="stretch">
</section>
<section>
<h3>Me trying to figure out the difference between a FloatField and a DecimalField</h3>
<img id="slideshow-image-92" data-src="http://i.imgur.com/W2h8EJf.gif" class="stretch">
</section>
<section>
<h3>Me seeing everything as a nail</h3>
<img id="slideshow-image-93" data-src="http://i.imgur.com/nn2C4.gif" class="stretch">
</section>
<section>
<h3>Me discovering a Django UX site exists</h3>
<img id="slideshow-image-94" data-src="http://i.minus.com/ibzxtv9po0poIM.gif" class="stretch">
</section>
<section>
<h3>Me fixing an error that is completely unrelated to the traceback</h3>
<img id="slideshow-image-95" data-src="http://i.imgur.com/Tmn1l0m.gif" class="stretch">
</section>
<section>
<h3>Me resetting staged Git changes</h3>
<img id="slideshow-image-96" data-src="http://i.imgur.com/IpHDXr6.gif" class="stretch">
</section>
<section>
<h3>Me ending a rogue process</h3>
<img id="slideshow-image-98" data-src="http://i.imgur.com/Rv3nH.gif" class="stretch">
</section>
<section>
<h3>Me reading Python’s regex docs</h3>
<img id="slideshow-image-99" data-src="http://www.reactiongifs.com/wp-content/uploads/2012/07/whatever.gif" class="stretch">
</section>
<section>
<h3>When I learned that Rdio was written in python</h3>
<img id="slideshow-image-100" data-src="http://www.reactiongifs.com/wp-content/uploads/2011/05/brad_pit_dance.gif" class="stretch">
</section>
<section>
<h3>Me when I heard Djangocon is in Chicago this year</h3>
<img id="slideshow-image-101" data-src="http://www.reactiongifs.com/wp-content/uploads/2013/02/f-yeah.gif" class="stretch">
</section>
<section>
<h3>Me when I saw the Django Suit admin app</h3>
<img id="slideshow-image-103" data-src="http://www.reactiongifs.com/wp-content/uploads/2013/02/Fangirling-7.gif" class="stretch">
</section>
<section>
<h3>Me trying to find the right logger</h3>
<img id="slideshow-image-104" data-src="http://img.pandawhale.com/15347-Raccoon-playing-sprinkler-harp-ujkT.gif" class="stretch">
</section>
<section>
<h3>When I install a new Django app</h3>
<img id="slideshow-image-105" data-src="http://38.media.tumblr.com/6afb58b97026c299c660490ae5da9704/tumblr_mjaplcblH41qbyxr0o1_400.gif" class="stretch">
</section>
<section>
<h3>Me looking at staging</h3>
<img id="slideshow-image-106" data-src="http://www.reactiongifs.com/wp-content/uploads/2013/03/is-this-real-life.gif" class="stretch">
</section>
<section>
<h3>Me upgrading to Django 1.5</h3>
<img id="slideshow-image-107" data-src="http://33.media.tumblr.com/2d26c3af54d85d905f4b9e0fd357abdc/tumblr_inline_mi8ebb18Zb1rymf47.gif" class="stretch">
</section>
<section>
<h3>Me still using TextMate</h3>
<img id="slideshow-image-109" data-src="http://www.reactiongifs.com/wp-content/uploads/2013/02/bitch_please.gif" class="stretch">
</section>
<section>
<h3>Me when the internet disconnects in the middle of a deploy</h3>
<img id="slideshow-image-110" data-src="http://www.naosalvo.com.br/wp-content/uploads/2013/02/Neo-in-The-Matrix-Revolutions-the-matrix-22575620-570-300.gif" class="stretch">
</section>
<section>
<h3>Me learning someone’s website was entirely built with flatpages</h3>
<img id="slideshow-image-111" data-src="http://38.media.tumblr.com/8196a526e5473263c897eade10ca4094/tumblr_mgagaxAgSS1qbj46wo1_500.gif" class="stretch">
</section>
<section>
<h3>Me imagining how open Django issues are resolved</h3>
<img id="slideshow-image-112" data-src="http://i.imgur.com/fGjQwTJ.gif" class="stretch">
</section>
<section>
<h3>Me when I found out USA Today’s snappy redesign was in Django</h3>
<img id="slideshow-image-113" data-src="http://www.reactiongifs.com/wp-content/uploads/2013/02/no-way.gif" class="stretch">
</section>
<section>
<h3>Me making a website responsive</h3>
<img id="slideshow-image-115" data-src="http://31.media.tumblr.com/tumblr_m88vlqgZy31qh8zhc.gif" class="stretch">
</section>
<section>
<h3>Me learning Django came from Kansas</h3>
<img id="slideshow-image-117" data-src="http://www.reactiongifs.com/wp-content/uploads/2013/02/oz-omg1.gif" class="stretch">
</section>
<section>
<h3>Me when a new episode of Getting Started with Django comes out</h3>
<img id="slideshow-image-120" data-src="http://38.media.tumblr.com/tumblr_m2oowu5jwM1rs6sdjo1_500.gif" class="stretch">
</section>
<section>
<h3>Me trying to figure out pagination</h3>
<img id="slideshow-image-121" data-src="http://31.media.tumblr.com/04e8079c5a34f715d34a6f1b131c1fee/tumblr_inline_mi8eg4JwDU1rymf47.gif" class="stretch">
</section>
<section>
<h3>Me marking a user object is_staff</h3>
<img id="slideshow-image-122" data-src="http://www.bbc.co.uk/comedy/theoffice/characters/images/david_points_640.jpg" class="stretch">
</section>
<section>
<h3>Me using git branches</h3>
<img id="slideshow-image-123" data-src="http://i.imgur.com/Cp0Xf.gif" class="stretch">
</section>
<section>
<h3>Me when someone says Django is a CMS</h3>
<img id="slideshow-image-124" data-src="http://33.media.tumblr.com/tumblr_m8aynkohAX1rnxyhb.gif" class="stretch">
</section>
<section>
<h3>Me when someone asks if I know who writes So Yeah Django</h3>
<img id="slideshow-image-125" data-src="http://www.reactiongifs.com/wp-content/uploads/2013/01/peteshrug.gif" class="stretch">
</section>
<section>
<h3>Me ordering middleware correctly</h3>
<img id="slideshow-image-126" data-src="http://i.imgur.com/4AyCR9T.gif" class="stretch">
</section>
<section>
<h3>Me running django-admin.py sql</h3>
<img id="slideshow-image-127" data-src="http://www.reactiongifs.com/wp-content/uploads/2012/02/like_a_boss.gif" class="stretch">
</section>
<section>
<h3>Me registering for PyCon</h3>
<img id="slideshow-image-128" data-src="http://i.imgur.com/oiL1hMY.gif" class="stretch">
</section>
<section>
<h3>Me hearing about dev server in PHP 5.4</h3>
<img id="slideshow-image-129" data-src="http://i1112.photobucket.com/albums/k497/animalsbeingdicks/abd-334_zpsd163c1af.gif" class="stretch">
</section>
<section>
<h3>Me realizing I need to override three more generic view class methods to do something perfectly trivial</h3>
<img id="slideshow-image-131" data-src="http://33.media.tumblr.com/tumblr_m4t4rqRZfe1qf1116o1_400.gif" class="stretch">
</section>
<section>
<h3>Me learning that Sublime Text was written in Python</h3>
<img id="slideshow-image-132" data-src="http://i.imgur.com/OSIpSWB.gif" class="stretch">
</section>
<section>
<h3>Me recommending WordPress</h3>
<img id="slideshow-image-133" data-src="http://38.media.tumblr.com/6017daed392367ae067d356275816ad3/tumblr_inline_mi78iwtvKo1qz4rgp.gif" class="stretch">
</section>
<section>
<h3>Me using the Panama Canal Zone from 1979 in a drop down menu</h3>
<img id="slideshow-image-134" data-src="http://40.media.tumblr.com/tumblr_mafdy7CCKL1qe1d62o4_1280.jpg" class="stretch">
</section>
<section>
<h3>Me talking to the TurboGears guys</h3>
<img id="slideshow-image-135" data-src="http://i.imgur.com/T8QM0gw.gif" class="stretch">
</section>
<section>
<h3>Me using XSLT</h3>
<img id="slideshow-image-136" data-src="http://i.imgur.com/e0J9dxJ.gif" class="stretch">
</section>
<section>
<h3>Me putting social media buttons on the page</h3>
<img id="slideshow-image-137" data-src="http://i.minus.com/ibira1lV53TINf.gif" class="stretch">
</section>
<section>
<h3>Me enjoying the EveryBlock easter eggs</h3>
<img id="slideshow-image-138" data-src="http://38.media.tumblr.com/a688b7c0d0bf26ffdc4f5bddd3bb9655/tumblr_inline_mhvrp0iT3f1qz4rgp.png" class="stretch">
</section>
<section>
<h3>Me during the daily scrum</h3>
<img id="slideshow-image-139" data-src="http://i.imgur.com/fQdzM.gif" class="stretch">
</section>
<section>
<h3>Me reading about “Python mistakes”</h3>
<img id="slideshow-image-140" data-src="http://i.imgur.com/CWgMf.gif" class="stretch">
</section>
<section>
<h3>Me using virtualenv</h3>
<img id="slideshow-image-141" data-src="http://gifsoup.com/webroot/animatedgifs5/2558350_o.gif" class="stretch">
</section>
<section>
<h3>Me reading about Pjax</h3>
<img id="slideshow-image-142" data-src="http://i.imgur.com/TCeRukj.gif" class="stretch">
</section>
<section>
<h3>Me imagining a company’s innovative new outsourcing strategy</h3>
<img id="slideshow-image-144" data-src="http://i.imgur.com/GAVOvFn.gif" class="stretch">
</section>
<section>
<h3>Me imagining what microframeworks are like</h3>
<img id="slideshow-image-145" data-src="http://i.imgur.com/lvvRP.gif" class="stretch">
</section>
<section>
<h3>Me when someone says Django is for “content” websites</h3>
<img id="slideshow-image-146" data-src="http://i.imgur.com/qM4w3fU.gif" class="stretch">
</section>
<section>
<h3>Me visiting Silicon Valley</h3>
<img id="slideshow-image-147" data-src="http://i.imgur.com/Q2PTn.gif" class="stretch">
</section>
<section>
<h3>Me deploying my first Django-powered website</h3>
<img id="slideshow-image-148" data-src="http://habrastorage.org/storage2/77d/1d0/637/77d1d0637792e69f68ff764308d4576c.gif" class="stretch">
</section>
<section>
<h3>Me trying to use PostgreSQL for the first time</h3>
<img id="slideshow-image-149" data-src="http://forgifs.com/gallery/d/85974-5/Elephant-grabs-ostrich-neck.gif" class="stretch">
</section>
<section>
<h3>Me telling people Google uses Python</h3>
<img id="slideshow-image-150" data-src="http://33.media.tumblr.com/tumblr_ma42qlIs6W1rcrg6lo1_500.gif" class="stretch">
</section>
<section>
<h3>Me creating an API with Tastypie</h3>
<img id="slideshow-image-151" data-src="http://33.media.tumblr.com/fc8f0dcf97b403866e56a65135928d47/tumblr_mgrvnt5cAx1r93xiko1_500.gif" class="stretch">
</section>
<section>
<h3>Me developing websites</h3>
<img id="slideshow-image-152" data-src="http://www.reactiongifs.com/wp-content/uploads/2012/12/80s-dance-kid.gif" class="stretch">
</section>
<section>
<h3>Me saying my site runs on Django</h3>
<img id="slideshow-image-153" data-src="http://i48.tinypic.com/2ymzpf5.gif" class="stretch">
</section>
<section>
<h3>Me hearing EveryBlock shutting down</h3>
<img id="slideshow-image-154" data-src="http://i.imgur.com/WeXPc.gif" class="stretch">
</section>
<section>
<h3>Me using Twitter Bootstrap</h3>
<img id="slideshow-image-155" data-src="http://i.imgur.com/9LUG3.gif" class="stretch">
</section>
<section>
<h3>Me installing Django on Windows</h3>
<img id="slideshow-image-156" data-src="http://i.imgur.com/Fwki5po.gif" class="stretch">
</section>
<section>
<h3>Me pair programming</h3>
<img id="slideshow-image-157" data-src="http://33.media.tumblr.com/tumblr_mduk2ezHkY1r9pkjio1_500.gif" class="stretch">
</section>
<section>
<h3>Me when Heroku added Python support</h3>
<img id="slideshow-image-158" data-src="http://i.imgur.com/WHrI8.gif" class="stretch">
</section>
<section>
<h3>How I feel when a test catches a bug before deploy</h3>
<img id="slideshow-image-159" data-src="http://38.media.tumblr.com/82f00962d821e6ab33c05ab23dd64660/tumblr_mhdvwcBa5J1qdlh1io1_500.gif" class="stretch">
</section>
<section>
<h3>Watching GIL in action</h3>
<img id="slideshow-image-160" data-src="http://i1112.photobucket.com/albums/k497/animalsbeingdicks/abd-320.gif" class="stretch">
</section>
<section>
<h3>Instead of using Capistrano, we can use Fabric too</h3>
<img id="slideshow-image-161" data-src="http://i.imgur.com/OoIfH.gif?1?6329" class="stretch">
</section>
<section>
<h3>The life of a Django dev</h3>
<img id="slideshow-image-162" data-src="http://i.imgur.com/iu2bT7V.gif" class="stretch">
</section>
<section>
<h3>Me adding one more line to settings.py</h3>
<img id="slideshow-image-163" data-src="http://i.imgur.com/1Gc54gj.gif" class="stretch">
</section>
<section>
<h3>Me when someone customizes the admin base template</h3>
<img id="slideshow-image-166" data-src="http://i.imgur.com/WnwlbUN.gif" class="stretch">
</section>
<section>
<h3>Me using Twitter’s API</h3>
<img id="slideshow-image-167" data-src="http://i.imgur.com/2ythj.gif" class="stretch">
</section>
<section>
<h3>Me reading about where Jinja2 came from</h3>
<img id="slideshow-image-168" data-src="http://i.imgur.com/LPtUAif.gif" class="stretch">
</section>
<section>
<h3>Me when someone asks if Django supports Welsh</h3>
<img id="slideshow-image-169" data-src="http://33.media.tumblr.com/tumblr_m9507dbGqM1r3wlui.gif" class="stretch">
</section>
<section>
<h3>Me reading about Django becoming “just an API”</h3>
<img id="slideshow-image-170" data-src="http://i.imgur.com/FFp58.gif" class="stretch">
</section>
<section>
<h3>Me reading about contrib.webdesign</h3>
<img id="slideshow-image-172" data-src="http://i.imgur.com/5AQhClm.gif" class="stretch">
</section>
<section>
<h3>Me using Django’s ORM</h3>
<img id="slideshow-image-173" data-src="http://i.imgur.com/YBstl.gif" class="stretch">
</section>
<section>
<h3>Me learning NASA uses Django</h3>
<img id="slideshow-image-174" data-src="http://i.imgur.com/DTUvG.gif" class="stretch">
</section>
<section>
<h3>Me using easy_install</h3>
<img id="slideshow-image-175" data-src="http://i.imgur.com/DeXED.gif" class="stretch">
</section>
<section>
<h3>Me responding to an HTTP request</h3>
<img id="slideshow-image-176" data-src="http://i.imgur.com/ZhPpEO4.gif" class="stretch">
</section>
<section>
<h3>Me after Django removed the profanities filter, which included “asshead”</h3>
<img id="slideshow-image-177" data-src="http://38.media.tumblr.com/18bf01a48658864087031f7e246f6500/tumblr_inline_mh1urtKv6t1r1jx0h.gif" class="stretch">
</section>
<section>
<h3>Me at a conference entering a room about Node.js</h3>
<img id="slideshow-image-178" data-src="http://33.media.tumblr.com/tumblr_m9qro4cGd51rfptgvo1_500.gif" class="stretch">
</section>
<section>
<h3>Me writing a decorator</h3>
<img id="slideshow-image-179" data-src="http://i1112.photobucket.com/albums/k497/animalsbeingdicks/abd-306.gif" class="stretch">
</section>
<section>
<h3>Me seeing none of my models in the admin, forgetting to register them in admin.py</h3>
<img id="slideshow-image-180" data-src="http://i.imgur.com/LntZY.gif" class="stretch">
</section>
<section>
<h3>Me after deploying my app to production for the first time</h3>
<img id="slideshow-image-181" data-src="http://33.media.tumblr.com/tumblr_m2b01sJkRx1qzvz1ao2_500.gif" class="stretch">
</section>
<section>
<h3>Me working with XML</h3>
<img id="slideshow-image-182" data-src="http://i.imgur.com/mGwl67L.gif" class="stretch">
</section>
<section>
<h3>Me while two devs talk about things they can’t do with Python</h3>
<img id="slideshow-image-183" data-src="http://i.imgur.com/T2n8D.gif" class="stretch">
</section>
<section>
<h3>Me being told WordPress can store custom data types</h3>
<img id="slideshow-image-184" data-src="http://i.imgur.com/ugoKd.gif" class="stretch">
</section>
<section>
<h3>Me remembering white space in Python</h3>
<img id="slideshow-image-185" data-src="http://i.imgur.com/dJj7c.gif" class="stretch">
</section>
<section>
<h3>Me running git push origin master the first time</h3>
<img id="slideshow-image-186" data-src="http://i.imgur.com/oSdx1mE.gif" class="stretch">
</section>
<section>
<h3>Me reading the OAuth spec</h3>
<img id="slideshow-image-187" data-src="http://i.imgur.com/pr6Hg.gif" class="stretch">
</section>
<section>
<h3>Me using fixtures</h3>
<img id="slideshow-image-188" data-src="http://i.imgur.com/mumrx.gif" class="stretch">
</section>
<section>
<h3>Me using sessions with cookies and not session IDs</h3>
<img id="slideshow-image-190" data-src="http://i.imgur.com/B34UHGK.gif" class="stretch">
</section>
<section>
<h3>Me finally realizing templates can’t fit into reusable apps</h3>
<img id="slideshow-image-193" data-src="http://31.media.tumblr.com/9dae07a73ffe6697886c2fd6564089f8/tumblr_inline_mh1i0h6okm1r7esao.gif" class="stretch">
</section>
<section>
<h3>Me showing Django to a PHP developer</h3>
<img id="slideshow-image-194" data-src="http://31.media.tumblr.com/bbf20335e6367b667fab22747ee6fe4f/tumblr_inline_mh29301JEM1qc7io9.gif" class="stretch">
</section>
<section>
<h3>Me enjoying Rails</h3>
<img id="slideshow-image-195" data-src="http://33.media.tumblr.com/0a3077bdd59590a7c21fec269aa07a43/tumblr_inline_mh2968TLV51qc7io9.png" class="stretch">
</section>
<section>
<h3>Me fixing a bug at 10 p.m. on a Friday with an app that has no test</h3>
<img id="slideshow-image-196" data-src="http://33.media.tumblr.com/tumblr_m65njgrh3t1rr82lxo1_500.gif" class="stretch">
</section>
<section>
<h3>Me when a coworker new to Django sings “Welcome to the Django” like Axl Rose</h3>
<img id="slideshow-image-197" data-src="http://31.media.tumblr.com/tumblr_m1hg59uBLg1rrimozo1_500.gif" class="stretch">
</section>
<section>
<h3>Me working with floats in Python</h3>
<img id="slideshow-image-198" data-src="http://www.reactiongifs.com/wp-content/uploads/2012/10/I_love_you_but.gif" class="stretch">
</section>
<section>
<h3>Me when someone says they could do it faster in their new favorite framework instead of Django</h3>
<img id="slideshow-image-199" data-src="http://oi47.tinypic.com/16legp5.jpg" class="stretch">
</section>
<section>
<h3>Me when someone says Rails pluralizes octopus</h3>
<img id="slideshow-image-200" data-src="http://www.reactiongifs.com/wp-content/uploads/2012/11/OohBurn.gif" class="stretch">
</section>
<section>
<h3>Me having to import localflavor to validate phone numbers</h3>
<img id="slideshow-image-201" data-src="http://www.reactiongifs.com/wp-content/uploads/2012/12/throwing-phone2.gif" class="stretch">
</section>
<section>
<h3>Me fixing manage.py runserver, but the admin now returns a 500 error</h3>
<img id="slideshow-image-202" data-src="http://uolesporte.blogosfera.uol.com.br/files/2012/08/phelpsmae.gif" class="stretch">
</section>
<section>
<h3>Me when I say I work on the backend</h3>
<img id="slideshow-image-203" data-src="http://www.reactiongifs.com/wp-content/uploads/2013/01/tina-and-amy.gif" class="stretch">
</section>
<section>
<h3>Me joking with the Rails community</h3>
<img id="slideshow-image-204" data-src="http://38.media.tumblr.com/tumblr_md9de8cUGi1rurv44.gif" class="stretch">
</section>
<section>
<h3>Me waiting for the Django screencast on how to create a blog engine in 15 minutes</h3>
<img id="slideshow-image-206" data-src="http://i.imgur.com/yCbCV.gif" class="stretch">
</section>
<section>
<h3>Me reading @alex_gaynor’s list of Ruby annoyances</h3>
<img id="slideshow-image-207" data-src="http://i.imgur.com/Jdvdr.gif" class="stretch">
</section>
<section>
<h3>Me using the {% regroup %} tag</h3>
<img id="slideshow-image-208" data-src="http://i.imgur.com/9tujI.gif" class="stretch">
</section>
<section>
<h3>Me writing docstrings</h3>
<img id="slideshow-image-209" data-src="http://www.reactiongifs.com/wp-content/uploads/2012/11/dolphin-dont-care.gif" class="stretch">
</section>
<section>
<h3>Me when a Ruby dev asks me to teach him Python</h3>
<img id="slideshow-image-210" data-src="http://i.imgur.com/1t0zi.gif" class="stretch">
</section>
<section>
<h3>Me when someone points out the irony of using Tumblr for So Yeah Django</h3>
<img id="slideshow-image-211" data-src="http://31.media.tumblr.com/tumblr_marhawWr0y1rrpsd7.gif" class="stretch">
</section>
<section>
<h3>Me hearing about CSS4 already being developed</h3>
<img id="slideshow-image-212" data-src="http://38.media.tumblr.com/tumblr_mef36oi1DY1ri2ul8o1_500.gif" class="stretch">
</section>
<section>
<h3>Me watching people argue about semicolons in JavaScript</h3>
<img id="slideshow-image-213" data-src="http://www.reactiongifs.com/wp-content/uploads/2013/01/life-goes-on-lebowski.gif" class="stretch">
</section>
<section>
<h3>Me using CSS animations</h3>
<img id="slideshow-image-215" data-src="http://www.reactiongifs.com/wp-content/uploads/2013/01/mj-fail.gif" class="stretch">
</section>
<section>
<h3>Me adding methods to existing Python classes</h3>
<img id="slideshow-image-216" data-src="http://31.media.tumblr.com/tumblr_m5ez9cq3EY1r5zq6ao1_500.gif" class="stretch">
</section>
<section>
<h3>Me seeing Beatles examples in the docs instead of foo bar</h3>
<img id="slideshow-image-217" data-src="http://33.media.tumblr.com/0b59670c576274237bfebcb226acaa04/tumblr_mggyfvmxeg1s3699ko2_500.gif" class="stretch">
</section>
<section>
<h3>Me copying everyone else’s regex for urls.py</h3>