-
Notifications
You must be signed in to change notification settings - Fork 27
/
redirects.json
1484 lines (1484 loc) · 134 KB
/
redirects.json
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
{
"fyst-research": "https://docs.google.com/forms/d/e/1FAIpQLSeSsImMAy5IgOj7SfU-x-sDMgqO7Za39Lqk2FnIQHllj1sh3g/viewform?usp=sf_link",
"analytics": "https://github.com/thenaturalist/awesome-business-intelligence",
"equity": "https://docs.google.com/document/d/1I4N0eW-ZRIdcvnQ7IfWqxdJEXDZYqC-mdl4u9gPH84g",
"search": "https://drive.google.com/drive/u/1/search?q=parent:1SNfni5hogcKRz0W5zEQFqW84pq2WFQFP",
"folder": "https://drive.google.com/drive/u/1/folders/1SNfni5hogcKRz0W5zEQFqW84pq2WFQFP",
"external": "https://airtable.com/shrEo0NjuZz7vuvec",
"ctc-response-aid": "https://airtable.com/shrKaLFpXYdExWjSL",
"wenowdis": "https://www.notion.so/cfa/Safety-Net-Knowledge-Base-73dc25d805cc4878a3997a8096692374",
"weknowthis": "https://www.notion.so/cfa/Safety-Net-Knowledge-Base-73dc25d805cc4878a3997a8096692374",
"gyrnationalsitesignup": "https://airtable.com/shroEKG7Z2HYZzXnA",
"gyrnationalsite": "https://cfa.notion.site/2022-National-Site-Volunteer-Center-d71bcb99e2f748f8985b11853e05f9b0",
"gyrassisters": "https://www.notion.so/cfa/GetYourRefund-Assister-Onboarding-0950208891f24d74a25053e0b8e7b6bb",
"childcare": "https://www.mnbenefits.org/pages/languagePreferences?utm_source=childcare_waiting_list",
"gyrtraining": "https://www.notion.so/cfa/2021-GetYourRefund-Training-71863f3c04ec45109292e650fc60bc2b",
"brigade-calendar": "https://calendar.google.com/calendar/embed?src=codeforamerica.org_e4fugvnjpk4b5fvgjfe916sa6g@group.calendar.google.com&ctz=America/Los_Angeles",
"fellowship-info": "https://www.codeforamerica.org/programs/fellowship?utm_source=craigslist&utm_campaign=fellowship-2020-07-24",
"getyourrefund": "https://getyourrefund.org/diy?s=radio",
"VDSS-es": "https://getyourrefund.org/es/diy?s=VDSS",
"VDSS": "https://getyourrefund.org/diy?s=VDSS",
"yang-es": "https://getyourrefund.org/es/diy?s=yang",
"yang": "https://getyourrefund.org/diy?s=yang",
"anti-racism": "https://docs.google.com/document/d/1juQ90h7MXdpBQp57kQ7HT6aDRMFrVGfeG17lvwfqqNY/edit?usp=sharing",
"gyr-notion": "https://www.notion.so/cfa/GetYourRefund-Product-Guide-71863f3c04ec45109292e650fc60bc2b",
"gyr-youtube": "https://www.youtube.com/playlist?list=PL65XgbSILalW5ii1cyR1uKWvr87nR0A7H",
"gyr-faqs": "https://docs.google.com/document/d/1L5vl1EDQ4U6c4byHiGObWK4QdboJys1fRkfb7coim6Q/edit",
"voter-research": "https://docs.google.com/forms/d/e/1FAIpQLSd60La90HljZrBl8aphx71-8jj7W5r-9cxEVxM8B48icBZqTQ/viewform?_hsenc=p2ANqtz-8Pqgw7TYqaKwxPEYHDcT4uasn5zxQcfUTscLjt1b7DbrTsIvb6Di6lgNE94wB9xpv52jAJ1V2VbwV5PPCwjAF-IkYFi8BtlZ_sz7j5CwGMgLYlZFI&_hsmi=86929293",
"eitc-volunteer": "https://airtable.com/shrErIfuuumeJ2VNw",
"virtual-request": "https://docs.google.com/forms/d/e/1FAIpQLScv7I2WAWhG-wY4qcbOfj2Bvx9vpptij2F4Gg8tczEcGgZHBg/viewform",
"virtual-calendar": "https://calendar.google.com/calendar/embed?src=codeforamerica.org_56ej9m0uahkhviqru2cgerpjp4@group.calendar.google.com",
"researchhelp": "https://docs.google.com/forms/d/e/1FAIpQLSdkrvqmLZ_UKo3nl4WU2Ib3d8XQ1w3_DCpLqSKteoYsF24vYg/viewform",
"research-help": "https://docs.google.com/forms/d/e/1FAIpQLSdkrvqmLZ_UKo3nl4WU2Ib3d8XQ1w3_DCpLqSKteoYsF24vYg/viewform",
"SSAfeedback": "https://codeforamerica.co1.qualtrics.com/jfe/form/SV_9ynbdFWkCzkF1Ih",
"mou-survey": "https://docs.google.com/forms/d/e/1FAIpQLSfr7V1c1RHVX8yRIyWwBOsJuiNj09w_i4ahoA9HF6XFpJw_qw/viewform",
"mou-attachments": "https://docs.google.com/forms/d/e/1FAIpQLScnHhIlyNE6C5FUpPqijt6v_GYWTPjjcWTAdxxPmcBKMm9wzQ/viewform",
"congress-register": "https://www.eventbrite.com/e/2020-brigade-congress-registration-120535423697",
"canvas-upload": "https://discourse.codeforamerica.org/t/about-the-brigade-project-canvases-category/617",
"canvas-technology": "https://docs.google.com/document/d/1YE9hgZ2RjdYKm-8ztJqOg3ZC4zq9OWpIE5qqcZ9vikk/edit?usp=sharing",
"canvas-discovery": "https://docs.google.com/document/d/1u6RBTAevbkPcHkiwzefcy9ZkwR1Ub-aUsol84DkfGeU/edit?usp=sharing",
"canvas-user-testing": "https://docs.google.com/document/d/1YqSoi0D3NV2ypFU0kbnfKZx4LpI6_OQqXTXCQZiPO58/edit?usp=sharing",
"CCC-Partnership": "https://docs.google.com/spreadsheets/d/1fO0hWACWZEAx4zJ_xJEjptRqqCODVo9_B7K2O42oDUk/edit?usp=sharing",
"ndoch-survey": "https://portlandme.typeform.com/to/yvrgs7",
"ndoch-toolkit": "https://docs.google.com/document/d/1is2VoY4xx0NZWbhXAr7BIMuQj6OcEKDbMIEYTVASOTM/edit",
"ndoch-folder": "https://drive.google.com/drive/folders/1t1p8sbg1CcGzHNM-4swrYc4YmTzIvg4r",
"slack": "https://docs.google.com/forms/d/e/1FAIpQLSfRqy9L8Z5bS8cPHmHrY6BPT5g6K45uo0Z3KicYLB4bsFp2wA/viewform",
"kaiser": "http://getcalfresh.org/?source=kp-ha",
"Kaiser": "http://getcalfresh.org/?source=kp-ha",
"2019-fellowship": "https://www.notion.so/cfa/2019-Community-Fellowship-Cohort-9a64377b65404bf9b91746fc6101699a",
"brigade-day-feedback": "https://docs.google.com/forms/d/e/1FAIpQLScVvNIYvbSrp8SVMB9-_HsP_7kT3GEF9PkrB13P29G05zMTNA/viewform",
"census": "https://codeforamerica.co1.qualtrics.com/jfe/form/SV_eYdLPk4iP44jT8h",
"facilitators": "https://docs.google.com/spreadsheets/d/1XAFwtehUbUb2PkB8sfjN-w5yfmFkPmumPxY51LCJowU/edit?usp=sharing",
"lunchmap": "https://docs.google.com/spreadsheets/d/1p9AqqVw07qNSE8Hwhxklib7epFIO5P3NQ5rnhg5P0Sc/edit?usp=sharing",
"testingitout": "https://google.com",
"rover-node": "https://gist.github.com/tmaybe/1c23f58f33c0040853556dee4051d752",
"rover-ruby": "https://gist.github.com/daguar/bad5ecdc2ca311bbd33b053ea332aba4",
"rover-python": "https://gist.github.com/tmaybe/714998ca2877119fbf568827d0e49b97",
"gloss-learnings": "https://github.com/codeforamerica/glossary-bot/issues/25#issuecomment-117531115",
"jail-dashboard": "http://prod-jail-dashboard-1179871355.us-east-1.elb.amazonaws.com/",
"jail-dashboard-demo": "http://prod-jail-dashboard-1179871355.us-east-1.elb.amazonaws.com/",
"kcmo-digital": "https://codeforamerica.github.io/kansas-city-digital/",
"dashboard-data": "https://github.com/codeforamerica/jail-dashboard/blob/master/data-sources.md",
"dreamforce": "https://www.codeforamerica.org/newsletter",
"signup": "https://www.codeforamerica.org/newsletter",
"seattle-calendar": "http://c4a.me/seattlecalendar",
"seattle-docs": "https://github.com/codeforamerica/crisisresponse/issues?q=label:Documentation",
"sj-convening-2016": "https://www.eventbrite.com/e/the-2016-code-for-america-summit-safety-and-justice-pre-summit-convening-tickets-26758149345",
"seattle-newsletter": "http://codeforamerica.us13.list-manage.com/subscribe?u=6100a3c3b87484e2482c465f2&id=4f2ea46fa4",
"seattle-dashboard": "https://keen.io/project/573e35e1bcb79c56d1a90f39/dashboards/view",
"NSBW": "https://www.youtube.com/watch?v=FtQKDt0aXNc",
"cmr": "https://clearmyrecord.codeforamerica.org",
"rap": "https://clearmyrecord.codeforamerica.org/getting_your_rap/",
"phc": "https://clearmyrecord.codeforamerica.org",
"cf-30day-y": "https://cfa.typeform.com/to/WkO9hb?day=y",
"cf-30day-n": "https://cfa.typeform.com/to/WkO9hb?day=n",
"clear": "https://clearmyrecord.codeforamerica.org",
"san": "https://clearmyrecord.codeforamerica.org",
"th": "https://clearmyrecord.codeforamerica.org",
"ap": "https://clearmyrecord.codeforamerica.org",
"ls": "https://clearmyrecord.codeforamerica.org",
"sfpl": "https://clearmyrecord.codeforamerica.org",
"rnr": "https://clearmyrecord.codeforamerica.org",
"aj": "https://clearmyrecord.codeforamerica.org",
"eb": "https://clearmyrecord.codeforamerica.org",
"share": "https://clearmyrecord.codeforamerica.org?source=share",
"fresnoclinic": "https://clearmyrecord.codeforamerica.org?source=fresnoclinic",
"sdduischool": "https://clearmyrecord.codeforamerica.org?source=sdduischool",
"lsnc": "https://clearmyrecord.codeforamerica.org?source=lsnc",
"cocoprobation": "https://clearmyrecord.codeforamerica.org?source=cocoprobation",
"ebworks": "https://clearmyrecord.codeforamerica.org?source=ebworks",
"grubhub": "https://clearmyrecord.codeforamerica.org?source=grubhub",
"sdrecovery": "https://clearmyrecord.codeforamerica.org?source=sdrecovery",
"ccclinic": "https://clearmyrecord.codeforamerica.org?source=ccclinic",
"lyft": "https://clearmyrecord.codeforamerica.org?source=lyft",
"share1": "https://clearmyrecord.codeforamerica.org?source=share1",
"sdworkforce": "https://clearmyrecord.codeforamerica.org?source=sdworkforce",
"solanoprob": "https://clearmyrecord.codeforamerica.org?source=solanoprob",
"clearit": "https://clearmyrecord.codeforamerica.org",
"cleanslate": "https://clearmyrecord.codeforamerica.org",
"fresnoclist": "https://clearmyrecord.codeforamerica.org?source=fresnoclist",
"sdclist": "https://clearmyrecord.codeforamerica.org?source=sdclist",
"sbclist": "https://clearmyrecord.codeforamerica.org?source=sbclist",
"sonomaclist": "https://clearmyrecord.codeforamerica.org?source=sonomaclist",
"venturaclist": "https://clearmyrecord.codeforamerica.org?source=venturaclist",
"apply": "https://clearmyrecord.codeforamerica.org?source=lorenzo",
"fidg": "https://docs.google.com/spreadsheets/d/13NJJ9fapf5ArRFofaRo_KW8MFQo2iB6uXmn2O7EL4t0/edit?usp=sharing",
"fellowship": "https://www.codeforamerica.org/fellowship",
"fellowship-apply": "https://cfa.typeform.com/to/dnCV4X",
"2017-Fellowship-Partner-App": "https://cfa.typeform.com/to/aAbTRJ",
"katherine-calendar": "https://calendar.google.com/calendar/embed?src=katherine%40codeforamerica.org&ctz=America/Los_Angeles&mode=week",
"2017-partner-app": "https://s3-us-west-1.amazonaws.com/codeforamerica-cms1/resources/Code-for-America-2017-Fellowship-Application.docx",
"cf-1day": "https://cfa.typeform.com/to/ArMsFZ",
"seattle-mail": "https://docs.google.com/document/d/1zVDiMXgFSl1OWEL7fUE6pHmmwnkWnA9wV0rahRAQzro/edit",
"getting-along": "https://docs.google.com/document/d/1LgZThyqFaCQuxNRz-nfP_TtwIlg30-QvHo7j5cQ4bBs/edit",
"seattlecalendar": "https://calendar.google.com/calendar/b/1/embed?src=grayson@codeforamerica.org&ctz=America/Los_Angeles&mode=week",
"econ-dev": "http://www.codeforamerica.org/focus/economic-development/",
"youth-employment": "http://www.codeforamerica.org/blog/2016/01/29/code-for-boston-unites-local-organizations-to-address-youth-employment-challenges/",
"skills-economy": "http://www.codeforamerica.org/blog/2016/01/29/code-for-america-and-the-markle-foundation-work-to-build-a-skills-based-economy-in-new-orleans/",
"phones": "https://docs.google.com/a/codeforamerica.org/spreadsheets/d/18kj03DeHBSN4wIWxGk8xMrZz95tR7-HQtIc3cneMRDw/edit?usp=sharing",
"comportconfig": "https://gist.github.com/tmaybe/589bf0e933aa959a3e64ce31bab391f8",
"comportconfigoracle": "https://gist.github.com/tmaybe/1794ee5d58f40a3430043ae3961bdb0c",
"comportinstalloracle": "https://gist.github.com/tmaybe/1794ee5d58f40a3430043ae3961bdb0c#set-up-the-oracle-client-and-environment-variables",
"comportviewqueries": "https://gist.github.com/tmaybe/daf6ca480fa9193550dcd1dcd24581d8",
"surabaya" : "https://docs.google.com/presentation/d/1wUCd5Z3OybYNvG1TlkapNTEul3DQXTzotBoLk_7EQUc/edit?usp=sharing",
"realfuturefair" : "https://docs.google.com/presentation/d/1XupnCG0Ghjun4TaAqtWE9MCPhan488GGZ4Dj1-KQNbM/edit?usp=sharing",
"2015-awards-criteria" : "http://www.codeforamerica.org/blog/2015/10/12/the-2015-code-for-america-technology-awards-selection-criteria",
"heavybit2015" : "https://docs.google.com/presentation/d/1mVjyHTEJZrh-GDKsYk5r-XoxkV0tr-phChrX4IlsqKE/edit#slide=id.g51a8d4c21_1_9",
"berkeley2015" : "https://docs.google.com/presentation/d/1lDOu8GLp0WIqoB_f1-4kFFqFVCPD67qLehLhTeha2Is/edit?pli=1#slide=id.g51a8d4c21_1_9",
"summit-survey" : "https://cfa.typeform.com/to/dJSZbQ?source=slides",
"legos" : "https://github.com/davidrleonard/legos",
"addthathood" : "https://github.com/codeforamerica/click_that_hood/wiki/How-to-add-a-city-to-Click-That-%E2%80%99Hood",
"picsurvey": "https://cfa.typeform.com/to/NNCQGT",
"presummit-checkin" : "http://www.codeforamerica.org/brigade/Code-for-America/checkin/?event=Pre-Summit-2015&question=Which+Brigade+are+you+from+and+describe+it+in+one+word",
"dfd" : "http://www.codeforamerica.org/our-work/initiatives/digitalfrontdoor/",
"inspectionsurvey" : "https://cfa.typeform.com/to/wL4RUH",
"summit-app" : "http://doubledutch.me/download.aspx?appId=4c482531-c114-4e76-bc14-d55b84f6ac3c®ion=us",
"summit-cc" : "https://github.com/codeforamerica/codeofconduct",
"picquestions" : "https://docs.google.com/spreadsheets/d/18BRSA0aOyrvhVnPZugbJrjN9zZykCl9CS04-ECx1Fps/edit?usp=sharing",
"slco-alpha": "http://slco-2016.github.io/q1_report/",
"slco-beta": "http://slco-2016.github.io/beta_report/",
"slco-weeklies": "http://www.scribd.com/collections/16737272/Code-for-America-Team-Salt-Lake-County-Weeklies",
"brigade-press-tips" : "https://docs.google.com/document/d/1wN-C-csk7SfINA2njf4wFnKI4KSGE6T86OPSaA4V5GU/" ,
"brigadebeginner" : "https://docs.google.com/document/d/1wo_skwazuom_Zkp7AmCSjy5JD8Z5WYSbhr2IUmqWdQ0/edit?usp=sharing",
"dfd-oakland-phase1": "http://www.codeforamerica.org/our-work/initiatives/digitalfrontdoor/oakland-phase1-report/",
"awards": "http://awards.codeforamerica.org",
"benfranklin": "http://www.codeforamerica.org/people/zoe-blumenfeld/",
"zoe": "http://www.codeforamerica.org/people/zoe-blumenfeld/",
"1QbsyO8": "http://brigade-staging.herokuapp.com/brigade/tools/GDIMentorship/",
"GDI": "http://brigade-staging.herokuapp.com/brigade/tools/GDIMentorship/",
"1HMJQlC": "http://calfresh-barriers.herokuapp.com/",
"calfresh-barriers": "http://calfresh-barriers.herokuapp.com/",
"1IQr1OB": "https://cfa.typeform.com/to/UYZYtI",
"1c6AKBX": "http://codeforamerica.github.io/cfa-numbers/tools/",
"tools": "http://codeforamerica.github.io/cfa-numbers/tools/",
"1Hj9nNO": "http://codeforamerica.github.io/cfa-numbers/people/",
"people": "http://codeforamerica.github.io/cfa-numbers/people/",
"1dm7g4x": "http://codeforamerica.github.io/cfa-numbers/show/",
"show": "http://codeforamerica.github.io/cfa-numbers/show/",
"1PXEz9O": "https://codeforamerica.github.io/PoliceOpenDataCensus/",
"PoliceData": "https://codeforamerica.github.io/PoliceOpenDataCensus/",
"policedata": "https://codeforamerica.github.io/PoliceOpenDataCensus/",
"1PUPQrr": "http://www.codeforamerica.org/governments/principles/",
"principles": "http://www.codeforamerica.org/governments/principles/",
"1BaxoVd": "http://www.codeforamerica.org/our-work/focus-areas/safety-justice/",
"safetyandjustice": "http://www.codeforamerica.org/our-work/focus-areas/safety-justice/",
"1JYnB9J": "http://www.codeforamerica.org/our-work/focus-areas/health/",
"healthandsafety": "http://www.codeforamerica.org/our-work/focus-areas/health/",
"1ESZW64": "http://www.codeforamerica.org/blog/2015/05/17/5-ways-to-jumpstart-the-release-of-open-data-on-policing/",
"1KerMkY": "http://usa.streetsblog.org/2015/05/05/american-roads-depend-on-handouts-from-bus-riders-cyclists-pedestrians/",
"1FbqgvA": "http://www.codeforamerica.org/our-work/initiatives/digitalfrontdoor/alpha-bootcamp/",
"redesign-bootcamp": "http://www.codeforamerica.org/our-work/initiatives/digitalfrontdoor/alpha-bootcamp/",
"1c2SLRX": "https://github.com/openoakland/openbudgetoakland/issues?q=is:open+is:issue+label:\"help+wanted\"",
"openbudget": "https://github.com/openoakland/openbudgetoakland/issues?q=is:open+is:issue+label:\"help+wanted\"",
"1KymXjT": "https://docs.google.com/presentation/d/1REVYDSRU0CBhtmgOTDRb2CJJHkyA-Lfo6mtZas6X8kc/edit?usp=sharing",
"1zV0vuY": "http://www.codeforamerica.org/governments/principles/engagement/",
"engagementstandard": "http://www.codeforamerica.org/governments/principles/engagement/",
"1FU69lC": "https://docs.google.com/a/codeforamerica.org/document/d/1v1xR5tSB-9aghFl0lwSWt3FN3SAg2DCE1w_2DduwG-Q/edit",
"2015summitprospectus": "https://docs.google.com/a/codeforamerica.org/document/d/1v1xR5tSB-9aghFl0lwSWt3FN3SAg2DCE1w_2DduwG-Q/edit",
"1I8Tb3B": "http://www.codeforamerica.org/apps/balance/",
"balance": "http://www.codeforamerica.org/apps/balance/",
"1O9dOOY": "http://www.codeforamerica.org/apps/balance",
"1NRWH47": "https://docs.google.com/a/codeforamerica.org/presentation/d/1im79TLz1dkBcPvYZtFzdwWmUFVyOZHyGhLVgW4PA-FA/edit#slide=id.g76758ae4d_0_11",
"2045": "https://docs.google.com/a/codeforamerica.org/presentation/d/1im79TLz1dkBcPvYZtFzdwWmUFVyOZHyGhLVgW4PA-FA/edit#slide=id.g76758ae4d_0_11",
"1DFzW3Y": "http://www.codeforamerica.org/speakers/catherine-bracy/pycon.html",
"pycon": "http://www.codeforamerica.org/speakers/catherine-bracy/pycon.html",
"1C378uF": "http://www.projecthomelessconnect.org/get-help/every-day-connect/",
"1BB6OV0": "http://www.codeforamerica.org/forms/fellowship/become-a-fellow/",
"apply": "http://www.codeforamerica.org/forms/fellowship/become-a-fellow/",
"1GmYOu2": "http://www.codeforamerica.org/speakers/nicole-neditch/datasummit.html",
"opendata": "http://www.codeforamerica.org/speakers/nicole-neditch/datasummit.html",
"1CpfGTl": "https://cfa.typeform.com/to/ryPTNV",
"SOSconfirmation": "https://cfa.typeform.com/to/ryPTNV",
"1LkpQcf": "https://bluejeans.com/357481834/1986?ll=en&g=mjzgszlmnrsuay3pmrswm33smfwwk4tjmnqs433sm4======",
"march19call": "https://bluejeans.com/357481834/1986?ll=en&g=mjzgszlmnrsuay3pmrswm33smfwwk4tjmnqs433sm4======",
"1HVNZ3m": "http://www.codeforamerica.org/geeks/civicissues",
"issues": "http://www.codeforamerica.org/geeks/civicissues",
"1wQuqZ3": "https://docs.google.com/a/codeforamerica.org/presentation/d/1DqmP5TUBhWts9BZ4sJSUji1pZphjLPJh8Uk5pm6oLIE/edit#slide=id.p",
"peer-to-peer": "https://docs.google.com/a/codeforamerica.org/presentation/d/1DqmP5TUBhWts9BZ4sJSUji1pZphjLPJh8Uk5pm6oLIE/edit#slide=id.p",
"1BCEYLA": "http://www.codeforamerica.org/speakers/jennifer-pahlka/sxsw2015/",
"sxsw15": "http://www.codeforamerica.org/speakers/jennifer-pahlka/sxsw2015/",
"1C7fk2e": "https://github.com/codeforamerica/project-ideas/issues/64",
"expunge": "https://github.com/codeforamerica/project-ideas/issues/64",
"1xe1YuY": "https://cfa.typeform.com/to/UYkyM4",
"march17": "https://cfa.typeform.com/to/UYkyM4",
"1C6Kh6p": "https://cfa.typeform.com/to/ndnDSl",
"march12": "https://cfa.typeform.com/to/ndnDSl",
"1Eccnwl": "https://docs.google.com/a/codeforamerica.org/forms/d/1ivyM7JDEhZ5ReZjGXfCS2NiOoW6YxCIjhAY9m66l3Yk/viewform?fbzx=5703166140191067096",
"morozov-topics": "https://docs.google.com/a/codeforamerica.org/forms/d/1ivyM7JDEhZ5ReZjGXfCS2NiOoW6YxCIjhAY9m66l3Yk/viewform?fbzx=5703166140191067096",
"1b2tAP6": "https://docs.google.com/a/codeforamerica.org/forms/d/1ivyM7JDEhZ5ReZjGXfCS2NiOoW6YxCIjhAY9m66l3Yk/viewanalytics?usp=form_confirm",
"morozov-responses": "https://docs.google.com/a/codeforamerica.org/forms/d/1ivyM7JDEhZ5ReZjGXfCS2NiOoW6YxCIjhAY9m66l3Yk/viewanalytics?usp=form_confirm",
"195V5H1": "https://docs.google.com/a/codeforamerica.org/document/d/1vhbQwODi-nMYJNBqRPVSsmQ_OqD-4kGe4wJq3wqfIwc/edit",
"mou": "https://docs.google.com/document/d/16CL9TdmWV0hDY6c85PwtzUcu1VjeSeiDFD2CbtLKf7s/edit",
"1Bnzup3": "http://www.reddit.com/r/redditdonate/comments/2wcknh/code_for_america_labs/?submit_url=http://www.reddit.com/donate%3Forganization%3D271067272&already_submitted=true",
"reddit10love": "http://www.reddit.com/r/redditdonate/comments/2wcknh/code_for_america_labs/?submit_url=http://www.reddit.com/donate%3Forganization%3D271067272&already_submitted=true",
"1AHbAW1": "http://www.reddit.com/donate?organization=271067272",
"reddit10": "http://www.reddit.com/donate?organization=271067272",
"19cNKVM": "http://www.codeforamerica.org/summit/",
"1ClJ2MH": "http://www.codeforamerica.org/summit/?source_codes=social",
"1DHsmn6": "http://www.codeforamerica.org/our-work/initiatives/talent/",
"talent": "https://www.codeforamerica.org/programs/talent-initiative",
"1yaiknF": "https://docs.google.com/a/codeforamerica.org/forms/d/1rqLYNiZ9a5_h9GoMMC9VudAE3sW07G_hUyT4p-QIOX0/viewform",
"reportout2015": "https://docs.google.com/a/codeforamerica.org/forms/d/1rqLYNiZ9a5_h9GoMMC9VudAE3sW07G_hUyT4p-QIOX0/viewform",
"1DbFOiU": "https://cfa.typeform.com/to/BEKp9Y",
"BrigadeLeaders": "https://cfa.typeform.com/to/BEKp9Y",
"1uVFkqf": "https://cfa.typeform.com/to/yp4hYH",
"codeforallcontent": "https://cfa.typeform.com/to/yp4hYH",
"16uDDL7": "https://cfa.typeform.com/to/mt8BhN",
"feedback": "https://cfa.typeform.com/to/mt8BhN",
"1ybvHoE": "https://docs.google.com/a/codeforamerica.org/document/d/1_5Mrhvn0ENZ2Dnch_T16La3jfbbvvU8KiI3kCJvcNsw/edit",
"design": "https://docs.google.com/a/codeforamerica.org/document/d/1_5Mrhvn0ENZ2Dnch_T16La3jfbbvvU8KiI3kCJvcNsw/edit",
"1z863pQ": "https://youtu.be/4PgQ0KILP70",
"bubbly": "https://youtu.be/4PgQ0KILP70",
"1x5yYUA": "https://docs.google.com/forms/d/1z3a8y_m6Myfi9qb7YMyxJGfohV6b_GO1QrB_lwNsrQ0/viewform",
"cleancases": "https://docs.google.com/forms/d/1z3a8y_m6Myfi9qb7YMyxJGfohV6b_GO1QrB_lwNsrQ0/viewform",
"1IaJ5AM": "http://cutgroup.openoakland.org/",
"1xUxnpy": "http://codeforamerica.org/donate",
"1zKLmRs": "https://medium.com/@alanjosephwilli/dance-parties-as-a-public-service-5d8548d7f042",
"dancenotriot": "https://medium.com/@alanjosephwilli/dance-parties-as-a-public-service-5d8548d7f042",
"ZwGQ8z": "https://www.youtube.com/playlist?list=PL65XgbSILalW_PV2Cgmz7gOWY3YLwC87M",
"CommunitiesYouTube": "https://www.youtube.com/playlist?list=PL65XgbSILalW_PV2Cgmz7gOWY3YLwC87M",
"1uIoL4Y": "http://codeforamerica.theresumator.com/apply/J2Z8NK/Engineer-And-Data-Specialist.html",
"engineer-job": "http://codeforamerica.theresumator.com/apply/J2Z8NK/Engineer-And-Data-Specialist.html",
"ZCMYMU": "http://www.codeforamerica.org/our-work/focus-areas/",
"focus": "http://www.codeforamerica.org/our-work/focus-areas/",
"1AUhFc5": "https://github.com/codeforamerica/balance/blob/master/HOW_TO_ADD_A_STATE.md",
"YXw7EL": "https://github.com/codeforamerica/project-ideas/issues",
"ideas": "https://github.com/codeforamerica/project-ideas/issues",
"1qFBORN": "http://www.codeforamerica.org/our-work/data-formats/openreferral/",
"openreferral": "http://www.codeforamerica.org/our-work/data-formats/openreferral/",
"1qCFzb4": "https://docs.google.com/forms/d/1IWgPembvwEDCOv1M0sLMc0AM3f13-7a1L0lE3LIuVo4/viewform",
"citygram-testing": "https://docs.google.com/forms/d/1IWgPembvwEDCOv1M0sLMc0AM3f13-7a1L0lE3LIuVo4/viewform",
"1xmGPnl": "http://www.codeforamerica.org/summit/sponsors/",
"summitsupp": "http://www.codeforamerica.org/summit/sponsors/",
"1pqLQa2": "https://docs.google.com/a/codeforamerica.org/forms/d/12PqLHyTNts_fNZ52dWB-zfktq1Zwk3ybO54S64z7u7c/viewform",
"ignitecfa": "https://docs.google.com/a/codeforamerica.org/forms/d/12PqLHyTNts_fNZ52dWB-zfktq1Zwk3ybO54S64z7u7c/viewform",
"1q5KsIR": "http://www.codeforamerica.org/jobs/",
"jobs": "http://www.codeforamerica.org/jobs/",
"VGnADy": "http://www.govdelivery.com/blog/2014/08/building-a-civic-ecosystem/",
"VGnADy33": "http://www.govdelivery.com/blog/2014/08/building-a-civic-ecosystem/",
"1oHSOHf": "http://www.codeforamerica.org/our-work/initiatives/digitalfrontdoor/",
"digitalfrontdoor": "http://www.codeforamerica.org/our-work/initiatives/digitalfrontdoor/",
"1oQ1C8i": "http://www.codeforamerica.org/our-work/initiatives/#digital-front-door",
"1ojvca6": "http://www.amazon.com/Atlas-Cities-Paul-Knox/dp/0691157812/ref=sr_1_1?ie=UTF8&qid=1406927625&sr=8-1&keywords=paul+knox+atlas+of+cities/marginalrevol-20",
"1ojpFjS": "https://medium.com/@meghantrainor/the-pugetopolis-manifesto-3e5226f9451b",
"1scnSPl": "https://www.eventbrite.com/e/the-2014-code-for-america-summit-registration-11424407711",
"summit2014": "https://www.eventbrite.com/e/the-2014-code-for-america-summit-registration-11424407711",
"UOmRj4": "https://cfa.typeform.com/to/ifptbR",
"oakvn": "https://cfa.typeform.com/to/ifptbR",
"1xG9ZZk": "https://cfa.typeform.com/to/bVjqMZ",
"oakcn": "https://cfa.typeform.com/to/bVjqMZ",
"1pJbzW6": "https://cfa.typeform.com/to/Rvmkom",
"oakes": "https://cfa.typeform.com/to/Rvmkom",
"1m23xX9": "https://cfa.typeform.com/to/MhYKsI",
"oaken": "https://cfa.typeform.com/to/MhYKsI",
"1zJxlB2": "http://www.intercontinental.com/hotels/gb/en/san-francisco/sfohb/hoteldetail?qAdlt=1&qBrs=6c.hi.ex.rs.ic.cp.in.sb.cw.cv&qChld=0&qFRA=1&qGRM=0&qGrpCd=COF&qIta=99801505&qPSt=0&qRRSrt=rt&qRef=df&qRms=1&qRpn=1&qRpp=10&qSHp=1&qSmP=3&qSrt=sBR&qWch=0&srb_u=1&icdv=99801505",
"intercontinental": "http://www.intercontinental.com/hotels/gb/en/san-francisco/sfohb/hoteldetail?qAdlt=1&qBrs=6c.hi.ex.rs.ic.cp.in.sb.cw.cv&qChld=0&qFRA=1&qGRM=0&qGrpCd=COF&qIta=99801505&qPSt=0&qRRSrt=rt&qRef=df&qRms=1&qRpn=1&qRpp=10&qSHp=1&qSmP=3&qSrt=sBR&qWch=0&srb_u=1&icdv=99801505",
"1oIv7t2": "https://docs.google.com/a/codeforamerica.org/forms/d/1noEZYL-rcqfhdhKvg5n-jxlnXLZronhEge_-VEOKbkM/viewform",
"summitstartup": "https://docs.google.com/a/codeforamerica.org/forms/d/1noEZYL-rcqfhdhKvg5n-jxlnXLZronhEge_-VEOKbkM/viewform",
"1mRMXNb": "http://dbox.teczno.com/Esri-UC-Slides-2014.pdf",
"uc-2014": "http://dbox.teczno.com/Esri-UC-Slides-2014.pdf",
"Ub3Qrk": "http://teczno.com/s/p4gw",
"VAK21A": "http://codeforamerica.org/apply",
"fellow": "http://codeforamerica.org/apply",
"1pJrYP6": "http://techcrunch.com/2014/06/18/with-firefly-dynamic-perspective-amazon-just-opened-up-all-new-categories-for-app-developers/?ncid=rss&utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+Techcrunch+(TechCrunch)",
"1pdcVvo": "http://www.motherjones.com/media/2014/06/computer-science-programming-code-diversity-sexism-education",
"motherjones": "http://www.motherjones.com/media/2014/06/computer-science-programming-code-diversity-sexism-education",
"UGVW9P": "https://medium.com/@abhinemani/small-city-pieces-loosely-joined-5202fb5a93e3",
"smallpieces": "https://medium.com/@abhinemani/small-city-pieces-loosely-joined-5202fb5a93e3",
"1lkbo5s": "https://data.sfgov.org/Public-Health/Housing-Code-Violations-San-Francisco-CA/739v-w6y3",
"sf-housefacts": "https://data.sfgov.org/Public-Health/Housing-Code-Violations-San-Francisco-CA/739v-w6y3",
"1s6xgpW": "https://docs.google.com/presentation/d/1BXhSEDEaK1MyyIohbXt3RpI8HN7Q71Ix_c8lj6N0e84/edit?usp=sharing",
"housingcrisis": "https://docs.google.com/presentation/d/1BXhSEDEaK1MyyIohbXt3RpI8HN7Q71Ix_c8lj6N0e84/edit?usp=sharing",
"TLasNd": "https://docs.google.com/a/codeforamerica.org/spreadsheet/ccc?key=0Al_f25n12ejNdDIzS1B2LVlYazFacm5qQmlEdFpHR3c&usp=drive_web#gid=14",
"housingdata": "https://docs.google.com/a/codeforamerica.org/spreadsheet/ccc?key=0Al_f25n12ejNdDIzS1B2LVlYazFacm5qQmlEdFpHR3c&usp=drive_web#gid=14",
"TidCYh": "https://docs.google.com/presentation/d/1dHVk_FqFWNVkc5k-tqOpLQ66_CaCEpRrrlNOZ-W4SSs/pub?start=true&loop=false&delayms=60000#slide=id.g3895fb7b3_051",
"promptly-resources": "https://docs.google.com/presentation/d/1dHVk_FqFWNVkc5k-tqOpLQ66_CaCEpRrrlNOZ-W4SSs/pub?start=true&loop=false&delayms=60000#slide=id.g3895fb7b3_051",
"1mOdkkw": "https://docs.google.com/presentation/d/1dHVk_FqFWNVkc5k-tqOpLQ66_CaCEpRrrlNOZ-W4SSs/pub?start=true&loop=false&delayms=60000#slide=id.p",
"promptly-slides": "https://docs.google.com/presentation/d/1dHVk_FqFWNVkc5k-tqOpLQ66_CaCEpRrrlNOZ-W4SSs/pub?start=true&loop=false&delayms=60000#slide=id.p",
"TangMz": "http://www.cdsscounties.ca.gov/foodstamps/",
"calfresh-dashboard": "http://www.cdsscounties.ca.gov/foodstamps/",
"1o4JATt": "https://github.com/codeforamerica/promptly",
"promptly-code": "https://github.com/codeforamerica/promptly",
"1rHT5fa": "https://github.com/codeforamerica/promptly/wiki/CIS-SQL-queries",
"promptly-cis": "https://github.com/codeforamerica/promptly/wiki/CIS-SQL-queries",
"1ku05Ht": "https://github.com/codeforamerica/promptly/wiki#calfresh-discontinuation-text-messages",
"promptly-messages": "https://github.com/codeforamerica/promptly/wiki#calfresh-discontinuation-text-messages",
"1kAh23p": "https://github.com/codeforamerica/promptly/wiki/Text-and-Email-Consent-Form",
"promptly-consent": "https://github.com/codeforamerica/promptly/wiki/Text-and-Email-Consent-Form",
"1n9hEMW": "https://github.com/codeforamerica/promptly/wiki/How-to-Promptly",
"how-to-promptly": "https://github.com/codeforamerica/promptly/wiki/How-to-Promptly",
"1oP5T13": "http://hackforchange.org/challenges?s=By+code+for+america+&challenge-category=0",
"challenges": "http://hackforchange.org/challenges?s=By+code+for+america+&challenge-category=0",
"1lLpABQ": "https://docs.google.com/forms/d/1AMITi9sOLzBj7p-tzAjPGZjbpGXbraVtIgs_9TF5sEY/viewform",
"usertestingform": "https://docs.google.com/forms/d/1AMITi9sOLzBj7p-tzAjPGZjbpGXbraVtIgs_9TF5sEY/viewform",
"1j4vXml": "http://www.eventbrite.com/e/national-day-of-civic-hacking-bay-area-kickoff-reception-tickets-11511293589",
"SFkickoff": "http://www.eventbrite.com/e/national-day-of-civic-hacking-bay-area-kickoff-reception-tickets-11511293589",
"1oeBj0l": "https://www.eventbrite.com/e/code-4-sf-hack-weekend-national-day-of-civic-hacking-hackforchangesf-tickets-11489145343",
"SFBrigadeNDoCH": "https://www.eventbrite.com/e/code-4-sf-hack-weekend-national-day-of-civic-hacking-hackforchangesf-tickets-11489145343",
"1g3xq6G": "https://github.com/codeforamerica/health-project-ideas/issues",
"health": "https://github.com/codeforamerica/health-project-ideas/issues",
"1hQfegr": "https://civicentrepreneurship.eventbrite.com/",
"1myvgD3": "http://adsoftheworld.com/media/online/cocacola_radar_for_good",
"1mvOxFj": "http://www.codeforamerica.org/blog/2014/03/26/codeacross-2014-infographics/",
"1fY5PIv": "http://www.codeforamerica.org/blog/2014/03/14/four-great-years/",
"1bJZv6h": "http://techcrunch.com/2014/02/25/current-ly-is-an-app-that-makes-twitter-trending-topics-suck-less/?ncid=rss&utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+Techcrunch+(TechCrunch)",
"1fIUIhb": "http://techcrunch.com/2014/02/22/obamacare-spurring-a-new-generation-of-healthcare-startups/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+Techcrunch+(TechCrunch)",
"1f5gRoX": "https://docs.google.com/a/codeforamerica.org/spreadsheet/ccc?key=0Al_f25n12ejNdDIzS1B2LVlYazFacm5qQmlEdFpHR3c&usp=drive_web#gid=2",
"House": "https://docs.google.com/a/codeforamerica.org/spreadsheet/ccc?key=0Al_f25n12ejNdDIzS1B2LVlYazFacm5qQmlEdFpHR3c&usp=drive_web#gid=2",
"1eOaMNo": "http://techcrunch.com/2014/02/18/kimono-is-a-smarter-web-scraper-that-lets-you-api-ify-the-web-no-code-required/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+Techcrunch+(TechCrunch)",
"1lzL31k": "http://www.psmag.com/navigation/books-and-culture/says-libraries-going-extinct-73029/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+miller-mccune/summary_feed+(Pacific+Standard+-+Summary+Feed)",
"1iEqQWt": "http://www.newyorker.com/online/blogs/elements/2014/02/as-technology-gets-better-will-society-get-worse.html?utm_content=bufferc5de6&utm_medium=social&utm_source=facebook.com&utm_campaign=buffer&mobify=0",
"1i2nJbg": "http://www.fastcodesign.com/3025292/helvetica-garamond-glasses-turn-fonts-into-frames",
"1i2lPXW": "http://www.theatlantic.com/international/archive/2014/01/lessons-from-the-worlds-most-tech-savvy-government/283341/",
"1impLmh": "http://www.nytimes.com/2014/01/08/opinion/what-makes-lagos-a-model-city.html?src=rechp&_r=0",
"1ghJa6u": "http://blog.dobt.co/2014/01/08/dont-blame-the-client/",
"1iO5Yz2": "http://www.nytimes.com/2014/01/07/opinion/new-york-the-silicon-city.html?hpw&rref=opinion&_r=0",
"1chm6F4": "http://www.latimes.com/local/lanow/la-me-ln-restaurant-grades-yelp-20131219,0,3335548.story#axzz2oIiym4TI",
"1a1bby9": "https://docs.google.com/a/codeforamerica.org/document/d/12o4i910RmqYAQt9I04Q9yA3AAZN_S5doKwg_jfuMudo/edit?usp=sharing",
"brigade-stats-index": "https://docs.google.com/a/codeforamerica.org/document/d/12o4i910RmqYAQt9I04Q9yA3AAZN_S5doKwg_jfuMudo/edit?usp=sharing",
"HFOS6X": "http://thehill.com/blogs/healthwatch/health-reform-implementation/189224-in-wake-of-botched-rollout-obama-to-seek-it",
"1hep95c": "http://www.knightfoundation.org/blogs/knightblog/2013/10/22/code-america-summit-considers-whats-next-government",
"HhiuGZ": "http://www.businessweek.com/articles/2013-10-31/obamas-broken-promise-of-better-government-through-technology",
"19KmtFK": "http://www.newmediaventures.org/announcing-our-innovation-fund-2/",
"1g3ePLI": "http://www.youtube.com/watch?v=3bK9B8_0FDQ",
"1gzuiUZ": "http://www.youtube.com/playlist?list=PL65XgbSILalV-wInUiERrhjweMlJkukMd",
"1fAHfwk": "https://cfa.typeform.com/to/vAVouK",
"citycamp13": "https://cfa.typeform.com/to/vAVouK",
"1g3VniZ": "http://cfastartupshowcase.eventbrite.com/",
"showcase": "http://cfastartupshowcase.eventbrite.com/",
"1dWBiqe": "https://plus.google.com/hangouts/_/7fed47b37bb450061922ea2e34ced1c0fbedf797",
"1eMVj5D": "https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=0CDgQFjAA&url=https://www.cityofchicago.org/content/dam/city/depts/dps/ContractAdministration/Specs/2013/Spec119440.docx&ei=-7xFUrmcE6aZiQLq1oCoDg&usg=AFQjCNFafCx2aNisg-qiUBOB9pwaJfNsWA&bvm=bv.53217764,d.cGE",
"15FKDRh": "https://docs.google.com/a/codeforamerica.org/document/d/1ec2B34EILVC6alFSm9cPYzkpMwy90GTTsmB-qGSiU30/edit",
"organizers-questions": "https://docs.google.com/a/codeforamerica.org/document/d/1ec2B34EILVC6alFSm9cPYzkpMwy90GTTsmB-qGSiU30/edit",
"14gw3id": "http://www.bartleby.com/124/pres56.html",
"15nQR8d": "http://www.codeforamerica.org/2010/07/04/the-new-american-revolution-millennials-rise/",
"15nQmLo": "http://www.codeforamerica.org/2013/08/06/citizen-engagement-one-text-at-a-time/",
"15nO8vJ": "http://openbudgetoakland.org/",
"19RIMfQ": "http://www.mugiyamamoto.com/stack/",
"17be9hM": "http://kottke.org/13/08/yo-yo-tricks-through-the-ages",
"1awMMC0": "https://docs.google.com/a/codeforamerica.org/document/d/1xa-GgXmg8CfYeE1fbsEvs11lHpgv_lWRoP4XurOC4jI/edit",
"14MAzRo": "http://www.nytimes.com/2013/08/18/nyregion/a-prayer-before-the-complaints-roll-in.html?_r=0",
"14MABc1": "http://www.govtech.com/San-Jose-To-Open-Data.html",
"1bAEGG8": "http://codeforamerica.theresumator.com/apply/9u1wR5/Senior-Engineer.html",
"16eMcVe": "https://www.adopta.co/",
"13xK9YU": "http://kottke.org/13/08/the-surprising-ages-of-the-founding-fathers-on-july-4-1776",
"13xFshW": "http://sunlightfoundation.com/opendataguidelines/",
"1cKApCY": "http://www.technobuffalo.com/2013/05/12/elon-musk-tony-stark-infographic/",
"15vBrdd": "http://www.youtube.com/watch?v=hRsC5SNN2lQ",
"19OsxiO": "https://docs.google.com/a/codeforamerica.org/document/d/1UfGOimFisLZsx10XlqRTNnFOqiP4shuiKUmz43l7deI/edit",
"hrtbus-pr": "https://docs.google.com/a/codeforamerica.org/document/d/1UfGOimFisLZsx10XlqRTNnFOqiP4shuiKUmz43l7deI/edit",
"17tPm5i": "http://brigade.codeforamerica.org/",
"19yMHwY": "http://openasheville.github.com/look-at-asheville/",
"19yMIky": "http://ondrae.github.io/kc_311dailybrief/",
"169kdoE": "http://tripplanner.tulsawebdevs.org/index.html",
"19yMERT": "http://routrcha.org/opentripplanner-webapp/#/",
"19yME4k": "https://github.com/chip-rosenthal/atx-lives-feed",
"19yMwSl": "http://brigade.codeforamerica.org/applications/data.lexingtonky.gov",
"19yMwlw": "http://brigade.codeforamerica.org/applications/data.grcity.us",
"169jh3y": "http://ec2-54-224-79-59.compute-1.amazonaws.com/where/standard/",
"169hpYv": "http://adoptahydrant.opentwincities.org/",
"13BSlWR": "http://www.kcmo.org/CKCMO/NewsArchives/CityNewsReleases-2013/072613A",
"19xPCWP": "http://www.kcur.org/post/kansas-city-kansas-mayor-has-texting-fun-annual-address#.UT-YTwftJT8.twitter",
"11v3JY6": "http://www.louisvilleky.gov/Mayor/News/2013/6-24-13+Louisville+Restaurant+Scores+to+be+Featured+on+Yelp+Website.htm",
"17ikIM0": "http://techpresident.com/news/23373/what-philadelphias-new-director-civic-technology-there-do",
"1au6b7l": "http://code2040foramerica.eventbrite.com/",
"1au5jj5": "http://codeforamerica.org/civic-data-standards/",
"1dmNcHQ": "http://www.dobt.co/What-Is-The-Future-Of-Open-Government/",
"186Ob1R": "http://codeforamerica.theresumator.com/apply/2SvIv7/Director-Of-Business-Development-Marketing.html",
"14UOjvd": "http://codeforamerica.org/2013/07/04/libertybell/",
"1cVzifs": "http://codeforamerica.org/2012/11/07/citizenship-beyond-the-election/",
"1agSszC": "https://docs.google.com/document/d/1EUZScu8aTvYjBxyHk6rY9fI_YspjC6DBi9vbzG4P2So/edit",
"14yOKLI": "https://docs.google.com/a/codeforamerica.org/document/d/1F-sAZL55n03nxbC64fvSi0gPDU9WMfHc5Imnl61-Dtg/edit",
"16xUMNQ": "http://www.eventbrite.com/event/7043317753",
"14sBPej": "http://codeforamerica.org/2013/06/24/civic-insight-wins-knight-news-challenge",
"126EoUk": "http://codeforamerica.org/2013/06/21/civic-data-standard-featured-in-the-atlantic/",
"126Eo6G": "http://codeforamerica.org/?p=23258&preview=true",
"12LNac9": "https://cfa.typeform.com/to/uJmsNA",
"cbf-survey": "https://cfa.typeform.com/to/uJmsNA",
"17mzgA9": "http://ckan.org/instances/",
"11HF0Qa": "http://codeforamerica.org/2013/06/11/what-i-learned-at-the-summit/",
"111Taff": "http://www.nytimes.com/packages/html/magazine/2013/innovations-issue/#/?part=introduction",
"1603Xar": "https://www.google.com/webhp?sourceid=chrome-instant&espv=2&es_sm=119&ie=UTF-8",
"112fGBa": "http://cfabrigade.ideascale.com/a/ideafactory.do?id=23700&mode=top&discussionFilter=byids&discussionID=47702",
"19LVav8": "http://brigade.codeforamerica.org/civic-coding",
"civic-coding": "http://brigade.codeforamerica.org/civic-coding",
"1aAauIS": "https://cfalabs.geckoboard.com/dashboards/0026A6866403B553",
"summitdash": "https://cfalabs.geckoboard.com/dashboards/0026A6866403B553",
"14b8bZa": "https://cfa.typeform.com/to/nmpYn9",
"hack": "https://cfa.typeform.com/to/nmpYn9",
"12ROrKO": "http://codeforamerica.org/2013/05/30/my-own-fellowship-year/",
"15mdcAH": "http://sfcivichacking.eventbrite.com/",
"ZheH2m": "http://codeforamerica.org/2013/05/30/municipal-coders/",
"1333j9u": "http://peernetwork.in/",
"12vktfj": "http://codeforamerica.org/2013/05/22/national-day-of-civic-hacking-live-beyond-the-day/",
"12vk78v": "http://codeforamerica.org/2013-partners/san-mateo-county/",
"12vg3p1": "http://www.bloomberg.org/blog/2013-05-22-innovation",
"16OsqCj": "https://docs.google.com/a/codeforamerica.org/spreadsheet/ccc?key=0Av6fXGGCJD4GdGhSYVpxTG1ZWWFxUDFQaGFweFBFcWc#gid=0",
"14xMLby": "https://docs.google.com/a/codeforamerica.org/document/d/1gwqj9jFfzBXacVsJFjwFQMY2HmxnjbUA3eZE4B7aX98/edit",
"10eiKx4": "http://codeforasheville.org/look-at-asheville/",
"13zbNnr": "http://www.cityofboston.gov/cityhalltogo/",
"18Lhl4b": "http://www.whitehouse.gov/blog/2013/05/15/rfp-ez-delivers-savings-taxpayers-new-opportunities-small-business",
"10sajul": "http://commons.codeforamerica.org/civic-function/open-data-portal",
"12gxEB3": "http://codeforamerica.org/2013/05/07/towards-a-procurement-strategy/",
"11AdSji": "http://www.women2.com/what-square-is-doing-to-build-a-female-friendly-culture/?utm_source=Women+2.0+Mailing+List&utm_campaign=88a7598684-2013_4_23&utm_medium=email",
"11K3oj3": "http://www.economist.com/news/united-states/21576694-cities-are-finding-useful-ways-handling-torrent-data-numbers",
"ZHXEWU": "http://www.abhinemani.com/2013/04/24/the-consequences-of-consent/",
"14Rs6BU": "https://data.ny.gov/",
"179wKdM": "http://codeforamerica.github.com/annual",
"10eNpGj": "http://www.huffingtonpost.com/jake-brewer/gigabit-internet_b_2957015.html",
"ZTyRND": "https://www.newschallenge.org/open/open-government/submission/bottom-up-change-collaborative-bucc-/",
"14i3GkH": "http://www.meetup.com/OpenKnowledgeFoundation/San-Francisco-CA/817272/",
"Yqdn8j": "http://science.time.com/2013/03/12/south-by-southwest-dont-fight-city-hall-hack-it/",
"166ZHqb": "http://www.meetup.com/Code-for-San-Francisco-Civic-Hack-Night/events/106844652/",
"Zlzqza": "http://www.neontommy.com/news/2013/03/culver-city-becomes-california-s-first-city-use-smart911#.UTVgloCt910.twitter",
"UZdYBU": "http://lit-inlet-3610.herokuapp.com/busfinder/",
"hrt-bus-app": "http://lit-inlet-3610.herokuapp.com/busfinder/",
"XPbQft": "http://codeforamerica.org/2013/02/15/its-about-people/",
"12RTazs": "http://codeforamerica.org/2013-partners/las-vegas/",
"12RT62P": "http://www.yourvoicevegas.com/",
"YXETN9": "http://codeforamerica.enterthemeeting.com/m/D5TAW2Z4",
"WIGsxS": "http://brigade.codeforamerica.org/pages/codeacross",
"XtWPgU": "http://codeforamerica.org/fellows/2012-program-and-timeline/",
"WJ1z1Q": "http://codeforamerica.theresumator.com/apply/ffvBB9/Marketing-Manager.html",
"143cwRi": "http://codeforamerica.theresumator.com/apply/BmKq8z/Finance-Manager.html",
"143cvwB": "http://codeforamerica.theresumator.com/apply/yYnmfy/Director-CfA-Peer-Network.html",
"143cngK": "http://codeforamerica.theresumator.com/apply/ytXDHN/Chief-Technology-Officer-CTO.html",
"13HQzqX": "http://codeforamerica.enterthemeeting.com/m/QCBW9SI2",
"13IbCIK": "http://codeforamerica.org/wp-content/uploads/2013/01/foodinspection.pdf",
"13HQoM5": "http://codeforamerica.org/2013/01/17/foodies-and-open-data-enthusiasts-rejoice/",
"13IbxoE": "http://foodinspectiondata.us/",
"YViaUL": "http://codeforamerica.org/2012/12/07/the-state-of-civic-tech/",
"TxNFOX": "https://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=1799+mission&aq=&sll=37.672443,-122.453467&sspn=0.0107,0.022724&vpsrc=0&ie=UTF8&hq=&hnear=1799+Mission+St,+San+Francisco,+California+94103&t=m&z=16&iwloc=A",
"VO1AA7": "http://plastic-cities.posterous.com/the-election-will-be-over-soon-okay",
"VO0ZhN": "http://www.prnewswire.com/news-releases/bloomberg-philanthropies-selects-20-finalist-cities-for-mayors-challenge-177246731.html",
"R7AZOD": "https://docs.google.com/document/d/1yTFYRVmRk9V9up7dUKilcFWlK8EEjbkzTi-YOGAY608/edit",
"Tdjn1k": "http://michelf.ca/projects/php-markdown/dingus/",
"markdownextra": "http://michelf.ca/projects/php-markdown/dingus/",
"TiLXTr": "http://tanakahisateru.github.com/js-markdown-extra/demo.html",
"tables": "http://tanakahisateru.github.com/js-markdown-extra/demo.html",
"Sx0CrJ": "http://pagedown.googlecode.com/hg/demo/browser/demo.html",
"markdown": "http://pagedown.googlecode.com/hg/demo/browser/demo.html",
"QC2jSM": "http://datadeathmatch.eventbrite.com/",
"QB7v9r": "http://www.govloop.com/forum/topics/which-app-would-you-use-for-engagement",
"Tyw0F5": "http://adopt-a-hydrant-providence.herokuapp.com/",
"adopta-providence": "http://adopt-a-hydrant-providence.herokuapp.com/",
"U76XhE": "http://brigade.codeforamerica.org/pages/race-for-reuse",
"race4reuse": "http://brigade.codeforamerica.org/pages/race-for-reuse",
"R9fFI5": "http://www.youtube.com/watch?v=qbS5NwGn1-0",
"writeathon": "http://www.youtube.com/watch?v=qbS5NwGn1-0",
"TtdPRe": "http://live.huffingtonpost.com/r/segment/5069e75202a76025c200030f",
"RA2Cyn": "http://usnews.nbcnews.com/_news/2012/09/26/14111342-developers-seek-new-challenge-fix-city-hall",
"on-nbc-news": "http://usnews.nbcnews.com/_news/2012/09/26/14111342-developers-seek-new-challenge-fix-city-hall",
"QiJBPM": "http://codeforamerica.org/2012/10/15/live-stream-sf-presents-major-open-data-legislation/",
"RxDPy4": "http://storify.com/alexpandel/blightstatus-launches-in-new-orleans",
"UNkYwA": "http://codeforamerica.org/2012/10/03/race-for-reuse/",
"UKt8Wo": "http://www.youtube.com/playlist?list=PL65XgbSILalWgNf1uM96bb5TeVC3v-h4d",
"QFd1v5": "http://network.codeforamerica.org/",
"SvMKMx": "http://codeforamerica.org/2012/10/01/strengthening-the-code-for-america-board/",
"Si0NoZ": "https://maps.google.com/maps?ie=UTF-8&q=Conference+Center+at+Mission+Bay&fb=1&gl=us&hq=Conference+Center+at+Mission+Bay&hnear=0x80859a6d00690021:0x4a501367f076adff,San+Francisco,+CA&cid=0,0,14630148899230845512&ei=cRu1T_7WJpKNigKJuIGaAg&oi=local_result&ved=0CBsQ_BIwCQ",
"ScbidA": "https://www.gov.uk/designprinciples/styleguide",
"TfZSvC": "http://video.msnbc.msn.com/nbcnews.com/49035675",
"TfZNbg": "http://gov.aol.com/2012/09/21/what-the-white-house-saw-in-code-for-america",
"TfX7ur": "http://www.designstaff.org/articles/how-to-choose-the-right-ux-metrics-for-your-product-2012-03-27.html",
"PtBBgI": "http://www.whitehouse.gov/innovationfellows/20initiative",
"OFiT38": "https://groups.google.com/a/codeforamerica.org/forum/#!msg/brigade/OMWxIqusdec/XRlQtVwFgQkJ",
"OCRuUW": "http://www.youtube.com/watch?v=Fh46GLyKSmg&feature=youtu.be",
"OWV5Jp": "http://codeforamerica.theresumator.com/apply/yYnmfy/Director-CfA-Peer-Network.html?channel=twitter&source=TWIT&referrer=15209501",
"PHU7ne": "http://idaconcpts.com/2012/09/12/jack-dorseys-speech-at-disrupt-2012-full-video/",
"OpmEJI": "http://codeforamerica.org/?cfa_project=honolulu-answers",
"hnl-answers": "http://codeforamerica.org/?cfa_project=honolulu-answers",
"OplX32": "http://www.huffingtonpost.com/burt-lum/redesigning-the-interface_b_1757992.html?utm_hp_ref=tw",
"OplBcL": "http://www.statetechmagazine.com/article/2012/09/3-code-america-solutions-are-changing-local-government",
"ULDNlz": "http://cfasummit.org/apply/",
"Pnn5sj": "http://rortybomb.wordpress.com/about/monetary_gif/",
"ODQbkv": "http://tcdisrupt.babelverse.com/sf/",
"ROxr57": "http://www.meetup.com/DC-Tech-Meetup/events/39214262/",
"QhXqgI": "https://docs.google.com/a/codeforamerica.org/spreadsheet/viewform?formkey=dERyY2lCUV9Fd2s1dWZySmtHdXRtbGc6MA#gid=0",
"OLHO6S": "http://blog.thedetroithub.com/2012/09/04/textmybus-rolls-out-in-detroit/",
"R2H4IP": "http://applicationsforgood.org/blog/challenging-all-developers-and-designers/",
"code4change": "http://applicationsforgood.org/blog/challenging-all-developers-and-designers/",
"Nzd1hl": "http://technicallyphilly.com/2012/08/30/we-should-be-audacious-code-for-americas-philly-brigade-co-captain-chris-alfano-has-big-plans",
"OzsvzX": "http://blog.uber.com/2012/08/28/the-wondrous-tale-of-the-uber-unicorn/",
"PGZDDT": "http://codeforamerica.org/2012/08/23/inspiration/",
"PAcJ8j": "http://codeforamerica.org/projects/",
"R3Nwzm": "http://www.rapidgrowthmedia.com/dogood/08_23_12_Friendly_Corps.aspx",
"R3JQ0C": "http://answers.honolulu.gov/",
"NNAdCY": "http://codeforamerica.org/2012/08/17/reusable-civic-technology-urban-legend-or-urban-reality/",
"R6LrqE": "http://cfa2012webinar.eventbrite.com/",
"TzOgjr": "http://cfasalonaugust.eventbrite.com/?discount=FRIEND",
"R9UYzt": "http://panelpicker.sxsw.com/vote/3824",
"Nl1l1g": "https://maps.google.com/maps/ms?msid=211836600249959492431.0004c55a1af6b94aadd94&msa=0",
"brigade-cities": "https://maps.google.com/maps/ms?msid=211836600249959492431.0004c55a1af6b94aadd94&msa=0",
"NkT5hM": "https://maps.google.com/maps/ms?msid=211836600249959492431.0004c55a1af6b94aadd94&msa=0&ll=34.538664,-88.855273&spn=68.285531,91.054688&iwloc=0004c616dc4cbf9e83936",
"brigade-map": "https://maps.google.com/maps/ms?msid=211836600249959492431.0004c55a1af6b94aadd94&msa=0&ll=34.538664,-88.855273&spn=68.285531,91.054688&iwloc=0004c616dc4cbf9e83936",
"P8jjnb": "http://storify.com/boothism/codeforoakland-2012",
"MkbolA": "http://codeforamerica.org/2012/08/08/brigade-weekly-news-august-8-2012/",
"O15VkM": "http://www1.honolulu.gov/csd/publiccom/honnews12/chimpdeath.htm",
"hnlzoochimp": "http://www1.honolulu.gov/csd/publiccom/honnews12/chimpdeath.htm",
"O15bvX": "http://www1.honolulu.gov/csd/publiccom/honnews12/onlinecampingpermitsaccessibleonmobiledevices080312.htm",
"hnlcamping": "http://www1.honolulu.gov/csd/publiccom/honnews12/onlinecampingpermitsaccessibleonmobiledevices080312.htm",
"O14YJd": "http://www1.honolulu.gov/csd/publiccom/honnews12/mayordedicatestransitctrbusesaug612.htm",
"hnltransit": "http://www1.honolulu.gov/csd/publiccom/honnews12/mayordedicatestransitctrbusesaug612.htm",
"P3NImJ": "http://cfasummit.org/speakers/",
"QnKARW": "http://openplans.org/2012/08/02/the-openplans-guide-to-gtfs-data/",
"QnDblu": "http://www.eventbrite.com/event/3964381572",
"O9s8Md": "http://abhinemani.tumblr.com/post/28272167500/since-todays-the-deadline-to-apply-code-for",
"OpSQRB": "https://github.com/codeforamerica/adopt-a-hydrant",
"P6N0Q3": "http://www.flickr.com/photos/codeforamerica/sets/72157630751592852/",
"templates": "https://docs.google.com/document/u/0/?ftv=1&folder=0AIw9rnROhx9AUk9PVA&tgif=d",
"MM7KOW": "https://docs.google.com/a/codeforamerica.org/document/d/1RHm8eZ3I_1CzIaXC8RD17sTpX0nsJNnK-dO79yIIeFg/edit",
"to-review": "https://docs.google.com/a/codeforamerica.org/document/d/1RHm8eZ3I_1CzIaXC8RD17sTpX0nsJNnK-dO79yIIeFg/edit",
"LJQ8Fw": "https://github.com/codeforamerica/textizen/tree/designtemplates/doc/designtemplates",
"textizentemplates": "https://github.com/codeforamerica/textizen/tree/designtemplates/doc/designtemplates",
"MORbPR": "http://brigade.codeforamerica.org/pages/openimpact-government",
"open-impact-gov": "http://brigade.codeforamerica.org/pages/openimpact-government",
"Mun1aO": "http://rlv.zcache.com/3d_baby_panda_mobile_phone_poster-rc22d100e48224c759a63ca8787730988_ayzrs_210.jpg",
"Nw0nZq": "http://www.reddit.com/r/IAmA/comments/wigka/im_jennifer_pahlka_founder_of_code_for_america/",
"N2xskT": "http://sunlightfoundation.com/blog/2012/07/10/filming-opengov-champions-waldo-jaquith/",
"NfPyz1": "http://codeforamerica.github.com/honolulu-writeathon/",
"honolulu-writeathon": "http://codeforamerica.github.com/honolulu-writeathon/",
"NbN18N": "http://madison.legistar.com/View.ashx?M=A&ID=190151&GUID=0B72951F-E7BC-44BB-8AFD-9F3505A2D611",
"NfCKrB": "http://maconmaps.herokuapp.com/hnl",
"OQCUH8": "http://civic.io/2012/07/09/from-zero-to-civic-in-5-minutes/",
"MdtqS4": "http://mobile.baltimoresun.com/p.p?m=b&a=rp&id=2379210&postId=2379210&postUserId=46&sessionToken=&catId=7696&curAbsIndex=2&resultsUrl=DID%3D6%26DFCL%3D1000%26DSB%3Drank%2523desc%26DBFQ%3DuserId%253A46%26DL.w%3D%26DL.d%3D10%26DQ%3DsectionId%253A7696%26DPS%3D0%26DPL%3D5",
"Lzn30N": "http://500hats.com/late-bloomer",
"MayF6z": "http://news.ycombinator.com/item?id=4208722",
"OA5BYL": "http://codeforamerica.org/2012/07/05/filling-your-open-data-catalog/",
"LY6WU1": "http://movies.nytimes.com/2012/07/03/movies/review-the-amazing-spider-man-with-andrew-garfield.html?ref=movies",
"O13BoG": "http://codeforamerica.org/2012/07/03/designing-preparedness/",
"MtfhFc": "http://news.ycombinator.com/item?id=4195048",
"KUO5Os": "http://codeforamerica.org/2012/06/28/communities-government-success/",
"LHyQbe": "http://www.youtube.com/watch?feature=endscreen&NR=1&v=S78RzZr3IwI",
"O5svb2": "http://dl.dropbox.com/u/2774437/GMU/1-2. Stratmann - Econometrics/paper/Concepts-of-freedom.pdf",
"LMzu8N": "http://newschallenge.tumblr.com/post/25579287534/01100100011000010111010001100001011001000110111101101110",
"L9EPku": "http://www.theatlantic.com/politics/archive/2012/05/democracy-is-for-amateurs-why-we-need-more-citizen-citizens/256818/",
"NZI05N": "http://www.tampagov.net/information_resources/HACKATHON/index.asp",
"NZGIYv": "http://www.google.com/calendar/embed?src=codeforamerica.org_svq8pao6907bhbpoa02bqlhf6g@group.calendar.google.com&ctz=America/New_York",
"KUWZrV": "http://newschallenge.tumblr.com/post/25546308551/local-data-democratizing-data-collection-analysis",
"LJk98l": "http://www.informationdiet.com/blog/read/apple-public-transportation-and-ios6",
"KsgZ9I": "http://www.npr.org/blogs/thetwo-way/2012/06/08/154583514/listen-npr-hosts-reporters-take-on-call-me-maybe",
"LgwRZm": "https://docs.google.com/a/codeforamerica.org/spreadsheet/viewform?formkey=dDNZWFRhcjY0TjBKczJmRWtLZTluV0E6MQ",
"sctrolley": "https://docs.google.com/a/codeforamerica.org/spreadsheet/viewform?formkey=dDNZWFRhcjY0TjBKczJmRWtLZTluV0E6MQ",
"Mrj147": "https://www.google.com/calendar/render?action=TEMPLATE&text=2012+Code+for+America+Summit+(Invite+Only)&dates=20121001T200000Z/20121004T000000Z&details=For+details,+link+here:+http://2012cfasummit.eventbrite.com&location=11675+Owens+Street+-+San+Francisco,+94143&pli=1&sf=true&output=xml",
"Mridwb": "http://codeforamerica.org/2012/06/07/over-230-startups-apply-to-code-for-america/",
"Mgxt2f": "http://www.textizen.com/welcome",
"MgvWJz": "http://blogs.wsj.com/cio/2012/06/07/the-morning-download-how-government-apps-could-kill-your-business/",
"LrU0VO": "https://github.com/codeforamerica/textizen",
"KciqsK": "http://technicallyphilly.com/2012/06/06/textizen-code-for-america-citizen-feedback-text-tool-launches-pilot-with-philadelphia-city-planning-commission",
"KbefH8": "http://codeforamerica.github.com/user-test/",
"hnltest": "http://codeforamerica.github.com/user-test/",
"L8OHdx": "http://techcrunch.com/2012/06/02/how-to-cash-in-on-government-as-a-platform/",
"LSni4j": "http://cfasalonjuly.eventbrite.com/",
"LJVQlO": "http://codeforamerica.org/accelerator/#application",
"LJO8rV": "https://www.yammer.com/codeforamerica.org/#/Threads/show?threadId=178951902",
"JQwHKC": "http://twitter.theinfo.org/205841352150360064#id206036911544999938",
"JuaQVs": "http://news.ycombinator.com/item?id=4018900",
"Kg342P": "http://www.whitehouse.gov/sites/default/files/omb/egov/digital-government/digital-government.html",
"KbKwAH": "http://www.good.is/post/part-peace-corps-part-venture-capital-code-for-america-s-plan-for-public-innovation/",
"KbHHzI": "http://codeforamerica.org/2012/05/22/why-civic-startup/",
"MBa9hi": "http://civiccommons.org/government-entities/city-bloomington",
"Le5koH": "http://www.knightfoundation.org/blogs/knightblog/2012/5/16/announcing-next-knight-news-challenge-data/",
"Ldw4pe": "http://blog.google.org/2012/05/code-for-americas-civic-start-up.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+OfficialGoogleorgBlog+(Official+google.org+Blog)",
"JmQ2gO": "http://ideas.woothemes.com/forums/72423-general-ideas-/suggestions/2859550-build-an-open-data-catalog-website",
"MoUgdU": "http://www.fandango.com/movieblog/aaron-sorkin-to-adapt-bestselling-steve-jobs-book-for-sony-715201.html",
"JmOjb8": "http://opendataphilly.org/",
"Jk6Uop": "http://gizmodo.com/5910223/how-yahoo-killed-flickr-and-lost-the-internet",
"JusBbA": "https://docs.google.com/a/codeforamerica.org/document/d/1vaR8t7vr8fxuDm4oMnUU9XK78AxW8vAUct_N_vPyVxU/edit",
"KirpoU": "http://storify.com/abhinemani/inaugural-cfasalon-w-ellnmllr-of-sunfound-and-stei",
"J9AjnZ": "http://cfasalonmay-estw.eventbrite.com/",
"JQEofu": "http://www.washingtonpost.com/national/on-innovations/code-for-america-an-elegant-solution-for-government-it-problems/2011/12/16/gIQAXrIu2O_story.html",
"Jnko1O": "http://cfasalonmay.eventbrite.com/?discount=FRIEND",
"Jnh4ny": "http://codeforamerica.tumblr.com/day/2012/05/01/",
"JEv3bs": "http://govfresh.com/2012/04/civicsponsor-helps-citizens-crowdfund-their-public-spaces/",
"Io9ApI": "http://civiccommons.org/apps/mindmixer",
"JqvzeC": "http://codeforamerica.org/2012/04/26/the-brigade-effect/",
"IbYx3b": "http://blog.measuredvoice.com/post/21858304558/why-were-a-civic-startup",
"JsFOwq": "https://groups.google.com/forum/?fromgroups#!forum/shareabouts-dev",
"IcgzDq": "http://www.kctv5.com/video?autoStart=true&topVideoCatNo=default&clipId=7008520#.T5cmzzFYzKY.facebook",
"Icfdsb": "http://civiccommons.org/stories/crowdsourcing-better-neighborhoods",
"K4vKcr": "http://www.vanityfair.com/hollywood/2012/05/aaron-sorkin-newsroom-sneak-peek",
"I51Q9s": "http://cfasalonmay-eorg.eventbrite.com/",
"Jm6sHr": "https://www.facebook.com/photo.php?fbid=10150676573956167&set=a.23765146166.43114.500311166&type=1&theater¬if_t=like",
"HWm2NG": "http://startups.codeforamerica.org/wp-admin/options-writing.php?settings-updated=true",
"HO75Ij": "http://cfasalonmay.eventbrite.com/",
"HUHxxW": "http://techcrunch.com/2012/04/18/obvious-backs-online-community-for-local-neighborhoods-and-cities-neighborland/",
"JIDG2l": "http://www.youtube.com/watch?v=fWNaR-rxAic&ob=av3e",
"HYmaZo": "http://mashable.com/2012/04/18/see-click-fix/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+Mashable+(Mashable)",
"JFMBSa": "http://codeforamerica.org/accelerator/index.html",
"INmoWa": "http://wiki.civiccommons.org/Initiatives#Open_Data_Initiatives",
"HQVigZ": "http://www.guardian.co.uk/commentisfree/2012/apr/17/mayors-destroy-civic-mafias?CMP=twt_fd",
"IG4P50": "http://rockhealth.com/Boston/",
"HOVdff": "http://startupgovmeetupsf.eventbrite.com/",
"ISWmxx": "http://codeforamerica.org/accelerator/",
"ISW2in": "http://codeforamerica.org/2012/04/16/accelerator/",
"ISVCIM": "http://news.ycombinator.com/item?id=3847645",
"HO3v3N": "http://civiccommons.org/apps/all-our-ideas",
"IsKcuT": "http://civiccommons.org/apps/giftflow",
"HIzkYd": "https://cfalabs.geckoboard.com/dashboard/645278AFA6982A15/",
"HBInye": "http://overview.ap.org/blog/2012/02/next-steps-for-development-and-a-job-posting/",
"HEmjyQ": "http://techcrunch.com/2012/04/09/right-before-acquisition-instagram-closed-50m-at-a-500m-valuation-from-sequoia-thrive-greylock-and-benchmark/",
"IafGX5": "http://www.consumerfinance.gov/blog/the-cfpbs-source-code-policy-open-and-shared/",
"Hnn2c0": "https://github.com/codeforamerica/cfawp2012/commit/c3d731c3b804aa270f8dfcafc0ab22235b51dc9d",
"HfARpl": "http://www.theatlantic.com/entertainment/archive/2012/04/designing-mad-men-the-stories-behind-joans-dresses-and-dons-suits/255461/",
"HfyW4k": "http://civiccommons.org/apps/open-atrium",
"Hfwta6": "http://codeforamerica.org/2012/04/04/mark-headd-why-im-coding-for-ameria/",
"Hgaxke": "http://www.zefhemel.nl/?p=3571#.T3vpKZd2aes.twitter",
"HC2myA": "http://codeforamerica.org/jobs/",
"H2hrp1": "http://grist.org/transportation/slow-ride-buses-are-the-new-vehicles-of-youth-rebellion/?utm_source=dlvr.it&utm_medium=twitter&utm_campaign=gristacct",
"H2cgry": "http://mashable.com/2012/03/30/city-mobile-apps/",
"H7mvq5": "http://newschallenge.tumblr.com/post/19397286300/the-open311-inquiry-platform-a-civic-standard-for",
"H0Ef61": "http://anemani.github.com/CfA_Accelerator/",
"Hb7wiL": "https://docs.google.com/a/codeforamerica.org/document/d/1NfVNvbPDbOr0W-G4cmqAWClj_G49frbMFP3LHNCFgoc/edit",
"GV5fam": "http://www.bunkerhillusa.com/pages/for-america",
"HcjauW": "http://civiccommons.org/apps/drupal",
"H2q1Wv": "http://www.slingbox.com/go/home?ticket=5c91050a-e91c-4b59-b620-25383bb211d7-prod",
"GHGIa4": "http://www.readwriteweb.com/archives/green_button_open_data_just_created_an_app_market_for_12m_us_homes.php",
"GMMMxu": "http://www.bluedropawards.org/best-marketplace-website-built-with-drupal/nominees/civic-commons",
"GJ0bXn": "http://xkcd.com/1032/",
"GFnQ7w": "https://impactaccelorators.eventbrite.com/#m_1_100",
"GFm5a8": "http://www.mediacamp.com/apply/",
"GJjJMv": "https://webfwd.org/other/rules/",
"GHckrN": "http://civiccommons.org/apps/socrata-data-hosting",
"GD7Yln": "http://codeforamerica.org/2012/03/20/sf-vets-startup-weekend/",
"GBo9FD": "http://codeforamerica.org/2012/03/19/my-new-journey/",
"FPS08Z": "http://www.apple.com/retail/chestnutstreet/",
"xWI2CL": "https://www.expensify.com/signin?exitTo=/dashboard&message=expired",
"woWxYg": "http://civiccommons.org/interactions/buenos-aires-city-government-deployed-drupal-0",
"FObJoD": "http://www.governing.com/columns/mgmt-insights/col-government-transformation-disruptive-hypothesis.html",
"y1h6zQ": "https://www.southwest.com/reservations/confirm-reservations.html?disc=0:15:1331880773.748000:7118@FC234FD83C22D96A23AD43D25D8A0F63A3AF596B&ss=1&int=&companyName=&cid=",
"A4cXg3": "http://codeforamerica.org/2012/03/15/educating-chicago/",
"zp6KK4": "http://wiki.codeforamerica.org/",
"AeEcmG": "http://ogilvynotes.com/49790/457984/sxsw-2012/coding-the-next-chapter-of-american-history",
"yjLeKo": "http://www.techcentralsf.com/startup-veterans/",
"xvUIwh": "http://civiccommons.org/open311-georeport-v2",
"wBKc0G": "http://www.slate.com/articles/technology/technology/2012/03/ruby_ruby_on_rails_and__why_the_disappearance_of_one_of_the_world_s_most_beloved_computer_programmers_.single.html",
"yp8ZpZ": "http://techpresident.com/news/21905/code-america-nudges-civic-coders-launch-cfa-brigades",
"yxRlwv": "http://opensource.com/government/12/3/code-america-brigade-effect?sc_cid=70160000000IDmjAAG",
"zvzHne": "http://marketplace.civiccommons.org/interactions/city-norfolk-deployed-public-art-finder-mapper-mobile",
"yimtiP": "http://www.google-melange.com/gsoc/homepage/google/gsoc2012",
"xFCCpk": "http://www.sandiegozoo.org/pandacam/index.html",
"xAiJxf": "http://codeforamerica.org/2012/03/08/jennifer-pahlka-at-ted-video/",
"yKlyLe": "http://www.ted.com/talks/jennifer_pahlka_coding_a_better_government.html",
"A460hv": "http://www.csmonitor.com/The-Culture/Arts/2012/0301/Cities-are-banking-on-the-arts",
"AyR779": "http://www.vanityfair.com/politics/2012/04/aaron-sorkin-west-wing",
"y0NDtP": "http://civiccommons.org/apps/ushahidi-platform",
"AwFa6C": "http://www.ted.com/talks/bryan_stevenson_we_need_to_talk_about_an_injustice.html",
"zCzphA": "http://techpresident.com/news/21867/political-geeks-guide-south-southwest",
"yiAytR": "http://mashable.com/2012/03/06/sxsw-2012-panels/",
"zPas9w": "http://codeforamerica.theresumator.com/apply/wQL1hy/City-Program-Manager.html?source=TWIT",
"wJUK3H": "http://blog.makezine.com/2012/03/06/make-at-sxsw/",
"yaHqHa": "http://codeforamerica.org/cities/2013-apply-now/",
"zsf6Rx": "http://www.eventbrite.com/event/3101961049",
"w7jzyw": "http://www.govloop.com/",
"z7nr8W": "http://dhogle.wordpress.com/2012/03/03/postcard-from-ted-my-favorite-ted-things/",
"xezaZB": "http://codeforamerica.org/2012/03/03/code-for-america-on-the-ted-stage/",
"xQZB3y": "http://schedule.sxsw.com/2012/events/event_IAP12275",
"xSYOw5": "http://codeforamerica.org/2012/02/29/a-new-knight-news-challenge/",
"zSOfsd": "http://www.nytimes.com/interactive/dining/new-york-health-department-restaurant-ratings-map.html",
"w2bQ6i": "http://civic.io/2012/02/28/storming-the-city-walls-with-code-for-america/",
"zOd5VX": "http://www.alohastartups.com/2012/02/24/code-for-america-visit-tbj-with-jennifer-pahlka-and-tim-o’reilly/",
"wO6Gg9": "http://www.blogtalkradio.com/gov20/2012/02/27/the-civic-commons--a-conversation-with-nick-grossman?utm_source=BTRemail&utm_medium=ShowReminder",
"AvUphJ": "http://storify.com/cindyroyal/code-for-america-hackathon-austin",
"zuhyXD": "http://wiki.civiccommons.org/Initiatives",
"x7TFmw": "http://www.huffingtonpost.com/alexander-howard/code-for-america_b_1297533.html",
"zE68yq": "http://codeforamerica.org/code-across-america/",
"zP6CFP": "http://www.youtube.com/watch?feature=player_embedded&v=zVZFlBJftgg",
"xyphOn": "http://codeforamerica.org/2012/02/14/send-some-geeky-love-this-valentines-day/",
"xuNclK": "http://cfavalentines.herokuapp.com/",
"cfavalentines": "http://cfavalentines.herokuapp.com/",
"wLftEZ": "http://techpresident.com/news/21765/effort-bring-open-source-government-faces-major-change",
"yZZNkn": "http://techpresident.com/news/21761/new-hampshire-legislature-passes-open-source-software-bill",
"yrOFxe": "http://marketplace.civiccommons.org/apps/adopt-hydrant",
"w1Ky78": "http://codeforamerica.org/wp-admin/post.php?post=11222&action=edit&message=1",
"xVjSg4": "http://marketplace.civiccommons.org/apps/wordpress",
"y6k1hL": "http://techcrunch.com/2012/02/10/2011-api-trends-government-apis-quintuple-facebook-google-twitter-most-popular/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+Techcrunch+(TechCrunch)",
"yDho1L": "http://codeforamerica.org/2012/02/10/civic-commons/",
"w2Y9DI": "http://fashiongonerogue.com/paulina-yang-wang-fashion-rogue/",
"waZPcD": "http://marketplace.civiccommons.org/apps/citysourced",
"A3f3ds": "http://instagr.am/p/GzuB7VGI1o/",
"xoy1jR": "http://codeforamerica.org/2012/02/07/up-for-your-discussion-themes-for-the-year/",
"wiXHbj": "http://marketplace.civiccommons.org/interactions/federal-communications-commission-deployed-mapbox",
"zGJpRD": "http://www.nytimes.com/2012/02/07/us/we-the-people-loses-appeal-with-people-around-the-world.html?_r=1",
"zPDym3": "http://storify.com/nickgrossman/proprietary-lions-and-bears-in-the-civic-commons-m?awesm=sfy.co_YCo&utm_campaign=&utm_medium=sfy.co-twitter&utm_source=hootsuite.com&utm_content=storify-pingback",
"A3j0xV": "http://codeforamerica.org/2010/06/17/some-fourth-of-july-decorations/",
"zCVW1O": "http://www.metro.us/boston/local/article/1089552--new-ads-feature-city-s-stout-single",
"yZnAS8": "http://battellemedia.com/archives/2012/02/its-not-whether-googles-threatened-its-asking-ourselves-what-commons-do-we-wish-for.php",
"A1vOBq": "http://datacouch.com/edit/#/dce10f2a12a5ab48a30c2ebc422a78dcc0",
"xVS3tW": "http://marketplace.civiccommons.org/places",
"y0nsJK": "https://www.google.com/calendar/b/0/render?tab=mc&pli=1",
"xIlnxe": "http://marketplace.civiccommons.org/interactions/howard-county-md-us-deployed-openlayers",
"x5WpJY": "http://www.fabernovel.com/en/blog/248-open-sourcing-where-s-my-bus",
"x8g3ue": "http://civiccommons.org/2012/02/proprietary-lions-and-bears-in-the-civic-commons-marketplace/",
"weu9A8": "http://boingboing.net/2012/01/31/shit-programmers-say.html?utm_source=dlvr.it&utm_medium=twitter",
"zFE96g": "http://www.slideshare.net/nickgrossman/the-opportunity-for-civic-startups-long-web-20-expo",
"wj2Kx4": "https://www.yammer.com/codeforamerica.org/#/Threads/index?type=algo",
"xWvOH8": "http://ifttt.com/recipes/18906",
"w4HkbH": "http://www.whitehouse.gov/blog/2012/01/23/celebrating-our-veterans-apps-heroes",
"xEkv1Z": "http://www.huffingtonpost.com/ronald-conway/sfciti-harnessing-the-pow_b_1234907.html",
"wOSfRY": "http://www.knightfoundation.org/blogs/knightblog/2012/1/26/four-ideas-on-how-tech-can-increase-civic-engagement/",
"wRd3rA": "http://maps.google.com/maps?q=Code+for+America,+San+Francisco,+CA&hl=en&ll=37.789506,-122.399969&spn=0.038866,0.084543&sll=37.0625,-95.677068&sspn=39.780156,86.572266&oq=code+for+america&vpsrc=0&hq=Code+for+America,&hnear=San+Francisco,+California&t=m&z=14&iwloc=A",
"xpG1Bo": "http://codeforamerica.theresumator.com/apply/VXM6PO/Community-Manager.html",
"yQ5YpW": "http://www.avc.com/a_vc/2012/01/the-green-button.html",
"xAPK8N": "http://blog.programmableweb.com/2012/01/23/civic-commons-marketplace-gets-an-api/",
"zGiOHF": "http://www.southwest.com/",
"AEoY4W": "http://techcrunch.com/2012/01/20/do-great-things/?grcc=88888",
"xXVJFD": "http://techcrunch.com/2012/01/22/boxs-next-frontier-cloud-storage-for-the-federal-government/",
"AyhiIR": "http://vimeo.com/35336496",
"xIhhOn": "http://mobile.slate.com/articles/life/transport/2012/01/jarrett_walker_s_human_transit_are_we_thinking_about_urban_planning_all_wrong_.html",
"zjC878": "http://www.mayorsinnovation.org/index.asp",
"zbChe5": "http://techcrunch.com/2012/01/20/do-great-things/",
"w6n20g": "http://hub-ventures.com/",
"yi43OL": "http://www.boston.com/yourtown/news/downtown/2012/01/city_introduces_adopt-a-hydran.html",
"w0mwTI": "http://www.gq.com/entertainment/movies-and-tv/201202/michelle-williams-gq-february-2012-cover-story-photos#slide=3",
"x980OF": "http://www.gq.com/entertainment/movies-and-tv/201202/michelle-williams-gq-february-2012-cover-story-photos#slide=2",
"wkN6MX": "http://www.huffingtonpost.com/2012/01/17/code-for-america-detroit-fellows-2012_n_1210563.html?ref=detroit#comments&ncid=edlinkusaolp00000008",
"wHQjFm": "http://www.youtube.com/watch?v=QOSxwFtBNww&feature=related",
"zcJiDb": "http://theoatmeal.com/sopa",
"yWkgKg": "http://codeforamerica.org/?p=10796&preview=true",
"wvU9r8": "http://engagingcities.com/article/civic-commons-marketplace-offers-new-perspective-which-engagement-software-really-works?utm_source=EngagingCities&utm_medium=twitter&utm_campaign=Feed:+Engagingcities+(EngagingCities)",
"zwgbxQ": "http://www.huffingtonpost.com/",
"xWg7rn": "http://www.huffingtonpost.com/arianna-huffington/conference-of-mayors_b_1210166.html",
"x39Gik": "http://tm.jeremybmerrill.com/",
"AyfceE": "http://www.eventbrite.com/event/2769330141",
"wWtmYW": "http://www.informationdiet.com/blog/read/a-developer-is-someone-who-writes-code-not-someone-who-reads-reddit",
"xTeIq2": "http://informationdiet.eventbrite.com/",
"AbVvz6": "https://github.com/codeforamerica/cc-mkplc-widget",
"xXRH2d": "https://github.com/codeforamerica/Civic-Commons-Marketplace-WP-Widget",
"yssUzJ": "https://app.theresumator.com/app/",
"zCyHne": "http://opensource.com/government/12/1/nyt-features-chicago’s-adopt-sidewalk",
"y4Twc5": "http://www.nytimes.com/2012/01/11/opinion/research-bought-then-paid-for.html?_r=1",
"zIg2r3": "http://codeforamerica.org/2012/01/11/beta-interventions-in-city-government/",
"xw8aWJ": "http://www.informationdiet.com/blog/read/congress-being-stupid-on-technology-is-a-bigger-problem-than-you-think",
"ywDSkQ": "http://codeforamerica.org/2012/01/09/kevin-curry-why-im-coding-for-america/",
"zEownB": "http://www.fastcompany.com/magazine/162/generation-flux-future-of-business",
"y7G700": "http://civiccommons.org/2012/01/2012-open-innovation-for-government/",
"zeckax": "http://codeforamerica.org/cities/apply",
"2013cityapp": "http://codeforamerica.org/cities/apply",
"Aj1KSj": "http://abclocal.go.com/kgo/story?section=news/local/san_francisco&id=8494083",
"AEjVvL": "http://www.huffingtonpost.com/abhi-nemani/accelerating-san-francisc_b_1191477.html",
"x4KLPj": "http://civiccommons.org/2012/01/marketplace-demo-video/",
"yHPfqd": "http://govfresh.com/2012/01/five-things-governments-can-do-to-encourage-civic-startups/",
"xPgxHa": "http://codeforamerica.org/2012/01/05/opportunity-build-run-the-cfa-accelerator/",
"wOmlx5": "http://icma.org/en/Article/101696/Code_for_Americas_Successful_First_Year",
"ySTKGc": "http://www.theatlantic.com/technology/archive/2012/01/chicago-the-city-becomes-the-platform/250862/",
"A7rRZX": "http://civiccommons.org/2012/01/now-recruiting-spring-research-interns-to-help-disrupt-government-it/",
"xBy98b": "http://latimesblogs.latimes.com/california-politics/2012/01/california-campaign-database-back-online.html",
"yva9nZ": "http://fedscoop.com/nasa-launches-agency-wide-open-source-initiative/",
"xZPQPy": "http://codeforamerica.org/2012/01/03/a-few-fantastic-additions-to-the-team/",
"vzatu3": "http://codeforamerica.org/2012/01/03/nyt-features-chicagos-adopt-a-sidewalk/",
"szL111": "http://codeforamerica.theresumator.com/apply/DarsK0/Director-CfA-Accelerator.html?source=TWIT",
"vvGKL4": "http://stackoverflow.com/questions/4343596/parsing-json-file-with-php",
"v8GtNm": "http://moreintelligentlife.com/content/ideas/tom-standage/writing-greatest-invention",
"tEObVO": "http://shop.oreilly.com/product/0636920021230.do",
"tjoyMK": "http://govfresh.com/2011/12/philadelphia-open-government-2011-year-in-review/?utm_source=twitterfeed&utm_medium=twitter",
"vwQWxa": "http://www.governing.com/idea-center/The-Best-Government-Ideas-of-2011.html",
"u6AhtO": "http://techcrunch.com/2011/12/26/developer-platforms/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+Techcrunch+(TechCrunch)",
"tFibOi": "http://www.youtube.com/watch?v=jFg_8u87zT0&feature=relmfu",
"tlLBnl": "http://www.youtube.com/watch?v=f59WMBqUHAQ&feature=related",
"rZWUOp": "http://www.guardian.co.uk/voluntary-sector-network/2011/jul/06/micro-volunteering-charities-people?INTCMP=SRCH",
"vXPFoC": "http://www.youtube.com/watch?v=LXJbJ7vir8I&feature=related",
"w4Crm5": "http://www.youtube.com/watch?NR=1&feature=endscreen&v=IUqsqIJrLkI",
"urhIeU": "http://marketplace.civiccommons.org/apps/google-apps-business",
"t5jxfj": "http://fcw.com/articles/2011/12/23/fcc-launches-myfcc-website-for-creating-personalized-dashboards-of-data.aspx",
"ukV8gR": "http://davidgalbraith.org/uncategorized/i-used-to-love-trains/2673/",
"unrv3L": "http://www.nytimes.com/2011/12/25/business/bourbons-all-american-roar.html?_r=1&hp=&pagewanted=all",
"tq5Xoo": "http://abhinemani.tumblr.com/post/14733614166/a-gov20-presidential-debate",
"tBc8xT": "http://googlegeodevelopers.blogspot.com/2011/12/using-maps-to-optimize-school-decisions.html",
"sJ6xjd": "https://trello.com/board/comms-calendar/4ef2658b15af14dc1154b24e",
"vnL2cy": "http://civiccommons.org/2011/12/civic-commons-marketplace-opens-for-business/",
"vWIrec": "http://abhinemani.tumblr.com/post/14573228868/bowen-who-was-elected-secretary-of-state-in-2006",
"tSOJb2": "http://californiawatch.org/dailyreport/technology-failures-prompt-criticism-secretary-state-14162",
"tTo1vG": "http://www.change.org/hiring",
"t0Ntgf": "http://codeforamerica.org/img/newsletter/dec/index.html",
"spDYvp": "http://blog.citysourced.com/index.php/2019/citysourced-series-a-financing/",
"saYqbL": "http://codeforamerica.org/2011/11/03/demo-videos/",
"sHebbb": "http://govfresh.com/2011/12/2011-govfresh-awards-winners/",
"vSFQJL": "http://www.quora.com/What-was-the-most-important-Gov-2-0-or-open-government-story-in-2011-Why",
"rOViKx": "http://wadhwa.com/2011/12/02/washington-post-the-case-for-old-entrepreneurs/",
"tQNspI": "http://www.whitehouse.gov/blog/2011/12/15/opening-local-data-prize-inspired-apps",
"up6Hf3": "http://www.smartplanet.com/blog/cities/google-invests-in-tech-savvy-governments/1369",
"uPrtlj": "http://www.youtube.com/watch?v=oHGK96-WixU",
"ruVIfR": "http://www.google.com/landing/givesback/2011/",
"sEKwlL": "http://googleblog.blogspot.com/2011/12/giving-back-in-2011.html",
"sJ6juH": "http://codeforamerica.org/2011/12/14/2012-whats-ahead/",
"s9i3v6": "http://bostonglobe.com/business/2011/12/15/google-give-local-groups-part-effort-help-education-and-tech-nonprofits/2lYDVAGqPIcUDiBDuDOPgP/story.html",
"v9Sf9n": "http://bostonglobe.com/business/2011/12/14/google-give-local-groups-part-effort-help-education-and-tech-nonprofits/2lYDVAGqPIcUDiBDuDOPgP/story.html",
"vOecps": "http://www.govtech.com/e-government/Google-Awards-Code-for-America-15-Million-Grant.html",
"tMz479": "http://www.portfolio.com/views/blogs/the-tech-observer/2011/12/14/code-for-america-receive-one-and-a-half-million-from-google-to-help-governments-and-citizens-communicate",
"tD21lO": "http://www.informationweek.com/news/government/leadership/232300535",
"uj3oPd": "http://www.women2.org/google-provides-grants-to-code-for-america-and-samasource/",
"vwFObf": "http://techcrunch.com/2011/12/14/code-for-america-receives-1-5m-grant-from-google-to-help-the-government-harness-technology/",
"tPcNii": "http://googleblog.blogspot.com/",
"v94DZt": "http://codeforamerica.org/2011/12/13/the-2011-cfa-annual-report/",
"uTordn": "http://codeforamerica.org/2011/12/12/citycamp-is-seriously-local/",
"vRcnGF": "http://codeforamerica.org/cities/2013-city-interest-form/",
"2013interest": "http://codeforamerica.org/cities/2013-city-interest-form/",
"vHofol": "http://codeforamerica.org/2011-annual-report/",
"stWOcZ": "http://schoolbus.bostonpublicschools.org/welcome",
"vwq5kv": "http://issuu.com/codeforamerica/docs/2011_cfa_report?mode=window&backgroundColor=%23222222",
"cfareport2011": "http://issuu.com/codeforamerica/docs/2011_cfa_report?mode=window&backgroundColor=%23222222",
"uCAtBh": "http://issuu.com/codeforamerica/docs/2011_cfa_report?mode=window",
"2011cfareport": "http://issuu.com/codeforamerica/docs/2011_cfa_report?mode=window",
"uXR7aq": "http://sunlightfoundation.com/blog/2011/12/08/in-hackwetrust-the-house-of-representatives-opens-its-doors-to-transparency-through-technology/",
"sc4X5h": "http://www.sba.gov/content/us-city-and-county-web-data-api-city-county-data-all-methods#allcity",
"vCwf7U": "http://civiccommons.org/2011/12/nyc-bus-tracking-as-platform/",
"szgn9r": "http://govfresh.uservoice.com/forums/142168-2011-govfresh-awards/suggestions/2440458-code-for-america?ref=title",
"rJNKqv": "https://github.com/codeforamerica/JobOps",
"v1k3oA": "http://www.uic.edu/htbin/cgiwrap/bin/uicnews/articledetail.cgi?id=15949",
"rtFrnC": "http://technicallyphilly.com/2011/12/07/code-for-america-impact-of-the-inaugural-fellowship?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+TechnicallyPhilly+(Technically+Philly)",
"tL02qL": "http://www.nytimes.com/2011/12/06/science/joichi-ito-innovating-by-the-seat-of-our-pants.html?_r=2",
"tdNoG9": "http://opensource.com/government/11/12/restoring-trust-government",
"tXa5Ia": "http://articles.boston.com/2011-03-01/business/29347830_1_city-year-developers-technology",
"u1UKTh": "http://radar.oreilly.com/2011/12/data-gov-open-source.html",
"tc1JNu": "http://codeforamerica.org/2011/12/05/jen-pahlka-to-keynote-sxsw-interactive-2012/",
"rqdJhl": "http://nickgrossman.com/post/13782928829/next-up-at-civic-commons",
"uF8Dms": "http://civiccommons.org/2011/12/transitions/?utm_medium=twitter&utm_source=twitterfeed",
"tUqFbz": "http://civiccommons.org/2011/12/transitions/",
"s6x9rG": "http://www.thisiswhyimbroke.com/suit-pajamas",
"sxhM27": "http://radar.oreilly.com/2011/12/gov-2-open-data-civic-apps-npr-ap.html",
"v7TdHw": "http://marketplace.civiccommons.org/",
"uhWDvG": "http://www.markpan.com/graduate-experiment/",
"vODv77": "http://www.amazon.com/gp/bestsellers/books/3639?ie=UTF8&tag=clayworld-20&linkCode=shr&camp=213733&creative=393193&ref_=pd_zg_hrsr_b_1_4_last",
"uDvUN4": "http://resources.informationdiet.com/nonprofits.html",
"v5MKC0": "http://overheadbin.msnbc.msn.com/_news/2011/11/27/9053183-picture-this-better-decisions-through-data-visualization",
"tjJXDb": "http://www.mcsweeneys.net/articles/seven-bar-jokes-involving-grammar-and-punctuation",
"vf7c7Z": "http://technofinder.herokuapp.com/",
"tOEcdO": "http://lunch-roulette.heroku.com/",
"tZFVd3": "https://github.com/codeforamerica/Data-Wiki",
"tSbHKu": "https://github.com/codeforamerica/transpochoices",
"setJsU": "https://github.com/codeforamerica/schoolselection",
"rQP6au": "http://civiccommons.org/2011/11/civic-engagement-app-change-by-us-enters-the-commons/",
"suYqTZ": "http://opensource.com/government/11/11/civic-engagement-app-change-us-enters-commons",
"vEgqrV": "http://codeforamerica.org/2011/11/22/explore-city-art-3-ways-on-foursquare-twitter-mobile-sites/",
"vXSeRQ": "http://fab.com/sale/1887/product/5259/",
"ucJtxp": "http://codeforamerica.org/2011/11/21/change-by-us-launches-in-philly-and-into-the-commons/",
"tzoQJ9": "https://github.com/localprojects/Change-By-Us",
"sEPjXi": "http://codeforamerica.org/press/change-by-us-goes-open-source-launches-in-philly/",
"vqY3to": "https://us2.admin.mailchimp.com/campaigns/wizard/html-template?id=1268345",
"uVme09": "http://www.npr.org/blogs/thetwo-way/2011/11/16/142401221/proposed-piracy-legislation-puts-internet-giants-on-defensive",
"uLgxZO": "http://techcrunch.com/2011/11/14/generation-make/",
"sGcnFf": "http://urbanomnibus.net/2010/08/code-for-america/",
"tJNiEZ": "http://www.coro.org/site/c.nvI2IeNZJyE/b.6350395/k.34A3/Fellows_Program_in_Public_Affairs.htm",
"safufw": "http://www.sparked.com/ask/Help-us-develop-a-WordPress-theme-for-the-City-of-SF",
"sCCGfW": "http://blog.iap2usa.org/2011/10/20/iap2-norcal-event-fixing-broken-governments-through-serious-games-november-17-in-san-francisco/",
"sbs7eW": "http://movies.nytimes.com/2011/11/09/movies/j-edgar-starring-leonardo-dicaprio-review.html?hpw",
"vh8Wzt": "http://www.newyorker.com/reporting/2011/01/24/110124fa_fact_gawande?currentPage=all",
"uaPjSb": "http://www.utexas.edu/news/2011/11/08/civic_engagement_forum/",
"vcwgrQ": "http://communication.utexas.edu/strauss/npf/",
"sMW3IH": "http://www.aiga.org/webinars-breakthroughs/",
"vjZWPh": "http://civiccommons.org/2011/11/oss-procurement-faq-part-3/",
"tfl5SD": "https://plus.google.com/u/1/115444309474382436013/posts",
"vbtZMl": "http://2.bp.blogspot.com/-9yNL507QtSE/TrfKRBHtn3I/AAAAAAAABMc/J9LQnYF_vww/s1600/delib_government_diagram%255Bv5%255D.png",
"tr8GuK": "http://groups.drupal.org/node/187454",
"tVp68U": "http://www.chicagotribune.com/classified/automotive/traffic/ct-met-getting-around-1107-20111107,0,5227590.column",
"rJ7xnZ": "http://movies.netflix.com/WiPlayer?movieid=70152023&trkid=3342466&t=Parks+and+Recreation:+Ssn+2:+The+Set-Up#MovieId=70143842&EpisodeMovieId=70152024",
"s0yqkO": "http://movies.netflix.com/WiPlayer?movieid=70152014&trkid=3325854&t=Parks+and+Recreation:+Ssn+2:+Practice+Date#MovieId=70143842&EpisodeMovieId=70152018",
"tgpd5J": "http://movies.netflix.com/WiPlayer?movieid=70152014&trkid=3325854&t=Parks+and+Recreation:+Ssn+2:+Practice+Date#MovieId=70143842&EpisodeMovieId=70152015",
"utFeJt": "http://www.paulgraham.com/cities.html",
"v1vIDQ": "http://codeforamerica.org/404",
"u2bmDY": "http://civiccommons.org/2011/11/crowdsourcing-civic-infrastructure/",
"uXWztP": "http://codeforamerica.org/2011/11/02/john-lilly-joining-the-board-of-code-for-america/",
"sWkm70": "http://codeforamerica.org/2011/11/02/open-data-made-beautiful-dark-sky/",
"t22RdW": "http://cfanov2011.eventbrite.com/",
"sTvb1y": "https://rally.org/rallypadevents/donate",
"tAqxqj": "http://civiccommons.org/2011/11/look-at-cook-open-sourced/",
"udnErA": "https://www.google.com/calendar/b/0/render?tab=mc",
"u7jyVJ": "http://codeforamerica.org/2011/11/01/bostons-mechanics-named-public-officials-of-the-year/",
"teV30l": "http://www.huffingtonpost.com/peter-levine/could-civic-engagement-be_b_966176.html",
"s8gV4g": "https://docs.google.com/spreadsheet/viewform?formkey=dEM0a1VHT0tKYWN6MXlaNWlfLXc3X2c6MA",
"vtNo1f": "http://www.youtube.com/watch?v=Th7VJoRqAzI&feature=channel_video_title&noredirect=1",
"vIwA6L": "http://www.youtube.com/user/Pew#p/c/0/Th7VJoRqAzI",
"tOxd2v": "http://www.nypress.com/blog-9689-city-hall-government-catching-up-with-social-media.html",
"rq2Bvj": "http://governingpeople.com/alexander-howard/23156/happy-july-4th-there-s-patriotic-app-too",
"tZmCyy": "https://github.com/codeforamerica/sfpark",
"vKtDeN": "https://github.com/codeforamerica/councilmatic",
"uj3BVG": "http://appsforcommunities.challenge.gov/submissions",
"tluLPi": "http://blogs.hbr.org/cs/2011/10/launching_effective_start-ups.html?utm_source=pulsenews&utm_medium=referral&utm_campaign=Feed:+harvardbusiness+(HBR.org)",
"vRAMiu": "http://civiccommons.org/2011/10/vanroekel-calls-for-future-first-federal-it-agenda/",
"uJnTfG": "http://expertlabs.org/2011/10/ideascale-is-for-brainstorms-not-dialog.html",
"tBlkJ1": "http://kottke.org/11/10/classic-jane-jacobs",
"v1IPvb": "http://techcrunch.com/2010/10/23/the-goldmine-of-opportunities-in-gov-2-0/",
"okJu8V": "http://codeforamerica.org/2011/10/20/code-a-thon-saturday-help-make-boston-better/",
"rj9swU": "http://civiccommons.org/2011/10/new-america-foundations-gov-2-0-report-highlights-it-dashboard/",
"pEOSb7": "http://codeforamerica.org/2011/10/20/new-america-foundation-details-gov-2-0-in-california/",
"neiz70": "http://www.facebook.com/anemani",
"p4rDnR": "http://www.esri.com/news/arcnews/fall11articles/code-for-america-drives-more-efficient-city-government.html",
"r6IqlU": "http://govfresh.com/2011/10/govfreshtv-qa-with-chicago-cto-john-tolva/",
"raU8Qp": "http://thehairpin.com/2011/04/how-to-quit-shampoo-without-becoming-disgusting",
"r1pYoK": "http://codeforamerica.org/?p=9421&preview=true",
"rgp5Za": "http://www.etsy.com/listing/80324050/lincoln-acrylic-painting-on-wood",
"qlIlh8": "http://buildingboston.eventbrite.com/",
"puro50": "http://civiccommons.org/2011/10/ogdcamp-2011-is-coming/",
"nwLOQL": "http://marketplace.civiccommons.org/preview",
"nj41E3": "http://www.facebook.com/",
"oRtmOQ": "http://codeforamerica.org/2011/10/14/year-1-in-our-own-words/",
"o2Z3zD": "http://www.knightcommunications.org/logos-signs/event-signs-and-posters/",
"nzZ7UK": "http://www.knightcommunications.org/logos-signs/knight-foundation-photos/",
"oCGLra": "http://www.knightcommunications.org/logos-signs/logos-for-knight-foundation-and-its-initiatives/",
"p8rkeC": "http://twitter.com/#!/SFofficeJobs/status/125120555220344832",
"qCLYQy": "http://codeforamerica.org/2012",
"cfa2012": "http://codeforamerica.org/2012",
"oNJPL5": "http://gov20bingo.heroku.com/",
"qgM0lu": "http://2011fellows.codeforamerica.org/",
"ouiydt": "http://codeforamerica.org/press/announcement-2012-cities-fellows/",
"qteptk": "http://codeforamerica.org/cfa-2012/",
"qd8Zb9": "http://codeforamerica.org/2011/10/13/meet-code-for-america-2012/",
"quWekP": "http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=654+Mission+Street,+San+Francisco,+CA+&aq=&sll=37.789506,-122.396536&sspn=0.039409,0.086088&ie=UTF8&hq=&hnear=654+Mission+St,+San+Francisco,+California+94105&view=map",
"oqFPrq": "http://maps.google.com/maps?saddr=SPUR+Innovation+loft,+san+francisco,+ca&daddr=gaffta,+san+francisco,+ca&hl=en&sll=37.784945,-122.404795&sspn=0.011209,0.022724&geocode=FZuSQAIdTU60-CE8RdYf6hFINQ;FbODQAIdOCq0-CFWR97eR0IqGg&vpsrc=0&dirflg=w&mra=ltm&t=m&z=17",
"pJNIzJ": "http://www.appsformetrochicago.com/apps/techno-finder",
"pUROxN": "http://m.cfasummit.org/",
"pDIjrF": "http://maps.google.com/maps?saddr=SPUR+Urban+Center:+San+Francisco+Planning+and+Urban+Research+Association,+654+Mission+Street,+San+Francisco,+CA+94105&daddr=gaffta&hl=en&sll=37.78395,-122.405895&sspn=0.010107,0.021136&geocode=FeaUQAIdvU60-CEoZRrOJHc78w;FbODQAIdOCq0-CFWR97eR0IqGg&vpsrc=0&dirflg=w&mra=ltm&t=m&z=16",
"rafgR3": "http://blog.apps.chicagotribune.com/2011/09/08/we’re-hiring-code-in-the-public-interest-make-your-mother-proud/",
"raBTa4": "http://radar.oreilly.com/2011/09/historic-open-government-partn.html",
"rmKTuM": "http://www.huffingtonpost.com/2011/10/04/who-is-the-ultimate-busin_n_995146.html?1317772192#s389340&title=_Jennifer_Pahlka",
"pvvpMr": "http://codeforamerica.org/2011/10/04/welcome-to-the-team-lauren-mark/",
"r0cRyy": "http://www.nytimes.com/2011/10/03/opinion/open-up-high-court-to-cameras.html?_r=1&ref=opinion",
"rltgPD": "http://codeforamerica.org/jobs-2/a-little-python-help/",
"pCmwGg": "http://www.google.com/webhp?sourceid=chrome-instant&ie=UTF-8&ion=1&nord=1#q=hotwire+Dupont+Circle+-+Embassy+Row+area+hotel+4.5+star&hl=en&nord=1&site=webhp&prmd=imvns&tbm=dsc&tbo=u&sa=X&ei=paKDTo_-GsuDsgLf2v2TDw&ved=0CB0QmAcwAA&bav=on.2,or.r_gc.r_pw.,cf.osb&fp=50e76aae867da438&biw=1440&bih=761&ion=1",
"rgxzzb": "http://www.foxnews.com/health/2011/09/19/us-gamers-crack-puzzle-in-aids-research-that-stumped-scientists-for-years/",
"q3GUcy": "http://mashable.com/2011/09/27/mad-men-facebook-timeline-mashup/",
"py8pIQ": "http://codeforamerica.org/2011/09/27/a-data-liberation-walkthrough/",
"orOKdm": "http://m.npr.org/story/140844666?url=/blogs/thetwo-way/2011/09/27/140844666/a-moment-of-cute-a-photo-of-sleeping-baby-pandas&ft=1&f=1001&sc=tw&utm_source=twitterfeed&utm_medium=twitter",
"oSWa55": "http://urbanomnibus.net/2011/09/iconathon-designing-symbols-for-civic-ideas/",
"nLmXS2": "http://www.studiomarch.com/mc/67-minimal-bollywood-movie-posters/",
"qKU5A7": "http://radar.oreilly.com/2011/09/pew-local-news-sources.html",
"qT9k0T": "http://codeforamerica.org/?p=8772&preview=true",
"mWdmV2": "http://codeforamerica.org/?p=8648&preview=true",
"oZdCG5": "http://codeforamerica.org/2011/09/21/2011-cfa-fellowship-mentors/",
"qnjffn": "http://codeforamerica.org/wp-content/uploads/2011/09/reroute2.png",
"oQGABm": "http://codeforamerica.org/wp-content/uploads/2011/09/reroute3.png",
"pFo9Eq": "http://codeforamerica.org/wp-content/uploads/2011/09/reroute1.png",
"oUYPWr": "http://vimeo.com/29259763",
"nMvwsQ": "http://civiccommons.org/2011/09/open-data-bringing-down-the-barriers-to-innovation/",
"qqXlYh": "http://codeforamerica.org/2011/09/20/open311-at-code-for-america/",
"ofsxTd": "http://tasks.citygroups.org/post/10320209698/citygroups-all-day-sprint-in-boston",
"mRa5Xr": "http://codeforamerica.org/2011/09/16/apps-for-communities-deadline-approaching/",
"qgyA7F": "http://civiccommons.org/2011/09/nyc-turns-to-the-crowd-for-bike-share/",
"pn9klm": "http://www.metro.us/philadelphia/local/article/969574--city-hall-climbs-social-media-ropes",
"q8ms52": "http://codeforamerica.org/2011/09/14/civic-startups-wishlist-1-a-better-freecycle/",
"n2YluM": "http://www.fastcompany.com/design/2011/50-most-influential-designers-in-america",
"o07NCr": "http://govfresh.com/2011/09/georgia-gov-has-drupal-on-its-mind/?utm_source=twitterfeed&utm_medium=twitter",
"qmzVjJ": "http://civiccommons.org/2011/09/an-open-data-race-in-philly/",
"o8ZPXD": "http://bits.blogs.nytimes.com/2011/09/12/bug-labs-and-ford-team-up-to-network-cars/?partner=rss&emc=rss",
"oXI3r8": "http://thecaucus.blogs.nytimes.com/2011/09/12/obama-pleads-for-congress-to-approve-jobs-bill/?hp",
"r3JwFB": "http://www.nbcchicago.com/blogs/inc-well/Chicago-Snags-Code-for-America-Innovation-Fellowship-129540218.html",
"nA49JA": "http://codeforamerica.org/2011/09/09/ashishs-cfa-summer-starting-the-open311-center/",
"qfAc8H": "http://civiccommons.org/2011/09/help-us-seed-the-commons-cc-research-internship/",
"pZQr4P": "http://codeforamerica.org/2011/09/07/change-by-us-seattle-user-no-1/",
"q2Y7at": "http://codeforamerica.org/2011/09/08/chicago-will-code-of-america-in-2012/",
"n6hZ2Q": "http://codeforamerica.org/2011/09/08/justins-cfa-summer-ruby-world-bank-data/",
"oDrVPG": "http://codeforamerica.org/press/knight-brings-cfa-to-detroit-macon-and-philly/",
"oHdPBM": "http://codeforamerica.org/2011/09/07/macon-detroit-philly-selected-for-cfa-2012/",
"r6xh2T": "http://www.fastcodesign.com/1664938/iconathon-lets-regular-joes-design-icons-for-city-problems",
"qRcz6K": "http://news.ycombinator.com/item?id=2965920",
"qUtQgC": "http://codeforamerica.org/2011/09/02/zachs-cfa-summer-made-with-epa-data/",
"pYld8e": "http://civiccommons.org/2011/09/open311-dashboard-visualizing-the-power-of-the-platform/",
"nJV1Ow": "http://civiccommons.org/2011/09/open311-dashboard-demonstrating-the-power-of-the-platform/",
"pXb9Jw": "http://civiccommons.org/2011/09/open311-a-sneak-peek-at-the-dashboard/",
"pchYbM": "http://www.swiss-miss.com/2011/09/iconathon.html",
"ni5sjL": "http://kottke.org/11/09/kurt-vonnegut-explains-the-shapes-of-stories",
"q5egvo": "http://civiccommons.org/2011/09/developing-a-lean-agile-procurement-guide/",
"nMQE0l": "http://blog.geniusrocket.com/2011/08/fixing-the-problems-with-crowdsourced-disaster-response/?utm_source=rss&utm_medium=rss&utm_campaign=fixing-the-problems-with-crowdsourced-disaster-response",
"o1ywvb": "http://mil-oss.org/resources/goss-govies_v1.7_29jun2011_released.pdf",
"rmwuz2": "http://codeforamerica.org/2011/09/01/change-by-us/",
"rdUNJP": "http://codeforamerica.org/2011/09/01/bringing-“change-by-us”-to-our-cities-the-commons/",
"oJ1sJv": "http://codeforamerica.org/2011/08/29/karens-cfa-sumer-geek-corps/",
"mQRrQ0": "http://www.govtech.com/e-government/2011-Best-of-the-Web-Award-Winners-Announced.html",
"qstGKv": "http://civiccommons.org/2011/09/baltimore-open311/",
"pWltAl": "http://civiccommons.org/wp-admin/edit.php",
"qXknpI": "http://codeforamerica.org/2011/08/31/chriss-cfa-summer-preview-the-open311-dashboard/",
"ptsdZj": "http://wiki.open311.org/GeoReport_v2/Servers",
"qrdGPz": "http://311test.baltimorecity.gov/open311",
"quo7uK": "http://www.nytimes.com/2011/08/31/opinion/tight-budget-look-to-the-cloud.html",
"pBBEWP": "http://www.nytimes.com/2011/08/31/opinion/tight-budget-look-to-the-cloud.html?partner=rssnyt&emc=rss",
"pbkXJI": "https://www.shareaholic.com/account/services",
"pjHaXG": "http://www.nytimes.com/2011/08/31/opinion/tight-budget-look-to-the-cloud.html?_r=1&src=tp",
"pXUrOg": "http://www.nytimes.com/",
"qlkHYE": "https://plus.google.com/u/1/116831783688307503105/posts/LGd149pu1AF",
"rnBii8": "http://radar.oreilly.com/2011/08/how-to-create-sustainable-open.html",
"qYm08V": "http://compare-broadband.heroku.com/compare?first=Centralia,+Illinois&second=San+Francisco,+CA",
"mQd1RA": "http://codeforamerica.org/2011/08/30/blakes-cfa-summer/",