-
Notifications
You must be signed in to change notification settings - Fork 6
/
output.html
7418 lines (7418 loc) · 325 KB
/
output.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! -->
<html>
<head>
<meta name="generator"
content="HTML Tidy for Linux/x86 (vers 25 March 2009), see www.w3.org" />
<meta http-equiv="Content-Type"
content="text/html; charset=us-ascii" />
<title>Bookmarks</title>
</head>
<body>
<h1>Bookmarks</h1>
<dl>
<dd>
<h3>Bookmarks Bar</h3>
<dl>
<dt>
<a href="https://mail.google.com/mail/?shva=1#inbox">Gmail
- Inbox (15577) - danny.ayers@gmail.com</a>
</dt>
<dt>
<a href="http://blog.mysema.com/2012/06/form-data-extraction-with-backbonejs.html">
Mysema Blog: Form Data Extraction with Backbone.js,
Underscore.js and jQuery</a>
</dt>
<dt>
<a href="http://www.youtube.com/watch?v=95_7l87prmI">The
Power of Art - Bernini (complete episode) - YouTube</a>
</dt>
<dt>
<a href="http://proguitarshop.com/andyscorner/strat-set-up-part-two">
Strat Set Up, Part Two | Pro Guitar Shop</a>
</dt>
<dt>
<a href="http://www.youtube.com/watch?v=HO-pX9PrzSI">59:04
Metalworks - The Knight's Taleby
EustaceMullinsResearchCenter 7,650 views</a>
</dt>
<dt>
<a href="http://www.youtube.com/watch?v=giUk9leseBs">Archimedes'
Secret (BBC Documentary) - YouTube</a>
</dt>
<dt>
<a href="http://www.youtube.com/watch?v=EHoulknJuT8">Hidden
Treasures of Australian Art - YouTube</a>
</dt>
<dt>
<a href="javascript:var%20title%20=%20window.location.href;if%20(title.indexOf('http://offliberty.com')%20==%200)%20{%20(function(){%20location.href='http://offliberty.com/#bookmarklet';%20})();%20}else%20{%20(function(){%20window.open('http://offliberty.com/#'+encodeURIComponent(location.href));%20})();%20}">
Offliberate this</a>
</dt>
<dt>
<a href="javascript:void((function(){var%20e=document.createElement('script');e.setAttribute('type','text/javascript');e.setAttribute('charset','UTF-8');e.setAttribute('src','http://assets.pinterest.com/js/pinmarklet.js?r='+Math.random()*99999999);document.body.appendChild(e)})());">
Pin It</a>
</dt>
<dd>
<h3>fusepool</h3>
<dl>
<dt>
<a href="http://127.0.0.1:8080/system/console/bundles">Fusepool
Platform - Bundles</a>
</dt>
<dt>
<a href="http://jsr311.java.net/nonav/javadoc/index.html">
Overview (jsr311-api 1.1 API)</a>
</dt>
<dt>
<a href="http://docs.jboss.org/resteasy/docs/1.0.0.GA/userguide/html/JAX-RS_Content_Negotiation.html">
Chapter 16. JAX-RS Content Negotiation</a>
</dt>
<dt>
<a href="http://jackson.codehaus.org/javadoc/jax-rs/1.0/javax/ws/rs/core/MediaType.html">
MediaType (JAX-RS 1.0)</a>
</dt>
<dt>
<a href="https://issues.apache.org/jira/browse/STANBOL">
Stanbol - ASF JIRA</a>
</dt>
<dt>
<a href="http://sioc-project.org/ontology">SIOC
Ontology | sioc-project.org</a>
</dt>
<dt>
<a href="http://xmlns.com/foaf/spec/">FOAF Vocabulary
Specification</a>
</dt>
<dt>
<a href="https://docs.google.com/spreadsheet/ccc?key=0AtOJIn40ry7edExDVjN6dEVhcmk3OFdMSnZrUlk1enc&pli=1#gid=0">
Hours Danny Ayers</a>
</dt>
<dt>
<a href="https://github.com/fusepool/stanbol">fusepool/stanbol</a>
</dt>
<dt>
<a href="http://blog.iks-project.eu/getting-started-with-apache-stanbol-enhancement-engine/">
Getting Started with Apache Stanbol Enhancement Engine
| IKS Blog â€" The Semantic CMS
Community</a>
</dt>
<dt>
<a href="http://askubuntu.com/questions/49557/how-do-i-install-maven-3">
installation - How do I install Maven 3? - Ask
Ubuntu</a>
</dt>
<dt>
<a href="http://jena.apache.org/documentation/javadoc/jena/">
Model (Apache Jena)</a>
</dt>
<dt>
<a href="http://incubator.apache.org/clerezza/mvn-site/org.apache.clerezza.rdf.core/apidocs/index.html">
Overview (Clerezza - SCB Core 0.12-incubating-SNAPSHOT
API)</a>
</dt>
<dt>
<a href="http://fmpp.sourceforge.net/freemarker/ref_directives.html">
FreeMarker Manual - Directive Reference</a>
</dt>
<dt>
<a href="https://github.com/fusepool/stanbol/tree/trunk/commons/security/usermanagement">
stanbol/commons/security/usermanagement at trunk
· fusepool/stanbol · GitHub</a>
</dt>
<dt>
<a href="http://127.0.0.1:8082/resource/jar%3Afile%3A/home/danny/.m2/repository/org/apache/clerezza/rdf.utils/0.13-incubating/rdf.utils-0.13-incubating-javadoc.jar!/org/apache/clerezza/rdf/utils/GraphNode.html">
GraphNode (Clerezza - SCB Utilities 0.13-incubating
API)</a>
</dt>
<dt>
<a href="file://localhost/home/danny/fusepool/stanbol/commons/web/base/target/site/apidocs/index.html">
Overview (Apache Stanbol Commons Web Base
0.11.0-SNAPSHOT API)</a>
</dt>
<dt>
<a href="http://incubator.apache.org/clerezza/mvn-site/org.apache.clerezza.web.fileserver/apidocs/index.html">
Overview (Clerezza - Jax-Rs File Server
0.9-incubating-SNAPSHOT API)</a>
</dt>
<dt>
<a href="http://jqueryui.com/dialog/#modal-form">Dialog
| jQuery UI</a>
</dt>
<dt>
<a href="http://www.xoxos.net/sem/sem.html">www.xoxos.net
rev.2011</a>
</dt>
<dt>
<a href="https://issues.apache.org/jira/browse/STANBOL-897">
[#STANBOL-897] Usermanager broken - ASF JIRA</a>
</dt>
<dt>
<a href="http://stanbol.apache.org/development/index.html#source_code">
Apache Stanbol - Development</a>
</dt>
<dt>
<a href="http://svn.apache.org/viewvc/stanbol/trunk/">[Apache-SVN]
Index of /stanbol/trunk</a>
</dt>
<dt>
<a href="http://www.stickk.com/members/commitment.php/cid/272618/action/ki/nid/89511#cjournal">
stickK âˆ' Commitment</a>
</dt>
<dt>
<a href="http://tools.ietf.org/html/draft-ietf-httpbis-p2-semantics-21#page-50">
draft-ietf-httpbis-p2-semantics-21 - Hypertext Transfer
Protocol (HTTP/1.1): Semantics and Content</a>
</dt>
<dt>
<a href="http://qunitjs.com/">QUnit</a>
</dt>
<dt>
<a href="https://docs.google.com/document/d/1lrvR3ze0yxpB2bfj2hqAsuYzHtmghtg227oZRQ8GG_0/edit">
Fusepool Hackathon 27.02.2013 - Google Drive</a>
</dt>
<dt>
<a href="http://tools.ietf.org/id/draft-ietf-httpbis-p2-semantics-22.html">
Hypertext Transfer Protocol (HTTP/1.1): Semantics and
Content</a>
</dt>
<dt>
<a href="http://marmotta.incubator.apache.org/">Apache
Marmotta -</a>
</dt>
<dt>
<a href="https://github.com/zaizi/apache-stanbol-client">
zaizi/apache-stanbol-client · GitHub</a>
</dt>
<dt>
<a href="http://vimeo.com/61415903">Developing Stanbol
Modules on Vimeo</a>
</dt>
<dt>
<a href="http://stackoverflow.com/questions/4248768/including-new-files-in-svn-diff">
Including new files in SVN diff - Stack Overflow</a>
</dt>
<dt>
<a href="https://stanbol.apache.org/development/security.html">
Apache Stanbol - Security Aware Coding</a>
</dt>
</dl>
</dd>
<dd>
<h3>regular</h3>
<dl>
<dt>
<a href="http://italian.about.com/od/pronunciation/a/aa020608a.htm">
The Italian Phonetic Alphabet - Alfabeto Fonetico
Italiano - Spelling Words In Italian</a>
</dt>
<dt>
<a href="http://www.uknova.com/wsgi/torrent/find?torrentspage=0">
Torrents - UKNova</a>
</dt>
<dt>
<a href="http://translate.google.com/#en|it|">Google
Translate</a>
</dt>
<dt>
<a href="http://www.bbc.co.uk/radio4/">BBC - Radio 4 -
Home</a>
</dt>
<dt>
<a href="http://achewood.com/">Achewood §
March 16, 2010</a>
</dt>
<dt>
<a href="http://www.dzone.com/links/">dzone.com - fresh
links for developers</a>
</dt>
<dt>
<a href="http://www.listentoyoutube.com/">Convert
YouTube to MP3, Get MP3 from YouTube video, FLV to MP3,
extract audio from YouTube, YouTube MP3 -
ListenToYouTube.com</a>
</dt>
<dt>
<a href="http://isohunt.com/">isoHunt
› the BitTorrent & P2P search
engine</a>
</dt>
<dt>
<a href="http://twitter.com/">Twitter / Home</a>
</dt>
<dt>
<a href="http://www.semanticoverflow.com/">Semantic
Overflow</a>
</dt>
<dt>
<a href="http://guidatv.sky.it/guidatv/grid.html">Non
solo stasera in Tv, tutti i programmi di oggi con la
Guida TV Sky - Sky.it</a>
</dt>
<dt>
<a href="http://d-cent.org/fsw2011/">Federated Social
Web Europe</a>
</dt>
<dt>
<a href="http://www.facebook.com/event.php?eid=144730445594302">
Festa di apertura di giornaledibarganews.com (51)</a>
</dt>
<dt>
<a href="http://torrentz.eu/">Torrent Search Engine</a>
</dt>
<dt>
<a href="http://trunk.ly/danja/">Home | Trunk.ly: Never
forget a link</a>
</dt>
<dt>
<a href="http://postpo.st/danja/">Postpost - Danny
Ayers</a>
</dt>
<dt>
<a href="http://www.techmeme.com/">Techmeme</a>
</dt>
<dt>
<a href="javascript:(function(){$(%27.profile-details%27).append(%27%3Ca%20href=\%22/statuses/user_timeline/%27+$(%27[data-user-id]%27).attr(%27data-user-id%27)+%27.rss\%22%3ERSS%3C/a%3E%27);})()">
Twitter RSS</a>
</dt>
<dt>
<a href="http://zend2.com/">Online Anonymous Proxy</a>
</dt>
<dt>
<a href="http://zend2.com/Def.php?u=Oi8vd3d3Lmdvb2dsZS5jb20vc2VhcmNo&b=5">
danny - Google Search</a>
</dt>
<dt>
<a href="http://www.get-tuned.com/online_mandolin_tuner.php">
Online Mandolin Tuner</a>
</dt>
<dt>
<a href="http://www.archive.org/">Internet Archive:
Digital Library of Free Books, Movies, Music &
Wayback Machine</a>
</dt>
<dt>
<a href="http://dsp-book.narod.ru/books.html">Literature
on DSP</a>
</dt>
<dt>
<a href="http://waylander101.blogspot.com/2010/09/key-characters-inthe-history-of.html">
Random Musings: Key Characters inThe History of
Computing</a>
</dt>
<dt>
<a href="https://www.abebooks.co.uk/servlet/BuyerOrderTrackPL">
BuyerOrderTrackPL</a>
</dt>
<dt>
<a href="http://www.usedbooksearch.co.uk/UK.htm">Used
Books - UK</a>
</dt>
<dt>
<a href="http://wwwapps.ups.com/WebTracking/processRequest?HTMLVersion=5.0&Requester=NES&AgreeToTermsAndConditions=yes&loc=de_DE&tracknum=1ZE9152V6899692744">
UPS: Kontrollinformationen</a>
</dt>
<dt>
<a href="https://workflowy.com/#">WorkFlowy - Organize
your brain.</a>
</dt>
<dt>
<a href="http://meteo.excite.it/previsioni/europa/italia/toscana/castiglione%20di%20garfagnana/1796">
Italia - Europa - Previsioni - Meteo - Excite
Italia</a>
</dt>
<dt>
<a href="http://www.italymag.co.uk/italy/place/tuscany">
Tuscany | ITALY Magazine</a>
</dt>
<dt>
<a href="http://tuscany.angloinfo.com/index.php">AngloINFO
Tuscany: living in and moving to Tuscany, Italy</a>
</dt>
<dt>
<a href="http://www.emsc-csem.org/Earthquake/">Earthquakes
today | Earthquake today | earthquake | earthquakes</a>
</dt>
<dt>
<a href="http://cnt.rm.ingv.it/">INGV - CNT -
Earthquake List</a>
</dt>
<dt>
<a href="https://workflowy.com/">WorkFlowy - Organize
your brain.</a>
</dt>
<dt>
<a href="http://en.savefrom.net/">Free Download from
Rapidshare, FileFactory. Free Download Videos from
Youtube, Google, Metacafe - SaveFrom.net</a>
</dt>
<dt>
<a href="javascript:(function(){f='http://panmental.de/symbols/';a=function(){if(!window.open(f,'USM','height=435,width=240,title=no,location=no,scrollbars=no,menubars=no,navigation=no,statusbar=no,directories=no,resizable=no,status=no,toolbar=no,menuBar=no'))location.href=f};if(/Firefox/.test(navigator.userAgent)){setTimeout(a,0)}else{a()}})()">
☆USM★</a>
</dt>
<dt>
<a href="https://medium.com/">Medium</a>
</dt>
<dt>
<a href="https://svbtle.com/">Svbtle</a>
</dt>
</dl>
</dd>
<dd>
<h3>manos</h3>
<dl>
<dt>
<a href="https://code.google.com/p/calipso/">calipso -
Open Source Adaptive Case Management and Workflow -
Google Project Hosting</a>
</dt>
<dt>
<a href="http://resthub.org/">RESThub â€"
RESThub, your Spring + Backbone.js stack</a>
</dt>
<dt>
<a href="http://angularjs.org/">AngularJS
â€" Superheroic JavaScript MVW Framework</a>
</dt>
<dt>
<a href="http://backbonejs.org/">Backbone.js</a>
</dt>
</dl>
</dd>
<dd>
<h3>50</h3>
<dl>
<dt>
<a href="http://www.merriam-webster.com/dictionary/application">
Application - Definition and More from the Free
Merriam-Webster Dictionary</a>
</dt>
<dt>
<a href="http://stackoverflow.com/questions/297005/what-is-the-gold-standard-for-website-apis-twitter-flickr-facebook-etc">
rest - What is the gold standard for website APIs?
Twitter, Flickr, Facebook, etc - Stack Overflow</a>
</dt>
<dt>
<a href="http://www.programmableweb.com/faq">ProgrammableWeb
- Frequently Asked Questions</a>
</dt>
<dt>
<a href="http://blog.whatfettle.com/2007/01/11/good-web-apis-are-just-web-sites/">
Whatfettle - Paul Downey (psd)</a>
</dt>
<dt>
<a href="http://roy.gbiv.com/untangled/2008/rest-apis-must-be-hypertext-driven">
REST APIs must be hypertext-driven »
Untangled</a>
</dt>
<dt>
<a href="http://www.intertwingly.net/blog/2008/10/21/Progressive-Disclosure">
Sam Ruby: Progressive Disclosure</a>
</dt>
<dt>
<a href="http://www.ics.uci.edu/~fielding/pubs/dissertation/rest_arch_style.htm">
Fielding Dissertation: CHAPTER 5: Representational
State Transfer (REST)</a>
</dt>
<dt>
<a href="http://www.slideshare.net/ldodds/creating-apis-over-rdf">
Creating APIs over RDF</a>
</dt>
<dt>
<a href="http://www.w3.org/TR/2013/WD-ldp-20130307/">Linked
Data Platform 1.0</a>
</dt>
<dt>
<a href="http://blog.ldodds.com/2013/03/04/what-does-a-dataset-contain/">
What Does Your Dataset Contain? | Lost Boy</a>
</dt>
<dt>
<a href="https://code.google.com/p/linked-data-api/wiki/Specification">
Specification - linked-data-api - Linked Data API
Specification - API and formats to simplify use of
linked data by web-developers - Google Project
Hosting</a>
</dt>
<dt>
<a href="http://data.gov.uk/blog/guest-post-developers-guide-linked-data-apis-jeni-tennison">
Guest Post: A Developers' Guide to the Linked Data APIs
- Jeni Tennison | data.gov.uk</a>
</dt>
<dt>
<a href="http://www.jenitennison.com/blog/node/170">Using
"Punning" to Answer httpRange-14 | Jeni's Musings</a>
</dt>
<dt>
<a href="http://www.crummy.com/2012/12/21/1">RESTful
Web APIs</a>
</dt>
<dt>
<a href="http://amundsen.com/blog/archives/1139">mca
blog [A New Book Project Ahead ]</a>
</dt>
<dt>
<a href="http://tech.groups.yahoo.com/group/rest-discuss/message/6726">
rest-discuss : Message: Re: [rest-discuss] Re: Language
Negotiation</a>
</dt>
<dt>
<a href="http://tools.ietf.org/id/draft-ietf-httpbis-p2-semantics-22.html">
Hypertext Transfer Protocol (HTTP/1.1): Semantics and
Content</a>
</dt>
</dl>
</dd>
<dd>
<h3>Seki</h3>
<dl>
<dt>
<a href="http://www.gethifi.com/blog/how-to-produce-xhtml-10-strict-markup-with-tinymce">
How to produce XHTML 1.0 Strict markup with TinyMCE</a>
</dt>
<dt>
<a href="http://blog.nodejitsu.com/6-must-have-nodejs-modules">
6 Must Have Node.js Modules â€"
blog.nodejitsu.com</a>
</dt>
<dt>
<a href="http://localhost:8888/Hello">Hello</a>
</dt>
<dt>
<a href="http://dannyayers.com/2011/08/26/Data-Oriented-Web-Browser">
Danny on : Data-Oriented Web Browser</a>
</dt>
<dt>
<a href="http://mbraak.github.com/jqTree/#examples">jqTree</a>
</dt>
<dt>
<a href="http://jqueryui.com/accordion/">Accordion |
jQuery UI</a>
</dt>
<dt>
<a href="http://jqueryui.com/tabs/">Tabs | jQuery
UI</a>
</dt>
<dt>
<a href="https://github.com/antoniogarrote/rdfstore-js#readme">
antoniogarrote/rdfstore-js · GitHub</a>
</dt>
<dt>
<a href="http://dannyayers.com/2011/08/26/Data-Oriented-Web-Browser">
Danny on : Data-Oriented Web Browser</a>
</dt>
<dt>
<a href="https://github.com/antoniogarrote/rdfstore-js#readme">
antoniogarrote/rdfstore-js · GitHub</a>
</dt>
<dt>
<a href="http://mbraak.github.com/jqTree/#examples">jqTree</a>
</dt>
<dt>
<a href="http://localhost:3030/seki/sparql?query=SELECT+*+WHERE+%7B+GRAPH+%3Fgraph+%7B+%3Fs+%3Fp+%3Fo+%7D+%7D&output=xml&stylesheet=%2Fxml-to-html.xsl">
SPARQLer Query Results</a>
</dt>
<dt>
<a href="http://www.wasab.dk/morten/2006/07/sparql-timeline/">
Morten Høybye Frederiksen » 2006
» July » SPARQL Timeline</a>
</dt>
<dt>
<a href="http://bergie.iki.fi/blog/createjs-in-2013/">Create.js
in 2013 - Henri Bergius in Helsinki, Finland</a>
</dt>
<dt>
<a href="http://createjs.org/guide/">Create.js -
Create.js Integration Guide</a>
</dt>
<dt>
<a href="https://github.com/antono/connect-cors">antono/connect-cors
· GitHub</a>
</dt>
<dt>
<a href="https://github.com/senchalabs/connect#readme">senchalabs/connect
· GitHub</a>
</dt>
<dt>
<a href="http://howtonode.org/connect-it">Just Connect
it Already - How To Node - NodeJS</a>
</dt>
<dt>
<a href="http://www.html5rocks.com/en/tutorials/cors/">Using
CORS - HTML5 Rocks</a>
</dt>
<dt>
<a href="http://stephensugden.com/middleware_guide/#examples">
A short guide to Connect Middleware</a>
</dt>
<dt>
<a href="http://project70.com/nodejs/understanding-connect-and-middleware/">
Understanding Connect and Middleware : Node.js
tutorials at Project 70</a>
</dt>
<dt>
<a href="http://en.wikipedia.org/wiki/Cross-Origin_Resource_Sharing">
Cross-origin resource sharing - Wikipedia, the free
encyclopedia</a>
</dt>
<dt>
<a href="http://viejs.org/">Semantic Interaction
Framework - VIE.js</a>
</dt>
<dt>
<a href="https://help.github.com/articles/fork-a-repo">Fork
A Repo · github:help</a>
</dt>
<dt>
<a href="http://www.w3.org/TR/xhtml-rdfa-primer/">RDFa
1.1 Primer</a>
</dt>
<dt>
<a href="http://www.berriart.com/sidr/">Sidr - A jQuery
plugin for creating side menus</a>
</dt>
<dt>
<a href="http://en.wikipedia.org/wiki/Programming_paradigm">
Programming paradigm - Wikipedia, the free
encyclopedia</a>
</dt>
<dt>
<a href="http://linkeddatabook.com/editions/1.0/">Linked
Data: Evolving the Web into a Global Data Space</a>
</dt>
<dt>
<a href="http://imadeit.davidjanes.com/post/40427862735/information-architecture-of-the-home-list">
I Made It (Information Architecture of the Home
(List))</a>
</dt>
<dt>
<a href="https://dvcs.w3.org/hg/gld/raw-file/default/adms/index.html">
Asset Description Metadata Schema (ADMS)</a>
</dt>
<dt>
<a href="http://docs.opencv.org/">Welcome to opencv
documentation! â€" OpenCV 2.4.5.0
documentation</a>
</dt>
<dt>
<a href="http://opencv.org/">OpenCV | OpenCV</a>
</dt>
<dt>
<a href="http://blog.rassemblr.com/2011/07/camelot-non-blocking-webcam-frame-grabbing-and-real-time-controlling-node-js-module/">
Camelot: Non-Blocking Webcam Frame Grabbing and Real
Time Controlling Node.js Module | rassembling bits</a>
</dt>
<dt>
<a href="https://github.com/wearefractal/camera#readme">
wearefractal/camera · GitHub</a>
</dt>
<dt>
<a href="http://www.w3.org/TR/powder-grouping/#byIRI">Protocol
for Web Description Resources (POWDER): Grouping of
Resources</a>
</dt>
<dt>
<a href="https://github.com/alohaeditor/Aloha-Editor/issues/504">
image plugin not working from CDN · Issue
#504 · alohaeditor/Aloha-Editor</a>
</dt>
<dt>
<a href="http://blog.andyet.com/2010/oct/29/building-a-single-page-app-with-backbonejs-undersc/">
Building a single page app with Backbone.js,
underscore.js and jQuery | &yet | the blog</a>
</dt>
<dt>
<a href="http://www.aloha-editor.org/howto-store-data-with-aloha-editor-ajax.php">
Aloha Editor - HTML5 WYSIWYG Editor</a>
</dt>
<dt>
<a href="http://lov.okfn.org/dataset/lov/search/#s=asset">
(LOV) Linked Open Vocabularies</a>
</dt>
<dt>
<a href="http://www.w3.org/TR/2013/WD-ldp-20130307/">Linked
Data Platform 1.0</a>
</dt>
<dt>
<a href="http://www.w3.org/TR/json-ld/">JSON-LD 1.0</a>
</dt>
<dt>
<a href="http://mattgemmell.com/2013/05/22/designing-blogs-for-readers/">
Designing blogs for readers - Matt Gemmell</a>
</dt>
<dt>
<a href="http://mattgemmell.com/2011/09/12/blogging-with-octopress/">
Blogging With Octopress - Matt Gemmell</a>
</dt>
<dt>
<a href="http://jetlogs.org/2007/11/11/auto-saving-with-jquery/">
Jetlogs.org » Auto-saving with jQuery</a>
</dt>
<dt>
<a href="https://www.droptask.com/">DropTask - Visual
Task Management for Individuals and Teams</a>
</dt>
<dt>
<a href="http://www.collaborade.com/">Collaborade - Get
projects and tasks done with your team</a>
</dt>
<dt>
<a href="http://ace.ajax.org/#nav=about">Ace - The High
Performance Code Editor for the Web</a>
</dt>
<dt>
<a href="https://github.com/technoweenie/node-chain-gang/blob/master/README.md">
node-chain-gang/README.md at master ·
technoweenie/node-chain-gang · GitHub</a>
</dt>
<dt>
<a href="http://tomazkovacic.com/blog/122/evaluating-text-extraction-algorithms/">
Evaluating Text Extraction Algorithms | My tech
blog.</a>
</dt>
<dt>
<a href="https://code.google.com/p/boilerpipe/">boilerpipe
- Boilerplate Removal and Fulltext Extraction from HTML
pages - Google Project Hosting</a>
</dt>
<dt>
<a href="https://code.google.com/p/boilerpipe/wiki/QuickStart">
QuickStart - boilerpipe - How to get started -
Boilerplate Removal and Fulltext Extraction from HTML
pages - Google Project Hosting</a>
</dt>
<dt>
<a href="http://stackoverflow.com/questions/3732109/simple-http-server-in-java-using-only-java-se-api">
simple HTTP server in Java using only Java SE API -
Stack Overflow</a>
</dt>
<dt>
<a href="http://www.neon-project.org/deliverables/WP4/NeOn_2007_D4.4.1.pdf">
www.neon-project.org/deliverables/WP4/NeOn_2007_D4.4.1.pdf</a>
</dt>
<dt>
<a href="https://github.com/airbnb/polyglot.js#readme">airbnb/polyglot.js
· GitHub</a>
</dt>
<dt>
<a href="http://www.kickstarter.com/projects/johnonolan/ghost-just-a-blogging-platform">
Ghost: Just a Blogging Platform by John O'Nolan
â€" Kickstarter</a>
</dt>
<dt>
<a href="http://tryghost.org/">Ghost: Just a Blogging
Platform</a>
</dt>
<dt>
<a href="http://requirejs.org/">RequireJS</a>
</dt>
<dt>
<a href="http://www.senchalabs.org/connect/static.html">
Connect - High quality middleware for node.js</a>
</dt>
<dt>
<a href="https://github.com/visionmedia/log.js#readme">visionmedia/log.js
· GitHub</a>
</dt>
<dt>
<a href="http://tjholowaychuk.com/post/18418627138/connect-2-0">
Connect 2.0 - TJ Holowaychuk</a>
</dt>
<dt>
<a href="http://stackoverflow.com/questions/5009324/node-js-nginx-and-now">
node.js + nginx - And now? - Stack Overflow</a>
</dt>
</dl>
</dd>
<dd>
<h3>me</h3>
<dl>
<dt>
<a href="http://wiki.aksw.org/Projects/RDFaCE">AKSW :
Projects / RD Fa CE</a>
</dt>
<dt>
<a href="https://workflowy.com/">WorkFlowy - Organize
your brain.</a>
</dt>
<dt>
<a href="http://ace.ajax.org/#nav=embedding">Ace - The
High Performance Code Editor for the Web</a>
</dt>
<dt>
<a href="http://blog.nodejitsu.com/6-must-have-nodejs-modules">
6 Must Have Node.js Modules â€"
blog.nodejitsu.com</a>
</dt>
<dt>
<a href="http://fiverr.com/gigs/search?utf8=%E2%9C%93&query=music+video&x=-1198&y=-106">
Fiverr / Search results for 'flirt'</a>
</dt>
<dt>
<a href="http://fiverr.com/davidcarelse/promote-your-youtube-music-video-to-5400-italian-people-on-facebook">
Davidcarelse will promote your youtube music video to
6000+ italian people on facebook for $5, only on
fiverr.com</a>
</dt>
<dt>
<a href="http://fiverr.com/kdawg760/create-a-3-minute-music-video-with-video-footage-and-music-you-provide">
Kdawg760 will create a 3 minute music video with video
footage and music you provide for $5, only on
fiverr.com</a>
</dt>
<dt>
<a href="http://mmvd.aicent.net/telstra/html/main.jsp">MMS
Retrieval</a>
</dt>
<dt>
<a href="https://author.wiley.com/CGI-BIN/LANSAWEB?PROCFUN+AUTHOR+AUTFN14">
Statement list</a>
</dt>
</dl>
</dd>
<dd>
<h3>wood</h3>
<dl>
<dt>
<a href="http://www.rpwoodwork.com/blog/">Heartwood</a>
</dt>
<dt>
<a href="http://www.toolsforworkingwood.com/store/blog/">
Tools for Working Wood Blogs</a>
</dt>
<dt>
<a href="http://hocktools.wordpress.com/">The
Sharpening Blog | Mostly about Sharpening for
Woodworkers</a>
</dt>
<dt>
<a href="http://www.lostartpress.com/Mouldings_in_Practice_p/bk-mip.htm">
Mouldings in Practice</a>
</dt>
<dt>
<a href="http://musingsfrombigpink.blogspot.it/2010/12/snipes-bill-planes-introduction.html">
Musings from Big Pink: Snipes Bill Planes: an
introduction</a>
</dt>
<dt>
<a href="http://toolerable.blogspot.it/2012/09/spruced-up-rabbet-plane-video.html">
Toolerable: Spruced-up Rabbet Plane - VIDEO</a>
</dt>
<dt>
<a href="http://www.popularwoodworking.com/woodworking-blogs/chris-schwarz-blog">
Chris Schwarz Blog</a>
</dt>
<dt>
<a href="http://toolerable.blogspot.it/2012/10/bonus-tips-on-sharpening.html">
Toolerable: Bonus Tips on Sharpening</a>
</dt>
<dt>
<a href="http://musingsfrombigpink.blogspot.it/search?updated-max=2012-10-01T12:53:00-04:00&max-results=7">
Musings from Big Pink</a>
</dt>
<dt>
<a href="http://handtooljourney.wordpress.com/">Hand
Tool Journey-A woodworking show of hands</a>
</dt>
<dt>
<a href="http://kk.org/cooltools/">Cool Tools</a>
</dt>
<dt>
<a href="http://simplybearings.co.uk/shop/Loose+Balls+&+Rollers-All+Hardened+Steel+Ball+Bearings/c23_5005/index.html">
Buy from our huge range of steel, stainless steels and
plastic ball bearings</a>
</dt>
<dd>
<h3>puppet</h3>
<dl>
<dt>
<a href="http://phys.org/news/2013-01-world-wide-web-creator-access.html">
World wide web creator sees open access future for
academic publishing</a>
</dt>
<dt>
<a href="http://www.puppetsinprague.eu/instructions/how_to_start.html">
Puppets in Prague. Technical instructions for
puppet making, marionette carving in Prague, Czech
Republic</a>
</dt>
<dt>
<a href="http://bellsouthpwp.net/g/k/gkoepke/hartz/hartztips.htm">
Conrad's Info & Tips</a>
</dt>
<dt>
<a href="http://bellsouthpwp.net/g/k/gkoepke/hartz/hartztips.htm">
Conrad's Info & Tips</a>
</dt>
<dt>
<a href="http://festivalentertainment.com.au/ideas-blog/puppetry-workshop-woodend/">
A Step-by-Step Guide for Puppet Makers- Festival
Entertainment</a>
</dt>
<dt>
<a href="http://marionette-maker.blogspot.it/">Diary
of a Marionette Maker</a>
</dt>
<dt>
<a href="http://www.puppets.uk.com/master.htm">Puppet
Tips</a>
</dt>
<dt>
<a href="http://www.puppets.uk.com/master.htm">Puppet
Tips</a>
</dt>
<dt>
<a href="http://marionette-maker.blogspot.it/">Diary
of a Marionette Maker</a>
</dt>
<dt>
<a href="http://www.puppets.uk.com/secrets.htm">New
Site TEMPLATE Backstage</a>
</dt>
<dt>
<a href="http://www.etsy.com/search?q=Marionette&view_type=gallery&ship_to=IT">
marionette on Etsy, a global handmade and vintage
marketplace.</a>
</dt>
</dl>
</dd>
<dt>
<a href="http://en.wikipedia.org/wiki/Sator_Square">Sator
Square - Wikipedia, the free encyclopedia</a>
</dt>
<dt>
<a href="https://www.google.com/search?q=wheat&source=lnms&tbm=isch&sa=X&ei=g1uWUcL6OMjqPLiUgNAK&ved=0CAoQ_AUoAQ&biw=1680&bih=754">
wheat - Google Search</a>
</dt>
<dt>
<a href="https://www.google.com/search?q=hen&source=lnms&tbm=isch&sa=X&ei=51eWUZKAJMG4O6XcgOAG&ved=0CAoQ_AUoAQ&biw=1680&bih=754#imgrc=RwElTW3CgJyOEM%3A%3BR695XB9IMKAQGM%3Bhttp%253A%252F%252Fwww.hen.com%252Fhen.jpg%3Bhttp%253A%252F%252Fwww.hen.com%252F%3B655%3B600">
hen - Google Search</a>
</dt>
</dl>
</dd>
<dd>
<h3>soon</h3>
<dl>
<dt>
<a href="http://www.thomann.de/gb/mythomann_tracking_16863699.html">
Parcel Tracking - Thomann UK Cyberstore</a>
</dt>
<dt>
<a href="http://www.youtube.com/watch?v=LcOempNj6_g">Blues
Lead Guitar: Five Blues Licks #3of20 (Guitar Lesson
BL-013) How to play - YouTube</a>
</dt>
<dt>
<a href="http://www.justinguitar.com/">Free guitar
lessons : Complete Beginners Method and loads of Blues,
Jazz and rock : Learn how to play Guitar free here!</a>
</dt>
<dt>
<a href="http://dotheweb.posterous.com/functional-testing-for-nodejs-using-mocha-and">
Functional Testing For Node.js Using Mocha and
Zombie.js - Do the Web</a>
</dt>
<dt>
<a href="http://www.justinguitar.com/en/RF-001-DontFearTheReaper.php">
Free Guitar Lessons - Guitar Lick Of The Week</a>
</dt>
<dt>
<a href="https://www.youtube.com/watch?v=_xMvw9lCOBw">Mark
Lanegan - Hit The City - YouTube</a>
</dt>
<dt>
<a href="http://www.crossfadr.com/">Crossfadr</a>
</dt>
<dt>
<a href="http://www.moonrakerknives.co.uk/razoredge.html">
Razor Edge</a>
</dt>
<dt>
<a href="https://www.torproject.org/projects/torbrowser.html.en#More">
Tor Browser Bundle</a>
</dt>
<dt>
<a href="http://dannyayers.com/2012/01/18/Introducing-JEdwards">
Danny on : Introducing JEdwards</a>
</dt>
<dt>
<a href="http://www.eclipse.org/Xtext/7languagesDoc.html#scripting">
Xtext - Language Development Made Easy!</a>
</dt>
<dt>
<a href="http://earthshineelectronics.com/products/deluxe-arduino-starter-kit">
Arduino Starter Kit | Earthshine Electronics</a>
</dt>
<dt>
<a href="http://www.raspberrypi.org/">Raspberry Pi | An
ARM GNU/Linux box for $25. Take a byte!</a>
</dt>
<dt>
<a href="https://www.coursera.org/course/conrob">Control
of Mobile Robots | Coursera</a>
</dt>
<dt>
<a href="http://blogs.wsj.com/speakeasy/2012/02/20/why-quantum-theory-is-so-misunderstood/">
Why Quantum Theory Is So Misunderstood - Speakeasy -
WSJ</a>
</dt>
<dt>
<a href="http://galassoguitars.blogspot.it/">Galasso
Guitars</a>
</dt>
<dt>
<a href="http://atideswellman.wordpress.com/2005/11/04/tideswell-band-tidza-processional/">
Tideswell Band â€" Tidza Processional |
Tideswellman</a>
</dt>
<dt>
<a href="http://en.wiktionary.org/wiki/syntheton">syntheton
- Wiktionary</a>
</dt>
<dt>
<a href="http://www.youtube.com/watch?v=lQ6YTU5kGXw&feature=share">
Closing Plenary, Cochrane UK & Ireland 21st
Anniversary Symposium - YouTube</a>
</dt>
<dt>
<a href="http://lifehackninja.com/">Life Hack Ninja |
life tips, self improvement, and throwing stars</a>
</dt>
<dt>
<a href="http://www.cs.toronto.edu/~sheila/2502/f06/slides/">
CSC486/2502: Knowledge Representation and Reasoning,
Fall 2006</a>
</dt>
<dt>
<a href="http://memorize.com/us-states-map">Learn: US
States Map - Memorize.com - Remember and Understand</a>
</dt>
<dt>
<a href="http://vimeo.com/26718047">The Shock Doctrine
- Naomi Klein on Vimeo</a>
</dt>
<dt>
<a href="http://www.didattica.org/">Didattica: Home
Page</a>
</dt>
<dt>
<a href="http://www.kentuckytourism.com/things_to_do/featured_attractions/icehouse-gallery/5549/">
Icehouse Gallery - Georgetown, Kentucky</a>