-
Notifications
You must be signed in to change notification settings - Fork 0
/
sitemap.xml
2421 lines (2421 loc) · 77.4 KB
/
sitemap.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://www.bnlawrence.net//academic/2004/11/inaugural_post/</loc>
<lastmod>2004-11-21T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2004/11/_knowledge_management_horizon_/</loc>
<lastmod>2004-11-22T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//academic/2004/11/_maths_and_blogging_/</loc>
<lastmod>2004-11-23T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/environment/2004/11/_is_access_grid_worth_it_/</loc>
<lastmod>2004-11-24T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2004/11/_xmlsec_/</loc>
<lastmod>2004-11-26T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2004/11/b-schema/</loc>
<lastmod>2004-11-30T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2004/12/_digital_signatures_and_digital_preservation_/</loc>
<lastmod>2004-12-01T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2004/12/_python_and_java_/</loc>
<lastmod>2004-12-04T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/environment/2004/12/_forecast_xml_/</loc>
<lastmod>2004-12-06T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2004/12/trackback/</loc>
<lastmod>2004-12-06T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/computing/2004/12/Citation/</loc>
<lastmod>2004-12-07T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2004/12/ClimateChange/</loc>
<lastmod>2004-12-08T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2004/12/moreontrackback/</loc>
<lastmod>2004-12-10T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2004/12/renewables/</loc>
<lastmod>2004-12-11T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2004/12/WhyPython/</loc>
<lastmod>2004-12-16T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2004/12/dbxml2/</loc>
<lastmod>2004-12-16T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2004/12/rssreview/</loc>
<lastmod>2004-12-17T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2004/12/ElementsAndAttributes/</loc>
<lastmod>2004-12-20T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2004/12/SOA/</loc>
<lastmod>2004-12-20T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2004/12/MetVMoney/</loc>
<lastmod>2004-12-21T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/management/2004/12/VerifyableStatements/</loc>
<lastmod>2004-12-22T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/01/BinaryXML/</loc>
<lastmod>2005-01-04T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2005/01/energy/</loc>
<lastmod>2005-01-05T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/01/searching_techniques/</loc>
<lastmod>2005-01-07T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/01/open_source_licenses/</loc>
<lastmod>2005-01-08T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2005/01/colliding_icebergs_from_space/</loc>
<lastmod>2005-01-13T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/01/gui_kits_for_python/</loc>
<lastmod>2005-01-13T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/01/massachusetts_contributes_to_easier_document_curation/</loc>
<lastmod>2005-01-18T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/01/generateDS/</loc>
<lastmod>2005-01-21T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2005/01/Model_Resolution/</loc>
<lastmod>2005-01-24T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/01/IESucks/</loc>
<lastmod>2005-01-25T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/01/rss_and_or_atom_in_ncas/</loc>
<lastmod>2005-01-25T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//diary/2005/01/StateOfFear1/</loc>
<lastmod>2005-01-27T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/01/FreeAccess/</loc>
<lastmod>2005-01-31T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//academic/2005/02/no_such_thing_as_a_foolish_question/</loc>
<lastmod>2005-02-03T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/02/_upgraded_to_v166_/</loc>
<lastmod>2005-02-12T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/02/_sunday_morning_procrastination_/</loc>
<lastmod>2005-02-13T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/02/_testing-2C_extreme_programming_and_demos_/</loc>
<lastmod>2005-02-13T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/bigdata/2005/02/DataDeluge/</loc>
<lastmod>2005-02-14T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2005/02/state_of_fear_the_beginning/</loc>
<lastmod>2005-02-19T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//personal/2005/02/BroadbandFrustration/</loc>
<lastmod>2005-02-24T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2005/02/_orographic_cloud_in_a_gcm-3A_the_missing_cirrus_/</loc>
<lastmod>2005-02-24T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/02/M2CryptoWoes/</loc>
<lastmod>2005-02-25T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2005/02/state_of_fear_pick_my_timeseries/</loc>
<lastmod>2005-02-26T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/02/Matplotlib/</loc>
<lastmod>2005-02-27T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/02/_internet_explorer_really_sucks_/</loc>
<lastmod>2005-02-28T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/02/_what_is_a_web_service_/</loc>
<lastmod>2005-02-28T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2005/03/HinesParameterisation/</loc>
<lastmod>2005-03-02T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/03/_content_management-2C_wikis-2C_blogging_etc_/</loc>
<lastmod>2005-03-02T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2005/03/more_state_of_fear/</loc>
<lastmod>2005-03-05T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/03/meteorological_dinosaurs/</loc>
<lastmod>2005-03-08T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/03/why_blogging_is_good_for_you/</loc>
<lastmod>2005-03-09T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/03/your_website_really_does_need_to_be_current/</loc>
<lastmod>2005-03-09T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/03/when_is_a_webservice_a_grid_service/</loc>
<lastmod>2005-03-10T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2005/03/cloud_feedbacks/</loc>
<lastmod>2005-03-15T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//management/2005/03/peopleware/</loc>
<lastmod>2005-03-15T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//diary/2005/03/ddt_and_malaria/</loc>
<lastmod>2005-03-16T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2005/03/sea_level_rise_predictions/</loc>
<lastmod>2005-03-20T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/03/soa_design_principles/</loc>
<lastmod>2005-03-20T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/03/python_eggs/</loc>
<lastmod>2005-03-22T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/03/icsu_recommendations/</loc>
<lastmod>2005-03-23T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/03/linus_spoof_letter_to_bill_gates/</loc>
<lastmod>2005-03-23T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/03/p2pgis/</loc>
<lastmod>2005-03-23T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/03/jisc_digital_rights_meeting/</loc>
<lastmod>2005-03-24T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//diary/2005/03/debunking_crichton_done_for_me/</loc>
<lastmod>2005-03-28T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//management/2005/03/attention_deficit_trait/</loc>
<lastmod>2005-03-30T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/03/function_creep_and_institutional_repositories/</loc>
<lastmod>2005-03-31T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2005/04/satellite_temperature_trends/</loc>
<lastmod>2005-04-11T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//personal/2005/04/fine_excuse_for_digital_silence/</loc>
<lastmod>2005-04-14T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//personal/2005/04/sleepless_in_oxfordshire/</loc>
<lastmod>2005-04-26T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//management/2005/04/managing_action_items/</loc>
<lastmod>2005-04-28T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//academic/2005/04/fairuse/</loc>
<lastmod>2005-04-29T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2005/04/glaciers_indicate_temperature_increase/</loc>
<lastmod>2005-04-29T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/05/citation_decay_rate/</loc>
<lastmod>2005-05-11T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/05/grid_architecture/</loc>
<lastmod>2005-05-16T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/05/dual_core_opterons/</loc>
<lastmod>2005-05-24T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/06/terms_and_conditions/</loc>
<lastmod>2005-06-30T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2005/07/AntarcticIce/</loc>
<lastmod>2005-07-01T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/07/business_models_and_curation/</loc>
<lastmod>2005-07-28T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2005/08/solar_influence_on_recent_climate/</loc>
<lastmod>2005-08-01T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/08/metadata_xml_and_dejavu/</loc>
<lastmod>2005-08-11T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//academic/2005/08/nature_doi_failure/</loc>
<lastmod>2005-08-11T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/08/service_chaining/</loc>
<lastmod>2005-08-21T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//personal/2005/10/beijing_beauty/</loc>
<lastmod>2005-10-10T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/11/trajectory_support_for_campaigns/</loc>
<lastmod>2005-11-10T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/11/on_moores_law/</loc>
<lastmod>2005-11-14T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2005/12/self_contradiction/</loc>
<lastmod>2005-12-07T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2005/12/solar_irradiance_and_sunspot_cycles/</loc>
<lastmod>2005-12-08T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2005/12/hemel_hempstead_fire/</loc>
<lastmod>2005-12-13T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2005/12/data_citation/</loc>
<lastmod>2005-12-22T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/01/whither_parameters_in_metadata/</loc>
<lastmod>2006-01-03T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/01/oxford-seminar-in-march/</loc>
<lastmod>2006-01-05T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/01/new_version_of_numsim_available/</loc>
<lastmod>2006-01-13T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/01/bibliographic_references_iso19115_and_numsim/</loc>
<lastmod>2006-01-20T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/01/merging_metadata_always_lowers_quality/</loc>
<lastmod>2006-01-22T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/02/might-trackback-growup/</loc>
<lastmod>2006-02-24T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/02/web_service_wars/</loc>
<lastmod>2006-02-24T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/03/some_trackback_code/</loc>
<lastmod>2006-03-01T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/03/meteorological_time/</loc>
<lastmod>2006-03-07T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//academic/2006/03/journals_and_blogging/</loc>
<lastmod>2006-03-20T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/03/the_lockin_results_in_the_exeter_communique/</loc>
<lastmod>2006-03-20T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/03/some_practicalities_with_iso19139/</loc>
<lastmod>2006-03-28T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/04/more_meteorological_time/</loc>
<lastmod>2006-04-13T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//talks/2006/04/nerc-escience-ahm/</loc>
<lastmod>2006-04-26T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/04/more_on_data_citation/</loc>
<lastmod>2006-04-28T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/05/service_binding/</loc>
<lastmod>2006-05-19T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//talks/2006/06/NDG_SemanticEdinburgh06/</loc>
<lastmod>2006-06-08T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//diary/2006/07/the_great_british_summer/</loc>
<lastmod>2006-07-03T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2006/07/what_does_a_forecast_icon_mean-3F/</loc>
<lastmod>2006-07-05T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2006/07/curious_as_to_how_this_forecast_goes</loc>
<lastmod>2006-07-16T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/07/on_processing_affordance/</loc>
<lastmod>2006-07-27T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/07/affording_interfaces/</loc>
<lastmod>2006-07-28T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//diary/2006/08/what_is_bt_up_to_this_time-3F/</loc>
<lastmod>2006-08-09T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/08/granule_concepts/</loc>
<lastmod>2006-08-11T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/08/on_access_control/</loc>
<lastmod>2006-08-15T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/08/to_extend_or_not_to_extend_</loc>
<lastmod>2006-08-15T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2006/09/diesel_v_petrol/</loc>
<lastmod>2006-09-13T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/09/more_on_citation/</loc>
<lastmod>2006-09-21T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/09/more_on_citation_-_part_two_mst/</loc>
<lastmod>2006-09-22T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/09/more_on_citation_-_part_three_delving/</loc>
<lastmod>2006-09-26T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/10/on_substitution_groups_and_iso19139/</loc>
<lastmod>2006-10-19T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/10/citation_hosting_and_publication/</loc>
<lastmod>2006-10-20T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/10/persistence/</loc>
<lastmod>2006-10-23T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/10/citing_data_with_iso19139/</loc>
<lastmod>2006-10-25T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//diary/2006/11/answers.yahoo.com_to_the_rescue/</loc>
<lastmod>2006-11-12T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2006/11/climate_change_speed/</loc>
<lastmod>2006-11-12T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/11/browser_crap/</loc>
<lastmod>2006-11-15T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/11/a_proposal_for_profiling_iso19139/</loc>
<lastmod>2006-11-30T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//diary/2006/11/wireless_internet_blackspot_-_australia/</loc>
<lastmod>2006-11-30T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/12/no_silver_bullet_exists/</loc>
<lastmod>2006-12-01T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/12/service_descriptions/</loc>
<lastmod>2006-12-07T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/12/service_orientated_architecture_-_two_years_on/</loc>
<lastmod>2006-12-07T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2006/12/access_control/</loc>
<lastmod>2006-12-19T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//diary/2007/04/spring/</loc>
<lastmod>2007-04-23T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2007/05/interoperability_is_just_over_the_horizon_..._always/</loc>
<lastmod>2007-05-02T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2007/05/citation_and_claddier/</loc>
<lastmod>2007-05-21T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//personal/2007/07/yet_more_digital_silence/</loc>
<lastmod>2007-07-10T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//academic/2007/09/on_measuring_research_outputs/</loc>
<lastmod>2007-09-07T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2007/09/on_sql_and_xml/</loc>
<lastmod>2007-09-18T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2007/12/a_definition_of_intelligence/</loc>
<lastmod>2007-12-04T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2007/12/raw_and_refereed_data/</loc>
<lastmod>2007-12-17T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2007/12/discovery_and_google/</loc>
<lastmod>2007-12-19T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/01/the_leonardo_file_system/</loc>
<lastmod>2008-01-02T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/01/virtualenv/</loc>
<lastmod>2008-01-02T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2008/01/why_is_climate_modelling_stuck/</loc>
<lastmod>2008-01-16T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/01/whither_service_descriptions/</loc>
<lastmod>2008-01-22T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2008/01/using_more_computer_power_revisited/</loc>
<lastmod>2008-01-23T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2008/01/moving_modelling_forward_in_small_steps/</loc>
<lastmod>2008-01-29T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/02/data_publication/</loc>
<lastmod>2008-02-01T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/02/finding_is_not_enough/</loc>
<lastmod>2008-02-15T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2008/02/on_global_warming_urgency/</loc>
<lastmod>2008-02-15T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/02/authkit_and_pylons_don-27t_quite_fit/</loc>
<lastmod>2008-02-17T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/02/more_quotations_-_static_maps-2C_public_trusts-2C_and_bad_processes/</loc>
<lastmod>2008-02-22T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/03/online_resources_in_iso19115_and_moles/</loc>
<lastmod>2008-03-19T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/03/the_scope_of_iso19115/</loc>
<lastmod>2008-03-19T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/03/early_moles_version_two_thinking/</loc>
<lastmod>2008-03-20T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/04/more_moles_version_two_thinking/</loc>
<lastmod>2008-04-01T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/04/subversion_under_wine/</loc>
<lastmod>2008-04-01T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/04/notes_on_brief_service_descriptions_and_bindings/</loc>
<lastmod>2008-04-03T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//diary/2008/04/semis_here_we_come/</loc>
<lastmod>2008-04-06T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/04/on_typed_links</loc>
<lastmod>2008-04-10T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/04/more_on_the_windows_subversion_client_under_wine/</loc>
<lastmod>2008-04-16T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//2008/04/first_time_grant_holder_experience/</loc>
<lastmod>2008-04-21T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/04/creating_rdfa/</loc>
<lastmod>2008-04-23T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/04/implementing_my_rdfa_wiki_code/</loc>
<lastmod>2008-04-25T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/05/atom_for_moles/</loc>
<lastmod>2008-05-07T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/05/big_java/</loc>
<lastmod>2008-05-07T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2008/05/chaiten/</loc>
<lastmod>2008-05-07T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/05/rdf_software_stacks/</loc>
<lastmod>2008-05-08T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/05/from_ore_to_dublincore/</loc>
<lastmod>2008-05-09T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/05/beginning_to_get_a_grip_on_ore/</loc>
<lastmod>2008-05-16T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/05/cost_models/</loc>
<lastmod>2008-05-20T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/05/metadata_effort_and_scope/</loc>
<lastmod>2008-05-21T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/05/introducing_metafor/</loc>
<lastmod>2008-05-23T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/05/ea_and_subversion_resolved/</loc>
<lastmod>2008-05-24T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/05/identifiers_persistence_and_citation/</loc>
<lastmod>2008-05-29T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2008/06/simple_thinking/</loc>
<lastmod>2008-06-03T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/06/having_our_granule_cake_and_eating_it_too/</loc>
<lastmod>2008-06-04T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/06/moles_basic_concepts/</loc>
<lastmod>2008-06-04T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/06/the_anatomy_of_a_mip/</loc>
<lastmod>2008-06-12T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/06/exposing_mips_in_moles/</loc>
<lastmod>2008-06-13T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/06/anatomy_of_a_mip_-_part2/</loc>
<lastmod>2008-06-18T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2008/07/the_rising_storm/</loc>
<lastmod>2008-07-18T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/computing/2008/07/model_intercomparison-2C_resolution-2C_ensembles/</loc>
<lastmod>2008-07-28T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/08/formalising_information_model_development/</loc>
<lastmod>2008-08-13T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2008/08/oil_demand/</loc>
<lastmod>2008-08-13T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/08/balancing_harmonisation/</loc>
<lastmod>2008-08-14T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/08/defining_a_metamodel_-_part_one/</loc>
<lastmod>2008-08-19T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2008/09/why_global_warming_is_too_slow/</loc>
<lastmod>2008-09-01T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//diary/2008/09/reading_time_and_reading_speed_-_both_adrift/</loc>
<lastmod>2008-09-21T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/10/virtual_conferencing/</loc>
<lastmod>2008-10-06T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/10/delicious_on_konqueror/</loc>
<lastmod>2008-10-15T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2008/11/peak_everything/</loc>
<lastmod>2008-11-05T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/11/lack_of_service/</loc>
<lastmod>2008-11-10T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//diary/2008/11/tales_from_the_sleep_deprived/</loc>
<lastmod>2008-11-13T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2008/11/cmip5_-_the_federation/</loc>
<lastmod>2008-11-14T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2008/11/exist_memory_and_stability/</loc>
<lastmod>2008-11-14T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//diary/2008/11/nearest_book/</loc>
<lastmod>2008-11-14T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//personal/2008/12/kia_kaha_my_boy/</loc>
<lastmod>2008-12-24T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2009/01/blimey-21_solar_wind_and_tropical_cyclones/</loc>
<lastmod>2009-01-06T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2009/01/european_summer_drying/</loc>
<lastmod>2009-01-06T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//diary/2009/01/reading_in_2009-2C_1-3A_six_degrees/</loc>
<lastmod>2009-01-06T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2009/01/curation_and_specification/</loc>
<lastmod>2009-01-08T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2009/01/two_degrees_of_warming/</loc>
<lastmod>2009-01-09T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//academic/2009/01/egu_2009/</loc>
<lastmod>2009-01-13T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2009/01/heat_not_drought/</loc>
<lastmod>2009-01-13T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2009/01/sd_cards_to_the_rescue/</loc>
<lastmod>2009-01-13T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//diary/2009/01/reading_in_2009-2C_3-3A_miss_smilla/</loc>
<lastmod>2009-01-25T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//diary/2009/01/Reading-20in-202009-2C-202-3A-20Water-20Supply/</loc>
<lastmod>2009-01-28T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2009/01/bbc_goes_to_rdf/</loc>
<lastmod>2009-01-30T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//academic/2009/01/when_the_paparazzi_are_ok/</loc>
<lastmod>2009-01-30T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//diary/2009/01/reading_in_2009-2C_4-3A_engleby_not_for_me/</loc>
<lastmod>2009-01-31T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2009/02/ndg_papers_appear_in_phil_trans/</loc>
<lastmod>2009-02-03T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2009/02/obscurity/</loc>
<lastmod>2009-02-03T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2009/02/strongly_defend_weakly_held_positions/</loc>
<lastmod>2009-02-19T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2009/03/irony/</loc>
<lastmod>2009-03-03T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2009/03/ukrds/</loc>
<lastmod>2009-03-04T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2009/03/the_publication_ecosystem/</loc>
<lastmod>2009-03-08T00:00:00-06:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//diary/2009/03/reading_2009-2C_5-3A_pillars_need_shortening/</loc>
<lastmod>2009-03-13T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//diary/2009/04/newark_liberty_international_airport/</loc>
<lastmod>2009-04-07T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2009/04/scientific_method/</loc>
<lastmod>2009-04-16T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//diary/2009/04/tales_from_the_egu/</loc>
<lastmod>2009-04-22T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2009/04/sun_oracle/</loc>
<lastmod>2009-04-23T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2009/04/wcs_is_dead-2C_long_live_wfs/</loc>
<lastmod>2009-04-23T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//diary/2009/04/reading_in_2009-2C_6-2C7-2C8-3A_the_language_of_the_stones_trilogy/</loc>
<lastmod>2009-04-29T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2009/04/ecomotive_start/</loc>
<lastmod>2009-04-30T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//diary/2009/05/busy_week/</loc>
<lastmod>2009-05-13T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//diary/2009/05/reading_in_2009-2C_9-3A_under_enemy_colours/</loc>
<lastmod>2009-05-16T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2009/05/kubuntu_frustration_..._again/</loc>
<lastmod>2009-05-23T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2009/05/i_had_to_laugh/</loc>
<lastmod>2009-05-27T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2009/05/i_had_to_laugh-2C_part_2/</loc>
<lastmod>2009-05-28T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2009/05/resource_reality/</loc>
<lastmod>2009-05-28T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2009/06/journals_and_data_curation/</loc>
<lastmod>2009-06-02T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2009/06/catalogues-2C_shopping_carts_and_portals/</loc>
<lastmod>2009-06-03T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//diary/2009/06/reading_in_2009-2C_10-3A_careless_in_red/</loc>
<lastmod>2009-06-03T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//academic/2009/06/unhinged_doi-3A_who_ya_gonna_call-3F/</loc>
<lastmod>2009-06-04T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2009/06/peak_everything_revisited/</loc>
<lastmod>2009-06-09T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2009/06/the_doi_saga_continued/</loc>
<lastmod>2009-06-09T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2009/06/confidence_and_competence/</loc>
<lastmod>2009-06-12T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//diary/2009/06/reading_in_2009-2C_11-3B_one_to_miss/</loc>
<lastmod>2009-06-15T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2009/06/a_controlled_vocabulary_for_advection_schemes/</loc>
<lastmod>2009-06-16T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2009/06/aral_sea_dessication/</loc>
<lastmod>2009-06-16T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2009/06/interoperability-2C_data_fusion_and_mashups/</loc>
<lastmod>2009-06-17T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//diary/2009/06/reading_in_2009-2C_12-3A_roman_capers/</loc>
<lastmod>2009-06-17T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//diary/2009/07/holidays/</loc>
<lastmod>2009-07-01T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//environment/2009/07/ukcp09/</loc>
<lastmod>2009-07-02T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//diary/2009/07/Reading-20in-202009-2C-2013-3A-20Songs-20of-20Earth-20and-20Power/</loc>
<lastmod>2009-07-03T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2009/07/UM_Crack_Cocaine/</loc>
<lastmod>2009-07-08T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/environment/2009/07/cf_standard_names_growth/</loc>
<lastmod>2009-07-08T00:00:00-05:00</lastmod>
</url>
<url>
<loc>https://www.bnlawrence.net//computing/2009/07/bryans_fishy_example/</loc>