-
Notifications
You must be signed in to change notification settings - Fork 69
/
repo.py
9194 lines (9185 loc) · 489 KB
/
repo.py
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
import collections
import os
def loadMovieLens(path='movielens'):
# get titles
movies = {}
for line in open(os.path.join(path, 'u.item')):
id, title = line.split('|')[0:2]
movies[id] = title
# load data
prefs = collections.defaultdict(dict)
for line in open(os.path.join(path, 'u.data')):
user, movieId, rating, ts = line.split('\t')
prefs[user][movies[movieId]] = float(rating)
return prefs
def deliData():
"""returns a cached copy of del.icio.us data, outdated, but useful for
testing"""
return \
{ u'Bismarck84': [ { 'count': '',
'description': u'Project Euler',
'dt': u'2008-11-10T13:34:07Z',
'extended': '',
'hash': '',
'href': u'http://projecteuler.net/index.php?section=problems',
'tags': '',
'user': u'Bismarck84'},
{ 'count': '',
'description': u'MercadoLibre: Sandisk Micrsd 8gb Con Lector Original-Env Gratis* - $ 149.99',
'dt': u'2008-11-07T14:47:37Z',
'extended': '',
'hash': '',
'href': u'http://articulo.mercadolibre.com.ar/MLA-43785922-_JM',
'tags': '',
'user': u'Bismarck84'},
{ 'count': '',
'description': u'RENAULT 19 RE 98 DIESEL en Capital Federal - Autos en Autofoco.com',
'dt': u'2008-11-07T13:46:46Z',
'extended': '',
'hash': '',
'href': u'http://www.autofoco.com/aviso-Autos-Turismos-RENAULT-19-Capital_Federal-det-493358.aspx',
'tags': '',
'user': u'Bismarck84'},
{ 'count': '',
'description': u'FORD ESCORT LX en Capital Federal - Autos en Autofoco.com',
'dt': u'2008-11-07T13:46:28Z',
'extended': '',
'hash': '',
'href': u'http://www.autofoco.com/aviso-Autos-Turismos-FORD-ESCORT-Capital_Federal-det-513838.aspx',
'tags': '',
'user': u'Bismarck84'},
{ 'count': '',
'description': u'FORD ORION en Capital Federal - Autos en Autofoco.com',
'dt': u'2008-11-07T13:38:13Z',
'extended': '',
'hash': '',
'href': u'http://www.autofoco.com/aviso-Autos-Turismos-FORD-ORION-Capital_Federal-det-507318.aspx',
'tags': '',
'user': u'Bismarck84'},
{ 'count': '',
'description': u'FORD ESCORT LX en Capital Federal - Autos en Autofoco.com',
'dt': u'2008-11-07T13:33:44Z',
'extended': '',
'hash': '',
'href': u'http://www.autofoco.com/aviso-Autos-Turismos-FORD-ESCORT-NAFTA-Capital_Federal-det-486637.aspx',
'tags': '',
'user': u'Bismarck84'},
{ 'count': '',
'description': u'FORD ESCORT LX CON AIRE en Capital Federal - Autos en Autofoco.com',
'dt': u'2008-11-07T13:33:10Z',
'extended': '',
'hash': '',
'href': u'http://www.autofoco.com/aviso-Autos-Turismos-FORD-ESCORT-GNC-Capital_Federal-det-511522.aspx',
'tags': '',
'user': u'Bismarck84'},
{ 'count': '',
'description': u'Stu Nicholls | CSSplay | Experiments with cascading style sheets | Doing it with Style',
'dt': u'2008-11-07T11:47:20Z',
'extended': '',
'hash': '',
'href': u'http://www.cssplay.co.uk/',
'tags': u'webdev webdesign web2.0 web tutorials tutorial tips tools',
'user': u'Bismarck84'},
{ 'count': '',
'description': u"Opinion: FWIW -- The origins of 'Net shorthand",
'dt': u'2008-11-07T11:33:27Z',
'extended': '',
'hash': '',
'href': u'http://www.computerworld.com/action/article.do?command=printArticleBasic&taxonomyName=Networking+and+Internet&articleId=9118481&taxonomyId=16',
'tags': '',
'user': u'Bismarck84'},
{ 'count': '',
'description': u'The Malleus Maleficarum',
'dt': u'2008-11-06T20:07:25Z',
'extended': '',
'hash': '',
'href': u'http://www.malleusmaleficarum.org/',
'tags': u'rpg reference history free culture books supernatural witchcraft torture witch witches religion',
'user': u'Bismarck84'},
{ 'count': '',
'description': u'Aire y Luz \xbb Blog Archive \xbb Buenos Aires 2.0',
'dt': u'2008-11-06T17:19:06Z',
'extended': '',
'hash': '',
'href': u'http://www.aireyluz.com/2008/10/buenos-aires-20/',
'tags': '',
'user': u'Bismarck84'},
{ 'count': '',
'description': u'Comment foirer une photo (119 photos) \xbb Dilidou.com - c\u2019est le coin de la bonne humeur. Des trucs, des photos, des vid\xe9os, des jeux, des stars',
'dt': u'2008-11-06T17:18:22Z',
'extended': '',
'hash': '',
'href': u'http://dilidou.com/2008/10/30/comment_foirer_une_photo_119_photos.html',
'tags': u'pictures photos internet images humor gallery funny fun picture',
'user': u'Bismarck84'},
{ 'count': '',
'description': u'Search About Face 3 The Essentials of Interaction Design in ebookee.com',
'dt': u'2008-11-06T12:29:57Z',
'extended': '',
'hash': '',
'href': u'http://www.ebookee.com.cn/search.php?cx=005418540955315608444%3Ahzcbi9hnswe&cof=FORID%3A11&q=About+Face+3%3A+The+Essentials+of+Interaction+Design&sa=Search#1108',
'tags': '',
'user': u'Bismarck84'},
{ 'count': '',
'description': u'FIAT TIPO sx full aire direccion en Capital Federal - Autos en Autofoco.com',
'dt': u'2008-11-05T19:47:10Z',
'extended': '',
'hash': '',
'href': u'http://www.autofoco.com/aviso-Autos-Turismos-FIAT-TIPO-GNC-Capital_Federal-det-493395.aspx',
'tags': '',
'user': u'Bismarck84'},
{ 'count': '',
'description': u'FIAT 128 Super Europa en Capital Federal - Autos en Autofoco.com',
'dt': u'2008-11-05T19:45:31Z',
'extended': '',
'hash': '',
'href': u'http://www.autofoco.com/aviso-Autos-Turismos-FIAT-128-GNC-Capital_Federal-det-503144.aspx',
'tags': '',
'user': u'Bismarck84'}],
u'BrianNielsen': [ { 'count': '',
'description': u'Project Euler',
'dt': u'2008-11-10T13:37:34Z',
'extended': '',
'hash': '',
'href': u'http://projecteuler.net/index.php?section=problems',
'tags': u'puzzles puzzle programming problems math algorithm',
'user': u'BrianNielsen'},
{ 'count': '',
'description': u'BTS: A guide for higher difficulties for standard speed and maps (emperor+) - CivFanatics',
'dt': u'2008-11-06T16:24:52Z',
'extended': '',
'hash': '',
'href': u'http://www.civfanatics.com/civ4/strategy/high_difficulties.php',
'tags': u'Civ4 Civilization strategy games',
'user': u'BrianNielsen'},
{ 'count': '',
'description': u'TV 2 Sputnik',
'dt': u'2008-11-06T09:28:09Z',
'extended': '',
'hash': '',
'href': u'http://sputnik.tv2.dk/?portal',
'tags': u'TV2 tv sputnik',
'user': u'BrianNielsen'},
{ 'count': '',
'description': u"MSI -- MICRO-STAR INT'L CO., LTD.",
'dt': u'2008-11-05T14:00:31Z',
'extended': u'Drivers for mybook laptop',
'hash': '',
'href': u'http://global.msi.com.tw/index.php?func=downloaddetail&type=driver&maincat_no=135&prod_no=1440',
'tags': u'drivers mybook',
'user': u'BrianNielsen'},
{ 'count': '',
'description': u'Project Gutenberg 1.0 - over 10.000 free books',
'dt': u'2008-11-04T13:47:06Z',
'extended': '',
'hash': '',
'href': u'http://www.free-soft.ro/gutenberg/gutenberg.html',
'tags': u'Gutenberg ebook books software windowsmobile',
'user': u'BrianNielsen'},
{ 'count': '',
'description': u'Freeware PocketPC, Windows and Linux Wikipedia',
'dt': u'2008-11-04T13:45:42Z',
'extended': '',
'hash': '',
'href': u'http://www.free-soft.ro/pocket-wikipedia/pocket-wikipedia.html',
'tags': u'Mobile Windows_mobile windowsmobile wiki wikipedia reference software',
'user': u'BrianNielsen'},
{ 'count': '',
'description': u'Campus Service fejlmeldinger',
'dt': u'2008-11-04T11:54:50Z',
'extended': u'Campus Service fejlmeldinger',
'hash': '',
'href': u'http://fejlmeld.cas.dtu.dk/',
'tags': u'DTU service fejlmelding',
'user': u'BrianNielsen'},
{ 'count': '',
'description': u'basisbank.dk',
'dt': u'2008-10-31T15:41:41Z',
'extended': '',
'hash': '',
'href': u'https://www.basisbank.dk/1671/',
'tags': u'Bank',
'user': u'BrianNielsen'},
{ 'count': '',
'description': u'ERP Components',
'dt': u'2008-10-31T10:50:28Z',
'extended': '',
'hash': '',
'href': u'http://brain.mcmaster.ca/ERP.tutorial/ERP%20Components.htm',
'tags': u'ERP components EEG Brain',
'user': u'BrianNielsen'},
{ 'count': '',
'description': u'IDA.dk - Forside',
'dt': u'2008-10-31T09:49:33Z',
'extended': '',
'hash': '',
'href': u'http://ida.dk/',
'tags': u'IDA fagforening jobs\xf8gning',
'user': u'BrianNielsen'},
{ 'count': '',
'description': u'Batterier, genopladelige batterier og tilbeh\xf8r - Batteribyen.dk',
'dt': u'2008-10-31T09:06:17Z',
'extended': '',
'hash': '',
'href': u'http://www.batteribyen.dk/',
'tags': u'batterier lyskilder belysning batteri shopping',
'user': u'BrianNielsen'},
{ 'count': '',
'description': u'CampusNet - Danmarks Tekniske Universitet',
'dt': u'2008-10-29T11:40:19Z',
'extended': '',
'hash': '',
'href': u'https://www.campusnet.dtu.dk/cnnet/welcome.aspx',
'tags': u'DTU CampusNet CN',
'user': u'BrianNielsen'},
{ 'count': '',
'description': u'Rejseplanen',
'dt': u'2008-10-29T10:33:30Z',
'extended': '',
'hash': '',
'href': u'http://www.rejseplanen.dk/',
'tags': u'transport offentligtransport tog bus',
'user': u'BrianNielsen'},
{ 'count': '',
'description': u'Portalen.DTU',
'dt': u'2008-10-29T09:34:25Z',
'extended': '',
'hash': '',
'href': u'http://portalen.dtu.dk/default.aspx',
'tags': u'DTU portal',
'user': u'BrianNielsen'},
{ 'count': '',
'description': u'Troels Kj\xe6r',
'dt': u'2008-10-29T08:53:45Z',
'extended': u'hjerne.info',
'hash': '',
'href': u'http://hjerne.info/',
'tags': u'seminar Riget brain',
'user': u'BrianNielsen'}],
u'Deflexion.com': [ { 'count': '',
'description': u'Beat the Press Archive | The American Prospect',
'dt': u'2008-11-10T16:43:23Z',
'extended': u'in the comments: The housing bubble is one effect of the ultimate cause - which is the conversion of banking into an "entrepeneurial" activity.\nSince roughly 1980, returns to capital have far exceeded those to labor. The new financial activities have sucked wealth from industry and commerce instead of providing investment for development.\nThe result is billionaire bankers and a labor force with negative net worths.\nWe need to adjust returns to favor labor versus capital and reduce reliance on credit.\nIncreased minimum wage, adjusted capital gains taxes, greater progressivity in income taxes and a national economic development plan are some needed adjustments if we want to see progress. / Another comment: The problem from which the others derive IS deflation -- deflation of the value of labor. The "Great Moderation," growth with low inflation, was built on the back of high productivity increases constrasting to stagnant wage growth.\n\nWe all have commented on the growing dispa',
'hash': '',
'href': u'http://www.prospect.org/csnc/blogs/beat_the_press_archive?month=10&year=2008&base_name=the_problem_is_the_crash_of_th',
'tags': u'Economics 2008 Crisis Deflation Inflation',
'user': u'Deflexion.com'},
{ 'count': '',
'description': u'Barel Karsan: Confusion Reigns With Deflation-Inflation Conundrum',
'dt': u'2008-11-10T16:22:56Z',
'extended': u'Currently, in the battle between inflationary forces (too much money floating around) and deflationary forces (the unwillingness to lend/invest), the deflationary forces are winning in the economies around the world as the severe credit squeeze and de-leveraging that has been taking place are working their way through the system. But inflation lurks in the background.\n\nIn my opinion, the co-ordinated actions of the central banks and governments around the world will prevent this panic and credit problems from developing into a depression with its requisite deflationary consequences. But central banks and governments tend to overact based on past experience. When the credit problems are resolved, and banks and consumers start to feel more confident, all this accumulated (hoarded cash) liquidity and money supply surge may find their way back to financial and real assets, bid their prices up and in so doing take us back to square one, and a severe inflationary situation two to three yea',
'hash': '',
'href': u'http://barelkarsan.com/2008/11/confusion-reigns-with-deflation.html',
'tags': u'2008 Crisis Economics Inflation Deflation',
'user': u'Deflexion.com'},
{ 'count': '',
'description': u"Slashdot | How to Search Today's Usenet For Programming Information?",
'dt': u'2008-11-10T15:50:35Z',
'extended': u''m an old Usenet hand and I think that it's had its day. A lot of it comes down to the great unwashed being allowed on my lovely, geeky Internet.\n\nFirstly, unless you run a moderated group, there's nothing you can do about trolls. I've seen entire, vibrant groups taken down by one or two determined individuals and the idiots that feed them.\n\nSecondly, a lot of the smaller, niche groups are dying out because people won't obey the rules anymore. They post off topic stuff on the more popular groups rather than taking the time to hunt down the proper one.',
'hash': '',
'href': u'http://ask.slashdot.org/askslashdot/08/11/09/2029206.shtml',
'tags': u'Usenet History IsDead DiscussionGroups Internet Dev',
'user': u'Deflexion.com'},
{ 'count': '',
'description': u'Stack Overflow',
'dt': u'2008-11-10T15:31:12Z',
'extended': u'Stack Overflow is a collaboratively edited question and answer site for programmers \u2014 regardless of platform or language. Jump in and share your software engineering expertise! No registration or account required.',
'hash': '',
'href': u'http://stackoverflow.com/',
'tags': u'Dev Q&A DiscussionGroups',
'user': u'Deflexion.com'},
{ 'count': '',
'description': u'CSS Advanced Layout Module',
'dt': u'2008-11-10T15:17:43Z',
'extended': u'The properties in this specification work by associating a layout policy with an element. Rather than letting an element lay out its descendants in their normal order as inline text or as blocks of text (the policies available in CSS level 1), these policies give an element an invisible grid for aligning descendant elements. One policy also allows elements to be stacked similar to tabbed cards, of which only one is visible at any time. \n\nSince layouts on the Web have to adapt to different window and paper sizes, the rows and columns of the grid can be made fixed or flexible in size. \n\nThe typical use cases for these properties include: \nComplex Web pages, with multiple navigation bars in fixed positions, areas for advertisements, etc. \nComplex forms, where the alignment of labels and form fields may be easier with the properties of this module than with the properties for tables and margins. \nGUIs, where buttons, toolbars, labels, icons, etc., are aligned in complex ways',
'hash': '',
'href': u'http://www.w3.org/TR/css3-layout/',
'tags': u'CSS SiteDesign W3C',
'user': u'Deflexion.com'},
{ 'count': '',
'description': u'VLC - Features',
'dt': u'2008-11-09T22:47:34Z',
'extended': u'VLC media player is a highly portable multimedia player for various audio and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, ogg, ...) as well as DVDs, VCDs, and various streaming protocols.\nIt can also be used as a server to stream in unicast or multicast in IPv4 or IPv6 on a high-bandwidth network.\nIt doesn't need any external codec or program to work.',
'hash': '',
'href': u'http://www.videolan.org/vlc/features.html',
'tags': u'CrossPlatform FLOSS ToTry Multimedia Video Audio SiteDesign/Nice Gratis',
'user': u'Deflexion.com'},
{ 'count': '',
'description': u'Election Night 11-04-08 - a set on Flickr',
'dt': u'2008-11-09T21:18:08Z',
'extended': u'Obama and family backstage and on stage',
'hash': '',
'href': u'http://flickr.com/photos/barackobamadotcom/sets/72157608716313371/',
'tags': u'Flickr Obama Politics USA Photos History Photography',
'user': u'Deflexion.com'},
{ 'count': '',
'description': u'freewifihotspotsoftware.com: Security Tips',
'dt': u'2008-11-09T21:03:52Z',
'extended': u'Turn your firewall on: Start > Settings > Network Connections > Wireless Network Connection > Change Advanced Settings > Advanced Tab > Windows Firewall Settings > Select \u201cOn\u201d > OK\n\nDisable file sharing: Start > Settings > Network Connections > Wireless Network Connection > Change Advanced Settings > Uncheck \u201cFile and Printer Sharing\u201d > OK\n\nTurn ad-hoc mode off: Start > Settings > Network Connections > Wireless Network Connection > Change Advanced Settings > Wireless Networks Tab > Select Network > Properties > Uncheck \u201cThis is a computer-to-computer (ad-hoc) network\u201d > OK',
'hash': '',
'href': u'http://www.freewifihotspotsoftware.com/security_tips.html',
'tags': u'WiFi SysAdmin MS Windows PrivacyAndSecurity',
'user': u'Deflexion.com'},
{ 'count': '',
'description': u'Sarah Palin blamed by the US Secret Service for death threats against Barack Obama - Telegraph',
'dt': u'2008-11-09T16:35:03Z',
'extended': u'The Republican vice presidential candidate attracted criticism for accusing Mr Obama of "palling around with terrorists", citing his association with the sixties radical William Ayers.\n\nThe attacks provoked a near lynch mob atmosphere at her rallies, with supporters yelling "terrorist" and "kill him" until the McCain campaign ordered her to tone down the rhetoric.\n\nBut it has now emerged that her demagogic tone may have unintentionally encouraged white supremacists to go even further.\n\nThe Secret Service warned the Obama family in mid October that they had seen a dramatic increase in the number of threats against the Democratic candidate, coinciding with Mrs Palin's attacks.',
'hash': '',
'href': u'http://www.telegraph.co.uk/news/newstopics/uselection2008/sarahpalin/3405336/Sarah-Palin-blamed-by-the-US-Secret-Service-for-death-threats-against-Barack-Obama.html',
'tags': u'USA Politics 2008 Sucks',
'user': u'Deflexion.com'},
{ 'count': '',
'description': u'He Saw It Coming - The Atlantic (November 2008)',
'dt': u'2008-11-09T16:31:16Z',
'extended': u'The forgotten filmmaker who anticipated our modern media madness',
'hash': '',
'href': u'http://www.theatlantic.com/doc/200811/peter-watkins',
'tags': u'Film Culture Media History Predictions UK',
'user': u'Deflexion.com'},
{ 'count': '',
'description': u'Empire Falls: Politics & Power by Niall Ferguson, October 2006: vanityfair.com',
'dt': u'2008-11-08T21:35:57Z',
'extended': u'They called it \u201cthe American Century,\u201d but the past hundred years actually saw a shift away from Western dominance. Through the long lens of Edward Gibbon\u2019s history, The Decline and Fall of the Roman Empire, Rome 331 and America and Europe 2006 appear to have more than a few problems in common.',
'hash': '',
'href': u'http://www.vanityfair.com/politics/features/2006/10/empire200610?printable=true¤tPage=all',
'tags': u'History USA Predictions Economics Politics Finance',
'user': u'Deflexion.com'},
{ 'count': '',
'description': u'Niall Ferguson - Home',
'dt': u'2008-11-08T21:30:02Z',
'extended': u'Niall Ferguson, MA, D.Phil., \nis the Laurence A. Tisch Professor of History at Harvard University and William Ziegler Professor at Harvard Business School.\n\nHe is a resident faculty member of the Minda de Gunzburg Center for European Studies. He is also a Senior Research Fellow of Jesus College, Oxford University, and a Senior Fellow of the Hoover Institution, Stanford University.\n/\nProf. Ferguson's research is principally focused on nineteenth- and twentieth-century subjects, with an emphasis on economic and especially financial history. He has subsidiary interests in international relations and military conflict. He continues to be interested in the use of counterfactuals in historical explanation.',
'hash': '',
'href': u'http://www.niallferguson.com/',
'tags': u'SiteDesign/Nice Blogs Politics History Money Economics Business Philosophy Books',
'user': u'Deflexion.com'},
{ 'count': '',
'description': u'Wall Street Lays Another Egg: Politics & Power by Niall Ferguson, December 2008 [single page]: vanityfair.com',
'dt': u'2008-11-08T21:22:04Z',
'extended': u'The author charts the emergence of an abstract, even absurd world\u2014call it Planet Finance\u2014where mathematical models ignored both history and human nature, and value had no meaning.',
'hash': '',
'href': u'http://www.vanityfair.com/politics/features/2008/12/banks200812?printable=true¤tPage=all',
'tags': u'Money 2008 Crisis Finance Investing Economics FAIL Banking',
'user': u'Deflexion.com'},
{ 'count': '',
'description': u"Trapped in the New 'You're on Your Own' World By Robert M. Solow - The New York Review of Books",
'dt': u'2008-11-08T18:09:14Z',
'extended': u'review of High Wire: The Precarious Financial Lives of American Families\nby Peter Gosselin\n\n/\n\nWhen the Bush-Cheney administration proposed to replace Social Security with a system of individually accumulated, individually owned, and individually invested accounts, my first thought was that its goal was to take the Social out of Social Security. It took a few minutes longer to realize that it also intended to take the Security out of Social Security.\n\nThat attempt failed. In recent years, however, a mixture of public and private policy decisions and impersonal market developments has had the broad effect of shifting many financial risks from established institutions, including even society at large, to individuals who are unable to cope with them in an adequate way. Information may be impossibly difficult for citizens to process; or else the basic information may not be available to individuals or private groups. Sometimes the scale of the possible bad outcomes may be overwhelm',
'hash': '',
'href': u'http://www.nybooks.com/articles/22080',
'tags': u'2008 Crisis Society USA Finance Investing SocialSecurity Economics Books Reviews MoralHazard Risk Insurance',
'user': u'Deflexion.com'},
{ 'count': '',
'description': u'[Dipdive] Yes We Can Song',
'dt': u'2008-11-08T17:44:05Z',
'extended': '',
'hash': '',
'href': u'http://yeswecan.dipdive.com/',
'tags': u'Obama YesWeCan Videos Music Inspiration',
'user': u'Deflexion.com'}],
u'Hanniph': [ { 'count': '',
'description': u'Stack Overflow',
'dt': u'2008-11-10T16:05:41Z',
'extended': '',
'hash': '',
'href': u'http://stackoverflow.com/',
'tags': u'codingtalk',
'user': u'Hanniph'},
{ 'count': '',
'description': u'Programming Talk - Ubuntu Forums',
'dt': u'2008-11-10T16:03:28Z',
'extended': '',
'hash': '',
'href': u'http://ubuntuforums.org/forumdisplay.php?f=39',
'tags': u'codingtalk',
'user': u'Hanniph'},
{ 'count': '',
'description': u'Convert Scanned PDF Documents to Text with Google OCR',
'dt': u'2008-11-05T10:10:05Z',
'extended': '',
'hash': '',
'href': u'http://www.labnol.org/software/convert-scanned-pdf-images-to-text-with-google-ocr/5158/',
'tags': u'tools',
'user': u'Hanniph'},
{ 'count': '',
'description': u'http://ledas.dtiltas.lt/MIF/index.php',
'dt': u'2008-11-03T15:09:21Z',
'extended': '',
'hash': '',
'href': u'http://ledas.dtiltas.lt/MIF/index.php',
'tags': u'ps',
'user': u'Hanniph'},
{ 'count': '',
'description': u'40 Tips for optimizing your php code // Reinhold Weber',
'dt': u'2008-11-01T22:44:22Z',
'extended': '',
'hash': '',
'href': u'http://reinholdweber.com/?p=3',
'tags': u'php',
'user': u'Hanniph'},
{ 'count': '',
'description': u'Linux Assembly Tutorial - Quickstart',
'dt': u'2008-11-01T18:22:13Z',
'extended': '',
'hash': '',
'href': u'http://www.cin.ufpe.br/~if817/arquivos/asmtut/quickstart.html',
'tags': u'asm',
'user': u'Hanniph'},
{ 'count': '',
'description': u'Google Webmaster Central',
'dt': u'2008-10-31T11:31:26Z',
'extended': '',
'hash': '',
'href': u'http://www.google.com/webmasters/',
'tags': u'webdev',
'user': u'Hanniph'},
{ 'count': '',
'description': u'Taste Kid | Find similar music (artists, bands), movies, books',
'dt': u'2008-10-31T11:29:20Z',
'extended': '',
'hash': '',
'href': u'http://www.tastekid.com/',
'tags': u'searchengine',
'user': u'Hanniph'},
{ 'count': '',
'description': u'.:[ packet storm ]:. - http://packetstormsecurity.org/',
'dt': u'2008-10-30T15:51:33Z',
'extended': '',
'hash': '',
'href': u'http://packetstormsecurity.org/',
'tags': u'security',
'user': u'Hanniph'},
{ 'count': '',
'description': u'Ascii Table - ASCII character codes and html, octal, hex and decimal chart conversion',
'dt': u'2008-10-27T15:16:02Z',
'extended': '',
'hash': '',
'href': u'http://asciitable.com/',
'tags': u'asm',
'user': u'Hanniph'},
{ 'count': '',
'description': u'int 21',
'dt': u'2008-10-27T14:35:19Z',
'extended': '',
'hash': '',
'href': u'http://heim.ifi.uio.no/%7Estanisls/helppc/int_21.html',
'tags': u'asm',
'user': u'Hanniph'},
{ 'count': '',
'description': u'Top 10 Resources To The Perfect Color Scheme for Web Designers : Speckyboy - Web Design, Web Development and Graphic Design Resources',
'dt': u'2008-10-22T08:50:41Z',
'extended': '',
'hash': '',
'href': u'http://speckyboy.com/2008/01/13/top-10-resources-to-the-perfect-color-scheme-for-web-designers/',
'tags': u'colors',
'user': u'Hanniph'},
{ 'count': '',
'description': u'How To Ask Questions The Smart Way',
'dt': u'2008-10-19T13:32:13Z',
'extended': '',
'hash': '',
'href': u'http://www.catb.org/%7Eesr/faqs/smart-questions.html',
'tags': u'ethics',
'user': u'Hanniph'},
{ 'count': '',
'description': u'TED: Ideas worth spreading',
'dt': u'2008-10-19T11:21:11Z',
'extended': '',
'hash': '',
'href': u'http://www.ted.com/index.php/',
'tags': u'podcasts',
'user': u'Hanniph'},
{ 'count': '',
'description': u'RiP: A remix manifesto',
'dt': u'2008-10-19T11:08:38Z',
'extended': u'Which side of the ideas war are you on?\nABOUT THE FILMMAKERS\nBrett Gaylor, Director',
'hash': '',
'href': u'http://nfb.ca/webextension/rip-a-remix-manifesto/?ec=en20081015',
'tags': u'movies',
'user': u'Hanniph'}],
u'Larrasco': [ { 'count': '',
'description': u'Project Euler',
'dt': u'2008-11-10T14:50:20Z',
'extended': '',
'hash': '',
'href': u'http://projecteuler.net/index.php?section=problems',
'tags': '',
'user': u'Larrasco'},
{ 'count': '',
'description': u'Experian - Report Summary',
'dt': u'2008-11-07T20:15:47Z',
'extended': '',
'hash': '',
'href': u'https://annualcreditreport.experian.com/AnnualCreditReport/cac/ReportSummary.do',
'tags': '',
'user': u'Larrasco'},
{ 'count': '',
'description': u'How to Make a Spending Plan - WSJ.com',
'dt': u'2008-11-07T16:43:43Z',
'extended': '',
'hash': '',
'href': u'http://online.wsj.com/article/SB122548317028388819.html?mod=googlenews_wsj',
'tags': '',
'user': u'Larrasco'},
{ 'count': '',
'description': u'Ask Lifehacker: How Do I Preserve Newsprint for Archive or Display?',
'dt': u'2008-11-06T20:52:48Z',
'extended': '',
'hash': '',
'href': u'http://lifehacker.com/5077729/how-do-i-preserve-newsprint-for-archive-or-display',
'tags': '',
'user': u'Larrasco'},
{ 'count': '',
'description': u'How to: Filtering unwanted music in iTunes - CNET Reviews',
'dt': u'2008-11-06T19:14:56Z',
'extended': '',
'hash': '',
'href': u'http://reviews.cnet.com/2300-6490_7-39-1.html',
'tags': '',
'user': u'Larrasco'},
{ 'count': '',
'description': u'Announcing the Save $1,000 in 30 Days Challenge | I Will Teach You To Be Rich',
'dt': u'2008-11-05T15:59:51Z',
'extended': '',
'hash': '',
'href': u'http://www.iwillteachyoutoberich.com/blog/announcing-the-save-1000-in-30-days-challenge',
'tags': '',
'user': u'Larrasco'},
{ 'count': '',
'description': u'Featured Mac Download: Fruux Syncs Contacts and Calendars Across Macs',
'dt': u'2008-11-04T15:06:26Z',
'extended': '',
'hash': '',
'href': u'http://lifehacker.com/5059504/fruux-syncs-contacts-and-calendars-across-macs',
'tags': '',
'user': u'Larrasco'},
{ 'count': '',
'description': u'VoxOx.com | Take Control',
'dt': u'2008-11-04T15:04:08Z',
'extended': '',
'hash': '',
'href': u'http://www.voxox.com/',
'tags': '',
'user': u'Larrasco'},
{ 'count': '',
'description': u'Printing: Refill your printer cartridges and save money',
'dt': u'2008-11-04T15:04:00Z',
'extended': '',
'hash': '',
'href': u'http://lifehacker.com/software/printing/refill-your-printer-cartridges-and-save-money-152916.php',
'tags': '',
'user': u'Larrasco'},
{ 'count': '',
'description': u'Calendars: Make a Custom Compact Calendar Online',
'dt': u'2008-11-04T15:02:28Z',
'extended': '',
'hash': '',
'href': u'http://lifehacker.com/5072996/make-a-custom-compact-calendar-online',
'tags': '',
'user': u'Larrasco'},
{ 'count': '',
'description': u'IKEA | Table tops & legs | VIKA system | VIKA LEIF | Trestle',
'dt': u'2008-11-03T20:17:59Z',
'extended': '',
'hash': '',
'href': u'http://www.ikea.com/us/en/catalog/products/10141151',
'tags': '',
'user': u'Larrasco'},
{ 'count': '',
'description': u'IKEA | Drawer units | GALANT system | SIGNUM | Cord cover',
'dt': u'2008-11-03T20:17:39Z',
'extended': '',
'hash': '',
'href': u'http://www.ikea.com/us/en/catalog/products/60146245',
'tags': '',
'user': u'Larrasco'},
{ 'count': '',
'description': u'IKEA | Storage furniture | Bookcases | EXPEDIT | Set of casters',
'dt': u'2008-11-03T20:10:47Z',
'extended': '',
'hash': '',
'href': u'http://www.ikea.com/us/en/catalog/products/90133963',
'tags': '',
'user': u'Larrasco'},
{ 'count': '',
'description': u'ikea hacker: Hack a window seat',
'dt': u'2008-11-03T20:06:24Z',
'extended': '',
'hash': '',
'href': u'http://ikeahacker.blogspot.com/2008/11/hack-window-seat.html',
'tags': '',
'user': u'Larrasco'},
{ 'count': '',
'description': u'ikea hacker',
'dt': u'2008-11-03T20:05:08Z',
'extended': '',
'hash': '',
'href': u'http://ikeahacker.blogspot.com/',
'tags': '',
'user': u'Larrasco'}],
u'Rouxmire': [ { 'count': '',
'description': u'Stack Overflow',
'dt': u'2008-11-10T16:00:07Z',
'extended': '',
'hash': '',
'href': u'http://stackoverflow.com/',
'tags': u'blog programming howto reference tips daily',
'user': u'Rouxmire'},
{ 'count': '',
'description': u'Small Kitchen DIY Fixes: Submit Your Stories - Not About Food - Chowhound',
'dt': u'2008-11-10T15:59:50Z',
'extended': '',
'hash': '',
'href': u'http://chowhound.chow.com/topics/379363',
'tags': u'howto reference organization kitchen article',
'user': u'Rouxmire'},
{ 'count': '',
'description': u'Ask Lifehacker: How Do I Catch Up on 10 Months of Missed Posts?',
'dt': u'2008-11-10T15:53:44Z',
'extended': '',
'hash': '',
'href': u'http://lifehacker.com/5077879/how-do-i-catch-up-on-10-months-of-missed-posts',
'tags': u'lifehacks lifehacker productivity blogs bestof',
'user': u'Rouxmire'},
{ 'count': '',
'description': u'Project Euler',
'dt': u'2008-11-10T15:51:47Z',
'extended': '',
'hash': '',
'href': u'http://projecteuler.net/index.php?section=about',
'tags': u'challenge puzzle euler project programming daily',
'user': u'Rouxmire'},
{ 'count': '',
'description': u'Weekend Fun: Project Euler Exercises Your Mind with Mathematical Problems',
'dt': u'2008-11-10T15:51:26Z',
'extended': '',
'hash': '',
'href': u'http://lifehacker.com/5080232/project-euler-exercises-your-mind-with-mathematical-problems',
'tags': u'lifehacker programming puzzles',
'user': u'Rouxmire'},
{ 'count': '',
'description': u'Clever Uses: Boost Your Wi-Fi Signal with Cooking Strainer',
'dt': u'2008-11-10T15:49:44Z',
'extended': '',
'hash': '',
'href': u'http://lifehacker.com/5053796/boost-your-wi+fi-signal-with-cooking-strainer',
'tags': u'signal boost wifi lifehacker',
'user': u'Rouxmire'},
{ 'count': '',
'description': u'Evolution Shmup',
'dt': u'2008-11-09T04:34:19Z',
'extended': '',
'hash': '',
'href': u'http://www.kloonigames.com/evolution/',
'tags': u'game gaming indie procedural random',
'user': u'Rouxmire'},
{ 'count': '',
'description': u'Kloonigames - Monthly Experimental Games \xbb Big List o\u2019 Games',
'dt': u'2008-11-09T04:28:01Z',
'extended': '',
'hash': '',
'href': u'http://www.kloonigames.com/blog/games',
'tags': u'flash games fun indie gamedev game gamedesign',
'user': u'Rouxmire'},
{ 'count': '',
'description': u'Technophilia: Double Your Productivity with a Serial Workflow',
'dt': u'2008-11-08T21:25:37Z',
'extended': '',
'hash': '',
'href': u'http://lifehacker.com/software/technophilia/double-your-productivity-with-a-serial-workflow-320271.php',
'tags': u'lifehack lifehacker tutorial serial workflow',
'user': u'Rouxmire'},
{ 'count': '',
'description': u'Linux: Five Tweaks for Your New Ubuntu Desktop',
'dt': u'2008-11-08T19:06:12Z',
'extended': '',
'hash': '',
'href': u'http://lifehacker.com/5076585/',
'tags': u'tips linux ubuntu',
'user': u'Rouxmire'},
{ 'count': '',
'description': u'Lifehacker Top 10: Top 10 Body Hacks',
'dt': u'2008-11-08T19:05:16Z',
'extended': '',
'hash': '',
'href': u'http://lifehacker.com/software/lifehacker-top-10/top-10-body-hacks-257746.php',
'tags': u'blog howto lifehacks health bodyhack',
'user': u'Rouxmire'},
{ 'count': '',
'description': u'http://www.uwosh.edu/faculty_staff/alderson/draw/Draw-as-CAD.html',
'dt': u'2008-11-08T18:25:26Z',
'extended': '',
'hash': '',
'href': u'http://www.uwosh.edu/faculty_staff/alderson/draw/Draw-as-CAD.html',
'tags': u'design draw openoffice CAD drawing',
'user': u'Rouxmire'},
{ 'count': '',
'description': u"Your Camera Doesn't Matter",
'dt': u'2008-11-08T11:19:43Z',
'extended': '',
'hash': '',
'href': u'http://www.kenrockwell.com/tech/notcamera.htm',
'tags': u'blog design photography reference camera howto',
'user': u'Rouxmire'},
{ 'count': '',
'description': u'Canon A530',
'dt': u'2008-11-08T11:17:29Z',
'extended': '',
'hash': '',
'href': u'http://www.kenrockwell.com/canon/a530.htm',
'tags': u'a530 a720 canon review photography',
'user': u'Rouxmire'},
{ 'count': '',
'description': u'Canon A570 IS',
'dt': u'2008-11-08T11:12:52Z',
'extended': '',
'hash': '',
'href': u'http://www.kenrockwell.com/canon/compacts/a570.htm',
'tags': u'canon a720 a570 photography review',
'user': u'Rouxmire'}],
u'TheCFC': [ { 'count': '',
'description': u'Project Euler',
'dt': u'2008-11-10T15:44:54Z',
'extended': '',
'hash': '',
'href': u'http://projecteuler.net/index.php?section=about',
'tags': u'math problems logic puzzle programming arrays',
'user': u'TheCFC'},
{ 'count': '',
'description': u'Start here - Joomla! Documentation',
'dt': u'2008-11-04T23:31:54Z',
'extended': '',
'hash': '',
'href': u'http://docs.joomla.org/Start_here',
'tags': u'web site document management open source',
'user': u'TheCFC'},
{ 'count': '',
'description': u'Implicit Association Test',
'dt': u'2008-10-28T14:37:45Z',
'extended': '',
'hash': '',
'href': u'https://implicit.harvard.edu/implicit/demo/',
'tags': u'Implicit Association Test',
'user': u'TheCFC'},
{ 'count': '',
'description': u'Free PDF to Word Doc Converter! Just plain and simple pdf conversion software.',
'dt': u'2008-10-23T16:58:42Z',
'extended': '',
'hash': '',
'href': u'http://pdfundo.net/convert/',
'tags': u'PDF word conversion converting tool service',
'user': u'TheCFC'},
{ 'count': '',
'description': u'Lasik First',
'dt': u'2008-10-20T14:39:51Z',
'extended': '',
'hash': '',
'href': u'http://www.lasikfirst.com/',
'tags': u'Lasik',
'user': u'TheCFC'},
{ 'count': '',
'description': u'Unitarian Universalist Church in Fullerton - Orange County California',
'dt': u'2008-10-12T13:54:40Z',
'extended': '',
'hash': '',
'href': u'http://www.uufullerton.org/calendar.php',
'tags': u'Unitarian Universalist',
'user': u'TheCFC'},
{ 'count': '',
'description': u'Plain English Campaign',
'dt': u'2008-10-08T14:33:42Z',
'extended': '',
'hash': '',
'href': u'http://www.plainenglish.co.uk/index.htm',
'tags': u'language plain english writing simple',
'user': u'TheCFC'},
{ 'count': '',
'description': u'CNdb: Celebrity Nudity Database - celebrity nude scene listings',
'dt': u'2008-10-03T03:42:23Z',
'extended': '',
'hash': '',
'href': u'http://www.cndb.com/index.html',
'tags': u'celebrity',
'user': u'TheCFC'},
{ 'count': '',
'description': u'Madmann Graphics Company > Just For Fun > Sound Vault',
'dt': u'2008-08-25T03:21:49Z',
'extended': '',
'hash': '',
'href': u'http://www.madmann.com/soundbody.html',
'tags': u'funny clips',
'user': u'TheCFC'},
{ 'count': '',
'description': u'spreeder.com - online speed reading application',
'dt': u'2008-08-23T22:49:23Z',
'extended': '',
'hash': '',
'href': u'http://www.spreeder.com/',
'tags': u'speed reader rsvp',
'user': u'TheCFC'},
{ 'count': '',
'description': u'Rapid Serial Visual Presentation - Wikipedia, the free encyclopedia',
'dt': u'2008-08-22T18:07:31Z',
'extended': '',
'hash': '',
'href': u'http://en.wikipedia.org/wiki/Rapid_Serial_Visual_Presentation',
'tags': u'speed reading',
'user': u'TheCFC'},
{ 'count': '',
'description': u'Auto calculator -- compare rebate, low interest rate',
'dt': u'2008-08-18T22:52:33Z',
'extended': '',
'hash': '',
'href': u'http://www.bankrate.com/ust/calc/rebatecalc.asp',
'tags': u'Auto calculator -- compare rebate low interest rate',
'user': u'TheCFC'},
{ 'count': '',
'description': u"Spreety's Free Guide to Watch TV Shows Online, Music Videos, & More",
'dt': u'2008-08-13T19:36:56Z',
'extended': '',
'hash': '',
'href': u'http://www.spreety.com/Landing.aspx',
'tags': u'free tv streaming directory online entertainment',
'user': u'TheCFC'},
{ 'count': '',
'description': u'Five Mushrooms | Recipe Search Engine | Food Search Engine | Food Wiki',
'dt': u'2008-08-04T17:06:48Z',
'extended': '',
'hash': '',
'href': u'http://www.fivemushrooms.com/',
'tags': u'Recipe Search',
'user': u'TheCFC'},
{ 'count': '',
'description': u'http://vidtomp3.com/index.php',
'dt': u'2008-07-30T17:53:02Z',
'extended': '',
'hash': '',
'href': u'http://vidtomp3.com/index.php',
'tags': u'Video to MP3',
'user': u'TheCFC'}],
u'adeena': [ { 'count': '',
'description': u'Stack Overflow',
'dt': u'2008-11-10T13:53:57Z',
'extended': '',
'hash': '',
'href': u'http://stackoverflow.com/',
'tags': u'help programming software',
'user': u'adeena'},
{ 'count': '',
'description': u'Guitar Chords',
'dt': u'2008-11-08T00:58:44Z',
'extended': '',
'hash': '',
'href': u'http://www.all-guitar-chords.com/',
'tags': u'music guitar',
'user': u'adeena'},
{ 'count': '',
'description': u'Traveler IQ Challenge',
'dt': u'2008-10-29T18:15:25Z',
'extended': '',
'hash': '',
'href': u'http://www.travelpod.com/traveler-iq/game1',
'tags': u'fun games geography',
'user': u'adeena'},
{ 'count': '',
'description': u'fullduplex.org \xbb How to Shoot Yourself in the Foot in Any Programming Language',
'dt': u'2008-10-28T16:22:14Z',
'extended': '',
'hash': '',
'href': u'http://www.fullduplex.org/humor/2006/10/how-to-shoot-yourself-in-the-foot-in-any-programming-language/',
'tags': u'funny',
'user': u'adeena'},
{ 'count': '',
'description': u'Sweet Candy Corn',
'dt': u'2008-10-26T17:46:04Z',
'extended': '',
'hash': '',
'href': u'http://sweetcandycorn.blogspot.com/',
'tags': u'candy blog',
'user': u'adeena'},
{ 'count': '',
'description': u'ecoNEW - Home',
'dt': u'2008-10-26T10:33:26Z',
'extended': '',
'hash': '',
'href': u'http://econewonline.com/',
'tags': u'recycling electronics',
'user': u'adeena'},
{ 'count': '',
'description': u'TweakHound - Tweak & Optimize Windows Vista',
'dt': u'2008-10-21T02:52:00Z',
'extended': '',
'hash': '',
'href': u'http://tweakhound.com/vista/tweakguide/index.htm',
'tags': u'windows vista',
'user': u'adeena'},
{ 'count': '',
'description': u'Elbot - Artificial Intelligence?',
'dt': u'2008-10-13T16:35:31Z',
'extended': '',
'hash': '',
'href': u'http://www.elbot.com/',
'tags': u'ai',
'user': u'adeena'},
{ 'count': '',
'description': u'Grammar Girl :: Words that Sound Funny',
'dt': u'2008-10-05T00:00:06Z',
'extended': '',
'hash': '',
'href': u'http://grammar.quickanddirtytips.com/words-that-sound-funny.aspx',
'tags': u'grammar writing',
'user': u'adeena'},
{ 'count': '',
'description': u'Online Image Converter - Convert BMP, JPG(JPEG), PNG, GIF or ICO Files for Free',
'dt': u'2008-09-18T06:36:08Z',
'extended': '',
'hash': '',
'href': u'http://www.coolutils.com/Online-Image-Converter.php',
'tags': u'tools free converter icons graphics',
'user': u'adeena'},
{ 'count': '',
'description': u"Julian's Excel Macro (VBA) Tips for Beginners",
'dt': u'2008-09-09T18:03:48Z',
'extended': '',
'hash': '',
'href': u'http://www.angelfire.com/biz7/julian_s/julian/julians_macros.htm',
'tags': u'excel vba',
'user': u'adeena'},
{ 'count': '',
'description': u'Excel VBA',
'dt': u'2008-09-09T18:01:16Z',
'extended': '',
'hash': '',
'href': u'http://xl.barasch.com/xlvbaa.htm',
'tags': u'excel vba',
'user': u'adeena'},
{ 'count': '',
'description': u'myJanee.com Graphic Creations and Photoshop Resources',
'dt': u'2008-09-04T03:39:09Z',
'extended': '',
'hash': '',
'href': u'http://www.myjanee.com/index.html',
'tags': u'photoshop',
'user': u'adeena'},
{ 'count': '',
'description': u'SpaceWeather.com -- News and information about meteor showers, solar flares, auroras, and near-Earth asteroids',
'dt': u'2008-09-02T14:01:05Z',
'extended': '',
'hash': '',
'href': u'http://www.spaceweather.com/',
'tags': u'space science sun astronomy',
'user': u'adeena'},
{ 'count': '',
'description': u'SFF Net',
'dt': u'2008-09-02T10:27:38Z',
'extended': '',
'hash': '',
'href': u'http://www.sff.net/',
'tags': u'writing scifi',
'user': u'adeena'}],
u'aferrell': [ { 'count': '',
'description': u'Project Euler',
'dt': u'2008-11-10T15:18:45Z',
'extended': '',
'hash': '',
'href': u'http://projecteuler.net/index.php?section=about',
'tags': u'python puzzle projects programming math learning',
'user': u'aferrell'},
{ 'count': '',
'description': u'Liberally Conservative \xbb Blog Archive \xbb Hey Brother, Can You Spare A Dime? Financial Friends Obama Keeps',
'dt': u'2008-11-10T15:05:18Z',
'extended': '',
'hash': '',
'href': u'http://www.liberallyconservative.com/?p=2547',
'tags': u'financialcrisis',
'user': u'aferrell'},
{ 'count': '',