forked from brave/qa-resources
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrave_sorted_3000.html
3059 lines (3058 loc) · 335 KB
/
brave_sorted_3000.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE NETSCAPE-Bookmark-file-1>
<!-- This is an automatically generated file. It will be read and overwritten. DO NOT EDIT! -->
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
<TITLE>Bookmarks</TITLE>
<H1>Bookmarks</H1>
<DL><p>
<DT><H3 PERSONAL_TOOLBAR_FOLDER="true">Bookmarks Bar</H3>
<DL><p>
<DT><H3>0-99</H3>
<DL><p>
<DT><H3>100-199</H3>
<DL><p>
<DT><H3>200-299</H3>
<DL><p>
<DT><H3>300-399</H3>
<DL><p>
<DT><H3>400-499</H3>
<DL><p>
<DT><H3>500-599</H3>
<DL><p>
<DT><H3>600-699</H3>
<DL><p>
<DT><H3>700-799</H3>
<DL><p>
<DT><H3>800-899</H3>
<DL><p>
<DT><H3>900-999</H3>
<DL><p>
<DT><H3>1000-1099</H3>
<DL><p>
<DT><A HREF="https://medium.com/soapbox-dc/12-red-flags-in-clintons-email-setup-da8966760f7d#.j3gw30qc9">1001</A>
<DT><A HREF="https://medium.com/@riouske/the-way-upwork-treats-loyal-freelancers-97aa7c4f154c#.ylxh98k2p">1002</A>
<DT><A HREF="https://docs.google.com/spreadsheets/d/1vtC5vyaTClMwwmf5c8J4gL-jo97PUobtKUe8v6Xkapk/edit#gid=0">1003</A>
<DT><A HREF="https://www.reddit.com/r/pics/comments/4oznr1/3_years_ago_i_promised_to_give_away_my_entire/">1004</A>
<DT><A HREF="https://letsencrypt.org//2016/06/22/https-progress-june-2016.html">1005</A>
<DT><A HREF="https://vimeo.com/133449573">1006</A>
<DT><A HREF="http://imgur.com/a/4zx9J">1007</A>
<DT><A HREF="https://www.techinasia.com/talk/facebook-eating-internet-with-good-ux">1008</A>
<DT><A HREF="https://github.com/b44rd/jsbug/">1009</A>
<DT><A HREF="https://www.subtraction.com/2016/06/06/comparing-google-maps-and-apple-maps/?utm_content=buffer486c1&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer">1010</A>
<DT><A HREF="https://www.youtube.com/watch?v=AuyptkdfYaE">1011</A>
<DT><A HREF="http://www.businessinsider.com/anders-ericsson-how-to-become-an-expert-at-anything-2016-6">1012</A>
<DT><A HREF="http://money.cnn.com/2016/06/16/pf/parental-leave-fathers/">1013</A>
<DT><A HREF="http://schedule.gdconf.com/session/built-for-broadcasting-the-coming-era-of-game-design-for-interactive-live-video-communities-presented-by-amazon-lumberyard">1014</A>
<DT><A HREF="https://careers.jobscore.com/careers/notleyventures/jobs/talent-call-join-notley-bicvc-lFGr5OyYdG1ZS6tF">1015</A>
<DT><A HREF="https://stratechery.com/2016/the-future-of-podcasting/">1016</A>
<DT><A HREF="http://ithare.com/implementing-queues-for-event-driven-programs/">1017</A>
<DT><A HREF="https://www.youtube.com/watch?v=aWQUSiOZ0x8">1018</A>
<DT><A HREF="http://imgur.com/a/vwPmM">1019</A>
<DT><A HREF="https://exolymph.news/2016/06/21/cloning-artificial-intelligence-death/">1020</A>
<DT><A HREF="https://blog.twitch.tv/announcing-twitch-developer-success-814bd5a23dee#.jqzoeodfn">1021</A>
<DT><A HREF="http://danielcrystal.com/journal-entries/lessons-in-growth-design-how-testing-interactions-and-metadata-increased-reading-time">1022</A>
<DT><A HREF="https://www.youtube.com/channel/UCwXdraq_EYPD--p1mPY2oXg">1023</A>
<DT><A HREF="https://www.youtube.com/watch?v=0J2QdDbelmY">1024</A>
<DT><A HREF="http://wpengine-careers.com/job/oxfm3fwV/">1025</A>
<DT><A HREF="https://medium.com/@johnaveri/monitorbook-from-side-project-to-profitable-company-a-journey-into-sales-3bed8a4b759c#.q50bck17e">1026</A>
<DT><A HREF="https://www.youtube.com/watch?v=awKVQUcku4A">1027</A>
<DT><A HREF="https://www.reddit.com/r/AskReddit/comments/4oya82/seriousnonwesterners_of_reddit_to_what_extent/">1028</A>
<DT><A HREF="https://www.quantamagazine.org/20160324-in-newly-created-life-form-a-major-mystery/">1029</A>
<DT><A HREF="http://theoatmeal.com/comics/creativity">1030</A>
<DT><A HREF="https://sketchboard.io/blog/why-your-process-may-be-harming-your-team-and-customers">1031</A>
<DT><A HREF="http://lifehacker.com/bookmark-this-video-next-time-you-go-through-a-breakup-1781550241">1032</A>
<DT><A HREF="https://help.topcoder.com/hc/en-us/articles/217481388-Choosing-a-Design-Challenge">1033</A>
<DT><A HREF="https://github.com/eriksvedang/Carp">1034</A>
<DT><A HREF="https://www.topcoder.com/">1035</A>
<DT><A HREF="https://ponyfoo.com/articles/understanding-javascript-async-await">1036</A>
<DT><A HREF="http://www.jameswatling.com/blog/2016/07/06/be-happy-with-what-you-have/">1037</A>
<DT><A HREF="https://codefights.com/challenges?utm_source=COD&utm_medium=email&utm_term=challenges_page&utm_campaign=COW_07_06_16">1038</A>
<DT><A HREF="https://info.thoughtworks.com/how-do-you-estimate-on-an-Agile-project.html">1039</A>
<DT><A HREF="http://searchsoftwarequality.techtarget.com/feature/Testing-mobile-apps-Tips-on-manual-automated-cloud-QA">1040</A>
<DT><A HREF="http://firstround.com/review/adam-grant-on-interviewing-to-hire-trailblazers-nonconformists-and-originals/">1041</A>
<DT><A HREF="https://github.com/18F/methods">1042</A>
<DT><A HREF="http://martinfowler.com/tags/technical%20debt.html">1043</A>
<DT><A HREF="http://www.programmableweb.com/news/how-to-measure-effectiveness-your-developer-program/analysis/2015/12/21">1044</A>
<DT><A HREF="http://tsung.erlang-projects.org/">1045</A>
<DT><A HREF="http://shawna-x.com/">1046</A>
<DT><A HREF="https://www.kickstarter.com/projects/67028165/chipmunkbags-premium-laundry-backpacks">1047</A>
<DT><A HREF="http://schedule.gdconf.com/session/8-ways-to-succeed-with-broadcasters-the-data-may-surprise-you">1048</A>
<DT><A HREF="http://imgur.com/a/WfWAv">1049</A>
<DT><A HREF="https://medium.com/the-year-of-the-looking-glass/unintuitive-things-i-ve-learned-about-management-f2c42d68604b#.asfudj3ew">1050</A>
<DT><A HREF="http://www.aaronkharris.com/investors-and-their-incentives">1051</A>
<DT><A HREF="https://www.youtube.com/user/BestPDMovies">1052</A>
<DT><A HREF="http://code.tutsplus.com/tutorials/measure-the-success-of-your-developer-relations-program--cms-24497">1053</A>
<DT><A HREF="http://danielcrystal.com/">1054</A>
<DT><A HREF="https://techcrunch.com/2012/06/02/android-qa-testing-quality-assurance/">1055</A>
<DT><A HREF="http://www.cultofmac.com/143738/use-a-screensaver-as-your-desktop-wallpaper-video-how-to/">1056</A>
<DT><A HREF="http://www.notleyventures.com/careers/">1057</A>
<DT><A HREF="https://www.youtube.com/watch?v=g921oqINXFQ">1058</A>
<DT><A HREF="https://soundcloud.com/home-2001/resonance">1059</A>
<DT><A HREF="http://blog.carbonfive.com/2016/04/19/elixir-and-phoenix-the-future-of-web-apis-and-apps/">1060</A>
<DT><A HREF="http://alice-lee.com/">1061</A>
<DT><A HREF="http://www.instructables.com/id/Backyard-Movie-Screen/">1062</A>
<DT><A HREF="https://hbr.org/2016/02/how-to-hire-without-getting-fooled-by-first-impressions">1063</A>
<DT><A HREF="https://docs.docker.com/machine/get-started/">1064</A>
<DT><A HREF="https://stories.uplabs.com/the-no-nonsense-redesign-that-blew-our-minds-22abe19ae932#.551x558tt">1065</A>
<DT><A HREF="https://github.com/justintv/twitch-api">1066</A>
<DT><A HREF="https://www.youtube.com/watch?v=zOD_x_7u6hs">1067</A>
<DT><A HREF="http://music.twitch.tv/">1068</A>
<DT><A HREF="https://angel.co/alex-wykoff">1069</A>
<DT><A HREF="https://theintercept.com/2016/06/21/tech-companies-fight-back-after-years-of-being-deluged-with-secret-fbi-requests/">1070</A>
<DT><A HREF="http://blog.interviewing.io/technical-interview-performance-is-kind-of-arbitrary-heres-the-data/">1071</A>
<DT><A HREF="https://github.com/docker/machine/releases/">1072</A>
<DT><A HREF="https://medium.com/@katie/representation-matters-39d9bf9ebd46#.cl0a522qi">1073</A>
<DT><A HREF="https://discuss.dev.twitch.tv/">1074</A>
<DT><A HREF="https://duckduckgo.com/hiring/designer/">1075</A>
<DT><A HREF="http://www.carbonfive.com/careers/">1076</A>
<DT><A HREF="https://careers-retailmenot.icims.com/jobs/2548/product-manager%2c-mobile/job">1077</A>
<DT><A HREF="http://www.nytimes.com/2015/12/27/technology/when-a-unicorn-start-up-stumbles-its-employees-get-hurt.html?_r=1">1078</A>
<DT><A HREF="https://psu.jobs/job/63185">1079</A>
<DT><A HREF="https://twitter.com/chrislyonsf">1080</A>
<DT><A HREF="https://www.samsungdevelopers.com/samsung-developer-program/how-it-works/">1081</A>
<DT><A HREF="https://stripe.com/jobs/positions/design-researcher">1082</A>
<DT><A HREF="https://www.youtube.com/watch?v=wWCCo9kjXs0">1083</A>
<DT><A HREF="http://99u.com/articles/53863/the-creative-worlds-bullshit-industrial-complex">1084</A>
<DT><A HREF="http://i.imgur.com/xMo8vDL.gifv">1085</A>
<DT><A HREF="http://www.politico.com/magazine/story/2016/06/what-works-cincinnati-ohio-over-the-rhine-crime-neighborhood-turnaround-city-urban-revitalization-213969">1086</A>
<DT><A HREF="https://careers-retailmenot.icims.com/jobs/2566/sr.-product-designer%2c-labs/job">1087</A>
<DT><A HREF="http://cityofaustin.github.io/innovation-fellows/apply">1088</A>
<DT><A HREF="http://flowingdata.com/2016/06/28/distributions-of-annual-income/">1089</A>
<DT><A HREF="http://underarmour.site.findly.com/job/6623624/product-manager-austin-tx/">1090</A>
<DT><A HREF="https://www.youtube.com/watch?v=-RjJtO51ykY">1091</A>
<DT><A HREF="https://www.youtube.com/watch?v=IKc6hwPvsHg">1092</A>
<DT><A HREF="http://www.programmableweb.com/apis/directory">1093</A>
<DT><A HREF="https://gfycat.com/GraciousExhaustedChinchilla">1094</A>
<DT><A HREF="https://medium.com/@CodyBrown/you-wont-be-able-to-sue-the-next-gawker-e6c8a3900969#.yb60mo5j1">1095</A>
<DT><A HREF="https://careers.mozilla.org/position/onfm3fwL">1096</A>
<DT><A HREF="https://hub.docker.com/r/gitlab/gitlab-ce/~/dockerfile/">1097</A>
<DT><A HREF="http://www.silvabokis.com/squarespace-tips/how-to-find-out-which-squarespace-template-a-site-is-using">1098</A>
<DT><A HREF="https://www.rapid7.com/company/jobs.jsp?gh_jid=229666">1099</A>
<DT><A HREF="http://martinfowler.com/bliki/">1100</A>
<DT><A HREF="https://www.youtube.com/watch?v=Q-Yd-zfLA_Q">1101</A>
<DT><A HREF="http://www.gv.com/sprint/">1102</A>
<DT><A HREF="http://imgur.com/r/imagesofthe1980s/5StLczw">1103</A>
<DT><A HREF="https://wit.ai/">1104</A>
<DT><A HREF="https://persistiq.com/blog/the-ultimate-guide-to-cold-calling-part-i/">1105</A>
<DT><A HREF="https://careers.mozilla.org/position/oGEE2fwK">1106</A>
<DT><A HREF="https://jobs.lever.co/ycr/03b226d0-148e-4ecd-a5f0-3e6074251eff/apply">1107</A>
<DT><A HREF="https://jobs.lever.co/scrapinghub/2d1f7198-6f78-48e4-a678-a555c9718759">1108</A>
<DT><H3>1109</H3>
<DL><p>
<DT><A HREF="http://www.referralconnection.info/">1</A>
<DT><A HREF="http://www.arofile.net/">2</A>
<DT><A HREF="https://github.com/ascribe/image-match">3</A>
<DT><A HREF="https://www.reddit.com/r/LibreDesign">4</A>
<DT><A HREF="http://codemill.io/">5</A>
<DT><A HREF="https://medium.com/@ericclemmons/javascript-fatigue-48d4011b6fc4#.uhv5554id">6</A>
<DT><A HREF="https://medium.com/@rob_ellis/creating-a-chat-bot-42861e6a2acd#.oz2he1j62">7</A>
<DT><A HREF="https://bost.ocks.org/mike/selection/">8</A>
<DT><A HREF="http://tjheeta.github.io/2015/04/15/ansible-vs-chef/">9</A>
<DT><A HREF="https://www.reddit.com/r/DarknetPlan">10</A>
<DT><A HREF="http://www.logoquiz.net/">11</A>
<DT><A HREF="http://m12.io/blog/http-2-with-haproxy-and-nginx-guide">12</A>
<DT><A HREF="http://wixtoolset.org/documentation/manual/v3/main/wix_learning.html">13</A>
<DT><A HREF="http://flink.apache.org/index.html">14</A>
<DT><A HREF="http://www.wired.com/2016/03/mit-media-labs-journal-design-science-radical-new-kind-publication/">15</A>
<DT><A HREF="http://game.ioxapp.com/eye-test/">16</A>
<DT><A HREF="https://docs.google.com/spreadsheets/d/1FJTvWT5RHFSYuEoFVpAeQjuQPU4BVzbOigT0xebxTOw/htmlview?sle=true">17</A>
<DT><A HREF="http://www.amazon.com/gp/product/B00QZ67ODE/ref=vp_c_AV0FRRCCH6ZI2_1_0_img?ie=UTF8&m=ATVPDKIKX0DER&s=beauty&tag=kinjadeals-20&ascsubtag=def178dd188fe55830a7069c040e6054b0d57d3c&rawdata=%5Br%7Chttp%3A%2F%2Flifehacker.com%2F%5Bt%7Cmod-title%5Bp%7C1763761140%5Ba%7CB00QZ67ODE%5Bau%7C5727177402741770316">18</A>
<DT><A HREF="http://jods.mitpress.mit.edu/">19</A>
<DT><A HREF="http://type.method.ac/">20</A>
<DT><A HREF="http://lifehacker.com/habit-graduation-how-to-increase-your-average-speed-1763834738">21</A>
<DT><A HREF="http://jods.mitpress.mit.edu/pub/designandscience/journals">22</A>
<DT><A HREF="http://192.168.100.1/cmConfig.htm">23</A>
<DT><A HREF="https://medium.com/@benjbrandall/the-most-overlooked-aspect-of-ux-design-could-be-the-most-important-f1df7a5729e9#.sfxxsr1sh">24</A>
<DT><A HREF="https://help.ubuntu.com/community/SSH/OpenSSH/Configuring">25</A>
<DT><A HREF="http://www.suck.uk.com/products/bbq-toolbox/">26</A>
<DT><A HREF="http://www.scientificamerican.com/article/modern-peanut-s-wild-cousin-thought-extinct-found-in-andes/">27</A>
<DT><A HREF="http://www.dedoimedo.com/computers/vmware-esxi-clone-machine.html">28</A>
<DT><A HREF="http://www.theparisreview.org/blog/2016/03/24/how-to-get-out-of-bed/">29</A>
<DT><A HREF="http://job-openings.monster.com/monster/964d4adf-a4ac-4fcc-9641-be7563b7f9ac?mescoid=2700414001001&jobPosition=5#">30</A>
<DT><A HREF="https://x.ai/deep-learning-at-x-ai/">31</A>
<DT><A HREF="https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/blob/master/docs/executors/shell.md">32</A>
<DT><A HREF="http://vncroulette.com/index.php?picture=2">33</A>
<DT><A HREF="http://lifehacker.com/how-much-you-should-save-for-retirement-based-on-139-y-1054697169">34</A>
<DT><A HREF="https://www.linkedin.com/jobs2/view/113038981?trkInfo=searchKeywordString%3AJunior+Designer%2CsearchLocationString%3A%2C+%2Cvertical%3Ajobs%2CpageNum%3A1%2Cposition%3A25%2CMSRPsearchId%3A6a42db17-9339-4fdf-8754-0100cd6422bb_1458873686021&refId=6a42db17-9339-4fdf-8754-0100cd6422bb_1458873686021&trk=jobs_jserp_job_listing_text">35</A>
<DT><A HREF="https://www.youtube.com/watch?v=s9olDO8R5Ls">36</A>
<DT><A HREF="https://gitlab.com/gitlab-org/gitlab-ci-multi-runner#installation">37</A>
<DT><A HREF="http://doc.rust-lang.org/book/concurrency.html">38</A>
<DT><A HREF="http://codehappy.info/reportGlobal">39</A>
<DT><A HREF="http://www.thatdragoncancer.com/thatdragoncancer/2016/3/24/on-lets-plays">40</A>
<DT><A HREF="https://search.usaajobs.com/us/en-us/Job-Details/Junior-Interaction-Designer-Job/San-Antonio-TX/xjdp-jf839-ct104383-jid55472285?s_cid=indeed&sid=414">41</A>
<DT><A HREF="http://10.192.4.227/">42</A>
<DT><A HREF="https://jenkins.io/2.0/">43</A>
<DT><A HREF="http://www.newyorker.com/tech/elements/ive-seen-the-greatest-a-i-minds-of-my-generation-destroyed-by-twitter?intcid=mod-most-popular">44</A>
<DT><A HREF="http://io2015codelabs.appspot.com/codelabs/voice-interaction">45</A>
<DT><A HREF="https://medium.com/@Rich_Harris/how-to-not-break-the-internet-with-this-one-weird-trick-e3e2d57fee28#.5r8x32c66">46</A>
<DT><A HREF="https://github.com/amzn/alexa-avs-raspberry-pi">47</A>
<DT><A HREF="https://gist.github.com/a-rodin/8406815dd05f39f10418">48</A>
<DT><A HREF="http://io9.gizmodo.com/the-secrets-to-handling-passive-aggressive-people-1681127156">49</A>
<DT><A HREF="https://www.kb.cert.org/vuls/id/319816">50</A>
<DT><A HREF="http://fortune.com/disrupted-excerpt-hubspot-startup-dan-lyons/">51</A>
<DT><A HREF="https://github.com/eguneys/pacman-unicode">52</A>
<DT><A HREF="https://www.youtube.com/watch?v=FCuvdv8FO54">53</A>
<DT><A HREF="http://io2015codelabs.appspot.com/codelabs/voice-interaction#1">54</A>
<DT><A HREF="https://wubthecaptain.eu/articles/why-i-dont-support-github.html">55</A>
<DT><A HREF="http://lifehacker.com/how-i-finally-became-a-morning-person-1766166401">56</A>
<DT><A HREF="http://www.economist.com/news/finance-and-economics/21695552-consumers-are-finally-revolting-against-outdated-industry-tide-turns">57</A>
<DT><A HREF="http://togelius.blogspot.com/2016/03/a-way-to-deal-with-enormous-branching.html">58</A>
<DT><A HREF="http://blog.ndepend.com/dealing-legacy-code-developers/">59</A>
<DT><A HREF="http://www.gridsagegames.com/blog/2016/03/generating-populating-caves/">60</A>
<DT><A HREF="http://fortune.com/zappos-tony-hsieh-holacracy/">61</A>
<DT><A HREF="http://blog.overzealous.com/post/74121048393/why-you-shouldnt-create-a-gulp-plugin-or-how-to">62</A>
<DT><A HREF="https://hibroken.com/">63</A>
<DT><A HREF="http://www.eguneys.com/games/pacman-unicode/index.html">64</A>
<DT><A HREF="https://medium.com/@ZoOlson/dear-tim-cook-abc3fbffba1b#.1841coshc">65</A>
<DT><A HREF="http://www.theawl.com/2016/03/after-tipping">66</A>
<DT><A HREF="http://cocycles.com/">67</A>
<DT><A HREF="http://foofighters.com/soundproofing">68</A>
<DT><A HREF="http://www.madinamerica.com/2012/02/why-anti-authoritarians-are-diagnosed-as-mentally-ill/">69</A>
<DT><A HREF="http://qz.com/647547/16-people-are-missing-after-a-chinese-news-site-ran-a-letter-asking-xi-jinping-to-resign/">70</A>
<DT><A HREF="https://medium.com/@nm_johnson/npm-package-hijacking-from-the-hijackers-perspective-af0c48ab9922#.74z7ru3o5">71</A>
<DT><A HREF="https://medium.com/greylock-perspectives/the-hierarchy-of-engagement-5803bf4e6cfa#.aie5y8vzh">72</A>
<DT><A HREF="http://owntracks.org/">73</A>
<DT><A HREF="http://www.dwmbeancounter.com/tutorial/Tutorial.html">74</A>
<DT><A HREF="http://tutorialzine.com/2011/12/what-you-need-to-know-html5-range-input/">75</A>
<DT><A HREF="http://www.datasets.co/">76</A>
<DT><A HREF="https://github.com/gulpjs/gulp/blob/master/docs/README.md#articles">77</A>
<DT><A HREF="http://paulbennetts.co/life-in-full-view-etsy-one-year-on-from-ipo/">78</A>
<DT><A HREF="http://piqnt.com/stage.js/">79</A>
<DT><A HREF="http://techcrunch.com/2016/03/22/y-combinator-demo-day-winter-2016/?ncid=rss&utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+techcrunch%2Fstartups+%28TechCrunch+%C2%BB+Startups%29">80</A>
<DT><A HREF="http://www.avclub.com/article/dune-cant-capture-novels-incalculable-brilliance-233858">81</A>
<DT><A HREF="http://www.instructables.com/id/How-to-Build-Your-Own-Custom-Longboard/step9/Finishing-Touches/">82</A>
<DT><A HREF="https://www.youtube.com/watch?v=rOonBjbuCF0">83</A>
<DT><A HREF="https://spion.github.io/posts/es7-async-await-step-in-the-wrong-direction.html">84</A>
<DT><A HREF="https://news.ycombinator.com/item?id=11359266">85</A>
<DT><A HREF="http://metroize.com/consultants-ate-my-unit-tests/">86</A>
<DT><A HREF="http://pidashcam.blogspot.com/">87</A>
<DT><A HREF="http://www.meetup.com/fresh2design/events/229347650/">88</A>
<DT><A HREF="http://freakonomics.com/podcast/american-growth/">89</A>
<DT><A HREF="http://www.cs.umd.edu/~waa/414-F11/IntroToCrypto.pdf">90</A>
<DT><A HREF="http://levskaya.github.io/eschersketch/">91</A>
<DT><A HREF="https://bootstrapstudio.io/">92</A>
<DT><A HREF="https://play.google.com/store/apps/details?id=jacob.uk.com.usbcheck">93</A>
<DT><A HREF="https://github.com/gulpjs/gulp/blob/master/docs/recipes/automate-release-workflow.md">94</A>
<DT><A HREF="http://sam-koblenski.blogspot.com/2016/03/reflections-on-programming.html">95</A>
<DT><A HREF="http://www.createjs.com/easeljs">96</A>
<DT><A HREF="https://github.com/pwnsdx/RandomDNS">97</A>
<DT><A HREF="https://github.com/wixtoolset/issues/issues/5169">98</A>
<DT><A HREF="http://www.amazon.com/25-Kids-Large-Climbing-Holds/dp/B0054RVYZ4">99</A>
<DT><A HREF="http://www.amazon.com/exec/obidos/ASIN/B01BT0TQA4/uncrate-20">100</A>
<DT><A HREF="http://www.afar.com/magazine/the-incredibly-true-story-of-renting-a-friend-in-tokyo">101</A>
<DT><A HREF="https://reflect.io/blog/analytics-101-choosing-the-right-database/">102</A>
<DT><A HREF="http://opentoonz.github.io/e/index.html">103</A>
<DT><A HREF="http://www.flexboxdefense.com/">104</A>
<DT><A HREF="http://atxhackforchange.org/attend.html">105</A>
<DT><A HREF="http://dgraph.io/">106</A>
<DT><A HREF="http://gawker.com/tech-workers-should-unionize-1763264254">107</A>
<DT><A HREF="https://github.com/levskaya/eschersketch">108</A>
<DT><A HREF="http://imgur.com/ZfrUQsZ">109</A>
<DT><A HREF="http://vodkabears.github.io/remodal/#">110</A>
<DT><A HREF="https://github.com/caolan/forms">111</A>
<DT><A HREF="http://thenewmentalhealth.org/?p=81">112</A>
<DT><A HREF="http://www.pandajs.net/">113</A>
<DT><A HREF="https://googleprojectzero.blogspot.com/2016/03/race-you-to-kernel.html">114</A>
<DT><A HREF="https://github.com/joaopereirawd/animatedModal.js">115</A>
<DT><A HREF="https://www.pinterest.com/pin/32088216072687800/">116</A>
<DT><A HREF="http://www.allbirds.com/products/mens-wool-runners?variant=14978444103">117</A>
<DT><A HREF="http://lifehacker.com/seven-zen-stories-that-could-open-your-mind-1767039967">118</A>
<DT><A HREF="http://kubernetes.io/docs/admin/cluster-components/">119</A>
<DT><A HREF="https://www.firegiant.com/wix/">120</A>
<DT><A HREF="https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Flexible_Box_Layout/Using_CSS_flexible_boxes">121</A>
<DT><A HREF="http://redsymbol.net/articles/unofficial-bash-strict-mode/">122</A>
<DT><A HREF="https://www.amazon.com/gp/help/customer/display.html/ref=help_search_1-6?nodeId=201994710&qid=1458317761&sr=1-6&ie=UTF8">123</A>
<DT><A HREF="http://www.amazon.com/dp/B003VTZ700/?tag=kinjadeals-20&ascsubtag=41b5b8539cbd8f4ed5f3b182995e9814b3f7f859&rawdata=%5Br%7Chttp%3A%2F%2Fgizmodo.com%2F%5Bt%7Cmod-title%5Bp%7C1763269858%5Ba%7CB003VTZ700%5Bau%7C5727177402741770316">124</A>
<DT><A HREF="http://dimplejs.org/">125</A>
<DT><A HREF="http://www.amazon.com/dp/B00022OK2A/?tag=foodal02-20">126</A>
<DT><A HREF="http://labs.voronianski.com/jquery.avgrund.js/">127</A>
<DT><A HREF="https://github.com/mongodb/node-mongodb-native">128</A>
<DT><A HREF="https://www.pandastrike.com/posts/20141114-faking-co-routines">129</A>
<DT><A HREF="http://phaser.io/download">130</A>
<DT><A HREF="http://rachelbythebay.com/w/2016/03/22/6nat/">131</A>
<DT><A HREF="http://www.haneycodes.net/npm-left-pad-have-we-forgotten-how-to-program/">132</A>
<DT><A HREF="https://funandfunction.com/crash-mat.html">133</A>
<DT><A HREF="https://www.youtube.com/watch?v=SLoukoBs8TE">134</A>
<DT><A HREF="http://lifehacker.com/ease-into-meditation-with-mini-meditation-1766365887">135</A>
<DT><A HREF="https://www.sparkfun.com/products/13741">136</A>
<DT><A HREF="https://www.firegiant.com/wix/tutorial/">137</A>
<DT><A HREF="https://css-tricks.com/snippets/css/a-guide-to-flexbox/">138</A>
<DT><A HREF="https://news.ycombinator.com/item?id=11314597">139</A>
<DT><A HREF="http://www.bloomberg.com/news/articles/2011-09-15/ex-cocaine-smuggler-turned-data-miner-seeks-to-conquer-a-field-he-created">140</A>
<DT><A HREF="http://blog.triplebyte.com/how-to-pass-a-programming-interview">141</A>
<DT><A HREF="https://www.reddit.com/r/LifeProTips/comments/4c5wd5/lpt_request_how_do_you_train_yourself_to_be_calm/">142</A>
<DT><A HREF="https://github.com/ramiel/router.js">143</A>
<DT><A HREF="http://stephanwagner.me/jBox">144</A>
<DT><A HREF="https://github.com/baconjs/bacon.js">145</A>
<DT><A HREF="https://davidwalsh.name/es6-generators">146</A>
<DT><A HREF="https://msdn.microsoft.com/en-us/library/aa370905(VS.85).aspx#operating_system_properties">147</A>
<DT><A HREF="https://backchannel.com/those-entry-level-startup-jobs-they-re-now-mostly-dead-ends-in-the-boondocks-af3b4066f5dd#.4sn4adugr">148</A>
<DT><A HREF="https://www.hellohired.com/powersupply/jobs/847-product-designer">149</A>
<DT><A HREF="http://www.creativebloq.com/career/become-junior-designer-7133617">150</A>
<DT><A HREF="https://assets.adobe.com/link/c9fd8b0b-a414-43de-73b7-4fa480ab26d6">151</A>
<DT><A HREF="https://github.com/sparkfun/BadgerStick">152</A>
<DT><A HREF="https://katch.me/">153</A>
<DT><A HREF="http://blog.atom.io/2016/03/17/atom-1-6-and-1-7-beta.html">154</A>
<DT><A HREF="https://catmacey.wordpress.com/2009/03/28/reviving-a-dead-nicad-battery/">155</A>
<DT><A HREF="https://theconversation.com/weve-been-measuring-inequality-wrong-heres-the-real-story-56179">156</A>
<DT><A HREF="http://www.nirandfar.com/2016/03/why-people-check-their-phones-at-the-wrong-times.html">157</A>
<DT><A HREF="http://imgur.com/gallery/LmMZ5">158</A>
<DT><A HREF="https://github.com/domenic/chai-as-promised">159</A>
<DT><A HREF="http://www.sitepoint.com/14-jquery-modal-dialog-boxes/">160</A>
<DT><A HREF="http://10.192.4.102/">161</A>
<DT><A HREF="https://github.com/ReSwift/ReSwift/tree/master">162</A>
<DT><A HREF="https://www.firegiant.com/wix/tutorial/com-expression-syntax-miscellanea/components-of-a-different-color/">163</A>
<DT><A HREF="http://www.bakadesuyo.com/2016/03/expert/">164</A>
<DT><A HREF="http://thenextweb.com/insider/2016/03/23/free-to-play-games-are-not-the-way-forward-for-mobile-gaming/">165</A>
<DT><A HREF="http://www.themacroexperiment.com/blog/the-iifym-chain-restaurant-master-list">166</A>
<DT><A HREF="https://forums.adobe.com/community/experiencedesign?sdid=DHWC1KTF&mv=display">167</A>
<DT><A HREF="https://learn.sparkfun.com/tutorials/badgerhack-gaming-add-on-kit/hardware-hookup">168</A>
<DT><A HREF="https://www.reddit.com/r/Fitness/comments/46fxfr/im_eating_and_training_like_dwayne_the_rock/">169</A>
<DT><A HREF="https://www.youtube.com/watch?v=dFblLbDZa8Q">170</A>
<DT><A HREF="http://www.arxiv-sanity.com/">171</A>
<DT><A HREF="https://www.ftc.gov/news-events/press-releases/2016/03/ftc-issues-warning-letters-app-developers-using-silverpush-code">172</A>
<DT><A HREF="http://essenmitsosse.de/pixel/">173</A>
<DT><A HREF="https://www.reddit.com/r/Fitness/comments/4c7ha6/i_wrote_a_guide_to_help_you_choose_a_beginner/">174</A>
<DT><A HREF="https://markgoodyear.com/2014/01/getting-started-with-gulp/">175</A>
<DT><A HREF="http://joaopereirawd.github.io/animatedModal.js/">176</A>
<DT><A HREF="https://github.com/raimohanska/todomvc/blob/bacon-jquery/labs/architecture-examples/baconjs/js/app.js">177</A>
<DT><A HREF="http://grimmdude.github.io/MidiWriterJS/">178</A>
<DT><A HREF="https://www.firegiant.com/wix/tutorial/user-interface/first-steps/">179</A>
<DT><A HREF="http://yonomitt.com/blog/2016/3/23/meeting-people-is-easy-but-hard">180</A>
<DT><A HREF="https://brian-armstrong.github.io/quiet-js/">181</A>
<DT><A HREF="http://www.themacroexperiment.com/blog/the-iifym-fast-food-restaurant-master-list">182</A>
<DT><A HREF="https://www.twitch.tv/adobe">183</A>
<DT><A HREF="http://guillaumechereau.github.io/goxel/">184</A>
<DT><A HREF="https://www.reddit.com/r/Fitness/comments/4aozzf/i_recently_finished_eating_and_training_like/">185</A>
<DT><A HREF="http://www.vanityfair.com/news/2016/03/silicon-valleys-tech-employees-are-getting-nervous">186</A>
<DT><A HREF="http://salvatore.diodev.fr/pypybox/">187</A>
<DT><A HREF="http://arohatgi.info/WebPlotDigitizer/">188</A>
<DT><A HREF="https://aeon.co/essays/how-the-internet-flips-elections-and-alters-our-thoughts">189</A>
<DT><A HREF="http://www.antipope.org/charlie/blog-static/2016/03/follow-the-money-apple-vs-the-.html">190</A>
<DT><A HREF="https://github.com/vohof/gulp-livereload">191</A>
<DT><A HREF="https://osi-model.com/">192</A>
<DT><A HREF="http://philipnilsson.github.io/badness/">193</A>
<DT><A HREF="http://crawly.diffbot.com/">194</A>
<DT><A HREF="https://www.firegiant.com/wix/tutorial/user-interface/ui-wizardry/">195</A>
<DT><A HREF="https://cloudplatform.googleblog.com/2016/03/Google-joins-Open-Compute-Project-to-drive-standards-in-IT-infrastructure.html?m=1">196</A>
<DT><A HREF="http://gruntjs.com/getting-started">197</A>
<DT><A HREF="https://www.gnu.org/software/gneuralnetwork/">198</A>
<DT><A HREF="http://unity3d.com/pages/adam">199</A>
<DT><A HREF="https://github.com/lf94/kdl2viewer">200</A>
<DT><A HREF="http://imgur.com/a/bjcLT">201</A>
<DT><A HREF="http://simplefocus.com/flowtype/">202</A>
<DT><A HREF="http://www.fastcodesign.com/3054330/innovation-by-design/the-secret-ux-issues-that-will-make-or-break-autonomous-cars">203</A>
<DT><A HREF="http://arxiv.org/abs/1603.04865">204</A>
<DT><A HREF="http://techblog.netflix.com/2016/03/how-we-build-code-at-netflix.html">205</A>
<DT><A HREF="http://www.bq.com/uk/aquaris-m10-ubuntu-edition">206</A>
<DT><A HREF="https://github.com/osscafe/gulp-cheatsheet">207</A>
<DT><A HREF="https://medium.com/@azerbike/i-ve-just-liberated-my-modules-9045c06be67c#.mmuulvkmu">208</A>
<DT><A HREF="http://www.sitepoint.com/building-pacman-with-bacon-js/?utm_source=javascriptweekly&utm_medium=email">209</A>
<DT><A HREF="http://sploid.gizmodo.com/watch-a-master-carpenter-build-the-workbench-of-your-dr-1766456444">210</A>
<DT><A HREF="http://android-developers.blogspot.com/2016/03/first-preview-of-android-n-developer.html">211</A>
<DT><A HREF="http://kylefox.ca/about/">212</A>
<DT><A HREF="http://plumshell.com/2016/03/10/work-for-only-3-hours-a-day-but-everyday/">213</A>
<DT><A HREF="https://github.com/blog/2123-more-code-review-tools">214</A>
<DT><A HREF="https://1000ch.github.io/grd/">215</A>
<DT><A HREF="http://jvns.ca/blog/2016/03/16/tcpdump-is-amazing/">216</A>
<DT><A HREF="https://github.com/kylefox/jquery-modal">217</A>
<DT><A HREF="https://www.washingtonpost.com/politics/how-ghost-corporations-are-funding-the-2016-election/2016/03/18/2446e526-ed14-11e5-a6f3-21ccdbc5f74e_story.html">218</A>
<DT><A HREF="https://securitychecklist.org/">219</A>
<DT><A HREF="https://astaxie.gitbooks.io/build-web-application-with-golang/content/en/preface.html">220</A>
<DT><A HREF="http://chaijs.com/guide/styles/">221</A>
<DT><A HREF="https://www.humblebundle.com/store/p/dayofthetentacle_storefront">222</A>
<DT><A HREF="http://www.bloomberg.com/news/articles/2016-03-09/more-venture-investors-are-sitting-on-the-sidelines">223</A>
<DT><A HREF="http://jquerymodal.com/">224</A>
<DT><A HREF="http://amosdudley.com/weblog/Ortho">225</A>
<DT><A HREF="https://hubl.in/">226</A>
<DT><A HREF="https://github.com/yenchenlin1994/DeepLearningFlappyBird">227</A>
<DT><A HREF="https://blog.feathersjs.com/introducing-feathers-2-0-aae8ae8e7920#.miatum7si">228</A>
<DT><A HREF="http://codepen.io/tutsplus/pen/xbZwmK/">229</A>
<DT><A HREF="https://blog.prototypr.io/motion-design-is-the-future-of-ui-fc83ce55c02f#.mbyd1uut1">230</A>
<DT><A HREF="http://www.asimovonline.com/oldsite/asimov_titles.html">231</A>
<DT><A HREF="http://ufldl.stanford.edu/wiki/index.php/UFLDL_Tutorial">232</A>
<DT><A HREF="https://www.reddit.com/r/LibreStudio">233</A>
<DT><A HREF="http://www.scotthasbrouck.com/blog/2016/3/13/using-socketio-with-rethinkdb-changefeeds-to-build-a-reactive-backend">234</A>
<DT><A HREF="https://segment.com/blog/the-deep-roots-of-js-fatigue/">235</A>
<DT><A HREF="https://medium.com/@jasnell/node-js-buffer-api-changes-3c21f1048f97#.y85zt2a63">236</A>
<DT><A HREF="http://madebymike.com.au/writing/precise-control-responsive-typography/">237</A>
<DT><A HREF="https://forum.ionicframework.com/t/ios-application-rejected-with-reason-non-public-apis/46717/4">238</A>
<DT><A HREF="http://phaser.io/examples/v2/category/arcade-physics">239</A>
<DT><A HREF="https://codefights.com/home">240</A>
<DT><A HREF="http://docs.meteor.com/#/basic/">241</A>
<DT><A HREF="http://www.reuters.com/investigates/special-report/college-sat-two/">242</A>
<DT><A HREF="http://www.tnfarmbureau.org/content/shoot-here-among-us">243</A>
<DT><A HREF="http://arxiv.org/pdf/1603.00431v1.pdf">244</A>
<DT><A HREF="http://phaser.io/examples/v2/category/particles">245</A>
<DT><A HREF="https://github.com/meteor/guide">246</A>
<DT><A HREF="https://forums.meteor.com/t/stubs-for-meteor-unit-testing/20206">247</A>
<DT><A HREF="https://medium.com/@daspecster/how-to-interview-for-a-remote-job-f6282ee0365d#.xdevithv5">248</A>
<DT><A HREF="http://news.stanford.edu/news/2016/march/pavillion-fracking-water-032916.html">249</A>
<DT><A HREF="http://phaser.io/download/stable">250</A>
<DT><A HREF="http://info.meteor.com/blog/meteor-in-flip-flops">251</A>
<DT><A HREF="https://atmospherejs.com/practicalmeteor/mocha?__hstc=256467284.aa0c499a4aea411d6b030ac7b28609ad.1459264187082.1459264187082.1459264187082.1&__hssc=256467284.2.1459264187082&__hsfp=470528028">252</A>
<DT><A HREF="https://blog.asana.com/2016/03/asana-engineering-interview-guide/">253</A>
<DT><A HREF="http://phaser.io/download/beta">254</A>
<DT><A HREF="https://meteorinflipflops.com/">255</A>
<DT><A HREF="https://www.youtube.com/watch?v=7d0xTR-eYh0">256</A>
<DT><A HREF="https://github.com/photonstorm/phaser">257</A>
<DT><A HREF="https://medium.com/@pholmq/i-attended-meteorinflipflops-2016-84543a909188#.bi9ubq2xm">258</A>
<DT><A HREF="http://phaser.io/">259</A>
<DT><A HREF="https://www.openstreetmap.org/#map=5/51.500/-0.100">260</A>
<DT><A HREF="https://www.gnu.org/philosophy/when-free-depends-on-nonfree">261</A>
<DT><A HREF="http://techcrunch.com/2010/08/25/scvngr-game-mechanics/">262</A>
<DT><A HREF="http://expressjs.com/en/starter/installing.html">263</A>
<DT><A HREF="https://backchannel.com/steve-case-is-bullish-on-tech-s-third-wave-even-if-it-s-kind-of-a-bummer-94eaadde75da#.f3hnx75ge">264</A>
<DT><A HREF="https://www.vitsoe.com/us/about/good-design">265</A>
<DT><A HREF="http://developer.android.com/sdk/installing/index.html">266</A>
<DT><A HREF="https://www.npmjs.com/package/express">267</A>
<DT><A HREF="http://lushprojects.com/circuitjs/">268</A>
<DT><A HREF="https://strawdogs.wordpress.com/2009/08/16/neil-postmans-6-questions/">269</A>
<DT><A HREF="https://webtorrent.io/desktop">270</A>
<DT><A HREF="https://jsfiddle.net/reactjs/69z2wepo/">271</A>
<DT><A HREF="https://github.com/webrtc/samples">272</A>
<DT><A HREF="https://learn.adafruit.com/running-opengl-based-games-and-emulators-on-adafruit-pitft-displays/overview">273</A>
<DT><A HREF="https://www.thoughtcrime.org/software/knockknock/">274</A>
<DT><A HREF="https://github.com/dburles/meteor-collection-helpers">275</A>
<DT><A HREF="http://www.makeuseof.com/tag/toonami-aftermath-brings-you-back-to-the-days-of-cartoon-networks-greatness/">276</A>
<DT><A HREF="https://github.com/facebook/react/labels/good%20first%20bug">277</A>
<DT><A HREF="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise">278</A>
<DT><A HREF="http://lifehacker.com/schedule-your-work-in-five-stages-to-get-through-crazy-1769852441">279</A>
<DT><A HREF="http://www.portknocking.org/">280</A>
<DT><A HREF="https://github.com/aserg-ufmg/JSClassFinder">281</A>
<DT><A HREF="https://www.discovermeteor.com/blog/study-plan-meteor-1-3/#collections-&-models">282</A>
<DT><A HREF="https://www.takeitapart.com/">283</A>
<DT><A HREF="https://github.com/expressjs/express">284</A>
<DT><A HREF="https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices/getUserMedia#Browser_compatibility">285</A>
<DT><A HREF="http://twocents.lifehacker.com/pick-the-perfect-side-hustle-with-these-five-questions-1769743112">286</A>
<DT><A HREF="https://github.com/nikkiii/omegle-api-java">287</A>
<DT><A HREF="http://blog.naytev.com/buzzfeed-networks/">288</A>
<DT><A HREF="http://www.pcgamer.com/dwarf-fortress-creator-on-how-hes-42-towards-simulating-existence/#page-1">289</A>
<DT><A HREF="http://inkdroid.org/2016/04/02/follow/">290</A>
<DT><A HREF="https://book.discovermeteor.com/chapter/collections">291</A>
<DT><A HREF="http://www.amazon.com/The-Antidote-Happiness-Positive-Thinking/dp/0865478015?rawdata=%5Br%7Chttp%3A%2F%2Flifehacker.com%2F%5Bt%7Clink%5Bp%7C1769438758%5Ba%7C0865478015%5Bau%7C602884910&tag=lifehackeramzn-20&ascsubtag=ff36c1fedaa6cc71e1a7c3cd5a18c1b11e4eb310">292</A>
<DT><A HREF="http://mongodb.github.io/node-mongodb-native/2.1/api/">293</A>
<DT><A HREF="http://lifehacker.com/from-zero-to-45-days-in-a-row-how-i-built-a-habit-of-d-1769654337">294</A>
<DT><A HREF="http://www.artofmanliness.com/2016/04/06/oldtime-strongman-exercises/">295</A>
<DT><A HREF="https://github.com/cryzed/Python-Omegle-API">296</A>
<DT><A HREF="http://chrismm.com/blog/how-to-reduce-the-cognitive-load-of-your-code/">297</A>
<DT><A HREF="http://paulgraham.com/pgh.html">298</A>
<DT><A HREF="https://tempostorm.com/hearthstone/meta-snapshot/meta-snapshot-28-oh-secret-tree-oh-secret-tree">299</A>
<DT><A HREF="https://preview.webflow.com/preview/flexbox-game?preview=d1a26b027c4803817087a91c651e321f&m=1">300</A>
<DT><A HREF="http://blog.ycombinator.com/first-fellowship-virtual-demo-day">301</A>
<DT><A HREF="http://panamapapers.sueddeutsche.de/articles/56febff0a1bb8d3c3495adf4/">302</A>
<DT><A HREF="https://www.meteor.com/tutorials/blaze/update-and-remove">303</A>
<DT><A HREF="http://imgur.com/gallery/39VIV">304</A>
<DT><A HREF="http://mongodb.github.io/node-mongodb-native/">305</A>
<DT><A HREF="http://mobile.nytimes.com/2016/04/10/opinion/sunday/congratulations-youve-been-fired.html?smid=tw-share&referer=https://t.co/GST3iLv3Zn&_r=0">306</A>
<DT><A HREF="http://some1else.github.io/life/">307</A>
<DT><A HREF="http://pastebin.com/3TqccNB3">308</A>
<DT><A HREF="https://github.com/kadirahq/react-storybook">309</A>
<DT><A HREF="http://www.economist.com/news/briefing/21695385-profits-are-too-high-america-needs-giant-dose-competition-too-much-good-thing">310</A>
<DT><A HREF="https://github.com/weaveworks">311</A>
<DT><A HREF="http://www.statutes.legis.state.tx.us/?link=BO">312</A>
<DT><A HREF="https://docs.docker.com/engine/examples/nodejs_web_app/">313</A>
<DT><A HREF="http://www.liquidhearth.com/forum/hearthstone/493015-power-rank-august-10-warriors-last-stand">314</A>
<DT><A HREF="https://github.com/alda-lang/alda">315</A>
<DT><A HREF="http://www.nytimes.com/2016/04/04/technology/managed-by-q-anon-demand-start-up-raises-25-million.html?_r=1">316</A>
<DT><A HREF="http://phys.org/news/2016-03-language-cells.html">317</A>
<DT><A HREF="https://whispersystems.org/blog/whatsapp-complete/">318</A>
<DT><A HREF="http://mean.io/#!/">319</A>
<DT><A HREF="http://localhost:3000/">320</A>
<DT><A HREF="http://animagraffs.com/how-a-car-engine-works/">321</A>
<DT><A HREF="https://blog.prototypr.io/google-hobbies-a-retrospective-on-a-new-feature-to-help-google-users-find-and-learn-new-skills-650947f0be#.vts7h9qm2">322</A>
<DT><A HREF="https://github.com/cryzed">323</A>
<DT><A HREF="https://iovisor.github.io/bcc/">324</A>
<DT><A HREF="https://channel9.msdn.com/Events/Build/2016/B882">325</A>
<DT><A HREF="https://www.aptible.com/blog/common_HIPAA_questions.html">326</A>
<DT><A HREF="https://gist.github.com/anonymous/f43fe98300ec5e379da2">327</A>
<DT><A HREF="http://lifehacker.com/this-diy-arcade-cabinet-is-made-from-ikea-parts-1768623184">328</A>
<DT><A HREF="http://www.sos.state.tx.us/corp/legislative-updates.shtml">329</A>
<DT><A HREF="http://i.imgur.com/oYbpSVh.jpg">330</A>
<DT><A HREF="https://trackobot.com/">331</A>
<DT><A HREF="http://makeitopen.com/">332</A>
<DT><A HREF="http://techcrunch.com/2016/04/01/hardware-is-hard-how-we-built-a-hardware-startup-with-two-engineers-and-some-free-time/">333</A>
<DT><A HREF="http://blog.airbuscybersecurity.com/post/2016/03/FILELESS-MALWARE-%E2%80%93-A-BEHAVIOURAL-ANALYSIS-OF-KOVTER-PERSISTENCE">334</A>
<DT><A HREF="http://pages.gitlab.io/">335</A>
<DT><A HREF="http://overtone-recipes.github.io/remake/2016/04/03/recreating-da-funk.html">336</A>
<DT><A HREF="http://jade-lang.com/reference/">337</A>
<DT><A HREF="https://medium.com/frog-and-toad-are-cofounders">338</A>
<DT><A HREF="http://thecodist.com/article/how-i-ve-avoided-burnout-during-more-than-3-decades-as-a-programmer">339</A>
<DT><A HREF="http://www.mamartino.com/projects/rise_of_partisanship/">340</A>
<DT><A HREF="http://juhakiili.com/box256/">341</A>
<DT><A HREF="http://www.wsj.com/articles/the-college-of-chinese-wisdom-1459520703">342</A>
<DT><A HREF="https://blog.pinboard.in/2016/03/my_heroic_and_lazy_stand_against_ifttt/">343</A>
<DT><A HREF="https://davidwalsh.name/curl-post-file">344</A>
<DT><A HREF="http://lifehacker.com/how-to-create-the-ultimate-tech-infused-retro-arcade-co-521331796">345</A>
<DT><A HREF="http://www.sos.state.tx.us/corp/forms_boc.shtml">346</A>
<DT><A HREF="https://blog.whatwg.org/js-modules">347</A>
<DT><A HREF="https://www.reddit.com/r/DIY/">348</A>
<DT><A HREF="http://nymag.com/scienceofus/2016/04/what-its-like-to-wake-up-from-autism-after-magnetic-stimulation.html">349</A>
<DT><A HREF="http://imgur.com/gallery/uuGBP?lr=1459669772">350</A>
<DT><A HREF="http://panamapapers.sueddeutsche.de/en/">351</A>
<DT><A HREF="http://avc.com/2016/04/the-kik-bot-platform/">352</A>
<DT><A HREF="https://aria2.github.io/">353</A>
<DT><A HREF="https://facebook.github.io/react/docs/getting-started.html">354</A>
<DT><A HREF="http://nautil.us/issue/35/boundaries/how-to-avoid-empathy-burnout">355</A>
<DT><A HREF="https://carolynwykoff.shutterfly.com/">356</A>
<DT><A HREF="http://imgur.com/gallery/Ij65E/new">357</A>
<DT><A HREF="http://www.theatlantic.com/science/archive/2016/03/save-psychology-by-replicating-studies-before-theyre-published/475983/?single_page=true">358</A>
<DT><A HREF="http://www.nytimes.com/2016/04/03/business/after-wikileaks-revelation-greece-asks-imf-to-clarify-bailout-plan.html?_r=0">359</A>
<DT><A HREF="http://botize.com/">360</A>
<DT><A HREF="https://storm.apache.org/index.html">361</A>
<DT><A HREF="https://rightsmanager.fb.com/">362</A>
<DT><A HREF="http://www.sos.state.tx.us/corp/options.shtml">363</A>
<DT><A HREF="https://medium.com/@genadyo/developing-for-the-amazon-echo-2578339992dc#.n8o76ollb">364</A>
<DT><A HREF="http://imgur.com/a/TWCcQ">365</A>
<DT><A HREF="http://mitadmissions.org/blogs/entry/lessons-on-how-to-start-a-hard-tech-startup-with-sam-altman">366</A>
<DT><A HREF="http://www.openvbx.org/install/">367</A>
<DT><A HREF="https://vimeo.com/161009416">368</A>
<DT><A HREF="https://dev.kik.com/#/home">369</A>
<DT><A HREF="http://avc.com/2016/04/losing-money/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+AVc+%28A+VC%29">370</A>
<DT><A HREF="https://github.com/facebook/react">371</A>
<DT><A HREF="http://guide.meteor.com/testing.html#isolation-techniques">372</A>
<DT><A HREF="https://mastermind.atavist.com/he-always-had-a-dark-side">373</A>
<DT><A HREF="https://www.reddit.com/r/Art/comments/4cp4x0/6_months_learning_to_draw_digital_and_traditional/">374</A>
<DT><A HREF="https://m.signalvnoise.com/i-m-a-boring-programmer-and-proud-of-it-d4ac3dd2defe#.ewzggn57n">375</A>
<DT><A HREF="http://jmarbach.com/amazon-associates-arbitrage-how-amazons-own-success-may-be-hurting-themselves">376</A>
<DT><A HREF="https://zapier.com/">377</A>
<DT><A HREF="http://blog.runnable.com/post/142665542481/weave-docker-for-mac-the-bridge-between-local">378</A>
<DT><A HREF="https://github.com/firehol/netdata/wiki/Monitor-application-bandwidth-with-Linux-QoS">379</A>
<DT><A HREF="https://direct.sos.state.tx.us/help/help-corp.asp?pg=fee">380</A>
<DT><A HREF="http://vitals.lifehacker.com/everything-you-need-to-build-your-own-bodyweight-workou-1770226539">381</A>
<DT><A HREF="http://imgur.com/a/qKJfE">382</A>
<DT><A HREF="https://k7r.eu/us-government-commits-to-publish-publicly-financed-software-under-free-software-licenses/">383</A>
<DT><A HREF="https://vimeo.com/album/3856260">384</A>
<DT><A HREF="https://bots.kik.com/#/">385</A>
<DT><A HREF="http://www.deeplearningbook.org/">386</A>
<DT><A HREF="http://blog.npmjs.org/post/141905368000/changes-to-npms-unpublish-policy">387</A>
<DT><A HREF="https://atmospherejs.com/kadira/flow-router">388</A>
<DT><A HREF="http://blog.dustinkirkland.com/2016/03/ubuntu-on-windows.html?m=1">389</A>
<DT><A HREF="http://i.imgur.com/RpPw4ZR.jpg">390</A>
<DT><A HREF="http://www.amazon.com/s/ref=nb_sb_noss_2?url=search-alias%3Daps&field-keywords=lego+classic&rh=i%3Aaps%2Ck%3Alego+classic">391</A>
<DT><A HREF="http://www.bloomberg.com/features/2016-baby-powder-cancer-lawsuits/">392</A>
<DT><A HREF="http://thebaffler.com/salvos/rest-advertising">393</A>
<DT><A HREF="https://www.theguardian.com/science/blog/2016/apr/11/time-dispel-myths-about-nuclear-power-chernobyl-fukushima">394</A>
<DT><A HREF="https://medium.com/@davidbyttow/the-inherent-problem-with-anonymous-apps-2795ef0c1855#.g31uwnns8">395</A>
<DT><A HREF="http://www.sos.state.tx.us/corp/sosda/index.shtml">396</A>
<DT><A HREF="http://www.amazon.com/gp/product/B00UZ0OHIQ?keywords=automatic&qid=1450794067&ref_=sr_1_1&sr=8-1&tag=kinjadeals-20&ascsubtag=e078f4333d158456b3d748450f6a341482d13527&rawdata=%5Br%7Chttp%3A%2F%2Fgizmodo.com%2F%5Bt%7Clink%5Bp%7C1770705273%5Ba%7CB00UZ0OHIQ%5Bau%7C5727177402741770316">397</A>
<DT><A HREF="https://imgur.com/a/OoCYf">398</A>
<DT><A HREF="https://github.com/tflearn/tflearn">399</A>
<DT><A HREF="https://vimeo.com/album/3856260/video/159391857">400</A>
<DT><A HREF="https://github.com/mortenjust/cleartext-mac/blob/master/README.md">401</A>
<DT><A HREF="http://guide.meteor.com/">402</A>
<DT><A HREF="http://internethealthreport.com/">403</A>
<DT><A HREF="https://github.com/kadirahq/meteor-react-layout">404</A>
<DT><A HREF="http://blogs.wsj.com/economics/2016/03/30/dropouts-need-not-apply-silicon-valley-asks-mostly-for-developers-with-degrees/">405</A>
<DT><A HREF="http://rkd.me.uk/clang-vs-gcc-coverage.html">406</A>
<DT><A HREF="http://www.amazon.com/s/ref=nb_sb_noss_1?url=search-alias%3Daps&field-keywords=lego+technic&rh=i%3Aaps%2Ck%3Alego+technic&ajr=sabc">407</A>
<DT><A HREF="https://medium.com/the-year-of-the-looking-glass/unintuitive-things-i-ve-learned-about-management-f2c42d68604b#.4j39n24h6">408</A>
<DT><A HREF="https://www.allflicks.net/netflixs-us-catalog-has-shrunk-by-more-than-2500-titles-in-less-than-2-5-years/">409</A>
<DT><A HREF="https://www.golden-layout.com/">410</A>
<DT><A HREF="http://ifdattic.com/making-video-course-reflection/">411</A>
<DT><A HREF="http://comptroller.texas.gov/taxinfo/taxpubs/tx96_259.pdf">412</A>
<DT><A HREF="http://blog.samaltman.com/cruise">413</A>
<DT><A HREF="http://imgur.com/a/J3XSE">414</A>
<DT><A HREF="http://arstechnica.com/tech-policy/2016/04/a-spiritual-successor-to-aaron-swartz-is-angering-publishers-all-over-again/">415</A>
<DT><A HREF="https://github.com/aldeed/meteor-simple-schema">416</A>
<DT><A HREF="http://phaser.io/docs/2.4.6/index#geometry">417</A>
<DT><A HREF="https://forums.meteor.com/">418</A>
<DT><A HREF="https://medium.com/@gduffy/the-dropcam-team-b9e81f44f259#.2jodnuvh8">419</A>
<DT><A HREF="http://api.jqueryui.com/slider/">420</A>
<DT><A HREF="http://martinfowler.com/articles/web-security-basics.html">421</A>
<DT><A HREF="http://www.nytimes.com/well/guides/how-to-start-running">422</A>
<DT><A HREF="https://www.inventables.com/technologies/x-carve">423</A>
<DT><A HREF="http://imgur.com/a/shoci">424</A>
<DT><A HREF="http://phaser.io/tutorials/making-your-first-phaser-game">425</A>
<DT><A HREF="http://uk.businessinsider.com/charlie-munger-warns-about-american-finance-2016-4?r=US&IR=T">426</A>
<DT><A HREF="http://sethgodin.typepad.com/seths_blog/2016/04/our-software-must-get-better.html">427</A>
<DT><A HREF="http://comptroller.texas.gov/taxinfo/sales/">428</A>
<DT><A HREF="https://github.com/pravic/winapi-kmd-rs">429</A>
<DT><A HREF="https://sketchfab.com/">430</A>
<DT><A HREF="https://www.thekua.com/atwork/2016/04/12-years-12-lessons-working-at-thoughtworks/">431</A>
<DT><A HREF="http://phaser.io/sandbox">432</A>
<DT><A HREF="https://github.com/photonstorm">433</A>
<DT><A HREF="https://github.com/lukehoban/es6features#readme">434</A>
<DT><A HREF="http://www.amazon.com/gp/product/B00XEW3YD6/ref=as_li_tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=B00XEW3YD6&linkCode=as2&tag=eero-20&linkId=DAJHIK5YGTI6Z7HR">435</A>
<DT><A HREF="http://meteortips.com/first-meteor-tutorial/forms/">436</A>
<DT><A HREF="http://blog.hackerrank.com/for-anyone-who-has-been-turned-down-by-38-companies-120-interviews/">437</A>
<DT><A HREF="http://www.build2master.com/technology/python-cheat-sheet-for-work">438</A>
<DT><A HREF="http://www.amazon.com/Getting-Started-3D-Carving-X-Carve/dp/1680450999/ref=sr_1_13?ie=UTF8&qid=1459633142&sr=8-13&keywords=cnc+router">439</A>
<DT><A HREF="http://www.sos.state.tx.us/corp/educational-materials.shtml">440</A>
<DT><A HREF="http://phaser.io/learn/official-tutorials">441</A>
<DT><A HREF="https://www.cars.com/">442</A>
<DT><A HREF="https://roonlabs.com/pricing.html">443</A>
<DT><A HREF="http://comptroller.texas.gov/taxpermit/">444</A>
<DT><A HREF="http://googleresearch.blogspot.com/2016/04/announcing-tensorflow-08-now-with.html">445</A>
<DT><A HREF="https://medium.com/invironment/an-army-of-ocean-farmers-on-the-frontlines-of-the-blue-green-economic-revolution-d5ae171285a3#.n21ntlk2f">446</A>
<DT><A HREF="http://phaser.io/examples">447</A>
<DT><A HREF="https://github.com/photonstorm/phaser-plugins">448</A>
<DT><A HREF="https://github.com/getify/You-Dont-Know-JS/tree/master/es6%20%26%20beyond">449</A>
<DT><A HREF="https://about.gitlab.com/2016/03/29/gitlab-runner-1-1-released/?">450</A>
<DT><A HREF="https://www.discovermeteor.com/blog/a-look-at-a-meteor-template/">451</A>
<DT><A HREF="http://theprofessorisin.com/2016/03/29/self-criticism-and-the-academy-postac-post-by-jessica-langer/">452</A>
<DT><A HREF="http://www.fastcompany.com/3058251/the-future-of-work/why-learning-to-code-wont-save-your-job">453</A>
<DT><A HREF="http://venturebeat.com/2016/04/02/we-need-a-new-username-system/">454</A>
<DT><A HREF="http://www.sos.state.tx.us/corp/forms/boc/basics-pa13-presentation.pdf">455</A>
<DT><A HREF="https://www.google.com/intl/en/about/products/">456</A>
<DT><A HREF="http://blogs.igalia.com/dpino/2016/04/10/network-namespaces/">457</A>
<DT><A HREF="https://github.com/stevschmid/track-o-bot">458</A>
<DT><A HREF="https://www.npmjs.com/package/http-server">459</A>
<DT><A HREF="http://phaser.io/tutorials/making-your-first-phaser-game/part8">460</A>
<DT><A HREF="http://frederickvandenbosch.be/?p=1554">461</A>
<DT><A HREF="https://hexdocs.pm/slack/Slack.html">462</A>
<DT><A HREF="https://github.com/rrrene/credo">463</A>
<DT><A HREF="http://www.polygon.com/2016/1/15/10772542/kings-quest-chapter-2-review-xbox-one-ps4-pc">464</A>
<DT><A HREF="https://github.com/alaingilbert/Turntable-API">465</A>
<DT><A HREF="https://trac.torproject.org/projects/tor/ticket/11331">466</A>
<DT><A HREF="https://blog.gregbrockman.com/my-path-to-openai">467</A>
<DT><A HREF="http://betteryourselfonline.com/free-literature-courses-universities/">468</A>
<DT><A HREF="https://www.kickstarter.com/projects/soulboundstudios/chronicles-of-elyria-epic-story-mmorpg-with-aging/description">469</A>
<DT><A HREF="https://putyourhandsin.slack.com/services/B15QBHKQD?added=1">470</A>
<DT><A HREF="https://weworkremotely.com/jobs/2940-ux-designer">471</A>
<DT><A HREF="http://lifehacker.com/build-your-own-two-player-miniature-cocktail-arcade-cab-1774737440">472</A>
<DT><A HREF="http://www.demoshelsinki.fi/en/2015/08/10/helsinki-residents-take-back-their-city-no-chaos-necessary/">473</A>
<DT><A HREF="http://www.tomdispatch.com/blog/176137/">474</A>
<DT><A HREF="https://community.letsencrypt.org/t/use-on-non-web-servers/425/24">475</A>
<DT><A HREF="https://angel.co/orbital">476</A>
<DT><A HREF="http://www.nytimes.com/2016/05/08/us/what-makes-texas-texas.html?_r=1">477</A>
<DT><A HREF="http://circuitbeard.co.uk/blog/rombus-ct-a-raspberry-pi-powered-mini-cocktail-arcade">478</A>
<DT><A HREF="http://www.bloomberg.com/features/2016-zenefits/">479</A>
<DT><A HREF="https://hex.pm/packages?_utf8=%E2%9C%93&search=poison&sort=downloads">480</A>
<DT><A HREF="http://elm-lang.org/blog/farewell-to-frp">481</A>
<DT><A HREF="http://i.imgur.com/79j6sHJ.jpg">482</A>
<DT><A HREF="http://www.when2leave.com/">483</A>
<DT><A HREF="https://github.com/apple/swift-evolution">484</A>
<DT><A HREF="http://www.uxbox.sk/?en">485</A>
<DT><A HREF="https://hbr.org/2002/02/avoid-the-four-perils-of-crm">486</A>
<DT><A HREF="http://lifehacker.com/the-simply-ubuntu-desktop-1773383476#_ga=1.156059323.1224299049.1454957731">487</A>
<DT><A HREF="http://www.economist.com/news/science-and-technology/21698229-genomic-era-arrives-and-time-its-probably-real-encore-une-fois">488</A>
<DT><A HREF="http://hanmiblog.co.kr/?ckattempt=1">489</A>
<DT><A HREF="http://www.appgamekit.com/agk-pi/">490</A>
<DT><A HREF="http://blog.webkid.io/neural-networks-in-javascript/">491</A>
<DT><A HREF="http://imgur.com/gallery/4Q2Tj">492</A>
<DT><A HREF="http://penguindreams.org/blog/there-is-an-ios-device-attached-to-my-google-account-and-i-do-not-own-any-apple-products/">493</A>
<DT><A HREF="http://imgur.com/gallery/GqyDM">494</A>
<DT><A HREF="http://buildingkollecto.com/post/96624533068/building-without-an-ounce-of-code">495</A>
<DT><A HREF="http://www.pbs.org/newshour/updates/america-e-waste-gps-tracker-tells-all-earthfix/">496</A>
<DT><A HREF="https://github.com/diafygi/acme-tiny">497</A>
<DT><A HREF="https://www.buzzfeed.com/williamalden/inside-palantir-silicon-valleys-most-secretive-company?utm_term=.axyoWmqOn#.ihYG7nEvp">498</A>
<DT><A HREF="https://m.orbital.nyc/lessons-d460a713e42a#.c0xrwjv0z">499</A>
<DT><A HREF="http://collincummings.tumblr.com/post/92147842454/nobody-cares-if-you-fail">500</A>
<DT><A HREF="http://www.aboveavalon.com/notes/2016/5/11/apple-rd-reveals-a-pivot-is-coming">501</A>
<DT><A HREF="https://letsencrypt.github.io/acme-spec/#rfc.section.7">502</A>
<DT><A HREF="http://blog.garychou.com/post/116473310207/orbital-product-sessions">503</A>
<DT><A HREF="https://imgur.com/a/0Y2aX">504</A>
<DT><A HREF="http://entrepreneurdesigners.tumblr.com/">505</A>
<DT><A HREF="http://simranjaising.tumblr.com/post/92568600876/7-things-ive-learned-from-orbital-thus-far">506</A>
<DT><A HREF="http://blog.schlagetown.com/post/91622530512/go-ahead-and-kill-your-company-but-dont-let-your">507</A>
<DT><A HREF="https://worldofvnc.net/">508</A>
<DT><A HREF="https://community.letsencrypt.org/">509</A>
<DT><A HREF="https://garychou.hackpad.com/Orbital-Boot-Camp-me2tlgq2IgX">510</A>
<DT><A HREF="http://blog.orbital.nyc/post/117793860054/ask-orbital">511</A>
<DT><A HREF="https://www.reddit.com/r/flexibility/comments/3fewg8/august_is_hip_flexor_opening_month_look_inside/">512</A>
<DT><A HREF="https://medium.com/see-think-make/the-thesis-after-your-thesis-62c47d3a4c0a#.p4g5nx9x3">513</A>
<DT><A HREF="http://rosematsa.tumblr.com/post/96550377684/on-ben-pieratts-creative-mornings-talk-and-an">514</A>
<DT><A HREF="http://www.sofiaquintero.com/start-before-youre-ready/">515</A>
<DT><A HREF="http://www.atlasobscura.com/articles/remote-year-promised-to-combine-work-and-travel-was-it-too-good-to-be-true?Src=longreads">516</A>
<DT><A HREF="https://letsencrypt.org/upcoming-features/">517</A>
<DT><A HREF="https://en.wikipedia.org/wiki/Community_of_practice">518</A>
<DT><A HREF="http://continuations.com/post/73200931464/entering-the-information-age">519</A>
<DT><A HREF="http://blog.garychou.com/post/118722794112/on-constraints-exploration-and-chance">520</A>
<DT><A HREF="https://www.reddit.com/r/flexibility/comments/4hy1aw/active_hip_flexor_flexibility_month_is_starting/">521</A>
<DT><A HREF="https://psy.fsu.edu/faculty/ericsson.dp.html">522</A>
<DT><A HREF="http://blog.rememberlenny.com/post/97135048266/talk-from-orbitals-lessons-learned">523</A>
<DT><A HREF="https://garychou.hackpad.com/Orbital-Boot-Camp-Summer-2014-Projects-EbRkooWV84l">524</A>
<DT><A HREF="http://www.theremotenomad.com/">525</A>
<DT><A HREF="https://community.letsencrypt.org/t/the-request-message-was-malformed-error-creating-new-authz-name-does-not-end-in-a-public-suffix/7124">526</A>
<DT><A HREF="http://basho.com/posts/technical/time-series-the-new-shiny/">527</A>
<DT><A HREF="http://orbital.nyc/recent/">528</A>
<DT><A HREF="http://blog.garychou.com/post/88977851232/why-i-launched-orbital-boot-camp">529</A>
<DT><A HREF="http://blog.garychou.com/post/118780279727/join-the-orbital-1k">530</A>
<DT><A HREF="https://www.youtube.com/watch?v=mpDpdTiM0Wk">531</A>
<DT><A HREF="http://typotalks.com/video/2012/04/27/tina-roth-eisenberg-the-power-of-side-projects-and-eccentric-aunts/">532</A>
<DT><A HREF="http://orbitaldarlin.tumblr.com/post/97152886332/stop-makingletting-me-talk-in-public-or-lessons">533</A>
<DT><A HREF="http://harvardpublichealthreview.org/off-the-podium-why-rios-2016-olympic-games-must-not-proceed/">534</A>
<DT><A HREF="http://jamescooke.info/api-documentation-and-the-communication-illusion.html">535</A>
<DT><A HREF="https://www.digitalocean.com/community/tutorials/how-to-install-and-setup-postfix-on-ubuntu-14-04">536</A>
<DT><A HREF="https://cloud.digitalocean.com/support/suggestions?article=how-to-install-and-setup-postfix-on-ubuntu-14-04&page=0&query=postfix%20">537</A>
<DT><A HREF="http://technology.nasa.gov/publicdomain">538</A>
<DT><A HREF="http://tinyletter.com/orbital/archive">539</A>
<DT><A HREF="http://blog.garychou.com/post/89382857832/phase-2-complete">540</A>
<DT><A HREF="http://blog.garychou.com/post/119492447187/orbital-1k-readiness">541</A>
<DT><A HREF="http://www.npr.org/sections/alltechconsidered/2013/10/08/218976699/enter-the-quiet-zone-where-cell-service-wi-fi-are-banned">542</A>
<DT><A HREF="https://kelty.com/redwing-50-reserve/">543</A>
<DT><A HREF="http://hellodrell.tumblr.com/post/97225128799/orbital-lessons-learned-talk">544</A>
<DT><A HREF="https://rtm.rdit.ch/">545</A>
<DT><A HREF="http://www.themacro.com/articles/2016/05/revlo/">546</A>
<DT><A HREF="http://www.businessinsider.com/switzerland-to-vote-on-universal-basic-income-2016-5">547</A>
<DT><A HREF="https://quality.mozilla.org/teams/">548</A>
<DT><A HREF="https://github.com/DigitalOcean-User-Projects/Articles-and-Tutorials/blob/master/set_hostname_fqdn_on_ubuntu_centos.md">549</A>
<DT><A HREF="http://cacr.uwaterloo.ca/hac/">550</A>
<DT><A HREF="http://www.ac4d.com/2013/12/a-realignment-with-gary-chou/">551</A>
<DT><A HREF="http://avc.com/2014/11/orbital-boot-camp/">552</A>
<DT><A HREF="http://blog.orbital.nyc/post/122171552769/orbital-1k-launch-day">553</A>
<DT><A HREF="https://utopiayouarestandinginit.com/2016/04/18/the-cost-of-starting-a-business-in-europe-and-north-america/">554</A>
<DT><A HREF="https://projecteuler.net/">555</A>
<DT><A HREF="http://marniegelf.tumblr.com/post/96707283678/the-joy-of-your-own-discovery-reflecting-on-my">556</A>
<DT><A HREF="https://github.com/blog/2167-electron-1-0-is-here">557</A>
<DT><A HREF="http://imgur.com/a/SGH4q">558</A>
<DT><A HREF="http://www.raspihub.com/go/298a115b94b5bf0917cd6cf5245b4e49f3e44d0bb87c51467e33a2d326a355e0">559</A>
<DT><A HREF="https://quality.mozilla.org/teams/services/">560</A>
<DT><A HREF="https://www.youtube.com/watch?v=dSyay2Qn2ng">561</A>
<DT><A HREF="https://medium.com/@hoyboy/my-employees-reviewed-me-and-i-kind-of-suck-124f242a0352#.6xoqu1sj2">562</A>
<DT><A HREF="http://www.inoverourheads.co/-podcasts/maximizing-entropy#">563</A>
<DT><A HREF="http://blog.garychou.com/post/103454208717/announcing-orbital-boot-camp-winter-2015">564</A>
<DT><A HREF="http://blog.garychou.com/post/124181842422/join-us-for-the-orbital-biannual-in-addition-to">565</A>
<DT><A HREF="https://www.reddit.com/r/history/comments/4idz05/the_culture_of_home_work_home_when_did_it_start/">566</A>
<DT><A HREF="http://slides.com/funnydewd/node-tdd#/">567</A>
<DT><A HREF="http://merxaus.tumblr.com/post/95484487374/feeling-alone-and-facing-demons-yay-summer">568</A>
<DT><A HREF="http://electron.atom.io/">569</A>
<DT><A HREF="http://imgur.com/gallery/p7jqe">570</A>
<DT><A HREF="http://americangut.org/">571</A>
<DT><A HREF="http://lifehacker.com/build-a-jumbo-sized-music-visualizer-into-an-ikea-side-1774732046">572</A>
<DT><A HREF="http://neo.com/2014/02/24/pseudo-random-number-generation-in-elixir/">573</A>
<DT><A HREF="https://letsencrypt.org/getting-started/">574</A>
<DT><A HREF="https://docs.google.com/document/d/1paGWbN3ETdWvNWgXMKw4OE2Usy3WCgIXUt5S-2OU4P4/edit?pref=2&pli=1">575</A>
<DT><A HREF="http://ihadtendollars.com/interviews/gary-chou.html">576</A>
<DT><A HREF="http://blog.garychou.com/post/106246691187/the-alchemy-of-the-cohort">577</A>
<DT><A HREF="http://blog.garychou.com/post/126917792257/scaling-caring-through-networks">578</A>
<DT><A HREF="https://www.youtube.com/watch?v=xK9IkdKrKIM">579</A>
<DT><A HREF="https://www.reddit.com/r/IAmA/comments/4is30p/we_quit_our_jobs_one_year_ago_to_make_games_today/">580</A>
<DT><A HREF="http://insideourmadness.tumblr.com/post/94535631092/internal-battles">581</A>
<DT><A HREF="https://github.com/electron/electron-api-demos">582</A>
<DT><A HREF="https://www.youtube.com/watch?v=kOl3-It7228">583</A>
<DT><A HREF="https://www.reddit.com/r/technology/comments/4if65h/mod_announcement_were_considering_banning_all/">584</A>
<DT><A HREF="https://www.ryobitools.com/nation/projects/6462">585</A>
<DT><A HREF="http://elixir-lang.org/docs/master/iex/IEx.html">586</A>
<DT><A HREF="https://letsencrypt.readthedocs.io/en/latest/intro.html">587</A>
<DT><A HREF="https://open.buffer.com/self-management-circle/">588</A>
<DT><A HREF="http://blog.garychou.com/post/86212988687/introducing-orbital-and-the-orbital-boot-camp">589</A>
<DT><A HREF="http://www.psfk.com/2015/01/carine-carmy-orbital-gary-chou-creators.html">590</A>
<DT><A HREF="http://www.inc.com/amy-vernon/this-entrepreneur-has-built-an-incubator-for-networks.html">591</A>
<DT><A HREF="https://www.reddit.com/r/bodyweightfitness">592</A>
<DT><A HREF="https://community.letsencrypt.org/t/use-on-non-web-servers/425">593</A>
<DT><A HREF="http://codebuddiesblog.tumblr.com/post/98667521733/codebuddies-is-an-organizing-problem-not-a">594</A>
<DT><A HREF="https://www.youtube.com/watch?v=49FfXVOIalE&ab_channel=mathbff">595</A>
<DT><A HREF="http://rustbyexample.com/">596</A>
<DT><A HREF="http://makezine.com/projects/ikea-music-table/">597</A>
<DT><A HREF="http://theaigames.com/languages/elixir">598</A>
<DT><A HREF="https://github.com/certbot/certbot/issues">599</A>
<DT><A HREF="https://paper.dropbox.com/doc/Anne-and-Gary-Chou-talking-about-self-management-Reading-May-2016-QtyxEpC5067X1Dr0PkQEI">600</A>
<DT><A HREF="https://medium.com/@melodyquintana/embrace-the-awkward-f4858a3821fd#.pi1nj7thv">601</A>
<DT><A HREF="http://blog.garychou.com/post/107971586112/orbital-annual-meeting-2015-i">602</A>
<DT><A HREF="http://www.ac4d.com/blog/page/135/">603</A>
<DT><A HREF="http://sayangel.tumblr.com/post/96888904974/the-right-answer-is-the-wrong-one">604</A>
<DT><A HREF="http://horstmann.com/unblog/2016-05-06/index.html">605</A>
<DT><A HREF="https://news.ycombinator.com/item?id=11658873">606</A>
<DT><A HREF="http://www.gamification.co/2013/08/16/through-gamification-lens-lessons-from-jc-penney-blunder/">607</A>
<DT><A HREF="http://priceonomics.com/the-independent-discovery-of-tcpip-by-ants/">608</A>
<DT><A HREF="https://community.letsencrypt.org/c/server-config">609</A>
<DT><A HREF="http://orbital.nyc/about/">610</A>
<DT><A HREF="http://orbital.nyc/">611</A>
<DT><A HREF="http://blog.orbital.nyc/post/110837252204/launching-orbital-boot-camp-winter-2015">612</A>
<DT><A HREF="http://www.gnu.org/software/emacs/index.html">613</A>
<DT><A HREF="http://english.chosun.com/site/data/html_dir/2015/04/20/2015042002090.html">614</A>
<DT><A HREF="https://www.reddit.com/r/AskReddit/comments/4igg2s/what_quote_said_by_a_fictional_character_has/">615</A>
<DT><A HREF="http://techcrunch.com/2016/05/09/siri-creator-shows-off-first-public-demo-of-viv-the-intelligent-interface-for-everything/">616</A>
<DT><A HREF="https://skippy.org.uk/lets-encrypt-postfix-and-dovecot/">617</A>
<DT><A HREF="https://www.kickstarter.com/pages/orbital">618</A>
<DT><A HREF="http://orbital.nyc/bootcamp/">619</A>
<DT><A HREF="https://www.eff.org/deeplinks/2016/05/stakes-are-high-oracle-v-google-public-has-already-lost-big">620</A>
<DT><A HREF="http://www.ebay.com/itm/121978560443?rmvSB=true">621</A>
<DT><A HREF="http://nautil.us/issue/36/aging/why-aging-isnt-inevitable">622</A>
<DT><A HREF="http://databrewery.org/">623</A>
<DT><A HREF="https://en.m.wikipedia.org/wiki/La_Mancha_Negra">624</A>
<DT><A HREF="https://www.reddit.com/r/AskReddit/comments/4jbcs7/what_word_is_often_misused/">625</A>
<DT><A HREF="http://www.independent.co.uk/news/world/europe/six-hour-working-day-sweden-boosts-productivity-and-makes-people-happier-a7023741.html">626</A>
<DT><A HREF="http://www.amazon.com/dp/B018Z0TE3K?tag=kinjadeals-20&ascsubtag=5af5d47ef6844e15a565911862d6020b70937bb5&rawdata=%5Br%7Chttp%3A%2F%2Fgizmodo.com%2F%5Bt%7Cmod-title%5Bp%7C1776234799%5Ba%7CB018Z0TE3K%5Bau%7C5727177402741770316%5Bb%7Cdeals">627</A>
<DT><A HREF="http://a-nickels-worth.blogspot.com/2016/04/a-guide-to-naming-variables.html">628</A>
<DT><A HREF="http://blogs.loc.gov/digitalpreservation/2016/05/how-to-begin-a-personal-archiving-project/">629</A>
<DT><A HREF="http://imgur.com/a/PTafD">630</A>
<DT><A HREF="https://www.w3.org/community/webpayments/wiki/Web_Credits">631</A>
<DT><A HREF="http://www.ebay.com/itm/361200418791?rmvSB=true">632</A>
<DT><A HREF="http://www.nytimes.com/interactive/2016/05/13/upshot/falling-middle-class.html?_r=0">633</A>
<DT><A HREF="http://www.niemanlab.org/2016/05/the-governments-18f-with-its-manageable-hours-and-public-service-mission-is-attracting-former-journalists/">634</A>
<DT><A HREF="https://www.technologyreview.com/s/601419/to-make-fresh-water-without-warming-the-planet-countries-eye-solar-power/">635</A>
<DT><A HREF="http://www.nytimes.com/2016/05/12/opinion/how-austin-beat-uber.html?smid=fb-share&_r=1">636</A>
<DT><A HREF="http://www.smh.com.au/technology/innovation/professor-reveals-to-students-that-his-assistant-was-an-ai-all-along-20160513-gou6us.html">637</A>
<DT><A HREF="https://www.distilled.net/resources/mobile-web-10-party-like-its-1999-brainstorming/">638</A>
<DT><A HREF="http://austinot.com/austin-trails-parks-interactive-map">639</A>
<DT><A HREF="http://brutalistwebsites.com/">640</A>
<DT><A HREF="http://www.iconwerk.com/lynda/">641</A>
<DT><A HREF="http://imgur.com/a/Mgq2v">642</A>
<DT><A HREF="https://www.1843magazine.com/features/does-power-really-corrupt">643</A>
<DT><A HREF="https://madmalik.github.io/mononoki/">644</A>
<DT><A HREF="https://blog.vellumatlanta.com/2016/05/17/apple-sent-two-men-to-my-house-no-they-werent-assassins/">645</A>
<DT><A HREF="https://github.com/jarun/Buku/blob/master/README.md">646</A>
<DT><A HREF="https://www.reddit.com/r/AustinRP/comments/4iv9nl/i_tried_out_a_new_larp_in_town_a_review_gametale/">647</A>
<DT><A HREF="https://www.exratione.com/2014/05/a-mailserver-on-ubuntu-1404-postfix-dovecot-mysql/">648</A>
<DT><A HREF="http://www.bloomberg.com/view/articles/2016-05-17/you-re-going-to-need-a-license-for-that-job">649</A>
<DT><A HREF="http://horizon.io/#1.0-release">650</A>
<DT><A HREF="https://medium.com/net-magazine/the-death-of-the-web-design-agency-a79dd531bee2#.aqvm6cvpj">651</A>
<DT><A HREF="http://www.postfix.org/FORWARD_SECRECY_README.html">652</A>
<DT><A HREF="https://weworkremotely.com/jobs/2953-ux-designer-with-mobile-micro">653</A>
<DT><A HREF="https://www.youtube.com/watch?v=YX40hbAHx3s">654</A>
<DT><A HREF="http://www.statesman.com/news/news/crime-law/in-first-weekend-without-uber-lyft-dwi-arrests-fla/nrNdN/">655</A>
<DT><A HREF="http://www.slant.co/topics/67/~programming-fonts">656</A>
<DT><A HREF="http://www.nytimes.com/2016/05/18/business/hiring-hurdle-finding-workers-who-can-pass-a-drug-test.html?_r=0">657</A>
<DT><A HREF="https://medium.com/@WordcorpGlobal/programming-doesnt-require-talent-or-even-passion-11422270e1e4#.s2dwgkxh5">658</A>
<DT><A HREF="http://www.shisaa.jp/postset/mailserver-1.html">659</A>
<DT><A HREF="http://www.postfix.org/STANDARD_CONFIGURATION_README.html">660</A>
<DT><A HREF="https://googleblog.blogspot.com/2016/05/gboard-search-gifs-emojis-keyboard.html">661</A>
<DT><A HREF="https://www.reddit.com/r/ofcoursethatsathing">662</A>
<DT><A HREF="http://www.traviscad.org/faq_arb_protest.html">663</A>
<DT><A HREF="https://www.inverse.com/article/15234-you-can-t-copyright-klingon-means-paramount-is-in-trouble">664</A>
<DT><A HREF="https://github.com/IonicaBizau/node.cobol">665</A>
<DT><A HREF="http://blog.recomazing.com/advocate-marketing/fake-business-won-a-customer-service-award/">666</A>
<DT><A HREF="http://www.premiumbeat.com/">667</A>
<DT><A HREF="https://www.reddit.com/r/history/comments/4jbpxv/has_there_every_been_a_documented_case_of_a/">668</A>
<DT><A HREF="http://www.postfix.org/TLS_README.html">669</A>
<DT><A HREF="http://vitals.lifehacker.com/build-a-solid-strength-base-with-the-big-three-exerci-1775279173">670</A>
<DT><A HREF="http://lifehacker.com/why-a-smoker-adds-so-much-flavor-to-meat-and-what-to-l-1773397686">671</A>
<DT><A HREF="https://www.reddit.com/r/Austin/comments/4jlc6y/tsa_lines_this_week_bad_in_light_of_the/">672</A>
<DT><A HREF="https://tommorris.org/posts/9403">673</A>
<DT><A HREF="https://www.slac.stanford.edu/xorg/nmtf/nmtf-tools.html">674</A>
<DT><A HREF="https://blog.docker.com/2016/05/docker-unikernels-open-source/">675</A>
<DT><A HREF="https://en.wikipedia.org/wiki/Japanese_Brazilians">676</A>
<DT><A HREF="https://en.wikipedia.org/wiki/Disappearance_of_Bobby_Dunbar#Later_investigation">677</A>
<DT><A HREF="http://www.dovecot.org/">678</A>
<DT><A HREF="http://www.serverwatch.com/tutorials/article.php/3912056/Adding-Users-and-Aliases-for-Postfix.htm">679</A>
<DT><A HREF="http://lifehacker.com/im-simone-giertz-robot-inventor-and-this-is-how-i-wor-1775779079">680</A>
<DT><A HREF="https://www.digitalocean.com/community/questions/why-is-postfix-not-connecting-to-mysql">681</A>
<DT><A HREF="http://viewfromthewing.boardingarea.com/2016/05/16/4-new-ridesharing-companies-trying-fill-void-left-uberlyft/">682</A>
<DT><A HREF="http://imgur.com/gallery/6bycx">683</A>
<DT><A HREF="http://ascii.textfiles.com/archives/4979">684</A>
<DT><A HREF="https://openai.com/blog/openai-gym-beta/">685</A>
<DT><A HREF="https://github.com/nlp-compromise/nlp_compromise">686</A>
<DT><A HREF="http://www.nytimes.com/2016/05/14/science/synthetic-human-genome.html">687</A>
<DT><A HREF="http://us.battle.net/hearthstone/en/forum/">688</A>
<DT><A HREF="http://www.premiumbeat.com/royalty_free_music/songs/nightcrawler">689</A>
<DT><A HREF="http://bimo.studio/">690</A>
<DT><A HREF="http://lifehacker.com/if-you-want-to-lose-weight-you-have-to-like-your-new-l-1775971922">691</A>
<DT><A HREF="https://osu.ppy.sh/">692</A>
<DT><A HREF="https://startupsanonymous.com/">693</A>
<DT><A HREF="https://www.reddit.com/r/Music/comments/4jpxum/why_do_people_like_beyonc%C3%A9/">694</A>
<DT><A HREF="https://www.propublica.org/article/how-typography-can-save-your-life">695</A>
<DT><A HREF="https://en.wikipedia.org/wiki/Beyond_Good_and_Evil">696</A>
<DT><A HREF="http://whopayswriters.com/#/results">697</A>
<DT><A HREF="https://color-wander.surge.sh/">698</A>
<DT><A HREF="https://www.reddit.com/r/explainlikeimfive/comments/4j9uz7/eli5_why_is_it_so_hard_to_figure_out_the_optimal/">699</A>
<DT><A HREF="http://downdetector.com/status/battle-net">700</A>
<DT><A HREF="http://www.partnersinrhyme.com/">701</A>
<DT><A HREF="http://mxtoolbox.com/SuperTool.aspx?action=smtp%3amail.bimo.studio&run=toolpage">702</A>
<DT><A HREF="http://www.vox.com/2016/5/10/11649210/biggest-loser-weight-loss">703</A>
<DT><A HREF="https://www.creativereview.co.uk/cr-blog/2016/may/historic-computers-look-super-sexy-in-this-new-photo-series-by-docubyte-and-ink/">704</A>
<DT><A HREF="https://www.reddit.com/r/Austin/comments/4jn6v2/cheap_freeweight_gyms_in_south_austin/">705</A>
<DT><A HREF="https://www.reddit.com/r/TwoXChromosomes/comments/4jrc73/so_of_beyonc%C3%A9_sweatshops_are_there_any_orgs_that/">706</A>
<DT><A HREF="http://davmail.sourceforge.net/">707</A>
<DT><A HREF="http://motherboard.vice.com/read/70000-okcupid-users-just-had-their-data-published">708</A>
<DT><A HREF="https://medium.com/tech-london/not-a-hacker-or-a-hipster-how-i-got-my-first-start-up-job-922399a7dfbb#.ncslj4gaj">709</A>
<DT><A HREF="http://www.nytimes.com/2016/05/15/opinion/why-are-the-highly-educated-so-liberal.html?_r=0">710</A>
<DT><A HREF="http://inktank.fi/best-finnish-eurovision-songs/">711</A>
<DT><A HREF="https://publicsuffix.org/list/public_suffix_list.dat">712</A>
<DT><A HREF="http://ccmixter.org/">713</A>
<DT><A HREF="https://www.digitalocean.com/community/questions/dmarc-missing-or-invalid-record">714</A>
<DT><A HREF="https://motherboard.vice.com/read/this-isnt-a-google-streetview-car-its-a-government-spy-truck">715</A>
<DT><A HREF="https://code.google.com/archive/p/raspy-juice/">716</A>
<DT><A HREF="https://github.com/Nickersoft/push.js">717</A>
<DT><A HREF="https://www.reddit.com/r/tifu/comments/4jsf2a/tifu_by_potentially_ruining_a_2milliondollar_deal/">718</A>
<DT><A HREF="https://www.reddit.com/r/AskReddit/comments/4ju1qm/what_is_much_more_serious_than_people_realize/">719</A>
<DT><A HREF="https://justinjackson.ca/webmaster/">720</A>
<DT><A HREF="http://www.huffingtonpost.com/pooja-r-mottl/food-labels-hidden-sugars_b_808881.html">721</A>
<DT><A HREF="https://news.ycombinator.com/item?id=11685602">722</A>
<DT><A HREF="http://www.nytimes.com/2016/05/15/technology/personaltech/when-websites-wont-take-no-for-an-answer.html">723</A>
<DT><A HREF="https://www.reddit.com/r/videos/comments/4jau6c/disarming_a_landmine/">724</A>
<DT><A HREF="http://hackaday.com/2016/05/10/new-part-day-a-beaglebone-on-a-chip/">725</A>
<DT><A HREF="http://freemusicarchive.org/curator/creative_commons/">726</A>
<DT><A HREF="http://tubetime.us/?p=346">727</A>
<DT><A HREF="http://www.nytimes.com/2011/08/15/opinion/stop-coddling-the-super-rich.html?_r=0">728</A>
<DT><A HREF="http://www.flytron.com/camera-video-equipment/93-tiny-5volt-regulator.html">729</A>
<DT><A HREF="https://gregtinkers.wordpress.com/2016/03/25/car-speed-detector/">730</A>
<DT><A HREF="https://www.reddit.com/subreddits/search?q=holdmykeyboard">731</A>
<DT><A HREF="http://www.nytimes.com/2016/05/11/business/economy/its-a-tough-job-market-for-the-young-without-college-degrees.html">732</A>
<DT><A HREF="http://blog.fullstory.com/2016/04/code-reviews-arent-just-for-catching-bugs/">733</A>
<DT><A HREF="https://www.kickstarter.com/projects/360141685/hitch-theaters-your-personal-drive-in-experience">734</A>
<DT><A HREF="https://blisk.io/">735</A>
<DT><A HREF="https://medium.com/@richardbagdonas/it-took-me-5-minutes-to-find-the-ceo-of-getme-a3839942f27f#.h2qc1pg15">736</A>
<DT><A HREF="http://imgur.com/a/35G69">737</A>
<DT><A HREF="https://github.com/search?q=org%3Acertbot+tld&ref=searchresults&type=Issues&utf8=%E2%9C%93">738</A>
<DT><A HREF="https://www.digitalocean.com/community/tutorials/how-to-set-up-a-postfix-e-mail-server-with-dovecot">739</A>
<DT><A HREF="http://www.antipope.org/charlie/blog-static/2016/05/updating-a-classic.html">740</A>
<DT><A HREF="http://openknowledgemaps.org/">741</A>
<DT><A HREF="https://www.indiegogo.com/projects/pi-top-a-raspberry-pi-laptop-you-build-yourself#/">742</A>
<DT><A HREF="http://blog.launchdarkly.com/how-to-use-feature-flags-without-technical-debt/">743</A>
<DT><A HREF="http://www.nytimes.com/2016/05/11/opinion/if-philosophy-wont-diversify-lets-call-it-what-it-really-is.html">744</A>
<DT><A HREF="http://plato.stanford.edu/entries/sorites-paradox/">745</A>
<DT><A HREF="https://www.eff.org/deeplinks/2016/05/announcing-certbot-new-tls-robot">746</A>
<DT><A HREF="http://fivethirtyeight.com/features/theranos-is-wrong-we-dont-need-more-blood-tests/">747</A>
<DT><A HREF="http://hackaday.com/2016/05/13/chibiterm-is-a-tiny-low-cost-vga-terminal/">748</A>
<DT><A HREF="http://imgur.com/a/bC4yO">749</A>
<DT><A HREF="https://github.com/certbot/certbot">750</A>
<DT><A HREF="https://www.digitalocean.com/community/tutorials/how-to-set-up-a-postfix-email-server-with-dovecot-dynamic-maildirs-and-lmtp">751</A>
<DT><A HREF="http://www.corning.com/worldwide/en/innovation/the-glass-age/glass-a-clear-solution.html?utm_source=youtube&utm_medium=social&utm_campaign=glassaclearsolution#LDF">752</A>
<DT><A HREF="https://community.spiceworks.com/topic/1290179-ubuntu-postfix-dovecot-rainloop-webmail-rarely-can-not-login-to-webmail">753</A>
<DT><A HREF="https://blog.ycombinator.com/harc">754</A>
<DT><A HREF="http://gizmodo.com/movie-fans-will-love-these-posters-of-famous-hollywood-1776007531">755</A>
<DT><A HREF="http://jvns.ca/blog/2016/05/13/erlang-seems-really-complicated/">756</A>
<DT><A HREF="https://panic.com/blog/the-panic-sign/">757</A>
<DT><A HREF="http://www.michaelbromley.co.uk/blog/529/why-i-havent-fixed-your-issue-yet">758</A>
<DT><A HREF="https://www.reddit.com/r/AskReddit/comments/4jbhlr/what_is_something_that_is_only_enjoyable_the/">759</A>
<DT><A HREF="https://github.com/publicsuffix/list">760</A>
<DT><A HREF="https://help.ubuntu.com/community/Dovecot">761</A>
<DT><A HREF="https://www.facebook.com/notes/facebook-ctf/facebook-ctf-is-now-open-source/525464774322241">762</A>
<DT><A HREF="http://www.walmart.com/ip/24919945">763</A>
<DT><A HREF="http://pharo.org/news/pharo-5.0-released">764</A>
<DT><A HREF="https://medium.com/@oscargodson/thatll-do-pig-that-ll-do-8998f9df9f77#.qks0x75a6">765</A>
<DT><A HREF="https://www.reddit.com/r/AskReddit/comments/4jb24s/what_are_some_weird_real_life_xfiles_type/">766</A>
<DT><A HREF="https://www.reddit.com/r/GetMotivated/comments/4jbiav/tool_suggestions_for_keeping_stats_on_motivation/">767</A>
<DT><A HREF="https://github.com/certbot/certbot/issues/2152">768</A>
<DT><A HREF="http://www.sysdig.org/falco/">769</A>
<DT><A HREF="https://www.troyhunt.com/going-dark-online-privacy-and-anonymity-for-normal-people/">770</A>
<DT><A HREF="https://github.com/facebook/reason/tree/master/docker">771</A>
<DT><A HREF="http://www.nytimes.com/interactive/2016/05/19/upshot/forty-percent-of-manhattans-buildings-could-not-be-built-today.html?_r=0">772</A>
<DT><A HREF="https://torrentfreak.com/fox-stole-a-game-clip-used-it-in-family-guy-dmcad-the-original-160520/">773</A>
<DT><A HREF="http://lifehacker.com/passlok-simplifies-email-encryption-so-anyone-can-use-i-1776593785">774</A>
<DT><A HREF="https://www.quantamagazine.org/20160510-loneliness-center-in-the-brain/">775</A>
<DT><A HREF="https://ilya-sher.org/2016/05/19/tips-for-beginning-systems-and-software-engineers/">776</A>
<DT><A HREF="https://levels.io/from-web-dev-to-3d/">777</A>
<DT><A HREF="https://bitmovin.com/google-replace-flash-with-html5/">778</A>
<DT><A HREF="https://github.com/alex/what-happens-when">779</A>
<DT><A HREF="https://webmasters.googleblog.com/2016/05/a-new-mobile-friendly-testing-tool.html">780</A>
<DT><A HREF="http://www.npr.org/sections/health-shots/2016/05/18/478212837/in-search-for-cures-scientists-create-embryos-that-are-both-animal-and-human">781</A>
<DT><A HREF="https://nomadlist.com/">782</A>
<DT><A HREF="https://bitmovin.com/status-mpeg-dash-today-youtube-netflix-use-html5-beyond/">783</A>
<DT><A HREF="http://goodjudgment.com/gjp/">784</A>
<DT><A HREF="http://fooledbyrandomness.com/SITG.html">785</A>
<DT><A HREF="https://remoteok.io/remote-jobs/16988-remote-product-designer-automattic">786</A>
<DT><A HREF="http://fortune.com/2016/05/18/outgoing-time-warner-cable-ceo-admits-asking-impossible-of-employees/">787</A>
<DT><A HREF="https://www.youtube.com/watch?v=otiO_wKCwEc">788</A>
<DT><A HREF="https://en.wikipedia.org/wiki/Shoshinsha_mark">789</A>
<DT><A HREF="http://antirez.com/news/107">790</A>
<DT><A HREF="http://www.fastcocreate.com/3060128/everything-you-ever-wanted-to-know-about-trans-people-but-were-too-afraid-to-ask">791</A>
<DT><A HREF="http://techcrunch.com/2016/05/17/why-you-should-bet-big-on-privacy/">792</A>
<DT><A HREF="http://codetheory.in/html5-fullscreen-background-video/">793</A>
<DT><A HREF="http://www.fastcompany.com/3060110/election-2016/this-is-why-sanders-supporters-are-so-angry-according-to-science">794</A>
<DT><A HREF="http://www.summerortiz.com/#overview">795</A>
<DT><A HREF="https://www.goodreads.com/shelf/show/nihilism">796</A>
<DT><A HREF="http://www.economist.com/news/science-and-technology/21699098-makeshift-weapons-are-becoming-more-dangerous-highly-sophisticated?fsrc=scn%2Ffb%2Fte%2Fpe%2Fed%2Fhellskitchens">797</A>
<DT><A HREF="https://blogs.msdn.microsoft.com/chris_pratley/2004/01/31/the-acid-usability-test/">798</A>
<DT><A HREF="https://github.com/CRYTEK-CRYENGINE/CRYENGINE">799</A>
<DT><A HREF="https://medium.com/the-coinbase-blog/ethereum-is-the-forefront-of-digital-currency-5300298f6c75#.ug3fm4ydn">800</A>
<DT><A HREF="http://www.bloomberg.com/view/articles/2015-02-27/arbitrage-discovered">801</A>
<DT><A HREF="https://www.youtube.com/user/schooloflifechannel">802</A>
<DT><A HREF="https://www.reddit.com/r/Showerthoughts/comments/4kdhk5/there_should_be_affordable_universities_for/">803</A>
<DT><A HREF="http://antipersona.co/#2">804</A>
<DT><A HREF="http://www.theatlantic.com/entertainment/archive/2016/05/frog-and-toad-and-the-self/483399/">805</A>
<DT><A HREF="https://www.washingtonpost.com/world/asia_pacific/chinas-scary-lesson-to-the-world-censoring-the-internet-works/2016/05/23/413afe78-fff3-11e5-8bb1-f124a43f84dc_story.html">806</A>
<DT><A HREF="http://solidity.readthedocs.io/en/latest/">807</A>
<DT><A HREF="https://www.digitalocean.com/community/tutorials/how-to-protect-ssh-with-fail2ban-on-ubuntu-14-04">808</A>
<DT><A HREF="https://medium.com/@tristanharris/how-technology-hijacks-peoples-minds-from-a-magician-and-google-s-design-ethicist-56d62ef5edf3#.nanb42kxu">809</A>
<DT><A HREF="http://www.huffingtonpost.com/greg-selkoe/karmaduped-a-cautionary-t_b_9860368.html">810</A>
<DT><A HREF="https://www.edx.org/">811</A>
<DT><A HREF="http://alumni.media.mit.edu/~cahn/life/gian-carlo-rota-10-lessons.html#expository">812</A>
<DT><A HREF="https://vimeo.com/167126696">813</A>
<DT><A HREF="http://ceilfire.com/browse/most-played">814</A>
<DT><A HREF="https://github.com/ethereum/wiki/wiki/Serpent">815</A>
<DT><A HREF="http://lifehacker.com/this-map-shows-how-much-you-need-to-support-a-small-fam-1777798032">816</A>
<DT><A HREF="https://kyup.com/tutorials/use-fail2ban-to-block-network-probes/">817</A>
<DT><A HREF="https://blog.intercom.io/principles-bot-design/">818</A>
<DT><A HREF="https://www.youtube.com/watch?v=_pDTiFkXgEE">819</A>
<DT><A HREF="https://www.khanacademy.org/">820</A>
<DT><A HREF="http://www.amazon.com/dp/B018Z0TE3K?rawdata=%5Br%7Chttp%3A%2F%2Flifehacker.com%2F%5Bt%7Clink%5Bp%7C1777968208%5Ba%7CB018Z0TE3K%5Bau%7C5856732741879800112%5Bb%7Cdeals&tag=kinjadeals-20&ascsubtag=891b3a7dceec8d918dc05e61aa702312843a3bd6">821</A>
<DT><A HREF="https://roundcube.net/news/2016/05/22/roundcube-webmail-1.2.0-released">822</A>
<DT><A HREF="http://www.akitaonrails.com/2016/05/23/rails-has-won-the-elephant-in-the-room">823</A>
<DT><A HREF="https://github.com/ethereum/mix">824</A>
<DT><A HREF="http://www.nytimes.com/2016/05/22/upshot/are-you-successful-if-so-youve-already-won-the-lottery.html">825</A>
<DT><A HREF="http://lifehacker.com/an-extreme-method-for-improving-your-habits-1777655046">826</A>
<DT><A HREF="http://imgur.com/a/0BsMD">827</A>
<DT><A HREF="https://www.igvita.com/2016/05/20/building-fast-and-resilient-web-applications/?">828</A>
<DT><A HREF="http://serverfault.com/questions/224122/what-is-crt-and-key-and-how-can-i-generate-them">829</A>
<DT><A HREF="https://forums.gentoo.org/viewtopic-t-986046-start-0.html">830</A>
<DT><A HREF="https://certbot.eff.org/docs/using.html#webroot">831</A>
<DT><A HREF="https://github.com/marmelab/universal.css">832</A>
<DT><A HREF="http://www.theatlantic.com/entertainment/archive/2016/05/a-new-age-of-animation/483342/?single_page=true">833</A>
<DT><A HREF="https://blog.torproject.org/blog/mission-montreal-building-next-generation-onion-services">834</A>
<DT><A HREF="https://hacks.mozilla.org/2016/05/css-coding-techniques/">835</A>
<DT><A HREF="http://www.csspurge.com/">836</A>
<DT><A HREF="https://medium.com/@tristanharris/how-technology-hijacks-peoples-minds-from-a-magician-and-google-s-design-ethicist-56d62ef5edf3#.h2pq69xqb">837</A>
<DT><A HREF="http://adequateman.deadspin.com/venmo-is-not-turning-your-friends-into-monsters-its-ju-1777673292">838</A>
<DT><A HREF="http://www.stephendiehl.com/posts/abstraction.html?HN_20160519">839</A>
<DT><A HREF="https://www.ssl.com/how-to/create-a-pfx-p12-certificate-file-using-openssl/">840</A>
<DT><A HREF="http://www.postfix.org/VIRTUAL_README.html">841</A>
<DT><A HREF="http://www.rogerschank.com/fraudulent-claims-made-by-IBM-about-Watson-and-AI">842</A>
<DT><A HREF="https://m.signalvnoise.com/we-only-hire-the-best-c711c330fc2e#.dypqngf0f">843</A>
<DT><A HREF="http://imgur.com/a/BC5S7">844</A>
<DT><A HREF="http://www.techinsider.io/inside-disneys-messy-video-game-business-2016-5">845</A>
<DT><A HREF="http://imgur.com/gallery/rHkgd">846</A>
<DT><A HREF="https://www.edge.org/response-detail/25531">847</A>
<DT><A HREF="http://www.jasonclient.org/">848</A>
<DT><A HREF="https://coreos.com/blog/security-brief-coreos-linux-alpha-remote-ssh-issue.html">849</A>
<DT><A HREF="https://nazimkuet.wordpress.com/2014/07/01/debian-linux-send-a-test-mail-using-telnet-postfix/">850</A>
<DT><A HREF="https://support.google.com/a/answer/182476?hl=en">851</A>
<DT><A HREF="http://yippa.com/">852</A>
<DT><A HREF="https://www.howtoforge.com/virtual-users-and-domains-postfix-dovecot-mysql-centos4.5">853</A>
<DT><A HREF="https://medium.com/@ustwogames/monument-valley-in-numbers-year-2-440cf5562fe#.75a90p8c7">854</A>
<DT><A HREF="http://pitchfork.com/features/article/9894-the-dark-art-of-mastering-music/">855</A>
<DT><A HREF="http://www.nytimes.com/interactive/2016/05/22/world/europe/europe-right-wing-austria-hungary.html?_r=0">856</A>
<DT><A HREF="https://webtransparency.cs.princeton.edu/webcensus/index.html">857</A>
<DT><A HREF="http://www.digitaltrends.com/cool-tech/optikey-enables-people-with-neurological-disorders-to-type-using-just-their-eyes/#:f8g1FbD8jmotMQ">858</A>
<DT><A HREF="https://www.scaleft.com/blog/client-certificates-at-netflix/">859</A>
<DT><A HREF="http://gizmodo.com/i-dont-want-an-all-glass-phone-1777785942">860</A>