-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbookmark_url.lst
2692 lines (2692 loc) · 150 KB
/
bookmark_url.lst
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
https://wiki.duraspace.org/dashboard.action
http://foss4lib.org/
http://sxswlam.drupalgardens.com/content/2014-sxswi-lam-proposals
http://uk.premiership.fantasysports.yahoo.com/
http://www.freshnews.org/
http://community.kablink.org/ssf/a/do?p_name=ss_forum&p_action=1&binderId=96&action=view_permalink&entityType=workspace&vibeonprem_url=1
http://espn.go.com/espn3/index
http://www.dw-world.de/dw/0,2142,4753,00.html
http://www.kayak.com/explore/#/CVG?a=any&d=any&fb=140,2000&l=any&ll=1.58183,-0.351562&ns=n&s=0&t=-15,115&z=3
http://www.mangle.ca/ranlinks.php
https://wiki.duraspace.org/dashboard.action
http://foss4lib.org/
http://sxswlam.drupalgardens.com/content/2014-sxswi-lam-proposals
http://code4lib.org/irc
https://code.google.com/p/urlmarkr/source/browse/#svn%2Ftrunk
http://12devs.co.uk/articles/writing-a-web-application-with-ruby-on-rails/
https://github.com/skx/bookmarks.public/
https://github.com/sporkmonger/xbel
https://groups.google.com/forum/#!topic/alt.comp.freeware/0lcqXl-2lQU
https://creativecommons.org/weblog/entry/39246
http://osc.universityofcalifornia.edu/openaccesspolicy/
http://crln.acrl.org/content/74/9/473.full
http://guides.libraries.uc.edu/hslopenaccess
http://thirdiron.com/browzine/video/
http://sabin.uc.edu/
https://github.com/uclibs/curate_uc/wiki/_pages
https://gist.github.com/jeremyf/c5fb5d9367a568b2b4b1
http://atmire.com/website/?q=content/keeping-your-dspace-storage-under-control&utm_source=linkedin&utm_medium=social&utm_campaign=diskusage&goback=.gde_112567_member_248820108
http://or2013.net/program/session-schedule
http://research.uc.edu/directory.aspx
https://github.com/newmanld/uva_camp
https://docs.google.com/a/case.edu/spreadsheet/ccc?key=0Asn-mC6HS7ZLdGNZbzVaZnY4NmZZQmlRcFM1eEd4bWc#gid=0
https://meet.uc.edu/vanmiljf/Z176DRY3
https://github.com/ndlib/planning/wiki/Digest-of-Activity-for-Sprint-1-to-date-%28Aug-19-to-Aug-23%29
http://www.blackboard.com/platforms/learn/products/blackboard-learn/teaching-and-learning/new-to-learn/content-management.aspx
https://github.com/tribune/is_it_working
http://www.library.wisc.edu/citation-managers/comparison.html
https://wiki.duraspace.org/display/hydra/Deployment+Hardware+Information
http://www.vagrantbox.es/
https://forge.puppetlabs.com/tags/tomcat
https://wiki.duraspace.org/display/DSDOC18/Installation#Installation-TheHandleServer
http://drc-prod.libraries.uc.edu/
http://bibwild.wordpress.com/2014/04/17/you-build-it-you-run-it/
https://docs.google.com/spreadsheet/ccc?key=0Aqj_ly0pqZipdEJ0XzFVcGVFdDNnUElKYk9sMnFFWWc&usp=sharing#gid=0
https://docs.google.com/document/d/1kmmuTKfF2BQyeOzmWDjqKU7p86rpSXMY_65JGqKMKRo/edit
http://www.w3.org/TR/wai-aria/
https://github.com/ndlib/planning
http://www.neh.gov/divisions/odh
https://github.com/psu-stewardship/hydra-ezid
https://github.com/projecthydra/hydra-head/wiki/Access-Controls-with-Hydra
http://digitalcommons.library.tmc.edu/
http://stewardship.psu.edu/2013/07/introducing-archivesphere.html
https://github.com/psu-stewardship/archivesphere
http://dl.tufts.edu/search
https://github.com/ndlib/curate/
http://stewardship.psu.edu/2013/07/archivesphere-faqs.html
http://www.smashingmagazine.com/2010/03/24/a-short-guide-to-open-source-and-similar-licenses/
http://www.ipo.uc.edu/index.cfm?fuseaction=policies.main
http://www.uc.edu/content/dam/uc/trustees/docs/rules_10/10-19-01.pdf
http://www.uc.edu/content/dam/uc/trustees/docs/rules_10/10-19-02.pdf
http://localhost:3000/
https://github.uc.edu/organizations/uclibs
https://drive.google.com/folderview?id=0B6AA8R02mYJCUEJiMjR1NVU4U0U&usp=sharing
http://www.libraries.uc.edu/information/news/pressrelease/1314/digrepositorypartnerships13.html
http://www.w3.org/RDF/
https://github.uc.edu/uclibs/curate_uc
http://staging-cms.uc.edu/content/libraries.html
http://libraries.uc.edu/blogs/sac/
http://libraries.uc.edu/blogs/dlc/
http://ucolk7.olk.uc.edu/teaming/stream/video/video.html
http://devwww.lang.uc.edu/help/tutorials.html
http://www.libraries.uc.edu/help/th/thand.html
http://www.libraries.uc.edu/help/th/thandtom3.html
http://libapps.libraries.uc.edu/blogs/dlc/
http://libapps.libraries.uc.edu/blogs/sac/
https://etd.ohiolink.edu/ap:1:0
https://docs.google.com/spreadsheet/ccc?key=0AuycqLiNKibhdGpZc2dfVEI2bjZ0WUp4LXdPZmotUkE&usp=sharing#gid=1
https://github.com/DSpace/DSpace/blob/master/dspace-api/src/main/java/org/dspace/authenticate/IPAuthentication.java
http://www.findjar.com/class/org/dspace/authenticate/IPAuthentication.html;jsessionid=8AF55B19BAD597B65564A42C9C6BC6F2
https://docs.google.com/spreadsheet/ccc?key=0AuycqLiNKibhdGpZc2dfVEI2bjZ0WUp4LXdPZmotUkE&usp=sharing
https://docs.google.com/spreadsheet/ccc?key=0AuycqLiNKibhdGpZc2dfVEI2bjZ0WUp4LXdPZmotUkE&usp=sharing#gid=0
http://www.air-watch.com/solutions/mobile-device-management?gclid=CNi4sbj7lLECFYcBQAodkzJCgw
http://www.walkingpaper.org/5408?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+walkingpaper%2Ffull+%28Walking+Paper%29
https://bblearn.uc.edu/webapps/portal/frameset.jsp
http://videos.kaltura.com/media/Kaltura+Building+Block+for+Blackboard+%7C+Video+Walkthrough/1_8i0f2y9f#.UqCflZEpPR-
https://ilib.libraries.uc.edu/ssf/s/readFile/folderEntry/25393/8aa88255403b500f01415fdc731368f5/1380292784000/last/A112%20Travel%20Authorization%20Form.doc
https://ilib.libraries.uc.edu/ssf/s/readFile/folderEntry/25394/8aa88255403b500f01415fddf86a6915/1388683648000/last/Staff%20Development%20Request%20Form.docx
https://canopy.uc.edu/webapps/portal/frameset.jsp?tab_tab_group_id=_229_1
http://en.wikipedia.org/wiki/Continuous_integration
https://github.com/jeremyf/hydra-capybara-walkthrough
https://speakerdeck.com/jeremyf/testing-your-archive-delivering-on-the-promise-of-persistence
http://publications.arl.org/Research-Data-Management-Services-SPEC-Kit-334/
http://www.lynda.com/Developer-Programming-Foundations-tutorials/Foundations-Programming-Test-Driven-Development/124398-2.html
http://robots.thoughtbot.com/post/33771089985/rspec-integration-tests-with-capybara?goback=%2Egde_62218_member_262843577
http://jnicklas.github.io/capybara/
http://en.wikipedia.org/wiki/Cucumber_(software
http://rspec.info/
http://www.livesoccertv.com/channels/directv/
https://github.com/projecthydra/hydra/wiki/Solr-Schema
https://github.com/jeremyf/hydra-camp-testing
http://blog.codeship.io/2013/10/15/slow-tests-are-the-symptom-not-the-cause.html
http://ndlib.github.io/practices/one-commit-per-pull-request/
https://472lang1.lang.uc.edu/nps/servlet/webacc
https://gist.github.com/zhengjia/428105
http://everydayrails.com/2012/04/07/testing-series-rspec-controllers.html
http://everydayrails.com/2012/03/19/testing-series-rspec-models-factory-girl.html
http://everydayrails.com/2012/03/12/testing-series-rspec-setup.html
http://everydayrails.com/2012/04/24/testing-series-rspec-requests.html
https://github.com/rspec/rspec-rails/blob/master/Capybara.md
https://github.com/projecthydra/curate/blob/master/spec/helpers/curate_helper_spec.rb#L5-L17
https://travis-ci.org/projecthydra/curate/builds/17139800
https://semaphoreapp.com/blog/2014/02/11/rails-testing-antipatterns-controllers.html
http://en.wikipedia.org/wiki/Cucumber_(software)
http://robots.thoughtbot.com/rspec-integration-tests-with-capybara
http://michaelfeathers.typepad.com/michael_feathers_blog/2008/06/the-flawed-theo.html
http://yehudakatz.com/2010/12/16/clarifying-the-roles-of-the-gemspec-and-gemfile/
https://github.com/projecthydra/curate/blob/master/spec/features/end_to_end_spec.rb#L86-L129
http://www.justinweiss.com/blog/2014/04/14/how-to-refactor-a-long-messy-badly-tested-controller/?utm_source=rubyweekly&utm_medium=email
https://github.com/blog/674-introducing-organizations
https://github.com/tombenner/jdoc
https://github.uc.edu/scherztc
https://help.github.com/articles/using-pull-requests
http://lifehacker.com/grab-over-500-free-programming-books-from-github-1447805132
https://git.uc.edu/EAIA/UC-GitFlow
https://wiki.duraspace.org/display/hydra/Tools
http://nvie.com/posts/a-successful-git-branching-model/
https://wiki.dlib.indiana.edu/display/VarVideo/Branching+and+Tagging+Releases
https://github.com/uclibs
https://github.uc.edu/uclibs
https://gist.github.com/henrik/4509394
https://www.uc.edu/kb/display/GA/GitHub+Enterprise+Academic+Pilot
http://magazine.uc.edu/favorites/web-only/wanstrath.html
http://ndlib.github.io/practices/make-git-forget-things/
https://github.com/nvie/gitflow
https://github.com/nvie/gitflow/tree/master
http://danielkummer.github.io/git-flow-cheatsheet/
http://jeffkreeftmeijer.com/2010/why-arent-you-using-git-flow/
https://gist.github.com/johnjohndoe/4024222
http://stackoverflow.com/questions/16386323/following-git-flow-how-should-you-handle-a-hotfix-of-an-earlier-release
https://help.github.com/articles/closing-issues-via-commit-messages
http://code.tutsplus.com/tutorials/check-out-atom-githubs-new-development-editor--net-37030
http://twofactorauth.org/
http://wiki.code4lib.org/index.php/List_of_Library_Github_Accounts
https://gist.github.com/
https://github.com/tiimgreen/github-cheat-sheet
https://github.com/projecthydra/hydra-head/wiki/Tools-for-Developing-and-Testing-your-Application
http://en.wikipedia.org/wiki/Jetty_(web_server)
https://github.com/projecthydra/hydra-head/wiki/Installation-Prerequisites
https://github.com/projecthydra/hydra-head/wiki/How-to-Get-Started
https://github.com/projecthydra/hydra-head/wiki/Lesson%3A-install-hydra-jetty
https://github.com/projecthydra/hydra-head/wiki/Code4lib-walkthrough
https://wiki.duraspace.org/display/hydra/Hydra+Stack+-+The+Hierarchy+of+Promises
https://wiki.duraspace.org/display/hydra/The+Hydra+Project
https://github.com/projecthydra/hydra-head/wiki/Dive-into-Hydra
https://wiki.duraspace.org/display/hydra/Strategic+Planning+for+Hydra
https://wiki.duraspace.org/display/hydra/Hydra+Community+Framework
http://awead.github.io/presentations/ohionet-webinar/
http://rubygems.org/gems/hydra
https://github.com/duke-libraries/dul-hydra/wiki/Proposed-Grant-Revoke-Syntax
https://wiki.duraspace.org/display/hydra/Exhibitz
https://github.com/curationexperts
https://github.com/curationexperts/bawstun/tree/master/app/models
https://github.com/projecthydra/hydra-head/tree/81005b6d373c2b4a032d0142b51309826763141b
https://github.com/projecthydra/hydra-head/releases/tag/7.0.0
https://github.com/duke-libraries/dul-hydra/commit/c3d7e633525bde3431b43fcc625c4e8cf07f3456
https://github.com/nbudin/devise_cas_authenticatable
https://github.com/projectblacklight/blacklight/wiki/User-Authentication
https://github.com/curationexperts/tufts/commit/2ecf26f235ec45fdcedf4e23d1a5f36844b29f69
https://github.com/projecthydra/curate/blob/omniauth/app/controllers/authentications_controller.rb
https://github.com/plataformatec/devise/wiki/How-To:-Require-admin-to-activate-account-before-sign_in
https://github.com/toyokazu/omniauth-shibboleth
https://github.com/osulp/hybag
https://github.com/ndlib/curate
https://github.com/ndlib/planning/wiki/Collection-Contexts
http://sandbox.curationexperts.com/
https://github.com/ndlib/planning/tree/master/Curate
https://github.com/ndlib/planning/wiki/CurateND-Early-Access-Release-Plan
https://github.com/ndlib/planning/issues/274
https://github.com/ndlib/planning/wiki/Representing-linked-data
https://curatesandbox.library.nd.edu/
https://github.com/projecthydra/curate/tree/master/app/repository_datastreams
https://github.com/ndlib/planning/blob/master/Curate/Goals.md
https://wiki.duraspace.org/display/hydra/Phase+2+Release+Goals
https://github.com/projecthydra/curate/commit/7ea260d2c996a930b3cadba1f22325e9f3910066
https://github.com/projecthydra/curate
https://github.com/ndlib/curate_nd/blob/master/config/environments/development.rb#L1
https://jira.duraspace.org/secure/RapidBoard.jspa?rapidView=16&view=planning&selectedIssue=HYDRASIR-13
http://www.cincinnatispecialreserve.com/engine/SplashDetails.aspx?LID=3715&contestid=91016&productid=10994752&p=5
https://docs.google.com/document/d/1x7yqoBKT5-UKPh0pgKtwAFNdoi-JnWLbrV42QQAS0Hc/edit?usp=sharing
https://wiki.duraspace.org/display/hydra/Curate+Kickoff+Meeting+Agenda+Dec+2013
https://curate.nd.edu/
http://www.noc.com/noccom/lodging-a-dining/stay-the-night/
https://wiki.duraspace.org/display/hydra/Story+Personas
https://curatevanilla.library.nd.edu/
https://github.com/projecthydra/curate/blob/develop/CONTRIBUTING.md#well-written-commit-messages
https://groups.google.com/forum/#!topic/hydra-tech/vtZLhcb8gCo
https://github.com/projecthydra/curate/blob/develop/lib/curate/rails/routes.rb
https://travis-ci.org/projecthydra/curate/builds
https://wiki.duraspace.org/display/hydra/Deletion
https://github.com/projecthydra/curate/blob/develop/app/assets/stylesheets/global-variables.scss
https://github.com/ndlib/curate_nd/blob/master/config/initializers/active_fedora_monkey_patch.rb
https://github.com/ndlib/hydra-jetty/tree/xacml-updates-for-curate-with-solr-updates/fedora/default/data/fedora-xacml-policies/repository-policies/
https://gist.github.com/jeremyf/8959710
http://api.rubyonrails.org/classes/ActiveModel/Validations.html
https://github.com/curationexperts/curate/compare/stop_hardcoding
https://github.com/projecthydra-labs/curate/issues/513#issuecomment-41596786
https://docs.google.com/spreadsheet/ccc?key=0AkuIiVhvDp1adHV1b0RLZXNJQU5EVzVsOVBZb3dWU2c&usp=drive_web#gid=7
https://docs.google.com/document/d/1J77P91Y2IpJ07ByB-MP3gZuGYfkSvn_43eyFL2YF43w/edit#heading=h.fzdyztbmarba
https://github.com/projecthydra-labs/curate/blob/develop/lib/generators/curate/work/USAGE
https://github.com/projecthydra-labs/curate/commit/f8e67d8aa7ddf3c80259f97d912c61028bec39cb
http://ndlib.github.io/practices/addressing-a-primary-concern-with-the-ui-based-deposit/
http://martinfowler.com/eaaCatalog/repository.html
http://martinfowler.com/eaaCatalog/dataMapper.html
http://martinfowler.com/eaaCatalog/activeRecord.html
https://github.com/jeremyf/sufia/tree/sufia-models-extraction
https://github.com/jeremyf/sufia/tree/sufia-models-extraction/sufia-models
https://github.com/psu-stewardship/scholarsphere/blob/develop/README.md
https://github.com/psu-stewardship/scholarsphere
https://github.com/psu-stewardship/scholarsphere/tree/develop/config
https://groups.google.com/forum/#!topic/hydra-tech/GqASUbUEDkc
https://github.com/ndlib/atrium
https://github.com/duke-libraries/devise-remote-user
https://github.com/jgeorge300/devise_shibboleth_authenticatable
http://www.internet2.edu/products-services/trust-identity-middleware/shibboleth/
https://github.com/projecthydra/om/wiki/Tame-your-XML-with-OM
https://groups.google.com/forum/#!msg/hydra-tech/_c5EkkEmyDk/SzTUFLreGwIJ
https://github.com/projectblacklight/blacklight/wiki/Blacklight-configuration
https://github.com/projectblacklight/blacklight/wiki
https://github.com/projectblacklight/blacklight/wiki/Quickstart
https://github.com/projectblacklight/blacklight/wiki/Configuring-and-Customizing-Blacklight
https://groups.google.com/forum/#!msg/blacklight-development/upgS0-fKOX0/KFHTVBRxI68J
https://github.com/projectblacklight/blacklight/issues?milestone=15&state=open
https://github.com/projectblacklight/blacklight/releases/tag/v4.4.0
https://github.com/projectblacklight/blacklight_advanced_search
https://github.com/projectblacklight/blacklight
https://github.com/sul-dlss/spotlight/wiki/Design-Artifacts
https://github.com/awead/Hydra-Rock/blob/a46e85cb34dbe388a7c2c74be27f0fbc1dfaf592/app/models/archival_video.rb#L86-L129
https://github.com/psu-stewardship/sufia/commit/9f54aa85e6f83ecda6bd819a00b81f9f24c72321
https://groups.google.com/forum/#!topic/hydra-tech/AJQ84GA9ptY
https://github.com/projectblacklight/blacklight/wiki/Examples
http://demo.projectblacklight.org/
http://wiki.code4lib.org/index.php/2014_preconference_proposals#Intro_to_Blacklight
https://github.com/projectblacklight/blacklight/wiki/Code4lib%202014
http://bibwild.wordpress.com/2011/06/20/customizing-blacklight-disable-automatic-stemming/
http://api.rubyonrails.org/classes/ActiveSupport/Concern.html
https://github.com/projecthydra/solrizer
https://github.com/projecthydra/hydra-head/wiki/Solr-Schema
http://lucene.apache.org/solr/tutorial.html
https://github.com/projecthydra/hydra/wiki/Use-HTTP-POST-for-Solr-requests
https://github.com/projecthydra/hydra-editor
https://github.com/projecthydra/hydra-collections/releases/tag/v1.3.2
https://github.com/psu-stewardship/archivesphere/blob/develop/app/models/accession.rb#L18
https://github.com/cschiewek/devise_ldap_authenticatable
https://github.com/projecthydra/active_fedora/wiki/Getting-Started:-Console-Tour
https://rubygems.org/gems/active-fedora/versions/7.0.0.rc3
https://github.com/OregonDigital/oregondigital/blob/master/Gemfile#L5
https://github.com/projecthydra/curate/blob/develop/spec/views/curate/collections/_form_to_add_member.html.erb_spec.rb
https://github.com/projecthydra/active_fedora/releases/tag/v7.0.0
https://github.com/projecthydra/hydra-head/blob/master/hydra-access-controls/README.textile
https://github.com/projecthydra/hydra-head/blob/master/hydra-access-controls/lib/hydra/policy_aware_access_controls_enforcement.rb
https://github.com/jeremyf/curate_vanilla/blob/master/app/constraints/admin_constraint.rb
https://github.com/jeremyf/curate_vanilla/blob/master/config/routes.rb
https://github.com/projecthydra/hydra-head/blob/master/hydra-access-controls/README.textile#enforcing-hydra-based-access-controls-using-cancan-and-hydraability
https://github.com/stffn/declarative_authorization
https://github.com/ryanb/cancan/wiki/Role-Based-Authorization
https://groups.google.com/forum/#!msg/hydra-tech/r4W_71YzKMg/Q4ItbhnTM-0J
http://trac.ffmpeg.org/wiki/GuidelinesHighQualityAudio
http://packages.atrpms.net/dist/el6/ffmpeg2/
https://github.com/projecthydra/hydra-derivatives#jpeg2k-directives
https://github.com/radar/guides/blob/master/ember.md?utm_source=rubyweekly&utm_medium=email
https://github.com/OregonDigital/oregondigital/blob/master/lib/oregon_digital/controlled_vocabularies/geographic.rb
http://andrestudios.nypl.org/
https://groups.google.com/forum/#!topic/hydra-tech/EZ2T2DOHq0M
https://search.digitalcommonwealth.org/
https://search.digitalcommonwealth.org/collections
http://www.lib.utah.edu/collections/digital-library.php
http://content.lib.utah.edu/cdm/search
http://digital.library.temple.edu/cdm/
http://collection1.libraries.psu.edu/
http://oregondigital.org/digcol/
http://library.ucsd.edu/dc
https://github.com/projecthydra/hydra/wiki/Hydra-Recipes
https://github.com/ldcx/ldcx-2013/blob/master/sessions/BL_omeka.md
https://docs.google.com/document/d/1ubXxhQ6bcRpGPCJteykBADDhZ_2DQ6fTS0v0nYSpq54/edit
https://wiki.duraspace.org/display/hydra/Project+Director+Meeting+11-22-13
https://wiki.duraspace.org/display/hydra/Shared+IR+project
https://github.com/ndlib/planning/issues/milestones
https://docs.google.com/spreadsheet/ccc?key=0AmHJxakwrWxGdFVwYkJCYmtqSVo0UllSTFl2dFgxbFE&usp=sharing
https://docs.google.com/spreadsheet/ccc?key=0AmHJxakwrWxGdFVwYkJCYmtqSVo0UllSTFl2dFgxbFE&usp=sharing#gid=0
https://wiki.duraspace.org/display/hydra/Shared+IR+sprint+schedule
https://github.com/curationexperts/gerousia
http://case.curationexperts.com/
https://github.com/awead/Hydra-Rock/commit/5d935cb00a8a243bc2117d3c64b99cd5e841ac5b
https://github.com/awead/Hydra-Rock/commit/9e1d0800b31a846e1534ed9780afdbd4caeeba0e
https://wiki.dlib.indiana.edu/display/VarVideo/Batch+Ingest+Package+Format
https://github.com/duke-libraries/dul-hydra/wiki/Batch-Ingest
https://github.com/projecthydra/browse-everything
http://www.avalonmediasystem.org/download
http://www.avalonmediasystem.org/software
http://www.avalonmediasystem.org/blog-post/understanding-avalon-roles-and-permissions
http://www.avalonmediasystem.org/connect
https://connect.iu.edu/p9d3o1m4ex2/?launcher=false&fcsContent=true&pbMode=normal
http://www.slideshare.net/AvalonMediaSys/partners-webinarnov2013-4-28289299
http://www.avalonmediasystem.org/
http://www.avalonmediasystem.org/blog-post/sprint-39-november-15-2013
http://www.avalonmediasystem.org/blog-post/sprint-40-december-2-2013
https://github.com/curationexperts/bawstun/wiki
https://groups.google.com/forum/#!topic/hydra-tech/Ww2FXqWjUZc
https://github.com/APTrust/fluctus
https://docs.google.com/file/d/0B9VXbbRQ-C6iUk9QcHl3RmxuSlk/edit
https://sdr.stanford.edu/
https://hydra.hull.ac.uk/
http://ndlib.github.io/practices/a-quick-reference-to-refactoring/
http://robots.thoughtbot.com/code-show-and-tell-polymorphic-finder
https://docs.google.com/spreadsheet/ccc?key=0AmHJxakwrWxGdGs0Z2NjWGF5VFhBSW4tdDFpZC14T2c&usp=sharing#gid=0
https://github.com/jeremyf/curate_identity_and_location
https://wiki.duraspace.org/display/hydra/Hydramata
https://github.com/jeremyf/curate_vanilla/tree/deep-dive
https://wiki.duraspace.org/display/hydra/Work+In+Progress
https://wiki.duraspace.org/display/hydra/Configuration+during+installation+via+application+template
https://wiki.duraspace.org/display/hydra/Faculty+Collaboration
https://wiki.duraspace.org/display/hydra/Roles+and+Organizations
https://wiki.duraspace.org/display/hydra/Groups
https://wiki.duraspace.org/display/hydra/Administrative+Sets
https://github.com/projecthydra/curate/blob/develop/CONTRIBUTING.md
https://github.com/Hydramata/hydramaton/blob/hydramata-policy/app/models/hydramata/policy.rb
https://github.com/EppO/rolify
https://github.com/EppO/rolify#4-add-a-role-to-a-user
https://github.com/Hydramata/hydramaton
https://wiki.duraspace.org/display/hydra/Hydramata+Project
https://wiki.duraspace.org/display/hydra/Hydramata+Refresh+-+3-10-2014
https://github.com/projecthydra/sufia/commit/2ecc3579ae34c59dc71cc0556ad2ab579a84c07f
https://docs.google.com/document/d/1J77P91Y2IpJ07ByB-MP3gZuGYfkSvn_43eyFL2YF43w/edit#
https://github.com/lotus/model/blob/master/EXAMPLE.md
https://drive.google.com/folderview?id=0B6n2ISCVmIQuMnpJS3BiTjR6aFk&usp=sharing
https://drive.google.com/?authuser=0&usp=docs_web#folders/0B4EjpGS1JW5dVUFGUkhCRFVrY2c
https://docs.google.com/document/d/1l2zSaoOvK-GVQEvuEN1MCezW2jq10DPCBh_eYTEM-w0/edit#
https://docs.google.com/document/d/1MVyS-nqrnMbEGImoNAff_l6PuqqTwdabVC5lNFCGkRA/edit#heading=h.9lbg2jy6bzd8
http://en.wikipedia.org/wiki/Business_Process_Model_and_Notation
https://github.com/orgs/Hydramata/teams/owners
https://www.youtube.com/watch?v=qTv33JqUoH8&feature=youtu.be
https://github.com/mark-cooper/archivesspace-client
https://github.com/mark-cooper/archivesspace-dashboard
https://github.com/mark-cooper/archivesspace-installer
http://archivesspace.org/
http://vimeo.com/89647075
https://groups.google.com/forum/#!forum/hydra-tech
https://wiki.duraspace.org/display/hydra/January+2014+Agenda+and+Notes
https://wiki.duraspace.org/display/hydra/Connect#Connect-IRC
http://www.diglib.org/archives/5116/
https://github.com/projecthydra/hydra/blob/master/CONTRIBUTING.md
https://wiki.duraspace.org/display/hydra/Licensed+software+acceptance+procedure
http://en.wikipedia.org/wiki/Data,_context_and_interaction
https://plus.google.com/communities/102392182820586430890?partnerid=gplp0
https://wiki.duraspace.org/display/hydra/Summary+of+the+action+points
https://wiki.duraspace.org/display/hydra/Presentation+Library
https://jira.duraspace.org/secure/RapidBoard.jspa?rapidView=16&view=planning&selectedIssue=HYDRASIR-11
http://www.newsrecord.org/news/campus/uc-joins-consortium-in-effort-to-digitalize-resources/article_09e60262-5260-11e3-ab6c-0019bb30f31a.html
https://wiki.duraspace.org/display/hydra/Scrum+process+and+tools
http://takeonrules.com/
http://curationexperts.files.wordpress.com/2013/10/hydracamp-fall-2013-syllabus.pdf
https://docs.google.com/document/d/1Gy1T64Euot-whLdvQo3PChLqy-qTlXovCD3CnLXMX0E/edit
http://wiki.code4lib.org/index.php/About_Code4Lib
http://www.code4lib.org/
http://www.diglib.org/
http://or2014.helsinki.fi/
http://code4lib.org/
https://wiki.duraspace.org/pages/viewpage.action?pageId=35619450
https://wiki.duraspace.org/display/hydra/Welcome+to+HydraConnect+2014
http://projecthydra.org/2013/11/15/hydra-connect-meeting-san-diego-21-24-january-2014/
https://www.youtube.com/watch?v=rxJB3Z4tg38
https://wiki.duraspace.org/display/hydra/HydraConnect+2014+Lightning+Talk+Presentations
https://wiki.duraspace.org/display/hydra/HydraConnect+2014+Unconference+Sessions
https://wiki.duraspace.org/display/hydra/Collections+and+Admin+Sets
https://wiki.duraspace.org/display/hydra/HydraConnect+2014+Attendee+List
https://wiki.duraspace.org/display/hydra/HydraConnect+2014
https://wiki.duraspace.org/display/hydra/Events%2C+presentations+and+articles
https://www.airbnb.com/rooms/716913
http://wiki.code4lib.org/index.php/2014_preconference_proposals#Blacklight_Hackfest
https://wiki.duraspace.org/display/hydra/Hotel+suggestions+for+Stanford
https://wiki.duraspace.org/display/hydra/Hydra+Connect+2+-+Fall+2014
https://library.stanford.edu/projects/ldcx/2014-conference/social
https://leanpub.com/4rulesofsimpledesign?utm_source=rubyweekly&utm_medium=email
https://docs.google.com/document/d/13GCqnGCoU1JBFGuucmrjA0KSBaUVm8fHKMPCrzb9bd8/edit
https://docs.google.com/document/d/1W3WCZGX3ErZXLpXp5nutcsogEKLGdJ3V6GHWb1SfMjE/edit
http://buildbot.net/
http://www.ansibleworks.com/
https://github.com/curationexperts/hydradam/wiki/Production-Installation%3A-Overview
https://github.com/jcftang/ansible-hydra/tree/master/hydra-stack
https://wiki.duraspace.org/display/hydra/Deployment+and+DevOps
http://www.ansible.com/home
https://github.com/curationexperts/hydradam/wiki/Production-Installation:-Overview
https://wiki.duraspace.org/display/hydra/Technical+Framework+and+its+Parts
http://curationexperts.com/2013/10/07/the-hydra-production-stack/
https://wiki.duraspace.org/download/attachments/11502264/Hydra+Production+Stack.pdf
http://www.oxygenxml.com/download_oxygenxml_editor.html
https://github.com/adamsanderson/qwandry
https://shvets.github.io/blog/2014/04/19/configure_macbook.html
http://www.mitchchn.me/2014/os-x-terminal/
http://www.cranfieldlibrary.cranfield.ac.uk/pirus2/tiki-index.php
http://www.projectcounter.org/pirus.html
http://www.logianalytics.com/resources-overview?
http://www.logianalytics.com/
http://digitalpowrr.niu.edu/tool-grid/
https://github.com/APTrust/fluctus/blob/develop/app/models/datastream/bag_manifest_datastream.rb
http://www.cni.org/topics/digital-preservation/the-digital-preservation-network-a-report-and-discussion-on-dpns-emerging-architecture-system-protocol-service-model/
http://www.cni.org/topics/digital-curation/f13-sompel-hiberlink/
http://perma.cc/
http://www.arl.org/storage/documents/publications/share-notification-system-project-plan.pdf
http://www.arl.org/focus-areas/public-access-policies/shared-access-research-ecosystem-share
https://github.com/sul-dlss/
http://aims.fao.org/lode/bd
http://aims.fao.org/community/general-information/blogs/webinaraims-how-select-appropriate-encoding-strategies-producing
http://www.slideshare.net/faoaims/openagris-using-bibliographical-data-for-linking-into-the-agricultural-knowledge-web
https://dvcs.w3.org/hg/ldpwg/raw-file/default/ldp.html
http://code4lib.org/conference/2013/harper
http://aims.fao.org/lode/bd-2/step-forward#publish
http://lj.libraryjournal.com/2013/12/opinion/peer-to-peer-review/linked-data-in-the-creases-peer-to-peer-review/
http://transinsight.com/
http://www.gopubmed.org/web/gopubmed/1?WEB0isa8qic08a8gIcImI0
http://cargocollective.com/MetaCatalogue/About-the-MetaCatalogue
http://www.w3.org/TR/ldp/
http://www.arl.org/focus-areas/public-access-policies/shared-access-research-ecosystem-share/3038-share-working-groups
http://json-ld.org/
https://www.coursera.org/course/metadata
https://github.com/projecthydra/hydra-head/issues/31
http://schema.org/
https://github.com/ucsdlib/dams
http://htmlpreview.github.io/?https://github.com/ucsdlib/dams/master/ontology/docs/data-dictionary.html
https://libraries.ucsd.edu/blogs/dams/about-our-data-model/
https://github.com/ucsdlib/damspas/wiki/Document-vs.-Links
https://github.com/ucsdlib/damspas/tree/develop/app/models
http://htmlpreview.github.io/?https://github.com/ucsdlib/dams/master/ontology/docs/data-dictionary.html#mads-element
https://github.com/ucsdlib/dams/tree/master/ontology
https://github.com/ucsdlib/damspas
http://www.oclc.org/content/dam/oclc/events/2013/CollectiveInsightBaltimore/CollectiveInsight_Baltimore05_JackieShieh.pdf?utm_source=WhatCountsEmail&utm_medium=z%20-%20CollectiveInsightBaltimore_RecordingsUpcomingEvents_ONETIMEUSE&utm_campaign=OCLC%20Member%20Update&_wcsid=EB75C8F5A385469BC0B91FCF94E1DC7E64319F0C9CFBF0B5FDD78F63AD5AF760
http://www.jetbrains.com/ruby/buy/buy.jsp#openSource
https://github.com/awead/hydra-pbcore
http://dublincore.org/documents/2000/11/dcmes-xml/
http://www.ibm.com/developerworks/library/x-think4/
https://github.com/projecthydra/active_fedora/wiki/Tame-your-RDF-Metadata-with-ActiveFedora
http://www.dublincore.org/documents/dcmes-xml/
https://wiki.duraspace.org/display/hydra/RDF+in+Hydra+Summit
http://dcevents.dublincore.org/index.php/IntConf/dc-2013/schedConf/presentations
https://support.google.com/webmasters/answer/99170?hl=en
https://wiki.duraspace.org/pages/viewpage.action?pageId=34668054
https://wiki.duraspace.org/display/hydra/Descriptions+of+current+RDF+practice
https://github.com/ruby-rdf
https://github.com/mixterj/VRA
https://gist.github.com/no-reply/7803282
https://docs.google.com/document/d/1cL-jLH0OMnOhVApuZQBO7ukJ3flHm0aJ6K_JjaaRZ_8/pub
https://github.com/no-reply/active_fedora
http://www.w3.org/TR/prov-o/
http://www.w3.org/TR/mediaont-10/
https://wiki.duraspace.org/display/hydra/RDF+WG+Call+2014-02-12
https://github.com/projecthydra/active_fedora/wiki/Lesson%3A-Use-RDF-to-Represent-Flat-Metadata-like-Dublin-Core
https://github.com/projecthydra/active_fedora/wiki/Lesson%3A-Use-RDF-to-Represent-Flat-Metadata-like-Dublin-Core#wiki-step-assert-association-with-a-node-as-the-subject----create-a-relationship-between-two-nodes
https://wiki.duraspace.org/display/hydra/Hydra+RDF+Working+Group
https://wiki.duraspace.org/display/hydra/RDF+Example+Use+Cases
https://wiki.duraspace.org/display/hydra/RDF+Vocabularies+and+Ontologies+in+use
https://groups.google.com/forum/#!topic/hydra-tech/8gHLiMrFG5s
https://gist.github.com/escowles/9714947
https://gist.github.com/no-reply/9842656
https://github.com/dpla/ingestion
https://github.com/jamesvanmil/hydra_glossary/blob/master/hydra_glossary.md
http://www.nationaldataservice.org/
https://groups.google.com/forum/#!msg/hydra-tech/GoFr2EPx_qE/rrQ4GgJJoX4J
http://n2t.net/ezid/doc/apidoc.html
http://n2t.net/ezid/
http://www.cni.org/events/membership-meetings/past-meetings/spring-2014/schedule/
http://www.factsmatter.info/
http://www.cell.com/current-biology/abstract/S0960-9822%2813%2901400-0
http://lj.libraryjournal.com/2014/02/technology/academic-torrents-offers-new-means-of-storing-distributing-scholarly-content/
https://github.com/projecthydra/hydra/wiki/Content-Type-Example:-Journal-Article
http://www.journaltocs.ac.uk/
http://www.libraries.wright.edu/noshelfrequired/
http://online.qmags.com/CPT1213?sessionID=8189A964BEEE10959C533ACB3&cid=2693695&eid=18503#pg6&mode1
http://lj.libraryjournal.com/2013/12/digital-content/opening-up/
https://docs.google.com/document/d/1JkKNi832lyz72HqesjPhY4dmkr0K6cYd6uJ2inOAzCo/edit
https://github.com/ucsdlib/damspas/blob/develop/app/models/datastreams/dams_resource_datastream.rb#L819
https://github.com/projecthydra/hydra-migrate
http://www.loc.gov/aba/pcc/naco/
http://www.isni.org/
http://orcid.org/
https://www.kuali.org/
http://wiki.lib.purdue.edu/display/ste/Materials+for+the+DIL+Symposium
http://docs.lib.purdue.edu/lib_fsdocs/23/
http://www.ijdc.net/index.php/ijdc/article/view/8.1.204/306
http://dp.la/
https://rvm.io/workflow/rvmrc/
https://wiki.duraspace.org/display/hydra/Gems+and+documentation
http://guides.rubyonrails.org/command_line.html
http://www.codecademy.com/tracks/ruby?curriculum_id=5059f8619189a5000201fbcb
http://projecteuler.net/
http://larry.libraries.uc.edu:3000/
http://railsforzombies.org/
http://www.lynda.com/search?q=ruby%2B
http://ruby.railstutorial.org/book/ruby-on-rails-tutorial
http://installfest.railsbridge.org/installfest/
http://tryruby.org/levels/1/challenges/0
http://ruby.railstutorial.org/ruby-on-rails-tutorial-book#top
http://curriculum.railsbridge.org/curriculum/curriculum
https://www.ruby-toolbox.com/categories/documentation_tools
http://yardoc.org/
http://www.rubyinside.com/the-3-step-guide-to-slick-local-documentation-for-all-your-ruby-gems-3760.html
http://rubykoans.com/
http://installfest.railsbridge.org/installfest/macintosh
http://ndlib.github.io/
http://ndlib.github.io/practices/ruby-and-rails-developer-tools/
http://guides.rubyonrails.org/
http://www.codecademy.com/tracks/ruby
http://clean-ruby.com/
http://cincyrb.com/
http://devblog.reverb.com/post/65298078326/ten-resources-for-taking-your-ruby-skills-to-the-next
http://ruby.railstutorial.org/
http://www.sandimetz.com/poodr/
https://github.com/railstutorial
http://ruby.railstutorial.org/ruby-on-rails-tutorial-book
http://robots.thoughtbot.com/code-show-and-tell-polymorphic-finder?utm_source=rubyweekly&utm_medium=email
http://quickleft.com/blog/step-by-step-guide-to-building-your-first-ruby-gem?utm_source=rubyweekly&utm_medium=email
http://www.sitepoint.com/ruby-command-line-interface-gems/?utm_source=rubyweekly&utm_medium=email
http://blog.8thcolor.com/en/2014/03/7-daily-use-cases-of-ruby-hash/?utm_source=rubyweekly&utm_medium=email
https://www.ruby-forum.com/topic/128119
https://github.com/lonelyplanet
https://www.ruby-toolbox.com/
http://guides.rubyonrails.org/engines.html#overriding-models-and-controllers
https://blog.jcoglan.com/2013/05/08/how-ruby-method-dispatch-works/
https://github.com/excid3/simple_calendar
http://vabsnanoti.wordpress.com/2012/11/16/installation-of-apache-tomcat-on-linux-red-hat/
http://johnathanmarksmith.wordpress.com/2013/05/16/how-to-install-maven-on-linux-with-johnathan-mark-smith/
http://www.thegeekstuff.com/2013/04/install-apache-solr-tomcat/
http://stanbol.apache.org/
http://distrowatch.com/
http://www.linux.com/
http://www.linuxtoday.com/
http://www.linuxjournal.com/
http://www.osnews.com/
http://git-scm.com/book/en/Getting-Started-Installing-Git
http://www.aspieschool.com/wiki/index.php?title=Install_Redis_(Linux)
http://www.cyberciti.biz/tips/top-linux-monitoring-tools.html
http://www.cyberciti.biz/faq/how-to-install-mysql-under-rhel/
http://articles.slicehost.com/2010/5/20/installing-apache-on-rhel
http://docs.oracle.com/javase/7/docs/webnotes/install/linux/linux-jdk.html#install-32-rpm
http://shmuels.blogspot.com/2012/03/download-java-jrejdk-7-from-shell.html
https://github.com/sstephenson/execjs
http://www.javascriptkit.com/javatutors/random2.shtml
http://www.oracle.com/technetwork/java/archive-139210.html
http://en.wikipedia.org/wiki/JSONP
http://zugec.com/73-how-setup-search-api-apache-solr
http://blog.hsl.virginia.edu/drupalpress/apache-solr-installation-on-fedora-14-w-jetty-at-uva/
http://wiki.apache.org/solr/SolrTomcat
http://wiki.apache.org/solr/SolrTomcat#Single_Solr_app
http://larry.libraries.uc.edu:8983/solr/#/
http://wiki.apache.org/solr/SolrRequestHandler#Old_handleSelect.3Dtrue_Resolution_.28qt_param.29
http://wiki.apache.org/solr/LocalParams
https://github.com/projecthydra/solrizer-fedora
http://wiki.apache.org/solr/
http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#solr.EdgeNGramFilterFactory
https://github.com/projectblacklight/blacklight/wiki/Extending-or-Modifying-Blacklight-Search-Behavior
http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters
http://www.slideshare.net/erikhatcher/sa-22830939
http://searchhub.org/2012/02/22/custom-security-filtering-in-solr/
https://github.com/duke-libraries/dul-hydra/blob/develop/app/models/collection.rb#L15
http://fedoraproject.org/wiki/How_to_create_xorg.conf
https://wiki.dlib.indiana.edu/display/INF/Fedora
https://wiki.duraspace.org/display/FEDORA34/Client+Command-line+Utilities#ClientCommand-lineUtilities-indemo
https://wiki.duraspace.org/display/FEDORA/Home
https://github.com/futures/fcrepo4/releases/fcrepo-4.0.0-alpha-1
https://wiki.duraspace.org/display/FF/Fedora+Futures+Home
https://fedoraproject.org/wiki/EPEL
https://wiki.duraspace.org/display/hydra/Fedora+4+as+the+Hydra+RDF+store
https://wiki.duraspace.org/display/FF/Fedora+Repository+Home
https://wiki.duraspace.org/display/FF/Quick+Start
http://duraspace.org/meeting-report-3-5-year-dspace-vision
https://wiki.duraspace.org/display/DSPACE/DSpace+2013+Vision+and+Roadmap+Meeting
https://wiki.duraspace.org/display/DSPACE/DSpace+2013+Vision+Document
http://edgeguides.rubyonrails.org/engines.html
http://www.upgradingtorails4.com/
http://darcynorman.net/2005/12/28/fun-with-rails-bookmark-manager/
http://guides.rubyonrails.org/routing.html
http://monkeyandcrow.com/blog/reading_rails_concern/?utm_source=rubyweekly&utm_medium=email
http://api.rubyonrails.org/classes/ActionView/Helpers/TagHelper.html#method-i-content_tag
http://www.railsbricks.net/?utm_source=rubyweekly&utm_medium=email
https://github.com/tenderlove/rails_autolink
https://github.com/peter-murach/finite_machine
http://curriculum.railsbridge.org/intro-to-rails/
http://railscasts.com/episodes/196-nested-model-form-part-1
http://ericbrooke.wordpress.com/2014/03/30/visual-overview-of-ruby-on-rails/
https://github.com/RailsApps/rails-devise-pundit
http://afreshcup.com/home/2014/4/16/double-shot-1337.html
https://docs.google.com/document/d/1LIsDaPJPx-Ygbua4oW13HeglyUYzUhKfz3p_GUA_Lks/edit
http://ndlib.github.io/practices/escaping-the-tar-pit/
https://github.com/drapergem/draper
https://www.ruby-forum.com/topic/148776
http://www.tutorialspoint.com/ruby-on-rails-2.1/rails-exception-handling.htm
http://www.tutorialspoint.com/ruby/ruby_exceptions.htm
https://blog.engineyard.com/2012/passenger-vs-unicorn
http://datapub.cdlib.org/2013/11/07/researchers-get-your-orcid/
https://github.com/ndlib/hydra-orcid_profile/wiki
https://groups.google.com/forum/#!topic/hydra-tech/sULzN7FSniI
http://support.orcid.org/knowledgebase/articles/116739-register-a-client-application
https://wiki.duraspace.org/display/hydra/Hydra+ORCID+Plug-in
https://github.com/jeremyf/orcid
https://github.com/jeremyf/devise-multi_auth
https://github.com/jeremyf/mappy
https://groups.google.com/forum/#!forum/orcid-api-users
http://orcid.org/0000-0001-5153-7607?lang=en
http://www.cni.org/topics/identity-management/integrating-orcid-researcher-identifiers-into-repository-workflows/
https://github.com/awead/artk
https://github.com/jeremyf/curate_vanilla/blob/master/config/deploy.rb#L151-L169
https://devcenter.heroku.com/articles/queuing-ruby-resque
http://store.theamericanoutlaws.com/product/ao-eagle-jacket-2014
https://appcasts.io/blog/writing-your-first-background-worker?utm_source=rubyweekly&utm_medium=email
http://iiif.io/
https://github.com/IIIF
https://gist.github.com/jpstroop/8579968
http://www-sul.stanford.edu/iiif/image-api/1.1/
https://docs.google.com/presentation/d/1lpW_UVwSW6b5-TdIWBXE8ZLtZf4D3zt8d5DX0TpF-B0/edit#slide=id.p
http://codecrate.com/2014/01/replace-rake-with-thor.html?utm_source=rubyweekly&utm_medium=email
http://www.protectedplanet.net/
http://d.lib.ncsu.edu/
http://d.lib.ncsu.edu/collections/map
http://www.geonames.org/
http://www.geonames.org/1279344/adilabad.html
http://knowledgeandmedia2012.wordpress.com/assignments/assignment-3-alignment-tgn-geonames/
http://protectedplanet.net/
https://wiki.duraspace.org/display/hydra/Geo+data+in+MODS+working+document
https://github.com/pulibrary/pul-store-deploy/tree/ubuntu
https://wiki.archlinux.org/index.php/ClamAV
http://milky.manishsinha.net/2007/06/21/installing-and-configuring-clamav-antivirus-on-your-ubuntu/
https://github.com/arusso/puppet-clamav
https://github.com/sul-dlss/spotlight/
http://www.polymer-project.org/
https://angularjs.org/
http://linemanjs.com/
http://www.html5rocks.com/en/tutorials/webcomponents/shadowdom/
https://www.codeschool.com/courses/?utm_medium=email&utm_campaign=welcome_registered&utm_source=mandrill&utm_content=null
https://github.com/curationexperts/bawstun/wiki/Production-Installation%3A-Overview
http://curationexperts.files.wordpress.com/2013/10/production-stack-v1-0-1440x1080.png
http://www.danielgoleman.info/biography/
http://www.eiconsortium.org/
http://www.haygroup.com/leadershipandtalentondemand/ourproducts/item_details.aspx?itemid=58&type=3&t=2
http://www.mhs.com/product.aspx?gr=io&prod=msceit&id=overview
http://www.youtube.com/watch?v=Y7m9eNoB3NU
http://www.youtube.com/watch?v=KCidWvPqENg
http://www.youtube.com/watch?v=78BjcXo_p_c
http://personality-testing.info/tests/EI.php
http://atrium.haygroup.com/us/quizzes/emotional-intelligence-quiz.aspx
http://www.ted.com/speakers/daniel_goleman.html
http://web.ebscohost.com/ehost/detail?sid=5aebabd2-0d6a-41ac-b182-9435c4c8a0f7%40sessionmgr4&vid=1&hid=11&bdata=JnNpdGU9ZWhvc3QtbGl2ZQ%3d%3d#db=a9h&AN=9510027534
http://uclid.uc.edu/record=b5833846~S39
http://mathman.dreamhosters.com/MathMan/pdfs/Ungame.pdf
http://cbsnews.cbs.com/
http://www.cnn.com/
http://web.lexis-nexis.com/universe/
http://www.newsday.com/news/nationworld/wire/
http://www.dailystar.com.lb/
http://www.jpost.com/
http://www.thestranger.com/
http://hisz.rsoe.hu/alertmap/index2.php?lang=
http://www.dw-world.de/dw/0,2142,4753,00.html
http://fivethirtyeight.blogs.nytimes.com/
http://www.cincy.com/weather/
http://www.intellicast.com/Local/USLocalWide.asp?loc=kind&seg=LocalWeather&prodgrp=RadarImagery&product=Radar&prodnav=none
http://www.nws.noaa.gov/
http://www.nws.noaa.gov/er/iln/iln.htm
http://www.weather.com/weather/us/zips/45241.html
http://www.weatherpost.com/
http://www.weather.com/weather/local/45241
http://www.wx.com/wxradar/wxradarSS.cfm?radar=ILN
http://aj2vr6xy7z.cs.serialssolutions.com/
http://www.about.com/
http://www.altavista.com/
http://www.excite.com/
http://www.google.com/
http://www.hotbot.com/
http://www.infoseek.com/
http://lii.org/
http://www.lycos.com/
http://www.northernlight.com/
http://www.invisibleweb.com/
http://www.webcrawler.com/
http://www.yahoo.com/
http://aj2vr6xy7z.cs.ssc.proxy.libraries.uc.edu/
http://www.knowitnow.org/
http://www.archive.org/index.php
http://highwire.stanford.edu/
http://www.whosarat.com/news_detail.php?nid=44
http://btarena.net/
http://infomine.ucr.edu/
http://www.intute.ac.uk/
http://www.makeuseof.com/tag/10-search-engines-explore-deep-invisible-web/
http://www.sweetsearch.com/
http://www.howtogeek.com/98698/improve-your-google-search-skills-infographic/
http://www.google.com/search?q=%s
http://www.answers.com/main/ntquery?gwp=13&s=%s
http://www.google.com/search?q=stocks:%s
http://en.wikipedia.org/wiki/Special:Search?search=%s
http://academic.live.com/
http://scholar.google.com/
http://xlib1.ohiolink.edu:8331/V/?func=quick-1?
http://isohunt.com/torrents/?ihq=My+Boo+Ghost+town
http://extratorrent.com/error/TorrentNotFound/Kendrick+Lamar+%C3%83%C2%A2%C3%82%C2%80%C3%82%C2%93+good+kid,+m.A.A.d+city+%5BDeluxe%5D+%5B2012%5D+%5BAlbum+iTunes+Digital+Booklet%5D+%5B320kbps%5D+%5BF10%5D.html
http://www.zillow.com/finneytown-oh/home-values/
http://www.sumo.fi/products/sumopaint/
http://www.zoho.com/
http://www.editgrid.com/untitled
http://www.encalc.com/
http://www.coderun.com/ide/?pid=204
http://listen.grooveshark.com/
http://ondras.zarovi.cz/sql/demo/
http://education-portal.com/articles/Best_Free_Software_Downloads_for_Students.html
http://phet.colorado.edu/sims/equation-grapher/equation-grapher_en.html
http://wonderfl.net/c/9Xx7/fullscreen
http://www.noexcuselist.com/
http://www.colourlovers.com/blog/2009/02/03/the-colors-of-chess/
http://thechesswebsite.com/
http://www.chessville.com/
http://www.chesspics.com/rating.php?r=1
http://www.mychessblog.com/50-strategies-to-gain-the-upper-hand-over-your-opponent/
http://www.hiphopchessfederation.org/
http://www.frayn.net/beowulf/theory.html
http://www.chess.com/groups/forumview/1999kasparov-vs-the-world2
http://www.chessgames.com/perl/chessgame?gid=1124598
http://en.wikipedia.org/wiki/London_System
http://en.wikipedia.org/wiki/Caro-Kann_Defence
http://en.wikipedia.org/wiki/Nimzo-Indian_Defence
http://blog.chess.com/kenytiger/a-trap-for-a-grandmaster
http://www.chess.com/article/view/openings-for-tactical-players-pirc-defense
http://homepage.ntlworld.com/adam.bozon/stats.htm
http://jeromegambit.blogspot.com/
http://chessteaching.x10.mx/1001-brilliant-checkmates/
http://www.psychologytoday.com/articles/200506/the-grandmaster-experiment
http://www.chessdryad.com/education/sageadvice/thirty/index.htm
http://www.365chess.com/opening.php
http://www.bitsandpieces.com/
http://www.crossword-puzzles.co.uk/
http://chessproblems.com/
http://www.mindwareonline.com/MWESTORE/Home/HomePage.aspx?
http://www.ustoy.com/novelty/default.htm
http://www.museumtour.com/
http://scottbryce.com/cryptograms/stats.htm
http://www.magictrickschool.com/
http://jpbrown.i8.com/cubesolver.html
http://scientificsonline.com/
http://www.billingboats.com/modelboats.html
http://www.siammandalay.com/
http://www.latimes.com/features/image/la-ig-diy.0713-pg,0,1699252.photogallery
http://www.fixr.com/infographics/rubik-cube-solved-in-20-movements-or-less.html
http://oneacross.com/
http://www.dndadventure.com/html/riddles.html
http://riddlenow.com/riddles.htm
http://vdm3gd.files.wordpress.com/2009/09/masterlock-01.png
http://www.ocf.berkeley.edu/~wwu/riddles/hard.shtml
http://en.wikipedia.org/wiki/Voynich_manuscript
http://en.wikipedia.org/wiki/Antikythera_mechanism
http://en.wikipedia.org/wiki/Baigong_Pipes
http://en.wikipedia.org/wiki/Stone_spheres_of_Costa_Rica
http://en.wikipedia.org/wiki/Baghdad_Battery
http://en.wikipedia.org/wiki/Bloop
http://en.wikipedia.org/wiki/Kryptos
http://www.braingle.com/
http://faculty.washington.edu/chudler/chgames.html
http://www.ancientx.com/nm/anmviewer.asp?a=75&z=1
http://www.thebitterrootfootage.com/story.html
http://gizmodo.com/5917314/here-are-ten-bets-youre-guaranteed-to-always-win
http://www.mnn.com/lifestyle/arts-culture/photos/10-of-the-worlds-biggest-unsolved-mysteries/the-wow-signal
http://ruwix.com/online-rubiks-cube-solver-program/
http://blog.wolfram.com/2011/09/15/from-pi-to-puzzles/
http://www.folj.com/lateral/
http://ruwix.com//the-rubiks-cube/notation/#.USrOYVeO63M
http://ruwix.com/the-rubiks-cube/how-to-solve-the-rubiks-cube-beginners-method/#.USrOXFeO63N
http://en.wikipedia.org/wiki/%E2%9A%86
http://www.smart-kit.com/s8606/swap-it-et/
http://www.origami.org.uk/
http://www.generationterrorists.com/quotes/1001q.html
http://www.edcollins.com/logic/logic21-30.htm
http://www.techinterviews.com/programming-puzzles-riddles-and-interview-problems
http://business.illinois.edu/broker/iq.htm
http://en.wikipedia.org/wiki/Nine_Men's_Morris
http://www.jarodo.com/
http://www.stephenking.com/index.html
http://www.thedarktower.net/connections/roadmap
http://www.fullbooks.com/
http://www.openculture.com/freeaudiobooks
http://middle-earth.thehobbit.com/
http://www.phnet.fi/public/mamaa1/heinlein.htm
http://www.ipl.org/
http://prernalal.com/banned%20books/
http://book.populair.eu/
http://www.lulu.com/
http://www2.xlibris.com/
http://www.iuniverse.com/
http://www.booksurge.com/
http://www.infiltec.com/j-chick2.htm
http://www.miragebookmark.ch/most-interesting-bookstores.htm
http://broadcast.oreilly.com/2009/01/the-best-webcomics-youre-not-r.html
http://www.rarebookroom.org/
http://www.hobbitcentral.com/lore/riddles.php
http://www.rpglife.com/maps/
http://coe.jmu.edu/learningtoolbox/cornellnotes.html
http://www.bouldertherapist.com/html/humor/WordPlays/lexophiles.htm
http://home.austarnet.com.au/petersykes/fantasy100/lists_books.html
http://www.everything2.org/?node_id=1016251
http://www.openculture.com/2006/10/audio_book_podc.html
http://en.wikipedia.org/wiki/The_Alchemist_(novel)
http://infomotions.com/etexts/philosophy/1800-1899/marx-communist-109.txt
http://librarycopyright.net/digitalslider/
http://feedbooks.com/publicdomain
http://www.bygosh.com/poems/index.htm
http://www.absolutetoday.com/blog.net/post/2010/01/25/The-100-Greatest-Science-Fiction-or-Fantasy-Novels-of-All-Time.aspx
http://degreedirectory.org/articles/25_Banned_Books_That_You_Should_Read_Today.html
http://www.rotatingcorpse.com/dear_diary/please-dont-promise-me-forever/3027.html
http://www.btinternet.com/~glynhughes/squashed/writers.htm
http://www.twentytwo.tinymenagerie.com/
http://www.allowe.com/Humor/book/When%20Insults%20Had%20Class.htm
https://secure.wikimedia.org/wikipedia/en/wiki/Ex_post#ex_post
http://www.booktryst.com/2010/09/banned-books.html
http://www.cincinnatilibrary.org/downloadables/ebooks.html
http://www.popcrunch.com/the-10-most-disturbing-books-of-all-time/
http://openlibrary.org/
http://forbiddenplanet.com/picks/50-sf-books-you-must-read/
http://www.quoteland.com/
http://www.themodernword.com/eco/eco_quotes.html
http://www.awgibbs.com/money.html
http://nwn.evil-grin.com/library/D&D%20Books/
http://www.feedbooks.com/books/top?category=FBFIC009000&lang=en
http://www.esquire.com/print-this/75-books?page=all
http://www.buzzfeed.com/expresident/wittiest-comebacks-of-all-time
http://en.wikipedia.org/wiki/List_of_book_burning_incidents
http://en.wikipedia.org/wiki/Epic_Cycle
http://en.wikipedia.org/wiki/Hermocrates_(dialogue)
http://en.wikipedia.org/wiki/Ab_Urbe_Condita_(book)
http://en.wikipedia.org/wiki/Book_of_the_Wars_of_the_Lord
http://en.wikipedia.org/wiki/Moctezuma_I
http://books.google.com/books?id=tYTIScZlk4gC&pg=PA17&lpg=PA17&dq=Angry+Lord+he+shoots+the+sky+glyph.&source=bl&ots=CdIWI6Pmvt&sig=phlhH6uN03pG_7dBWFTu8WZ_PsE&hl=en&sa=X&ei=jU7tTuD9BcTY0QHInZm-CQ&sqi=2&ved=0CCMQ6AEwAQ#v=onepage&q=Angry%20Lord%20he%20shoots%20the%20sky%20glyph.&f=false
http://www.midnightanimation.com/gallery/ghost.html
http://www.carnagecorp.com/pub/pictures/simpsonsmap.png
http://pinktentacle.com/2010/07/macabre-kids-book-art-by-gojin-ishihara/
http://www.miragebookmark.ch/most-interesting-libraries.htm
http://io9.com/5859727/a-brilliant-list-of-science-books-for-people-who-want-their-minds-blown
http://www.classicshorts.com/stories/lotry.html
http://www.wired.com/geekdad/2012/03/67-books-for-kids?pid=1153
http://en.wikipedia.org/wiki/Buffalo_buffalo
http://pleated-jeans.com/2012/04/11/which-fictional-character-shares-your-birthday/
http://thefabweb.com/42580/30-best-quotes-in-pictures-of-the-week-may-05th-to-may-12th-2012/
http://www.guardian.co.uk/culture/gallery/2012/apr/29/ten-best-first-lines-fiction?CMP=twt_gu
http://www.bachelorsdegreeonline.com/blog/2009/get-almost-any-book-for-free-100-kosher-sites-offering-great-literature-for-download/comment-page-1/#.UG-21FE32LI
http://educhoices.org/articles/Online_Libraries_-_25_Places_to_Read_Free_Books_Online.html
http://www.everything2.com/index.pl?node_id=1016184
http://thebooksmugglers.com/2009/08/ya-appreciation-month-more-books-for-the-post-apocalypsedystopian-fan.html
http://www.baetzler.de/humor/handy_latin.html
http://www.librophile.com/
http://www.phnet.fi/public/mamaa1/heinlein.htm
http://www.robertsrules.org/motionsprint.htm
http://www.stumbleupon.com/su/1WEI4E/:2rwiZdq:3yQTYt/thoughtcatalog.com/najwah-essop/2013/12/85-jack-kerouac-quotes-for-the-traveler-inside-you/
http://www.stumbleupon.com/su/2mJFSW/:1d1Z__PE.:1V7ERDx+/www.writetosellyourbook.com/fiction-advice/three-ways-killer-opening-line/
http://specials.bjorkish.net/
http://www.bjork.com/
http://www.cakewalk.com/owners/musiccreator3/default.asp
http://www.crapfromthepast.com/
http://www.patrickneate.com/page.asp?p=hiphop
http://www.rapbasement.com/
http://www.listology.com/barttf/list/official-trip-hop-classics-top-100
http://www.youtube.com/watch?v=xbqKK7utNn4&feature=fvw
http://www.dieantwoord.com/
http://www.erykah-badu.com/
http://www.youtube.com/watch?v=hkC5y2Ogdi4
http://www.m-audio.com/products/en_us/XSessionPro.html
http://www.torq-dj.com/forum/viewtopic.php?f=14&t=3312
http://www.rhymesayers.com/radio/
http://www.itstherub.com/?p=754
http://www.muziic.com/dj/
http://www.vice.com/read/finally-the-hip-hop-kids-are-taking-acid
http://allhiphop.com/2014/01/03/allhiphop-coms-top-50-underground-indie-emerging-artists-2013/
http://www.youtube.com/watch?v=M4ZTspp_-r0
http://tabnabber.com/view_Tab.asp?tabID=1075&sArtist=sia&sName=breathe+me
http://www.thevirtualpiano.com/
http://freesheets.org/
http://www.onlineuniversitylowdown.com/2007/08/100-free-music-lessons-you-can-take-on-you-tube.html
http://www.wikihow.com/Play-Chopsticks
http://freesheets.org/sheets.html
http://en.wikipedia.org/wiki/List_of_Little_Einsteins_episodes
http://www.jazz-on-line.com/pageinterrogation.php
http://78records.cdbpdx.com/
http://www.jazzpix.com/
http://www.thepointisjazz.com/
http://www.scaruffi.com/jazz/50.html
http://www.jazztrumpetsolos.com/
http://bobgentile.com/Music/Jazz/
http://www.jazz24.org/jazz100.html
http://listverse.com/2010/02/27/15-most-influential-jazz-artists/
http://leadsheetmusic.com/multifakebooks.brooklyn/01_Fake_and_Real_Books/01_Real_Book1_C_Bb_Eb_Bass_Voc/
http://popdose.com/10-essential-albums-for-starting-a-jazz-collection/
http://en.wikipedia.org/wiki/Pure_Moods
http://digitaldreamdoor.nutsie.com/pages/music0.html
http://aurgasm.us/
http://www.hongkiat.com/blog/55-great-websites-to-download-free-sound-effects/
http://www.infinitewheel.com/dubselector5.html
http://www.4shared.com/dir/8285178/25cc0ade/sheet_music.html
http://www.jokosher.org/
http://www.sayyad.ca/phonesongs.html
http://www.triphop-music.com/band/gotan-project
http://www.belessdumb.com/snd/
http://audiomap.tuneglue.net/
http://www.cakewalk.com/support/HardwareSetup/mme.asp?man=SoundMax
http://www.instantsfun.es/
http://music.hyperreal.org/dj/AVH/
http://ptolemy.eecs.berkeley.edu/eecs20/week8/scale.html
http://blog.djmastercourse.com/harmonic-mixing-mixing-in-key/
http://r3dux.org/2010/06/how-to-easily-remove-the-vocals-from-most-songs/
http://www.sonomawireworks.com/products.php
http://www.popularmechanics.com/home/how-to-plans/woodworking/step-by-step-guides-offbeat-diy-projects-3
http://thumbpress.com/10-awesome-bob-marley-quotes/
http://www.chartattack.com/features/2012/mar/13/8-lost-albums-uncovered
http://www.last.fm/group/Downtempo/forum/34799/_/363110
http://dailytekk.com/2012/04/16/100-ways-to-discover-and-enjoy-music/
http://virtualguitar.net/live/?openchords
http://www.massiveattack.co.uk/
http://www.mademan.com/mm/10-best-sexual-drinking-games.html
http://www.5min.com/Video/Back-Massage-Techniques-1-12392
http://www.sofeminine.co.uk/relationships/album856252/sex-positions-kamasutra-sex-positions-p1.html
http://www.xtube.com/watch.php?v=OSOgn-G174-
http://www.benjoffe.com/holdem
http://www.futilitycloset.com/2009/10/11/jackpot/
http://maxistentialism.com/werewolf/
http://www.stumbleupon.com/su/2QSVj9/:1PVHmgn9i:9Z3kXfzt/9gag.tv/v/1887/
http://www.razzledazzlerecipes.com/eatingout/index_a.htm
http://www.hotscripts.com/category/php/
http://www.mindflow.com.au/targets/
http://www.amazingposts.com/2007/08/famous-buddhist-quotes-sayings.html?m=1
http://www.suicidenote.info/
http://www.touchtrigonometry.org/
http://unrforliberty.com/wp-content/uploads/2011/02/Our-Discussion.jpg
http://blog.survivalstation.org/51-free-tools-to-stay-informed-and-invisible-on-the-internet-52778.html/comment-page-1
http://listverse.com/2010/10/10/top-10-best-novels-of-the-last-20-years/
http://www.pablo-ruiz-picasso.net/year.php?year=1921
http://www.frfrogspad.com/frogrules.htm
http://www.tricycle.com/blog/tibetan-book-dead-dmt-and-entering-void
http://www.howtogeek.com/56335/how-to-remove-vocals-from-music-tracks-using-audacity
http://www.musespace.com/notes/alternative/hobosigns.html
http://creativenerds.co.uk/inspiration/20-creative-resume-designs-which-will-amaze-any-potential-employer/
http://www.wikihow.com/Fry-a-Pork-Chop
http://timeoutboston.com/arts-culture/film/50757/the-50-most-controversial-movies-ever?page=0,1&cmpid=pmc%3Asu3
http://www.ohdanishbakery.com/
http://www.epicurious.com/articlesguides/holidays/christmas/christmascookieslemonsandwich
http://simplybeingmommy.com/2011/08/22/chicken-pot-muffins/
http://feistyfrugalandfabulous.com/2011/12/hamburger-potato-casserole/
http://allrecipes.com/recipe/jamaican-beef-patties/
http://homecooking.about.com/od/beefrecipes/r/blbeef94.htm
http://www.thekitchn.com/thekitchn/main-dish/recipe-fish-tacos-015838
http://www.foodtimeline.org/
http://rmc.library.cornell.edu/food/
http://www.good.is/post/seasonal-food-chart/
http://www.nikibone.com/recipe/soups.html
http://thenoshery.com/2009/03/29/a-two-bite-breakfast/
http://www.foodnetwork.com/recipes/saras-secrets/fried-rice-with-egg-recipe/index.html
http://spoonforkbacon.com/2012/01/baked-egg-boats/
http://www.germanfoods.org/consumer/recipes/oktoberfestrecipes.cfm
http://bunsinmyoven.com/2009/09/13/no-bake-chocolate-peanut-butter-oatmeal-bars/
http://www.bunsinmyoven.com/2009/09/13/no-bake-chocolate-peanut-butter-oatmeal-bars/
http://kitchencanister.blogspot.com/2009/10/crock-pot-beef-tenderloin.html
http://www.cooks.com/rec/view/0,1612,156176-246200,00.html
http://www.copykat.com/2009/05/18/hamburger-helper-beef-stroganof/
http://www.easysteakmarinades.net/Steak-Marinade-Recipe/index.php
http://allrecipes.com/recipe/easy-swedish-meatball-sauce/
http://www.realsimple.com/food-recipes/browse-all-recipes/beef-and-sweet-potato-turnovers-recipe-00000000027640/
http://www.realsimple.com/food-recipes/browse-all-recipes/asian-beef-and-cabbage-salad-00000000027639/
http://www.realsimple.com/food-recipes/browse-all-recipes/parmesean-meat-loaf-00000000027590/
http://www.realsimple.com/food-recipes/browse-all-recipes/mediterranean-beef-pitas-00000000027588/
http://www.realsimple.com/food-recipes/browse-all-recipes/pappardelle-with-spicy-meat-sauce-recipe-00000000027584/
http://www.foodnetwork.com/food/recipes_and_cooking/article/0,1000011,FOOD_32086_6050204_02,00.html
http://www.tasteofhome.com/Recipes/Bacon-Swiss-Meat-Loaf
http://www.tasteofhome.com/recipes/bacon-swiss-meat-loaf
http://notwithoutsalt.com/2009/08/06/greek-nachos/
http://www.salad-in-a-jar.com/family-recipes/bacon-wrapped-jalapeno-chicken-bites
http://www.recipelion.com/Deli-Salads/7-Easy-Chicken-Salad-Sandwiches/ct/1
http://www.stumbleupon.com/su/1AtHO0/:LlTX-_B:88ilKaTV/www.theironyou.com/2013/11/30-minute-butter-chicken-murgh-makhani.html/
http://www.menshealth.com/mhlists/health-benefits-of-tea/
http://www.whiteaugusttea.com/pages/A-%28very%29-Brief-History-of-Tea.html
http://www.fastcompany.com/1727971/coca-cola-secret-formula-revealed-this-american-life
http://allrecipes.com/HowTo/The-Perfect-Pantry/Detail.aspx?ARBMID=1751&ARFMTID=1
http://www.yummly.com/
http://jumk.de/bmi/vitamin-table.php
http://www.foodnetwork.com/holidays-and-parties/50-mashed-potatoes/index.html
http://www.rd.com/slideshows/15-secret-ingredient-tricks-to-transform-your-meals/#slideshow=slide8
http://www.informationisbeautiful.net/visualizations/snake-oil-supplements/
http://spoonforkbacon.com/2011/09/potato-rings-with-homemade-buttermilk-ranch/
http://www.ehow.com/list_5797996_ingredients-dipped-sweet-sour-chicken.html
http://www.fortysomething.ca/2012/05/15_basic_stir_fry_sauce_recipes.php
http://www.instructables.com/id/how-to-make-potstickers---from-scratch/
http://www.ytravelblog.com/campfire-cooking-recipes-tips-cooking-open-fire/
http://www.instructables.com/id/Pretzel-Bread/
http://foodshub.com/top-10-awesome-dips/
http://coolmaterial.com/roundup/webs-best-whiskey-drinks/
http://bulldogs.flashbog.com/?p=456
http://www.travelenvoy.com/wine/ohio.htm
http://www.webtender.com/handbook/games/
http://www.cliffordbay.co.nz/news/read_news.asp?NeID=25
http://www.stonebrookwinery.com/