-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexampleAtomJsonOutput.json
More file actions
1175 lines (1175 loc) · 36.2 KB
/
exampleAtomJsonOutput.json
File metadata and controls
1175 lines (1175 loc) · 36.2 KB
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
{
"lang":"en",
"id":"http://www.snellspace.com/wp/wp-atom1.php",
"title":"snellspace.com",
"subtitle":"stuff I think about",
"rights":"Copyright 2009, James M Snell. Some rights reserved.",
"updated":"2009-07-21T18:46:10.000Z",
"generator":{
"version":"2.0.4",
"uri":"http://wordpress.org/",
"value":"WordPress"
},
"icon":"http://www.snellspace.com/favicon.png",
"logo":"http://www.snellspace.com/feedicon.png",
"authors":[{
"name":"James M Snell",
"uri":"http://www.snellspace.com/wp",
"extensions":[{
"name":"pe:profile",
"attributes":{
"xmlns:pe":"http://purl.org/atompub/person-extensions/1.0",
"type":"xhtml",
"scheme":"http://microformats.org/wiki/hcard"
},
"children":["\n ",{
"name":"div",
"attributes":{
"xmlns":"http://www.w3.org/1999/xhtml",
"class":"vcard"
},
"children":["\n ",{
"name":"a",
"attributes":{
"class":"url fn",
"href":"http://www.snellspace.com/wp"
},
"children":["\n ",{
"name":"span",
"attributes":{
"class":"given-name"
},
"children":["James"
]
},"\n ",{
"name":"span",
"attributes":{
"class":"additional-name"
},
"children":["M"
]
},"\n ",{
"name":"span",
"attributes":{
"class":"family-name"
},
"children":["Snell"
]
},"\n "
]
},"\n ",{
"name":"div",
"attributes":{
"class":"org"
},
"children":["snellspace.com"
]
},"\n "
]
},"\n "
]
}
]
}
],
"links":[{
"href":"http://www.snellspace.com/wp/wp-atom1.php",
"rel":"self"
},{
"href":"http://www.snellspace.com/wp/wp-commentsatom1.php",
"rel":"replies",
"type":"application/atom+xml"
},{
"href":"http://creativecommons.org/licenses/by-nc/2.5/rdf",
"rel":"license",
"type":"application/rdf+xml"
},{
"href":"http://www.snellspace.com/wp"
}
],
"entries":[{
"id":"http://www.snellspace.com/wp/?p=995",
"title":{
"attributes":{
"type":"html"
},
"children":["Switching Focus"
]
},
"summary":{
"attributes":{
"type":"xhtml"
},
"children":["Starting immediately, I have switched focuses and roles at IBM. I am excited to be the technical lead for the IBM CIO Technology & Innovation organization\u2019s new Security Innovations Team. After spending the past eight years championing and developing social networking and syndication technologies, it\u2019s time for a change of focus. The new team [...]"
]
},
"rights":"Copyright 2009, James M Snell. Some rights reserved.",
"content":{
"attributes":{
"type":"xhtml"
},
"children":[{
"name":"p",
"attributes":{
},
"children":["Starting immediately, I have switched focuses and roles at IBM. I am excited to be the technical lead for the IBM CIO Technology & Innovation organization\u2019s new Security Innovations Team. After spending the past eight years championing and developing social networking and syndication technologies, it\u2019s time for a change of focus. The new team will focus on innovating new projects relating to a variety of security issues including identity, privacy, authentication, audit, cloud security, etc. Security has always been an underdeveloped passion of mine and I\u2019m quite looking forward to the new opportunities. Unfortunately, this pretty much means that my ability to focus on social networking and syndication technologies is going to go into severe decline over the coming months.\n"
]
},"\n"
]
},
"updated":"2009-07-21T18:46:10.000Z",
"published":"2009-07-21T18:46:10.000Z",
"authors":[{
"name":"James M Snell",
"uri":"http://www.snellspace.com/wp"
}
],
"links":[{
"href":"http://creativecommons.org/licenses/by-nc/2.5/rdf",
"rel":"license",
"type":"application/rdf+xml"
},{
"href":"http://www.snellspace.com/wp/wp-commentsatom1.php?p=995",
"rel":"replies",
"type":"application/atom+xml",
"attributes":{
"thr:count":{
"attributes":{
"xmlns:thr":"http://purl.org/syndication/thread/1.0"
},
"value":"2"
}
}
},{
"href":"http://www.snellspace.com/wp/?p=995"
}
],
"categories":[{
"term":"Personal",
"scheme":"http://www.snellspace.com/wp/"
}
],
"attributes":{
"xml:base":"http://www.snellspace.com/wp/"
}
},{
"id":"http://www.snellspace.com/wp/?p=994",
"title":{
"attributes":{
"type":"html"
},
"children":["Atom Tombstones Draft Revitalized"
]
},
"summary":{
"attributes":{
"type":"xhtml"
},
"children":["The Atom Tombstones draft had expired. As requested by several members of the Atom syntax mailing list, I have revitalized the draft.\n\n"
]
},
"rights":"Copyright 2009, James M Snell. Some rights reserved.",
"content":{
"attributes":{
"type":"xhtml"
},
"children":[{
"name":"p",
"attributes":{
},
"children":["The ",{
"name":"a",
"attributes":{
"href":"http://www.ietf.org/internet-drafts/draft-snell-atompub-tombstones-06.txt"
},
"children":["Atom Tombstones draft"
]
}," had expired. As requested by several members of the Atom syntax mailing list, I have revitalized the draft.\n"
]
},"\n"
]
},
"updated":"2009-06-08T22:42:17.000Z",
"published":"2009-06-08T22:42:17.000Z",
"authors":[{
"name":"James M Snell",
"uri":"http://www.snellspace.com/wp"
}
],
"links":[{
"href":"http://creativecommons.org/licenses/by-nc/2.5/rdf",
"rel":"license",
"type":"application/rdf+xml"
},{
"href":"http://www.snellspace.com/wp/wp-commentsatom1.php?p=994",
"rel":"replies",
"type":"application/atom+xml",
"attributes":{
"thr:count":{
"attributes":{
"xmlns:thr":"http://purl.org/syndication/thread/1.0"
},
"value":"0"
}
}
},{
"href":"http://www.snellspace.com/wp/?p=994"
}
],
"categories":[{
"term":"Personal",
"scheme":"http://www.snellspace.com/wp/"
}
],
"attributes":{
"xml:base":"http://www.snellspace.com/wp/"
}
},{
"id":"http://www.snellspace.com/wp/?p=993",
"title":{
"attributes":{
"type":"html"
},
"children":["Atom Bidi Draft Update"
]
},
"summary":{
"attributes":{
"type":"xhtml"
},
"children":["The Atom Bidi Draft had expired. I posted a new version to revitalize it. Want to get this one finished for good.\n\n"
]
},
"rights":"Copyright 2009, James M Snell. Some rights reserved.",
"content":{
"attributes":{
"type":"xhtml"
},
"children":[{
"name":"p",
"attributes":{
},
"children":["The ",{
"name":"a",
"attributes":{
"href":"http://www.ietf.org/internet-drafts/draft-snell-atompub-bidi-07.txt"
},
"children":["Atom Bidi Draft"
]
}," had expired. I posted a new version to revitalize it. Want to get this one finished for good.\n"
]
},"\n"
]
},
"updated":"2009-06-08T20:46:51.000Z",
"published":"2009-06-08T20:46:51.000Z",
"authors":[{
"name":"James M Snell",
"uri":"http://www.snellspace.com/wp"
}
],
"links":[{
"href":"http://creativecommons.org/licenses/by-nc/2.5/rdf",
"rel":"license",
"type":"application/rdf+xml"
},{
"href":"http://www.snellspace.com/wp/wp-commentsatom1.php?p=993",
"rel":"replies",
"type":"application/atom+xml",
"attributes":{
"thr:count":{
"attributes":{
"xmlns:thr":"http://purl.org/syndication/thread/1.0"
},
"value":"0"
}
}
},{
"href":"http://www.snellspace.com/wp/?p=993"
}
],
"categories":[{
"term":"Personal",
"scheme":"http://www.snellspace.com/wp/"
}
],
"attributes":{
"xml:base":"http://www.snellspace.com/wp/"
}
},{
"id":"http://www.snellspace.com/wp/?p=992",
"title":{
"attributes":{
"type":"html"
},
"children":["HTTP Patch Progress"
]
},
"summary":{
"attributes":{
"type":"xhtml"
},
"children":["Thanks to Mark Nottingham and Lisa Dusseault, work on HTTP Patch has been progressing nicely. Looks like it\u2019s pretty much done with the exception of a few minor issues. Perhaps it is time to start working on standardizing some Patch document formats?\n\n"
]
},
"rights":"Copyright 2009, James M Snell. Some rights reserved.",
"content":{
"attributes":{
"type":"xhtml"
},
"children":[{
"name":"p",
"attributes":{
},
"children":["Thanks to Mark Nottingham and Lisa Dusseault, work on ",{
"name":"a",
"attributes":{
"href":"http://www.ietf.org/internet-drafts/draft-dusseault-http-patch-14.txt"
},
"children":["HTTP Patch"
]
}," has been progressing nicely. Looks like it\u2019s pretty much done with the exception of a few minor issues. Perhaps it is time to start working on standardizing some Patch document formats?\n"
]
},"\n"
]
},
"updated":"2009-06-08T19:37:42.000Z",
"published":"2009-06-08T19:37:42.000Z",
"authors":[{
"name":"James M Snell",
"uri":"http://www.snellspace.com/wp"
}
],
"links":[{
"href":"http://creativecommons.org/licenses/by-nc/2.5/rdf",
"rel":"license",
"type":"application/rdf+xml"
},{
"href":"http://www.snellspace.com/wp/wp-commentsatom1.php?p=992",
"rel":"replies",
"type":"application/atom+xml",
"attributes":{
"thr:count":{
"attributes":{
"xmlns:thr":"http://purl.org/syndication/thread/1.0"
},
"value":"0"
}
}
},{
"href":"http://www.snellspace.com/wp/?p=992"
}
],
"categories":[{
"term":"Personal",
"scheme":"http://www.snellspace.com/wp/"
}
],
"attributes":{
"xml:base":"http://www.snellspace.com/wp/"
}
},{
"id":"http://www.snellspace.com/wp/?p=991",
"title":{
"attributes":{
"type":"html"
},
"children":["Batched HTTP Requests, The I-D"
]
},
"summary":{
"attributes":{
"type":"xhtml"
},
"children":["Comments requested\u2026 http://www.ietf.org/internet-drafts/draft-snell-http-batch-00.txt\nExample from the draft:\n\n POST /example/application HTTP/1.1\n Host: example.org\n Content-Type: multipart/batch;\n type=\"application/http;version=1.1\";\n boundary=batch\n [...]"
]
},
"rights":"Copyright 2009, James M Snell. Some rights reserved.",
"content":{
"attributes":{
"type":"xhtml"
},
"children":[{
"name":"p",
"attributes":{
},
"children":["Comments requested\u2026 ",{
"name":"a",
"attributes":{
"href":"http://www.ietf.org/internet-drafts/draft-snell-http-batch-00.txt"
},
"children":["http://www.ietf.org/internet-drafts/draft-snell-http-batch-00.txt"
]
}
]
},"\n",{
"name":"p",
"attributes":{
},
"children":["Example from the draft:"
]
},"\n",{
"name":"pre",
"attributes":{
},
"children":["\n POST /example/application HTTP/1.1\n Host: example.org\n Content-Type: multipart/batch;\n type=\"application/http;version=1.1\";\n boundary=batch\n Mime-Version: 1.0\n\n --batch\n Content-Type: application/http;version=1.1\n Content-Transfer-Encoding: binary\n Content-ID: <df536860-34f9-11de-b418-0800200c9a66@example.org>\n\n POST /example/application HTTP/1.1\n Host: example.org\n Content-Type: text/plain\n Content-Length: 3\n\n Foo\n --batch\n Content-Type: application/http;version=1.1\n Content-Transfer-Encoding: binary\n Content-ID: <226e35d0-34fa-11de-b418-0800200c9a66@example.org>\n\n PUT /example/application/resource HTTP/1.1\n Host: example.org\n Content-Type: image/jpg\n Content-Length: 123456\n\n {jpg image data}\n --batch--\n"
]
},"\n",{
"name":"p",
"attributes":{
},
"children":["And the response\u2026"
]
},"\n",{
"name":"pre",
"attributes":{
},
"children":["\n HTTP/1.1 200 OK\n Date: Wed, 29 Apr 2009 20:00:00 GMT\n Server: example.org\n Content-Type: multipart/batch;\n type=\"application/http;type=1.1\";\n boundary=batch\n Mime-Version: 1.0\n\n --batch\n Content-Type: application/http;version=1.1\n Content-Transfer-Encoding: binary\n In-Reply-To: <df536860-34f9-11de-b418-0800200c9a66@example.org>\n\n HTTP/1.1 204 OK\n Date: Wed, 29 Apr 2009 20:00:00 GMT\n Server: example.org\n\n --batch\n Content-Type: application/http;version=1.1\n Content-Transfer-Encoding: binary\n In-Reply-To: <226e35d0-34fa-11de-b418-0800200c9a66@example.org>\n\n HTTP/1.1 415 Unsupported Media Type\n Date: Wed, 29 Apr 2009 20:00:00 GMT\n Server: example.org\n\n --batch--\n"
]
},"\n"
]
},
"updated":"2009-06-08T16:43:32.000Z",
"published":"2009-06-08T16:43:32.000Z",
"authors":[{
"name":"James M Snell",
"uri":"http://www.snellspace.com/wp"
}
],
"links":[{
"href":"http://creativecommons.org/licenses/by-nc/2.5/rdf",
"rel":"license",
"type":"application/rdf+xml"
},{
"href":"http://www.snellspace.com/wp/wp-commentsatom1.php?p=991",
"rel":"replies",
"type":"application/atom+xml",
"attributes":{
"thr:count":{
"attributes":{
"xmlns:thr":"http://purl.org/syndication/thread/1.0"
},
"value":"2"
}
}
},{
"href":"http://www.snellspace.com/wp/?p=991"
}
],
"categories":[{
"term":"Personal",
"scheme":"http://www.snellspace.com/wp/"
}
],
"attributes":{
"xml:base":"http://www.snellspace.com/wp/"
}
},{
"id":"http://www.snellspace.com/wp/?p=990",
"title":{
"attributes":{
"type":"html"
},
"children":["Touching"
]
},
"summary":{
"attributes":{
"type":"xhtml"
},
"children":["A good friend of ours is an elementary school teacher who has been teaching at a small rural school here in the Central valley for a few years. He recently decided to take a higher paying position in a different district so that he and his wife could have enough money to start their [...]"
]
},
"rights":"Copyright 2009, James M Snell. Some rights reserved.",
"content":{
"attributes":{
"type":"xhtml"
},
"children":[{
"name":"p",
"attributes":{
},
"children":["A good friend of ours is an elementary school teacher who has been teaching at a small rural school here in the Central valley for a few years. He recently decided to take a higher paying position in a different district so that he and his wife could have enough money to start their own family. Last week he announced his decision to the kids in his class and the responses have been amazingly touching and heartbreaking. He posted the following note to his Facebook profile and I asked him permission to share it. I\u2019ve edited his name down to just \u201cMr. H.\u201d in the note below."
]
},"\n",{
"name":"blockquote",
"attributes":{
},
"children":["\n",{
"name":"p",
"attributes":{
},
"children":["As many of you know I am changing districts this year. I shared with my students about this, and explained to them that it had only to do with the opportunity to start a family of my own sooner, and have the opportunity to advance. This was greeted by tears from my students and returned tears from myself. Definitely has been very difficult because I wanted to give them the chance to say goodbye, and wanted to be able to say goodbye myself. I did not want them to hear it from anyone other than me."
]
},"\n",{
"name":"p",
"attributes":{
},
"children":["Here are a few responses that they have given me, that I plan on keeping throughout my career. I love this school and these kids. And it is difficult to leave them."
]
},"\n",{
"name":"p",
"attributes":{
},
"children":["From a quick response on what to expect from this week:"
]
},"\n",{
"name":"p",
"attributes":{
},
"children":["\u201cWhat I do NOT want from this week is [Mr. H.] leaving from this school. I do not want him to leave because he is a great teacher and he does a lot of fun things\u2026\u201d"
]
},"\n",{
"name":"p",
"attributes":{
},
"children":["After I announced I would be leaving, the students asked to write me a letter, which I granted them here are a few exerpts:"
]
},"\n",{
"name":"p",
"attributes":{
},
"children":["\u201cDear [Mr. H.], I feel sad because you always have fun and tell us stories. I also never had a teacher so nice to me like you\u2026\u201d"
]
},"\n",{
"name":"p",
"attributes":{
},
"children":["\u201cI feel horrible and depressed in my heart [Mr. H.]. You feel like a father to me. I never had a father so funny, strong, happy and energetic. I wish you stayed at [B] Elementary. I will miss you with all of my heart. [Mr. H.] I will miss your laugh, your strongness, and your happiness. I want you to stay, please don\u2019t leave,\u201d"
]
},"\n",{
"name":"p",
"attributes":{
},
"children":["\u201cDear [Mr. H.], Now that I know you are leaving I feel sad. I understand that you need more money for your family and that you\u2019re going to make a family with your wife. I hope you live good and fine with your family and your new work. I\u2019ll miss you a lot. You were a great teacher\u2026\u201d"
]
},"\n",{
"name":"p",
"attributes":{
},
"children":["\u201c[Mr. H.], I \u2018ve been in your class for two years and I\u2019m going to miss you. I feel kind of hurt, but I\u2019ll be alright. Since I known you, I\u2019ve always been the quiet one. But you made me bring out my outer voice. I went from shy to very talkative. I will also miss when you try to fix friendship problems. You are the first teacher I know that doesn\u2019t use yelling as a way to make someone listen to you. Although I am hurt, I understrand that you want to have a family. It\u2019s a couple\u2019s dream to have kids and to be parents. I just want to wish you the best for your soon to come family. I can tell you that no teacher can replace you and your telling stories. I wish you all the luck in the world,. NEVER FORGET US!\u201d"
]
},"\n",{
"name":"p",
"attributes":{
},
"children":["\u201c[Mr. H.] I\u2019ve been in your class for one year, and I\u2019m already gotten used to you. I don\u2019t want you to retire. I want you to still be in this school and this class. I understand you want to have a family but it\u2019s like you are part of my family. I\u2019m going to miss you a lot\u2026 you\u2019re the best teacher I\u2019ve ever had. I hope you will miss me the way I will. I am so sad.\u201d"
]
},"\n",{
"name":"p",
"attributes":{
},
"children":["\u201c[Mr. H.], I\u2019m going to miss you but I want to let you know that you were the best teacher I have ever had. You were nice even when you were totally mad. You helt it in and I got a poem for you."
]
},"\n",{
"name":"p",
"attributes":{
},
"children":["Teachers will go,",{
"name":"br",
"attributes":{
},
"children":[
]
},"\nTeacher will come,",{
"name":"br",
"attributes":{
},
"children":[
]
},"\nBut I want to let you,",{
"name":"br",
"attributes":{
},
"children":[
]
},"\nknow that you were,",{
"name":"br",
"attributes":{
},
"children":[
]
},"\nthe best one,",{
"name":"br",
"attributes":{
},
"children":[
]
},"\nwell go on hope,",{
"name":"br",
"attributes":{
},
"children":[
]
},"\nyou have fun,",{
"name":"br",
"attributes":{
},
"children":[
]
},"\ndon\u2019t forget me or,",{
"name":"br",
"attributes":{
},
"children":[
]
},"\nanyone\u201d"
]
},"\n",{
"name":"p",
"attributes":{
},
"children":["\u201cI feel sad because you are one of the best teachers I ever had and coach. Thank you for teaching us I will always remember your stories\u2026\u201d"
]
},"\n",{
"name":"p",
"attributes":{
},
"children":["Sure makes it hard to leave a school I already love."
]
},"\n"
]
},"\n",{
"name":"p",
"attributes":{
},
"children":["One thing to keep in mind is that most of these students have very little in their lives. Many, if not most, are the children of immigrant farm laborers who struggle daily to provide even for the most basic necessities. Many have had to deal with gangs, the lack of one or both of their parents, etc. School for them is not just something they have to do, it is an integral part of their lives and their teachers become a part of their family. For many, school provides the only sense of stability they\u2019ve ever known."
]
},"\n",{
"name":"p",
"attributes":{
},
"children":["I\u2019ve had the privilege of visiting my friend at his school and seeing the way he interacts with the kids and have seen the way they look up to him. I can only wish that someday in my life I might have the opportunity to touch someone else\u2019s life in that way.\n"
]
},"\n"
]
},
"updated":"2009-06-01T19:14:34.000Z",
"published":"2009-06-01T19:14:34.000Z",
"authors":[{
"name":"James M Snell",
"uri":"http://www.snellspace.com/wp"
}
],
"links":[{
"href":"http://creativecommons.org/licenses/by-nc/2.5/rdf",
"rel":"license",
"type":"application/rdf+xml"
},{
"href":"http://www.snellspace.com/wp/wp-commentsatom1.php?p=990",
"rel":"replies",
"type":"application/atom+xml",
"attributes":{
"thr:count":{
"attributes":{
"xmlns:thr":"http://purl.org/syndication/thread/1.0"
},
"value":"0"
}
}
},{
"href":"http://www.snellspace.com/wp/?p=990"
}
],
"categories":[{
"term":"Personal",
"scheme":"http://www.snellspace.com/wp/"
}
],
"attributes":{
"xml:base":"http://www.snellspace.com/wp/"
}
},{
"id":"http://www.snellspace.com/wp/?p=989",
"title":{
"attributes":{
"type":"html"
},
"children":["Readers are dead"
]
},
"summary":{
"attributes":{
"type":"xhtml"
},
"children":["Dare: \u201cLooking back now, it seems to me that the way we think of RSS readers needs to fundamentally change. Presenting information as a news feed where the user isn\u2019t pressured to read every item or feel like a failure is one way to move the needle on the user experience here. What I wonder [...]"
]
},
"rights":"Copyright 2009, James M Snell. Some rights reserved.",
"content":{
"attributes":{
"type":"xhtml"
},
"children":[{
"name":"p",
"attributes":{
},
"children":[{
"name":"a",
"attributes":{
"href":"http://www.25hoursaday.com/weblog/2009/05/05/RSSReadersModeledAfterEmailClientsAreFundamentallyBroken.aspx"
},
"children":["Dare"
]
},": \u201c",{
"name":"i",
"attributes":{
},
"children":["Looking back now, it seems to me that the way we think of RSS readers needs to fundamentally change. Presenting information as a news feed where the user isn\u2019t pressured to read every item or feel like a failure is one way to move the needle on the user experience here. What I wonder is whether it isn\u2019t already too late for this category of applications as services like Twitter & Facebook take over as how people keep up to date with what\u2019s going on with the people and content they care about."
]
},"\u201d"
]
},"\n",{
"name":"p",
"attributes":{
},
"children":["The short answer is Yes, it is too late. Feed reader developers made a number of fundamental mistakes early on when they all tried to make feeds act and look like email. What had been an opportunity to improve the way we consume information turned into yet another giant unmanageable inbox. Feeds themselves are still extremely viable and useful as a technology. Feed readers, however, need to evolve or go away."
]
},"\n"
]
},
"updated":"2009-05-05T16:56:43.000Z",
"published":"2009-05-05T16:56:43.000Z",
"authors":[{
"name":"James M Snell",
"uri":"http://www.snellspace.com/wp"
}
],
"links":[{
"href":"http://creativecommons.org/licenses/by-nc/2.5/rdf",
"rel":"license",
"type":"application/rdf+xml"
},{
"href":"http://www.snellspace.com/wp/wp-commentsatom1.php?p=989",
"rel":"replies",
"type":"application/atom+xml",
"attributes":{
"thr:count":{
"attributes":{
"xmlns:thr":"http://purl.org/syndication/thread/1.0"
},
"value":"0"
}
}
},{
"href":"http://www.snellspace.com/wp/?p=989"
}
],
"categories":[{
"term":"Personal",
"scheme":"http://www.snellspace.com/wp/"
}
],
"attributes":{
"xml:base":"http://www.snellspace.com/wp/"
}
},{
"id":"http://www.snellspace.com/wp/?p=988",
"title":{
"attributes":{
"type":"html"
},
"children":["A few more"
]
},
"summary":{
"attributes":{
"type":"xhtml"
},
"children":["We received a few more pics from the photographer from Jen\u2019s photoshoot in early April. Turned out really well I think.\n\n\n\n\n\n"
]
},
"rights":"Copyright 2009, James M Snell. Some rights reserved.",
"content":{
"attributes":{
"type":"xhtml"
},
"children":[{
"name":"p",
"attributes":{
},
"children":["We received a few more pics from the photographer from Jen\u2019s photoshoot in early April. Turned out really well I think."
]
},"\n",{
"name":"p",
"attributes":{
},
"children":[{
"name":"a",
"attributes":{
"href":"http://www.flickr.com/photos/jasnell/3489913087/",
"title":"Beauty by JamesMSnell, on Flickr"
},
"children":[{
"name":"img",
"attributes":{
"src":"http://farm4.static.flickr.com/3577/3489913087_e4c8cab720_m.jpg",
"width":"160",
"height":"240",
"alt":"Beauty"
},
"children":[
]
}
]
}
]
},"\n",{
"name":"p",
"attributes":{
},
"children":[{
"name":"a",
"attributes":{
"href":"http://www.flickr.com/photos/jasnell/3489912609/",
"title":"Beauty by JamesMSnell, on Flickr"
},
"children":[{
"name":"img",
"attributes":{
"src":"http://farm4.static.flickr.com/3411/3489912609_bcbfc4947d_m.jpg",
"width":"160",
"height":"240",
"alt":"Beauty"
},
"children":[
]
}
]
}
]
},"\n",{
"name":"p",
"attributes":{
},
"children":[{
"name":"a",
"attributes":{
"href":"http://www.flickr.com/photos/jasnell/3490726260/",
"title":"Beauty by JamesMSnell, on Flickr"
},
"children":[{
"name":"img",
"attributes":{
"src":"http://farm4.static.flickr.com/3315/3490726260_264d9542e2_m.jpg",
"width":"160",
"height":"240",
"alt":"Beauty"
},
"children":[
]
}
]
}
]
},"\n",{
"name":"p",
"attributes":{
},
"children":[{
"name":"a",
"attributes":{
"href":"http://www.flickr.com/photos/jasnell/3489911809/",
"title":"Beauty by JamesMSnell, on Flickr"
},
"children":[{
"name":"img",
"attributes":{
"src":"http://farm4.static.flickr.com/3585/3489911809_feaa2138ec_m.jpg",
"width":"160",
"height":"240",
"alt":"Beauty"
},
"children":[
]
}
]
},"\n"
]
},"\n"
]
},
"updated":"2009-05-01T15:51:00.000Z",
"published":"2009-05-01T15:51:00.000Z",
"authors":[{
"name":"James M Snell",
"uri":"http://www.snellspace.com/wp"
}
],
"links":[{
"href":"http://creativecommons.org/licenses/by-nc/2.5/rdf",
"rel":"license",
"type":"application/rdf+xml"
},{
"href":"http://www.snellspace.com/wp/wp-commentsatom1.php?p=988",
"rel":"replies",
"type":"application/atom+xml",
"attributes":{
"thr:count":{
"attributes":{
"xmlns:thr":"http://purl.org/syndication/thread/1.0"
},
"value":"0"
}
}
},{
"href":"http://www.snellspace.com/wp/?p=988"
}
],
"categories":[{
"term":"Personal",
"scheme":"http://www.snellspace.com/wp/"
}
],
"attributes":{
"xml:base":"http://www.snellspace.com/wp/"
}
},{
"id":"http://www.snellspace.com/wp/?p=987",
"title":{
"attributes":{
"type":"html"
},
"children":["Atompub failure?"
]
},
"summary":{
"attributes":{
"type":"xhtml"
},
"children":["So Joe Gregorio apparently now thinks Atompub is a failure\u2026 excuse me while I sigh deeply and shake my head\u2026\n\n"
]
},
"rights":"Copyright 2009, James M Snell. Some rights reserved.",
"content":{
"attributes":{
"type":"xhtml"
},
"children":[{
"name":"p",
"attributes":{
},
"children":["So Joe Gregorio apparently ",{
"name":"a",
"attributes":{
"href":"http://bitworking.org/news/425/atompub-is-a-failure"
},
"children":["now thinks Atompub is a failure"
]
},"\u2026 excuse me while I sigh deeply and shake my head\u2026\n"
]
},"\n"
]
},
"updated":"2009-04-24T16:32:39.000Z",
"published":"2009-04-24T16:32:39.000Z",
"authors":[{
"name":"James M Snell",
"uri":"http://www.snellspace.com/wp"
}
],
"links":[{
"href":"http://creativecommons.org/licenses/by-nc/2.5/rdf",
"rel":"license",
"type":"application/rdf+xml"
},{
"href":"http://www.snellspace.com/wp/wp-commentsatom1.php?p=987",
"rel":"replies",
"type":"application/atom+xml",
"attributes":{
"thr:count":{
"attributes":{
"xmlns:thr":"http://purl.org/syndication/thread/1.0"
},
"value":"1"
}
}
},{
"href":"http://www.snellspace.com/wp/?p=987"
}
],
"categories":[{
"term":"Technology",
"scheme":"http://www.snellspace.com/wp/"
},{
"term":"Atom 1.0",
"scheme":"http://www.snellspace.com/wp/"
},{
"term":"really damn annoying",
"scheme":"http://www.snellspace.com/wp/"
},{