-
Notifications
You must be signed in to change notification settings - Fork 1
/
sitemap.xml
7038 lines (7038 loc) · 226 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://htcondor.org/event_summary/euro-htcss-workshop-2024.html</loc>
<lastmod>2024-12-18T01:53:18+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/event_summary/htcondor_week_2018.html</loc>
<lastmod>2024-12-18T01:53:18+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/event_summary/htcondor_week_2019.html</loc>
<lastmod>2024-12-18T01:53:18+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/event_summary/htcondor_week_2020.html</loc>
<lastmod>2024-12-18T01:53:18+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/event_summary/htcondor_week_2021.html</loc>
<lastmod>2024-12-18T01:53:18+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/event_summary/htcondor_week_2022.html</loc>
<lastmod>2024-12-18T01:53:18+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/event_summary/throughput-computing-2023.html</loc>
<lastmod>2024-12-18T01:53:18+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/event_summary/throughput-computing-2024.html</loc>
<lastmod>2024-12-18T01:53:18+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2015-04-10-tackling-strongly-correlated-quantum-systems.html</loc>
<lastmod>2015-04-10T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2016-02-11-osg-helps-ligo-scientists-confirm-einsteins-last-unproven-theory.html</loc>
<lastmod>2016-02-11T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2017-02-10-free-supercomputing.html</loc>
<lastmod>2017-02-10T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2017-02-20-neuroscientist.html</loc>
<lastmod>2017-02-20T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2017-06-02-veritas.html</loc>
<lastmod>2017-06-02T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2017-06-29-machine-learning.html</loc>
<lastmod>2017-06-29T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2017-08-29-astronomy-archives.html</loc>
<lastmod>2017-08-29T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2018-03-01-des-expanding-universe.html</loc>
<lastmod>2018-03-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2019-11-22-gpu-cloudburst.html</loc>
<lastmod>2019-11-22T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2021-01-15-Using-HTCondor-For-Large-File-Transfer.html</loc>
<lastmod>2021-01-15T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2021-08-10-Science-Gateway.html</loc>
<lastmod>2021-08-10T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2021-08-19-Anirvan-Showcase.html</loc>
<lastmod>2021-08-19T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2021-08-19-Hannah-Showcase.html</loc>
<lastmod>2021-08-19T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2021-08-19-Showcase.html</loc>
<lastmod>2021-08-19T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2021-08-19-Spencer-Showcase.html</loc>
<lastmod>2021-08-19T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2021-09-23-Resilience.html</loc>
<lastmod>2021-09-23T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2021-10-26-Banq.html</loc>
<lastmod>2021-10-26T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2021-10-26-bat-genomics.html</loc>
<lastmod>2021-10-26T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2021-11-09-usgs-invasivespecies.html</loc>
<lastmod>2021-11-09T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2021-12-16-precision-mental-health.html</loc>
<lastmod>2021-12-16T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2022-02-22-ML-and-Image-Analyses-for-Livestock-Data.html</loc>
<lastmod>2022-02-22T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2022-04-25-Natzke.html</loc>
<lastmod>2022-04-25T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2022-05-02-CLAS12.html</loc>
<lastmod>2022-05-02T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2022-05-02-NIAID.html</loc>
<lastmod>2022-05-02T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2022-05-12-EHT.html</loc>
<lastmod>2022-05-12T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2022-06-01-HTCondorWeek-Photos.html</loc>
<lastmod>2022-06-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2022-06-01-Johri.html</loc>
<lastmod>2022-06-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2022-06-01-PATh-Facility.html</loc>
<lastmod>2022-06-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2022-06-02-Record.html</loc>
<lastmod>2022-06-02T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2022-07-06-Fulvio.html</loc>
<lastmod>2022-07-06T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2022-07-06-Garcia.html</loc>
<lastmod>2022-07-06T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2022-07-06-Gillett.html</loc>
<lastmod>2022-07-06T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2022-07-06-Hiemstra.html</loc>
<lastmod>2022-07-06T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2022-07-06-Opotowsky.html</loc>
<lastmod>2022-07-06T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2022-07-12-Wilcots.html</loc>
<lastmod>2022-07-12T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2022-07-21-EOL-OSG.html</loc>
<lastmod>2022-07-21T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2022-07-21-Messick.html</loc>
<lastmod>2022-07-21T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2022-07-29-OSG-User-School-Concludes.html</loc>
<lastmod>2022-07-29T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2022-08-31-Technology-Refresh.html</loc>
<lastmod>2022-08-31T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2022-09-09-NIAID-ACE-students-attend-OSG-User-School.html</loc>
<lastmod>2022-09-09T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2022-09-27-DoIt-Article-Summary.html</loc>
<lastmod>2022-09-27T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2022-10-03-Joe-B-Profile.html</loc>
<lastmod>2022-10-03T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2022-11-03-ucsd-external-release.html</loc>
<lastmod>2022-11-03T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2022-11-09-CHTC-pool-record.html</loc>
<lastmod>2022-11-09T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2022-11-16-icecube-receives-hpc-award.html</loc>
<lastmod>2022-11-16T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2022-12-06-high-throughput-computing-fostering-data-science-without-limits.html</loc>
<lastmod>2022-12-06T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2022-12-14-CHTC-Facilitation.html</loc>
<lastmod>2022-12-14T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2022-12-19-Lightning-Talks.html</loc>
<lastmod>2022-12-19T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2022-12-19-ML-Demo.html</loc>
<lastmod>2022-12-19T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2022-12-19-OSPool-Cores.html</loc>
<lastmod>2022-12-19T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2023-01-20-chtc-demo.html</loc>
<lastmod>2023-01-20T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2023-01-20-materials-science.html</loc>
<lastmod>2023-01-20T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2023-01-23-get-to-know-todd.html</loc>
<lastmod>2023-01-23T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2023-01-27-Throughput-Computing-2023.html</loc>
<lastmod>2023-01-27T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2023-03-01-Google-HTCondor.html</loc>
<lastmod>2023-03-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2023-03-28-fire-up-the-gpus.html</loc>
<lastmod>2023-03-28T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2023-04-24-ASP.html</loc>
<lastmod>2023-04-24T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2023-04-24-CHTC-Philosophy.html</loc>
<lastmod>2023-04-24T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2023-04-24-hannah.html</loc>
<lastmod>2023-04-24T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2023-04-25-ospool-computation.html</loc>
<lastmod>2023-04-25T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2023-04-27-CDIS-bldg.html</loc>
<lastmod>2023-04-27T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2023-06-12-htcondor-helps-enable-mars-research.html</loc>
<lastmod>2023-06-12T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2023-10-24-gpargo-cc-star.html</loc>
<lastmod>2023-10-24T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2023-10-30-david-swanson-awardees-2023.html</loc>
<lastmod>2023-10-30T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2023-11-1-htcondor-european-workshop.html</loc>
<lastmod>2023-11-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2023-11-10-chtc-workshop.html</loc>
<lastmod>2023-11-10T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2023-11-13-spalding-lab.html</loc>
<lastmod>2023-11-13T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2023-11-16-the-pelican-project.html</loc>
<lastmod>2023-11-16T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2023-11-17-hanna-lab.html</loc>
<lastmod>2023-11-17T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2023-11-27-adjacent-tissues-paper.html</loc>
<lastmod>2023-11-27T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2023-12-15-AMNH-Workshops.html</loc>
<lastmod>2023-12-15T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2023-12-15-GLUE-lab.html</loc>
<lastmod>2023-12-15T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2023-12-20-OSG-School.html</loc>
<lastmod>2023-12-20T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2024-01-17-tribalcollege.html</loc>
<lastmod>2024-01-17T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2024-02-06-gis-story.html</loc>
<lastmod>2024-02-06T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2024-02-26-california-megafires.html</loc>
<lastmod>2024-02-26T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2024-03-05-astronomers-engineers-use-grid-of-computers.html</loc>
<lastmod>2024-03-05T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2024-04-04-nrao.html</loc>
<lastmod>2024-04-04T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2024-04-19-campus-onboarding.html</loc>
<lastmod>2024-04-19T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2024-04-29-eht-story.html</loc>
<lastmod>2024-04-29T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2024-05-01-European-HTCondor-Week.html</loc>
<lastmod>2024-05-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2024-05-14-big-data-with-osdf.html</loc>
<lastmod>2024-05-14T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2024-05-21-path-facility.html</loc>
<lastmod>2024-05-21T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2024-06-13-noaa-on-the-ospool.html</loc>
<lastmod>2024-06-13T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2024-06-21-european-htcondor-week-registration.html</loc>
<lastmod>2024-06-21T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2024-06-26-2024-chtc-fellows.html</loc>
<lastmod>2024-06-26T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2024-07-17-htc-24-event.html</loc>
<lastmod>2024-07-17T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2024-07-23-abstracts-open-european-htcondor-workshop.html</loc>
<lastmod>2024-07-23T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2024-07-25-collaborations-epic-eic.html</loc>
<lastmod>2024-07-25T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2024-11-21-unravelling-antibiotic-resistance.html</loc>
<lastmod>2024-11-21T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2024-11-26-cole-profile.html</loc>
<lastmod>2024-11-26T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/featured-users/2024-12-09-fellows-program.html</loc>
<lastmod>2024-12-09T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/HTCondorWeek2018</loc>
<lastmod>2024-12-18T01:53:18+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/HTCondorWeek2019</loc>
<lastmod>2024-12-18T01:53:18+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/HTCondorWeek2020</loc>
<lastmod>2024-12-18T01:53:18+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/HTCondorWeek2021</loc>
<lastmod>2024-12-18T01:53:18+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/HTCondorWeek2022</loc>
<lastmod>2024-12-18T01:53:18+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor_Takes_Flight_at_NCSA!/</loc>
<lastmod>1997-03-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Slides_from_the_Condor_presentation/</loc>
<lastmod>1997-04-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor_v5.62_was_available_for_public_download</loc>
<lastmod>1997-06-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/HPCU_news_article/</loc>
<lastmod>1997-06-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/HPCwire_interview_on_HTC/</loc>
<lastmod>1997-06-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor_was_used_at_UW-Madison_to_attack_RC5</loc>
<lastmod>1997-07-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/UW_Computing_Network_Takes_Flight_With_Intel_Grant/</loc>
<lastmod>1997-08-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Wisconsin_Condor_Assists_Illinois_Mathematician/</loc>
<lastmod>1997-08-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor_contributes_cycles_to_the_largest_ever_Metacomputing_testbed_at_SC97/</loc>
<lastmod>1997-11-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/New_Condor_version_number_scheme/</loc>
<lastmod>1998-09-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor_Contrib_Modules_Released/</loc>
<lastmod>1998-12-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/More_Condor_Contrib_Modules_Released_and_Condor_Version_6.1.1/</loc>
<lastmod>1998-12-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/CondorView_Client_Contrib_Module_now_available/</loc>
<lastmod>1999-03-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Process_Hijacking_paper/</loc>
<lastmod>1999-03-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Use_of_MemoryRequirements_in_the_UW_Madison_CS_Pool/</loc>
<lastmod>1999-03-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor_Mirror_Site!/</loc>
<lastmod>1999-06-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/The_Condor_Manuals_are_now_available_from_the_Mirror_Site!/</loc>
<lastmod>1999-08-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/A_Preview_version_of_Condor_for_Microsoft_Windows_NT_4.0_is_now_available!/</loc>
<lastmod>1999-10-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Checkpointing_bug_in_Condor_Version_6.1.9/</loc>
<lastmod>1999-11-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/condor_status_bug_in_6.1.10_found/</loc>
<lastmod>1999-11-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor_in_the_news!/</loc>
<lastmod>2000-01-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Fortran_bugs_found_in_version_6.1.11_for_Solaris_and_IRIX/</loc>
<lastmod>2000-02-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Linux_Kernel_Bug_Touched_By_Condor!/</loc>
<lastmod>2000-08-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Announcing_the_formation_of_an_Internet2_PKI_Lab_at_UW-Madison!/</loc>
<lastmod>2000-09-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor_NT_Version_6.1.16_preview_released!/</loc>
<lastmod>2000-09-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/NMI/</loc>
<lastmod>2001-09-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/ClassAd_C++_Library,_version_0.9_/</loc>
<lastmod>2001-11-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Bypass_release_2.4.9/</loc>
<lastmod>2002-01-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/NeST_0.6_released/</loc>
<lastmod>2002-02-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor-G_included_in_NMI_version_2.1/</loc>
<lastmod>2002-11-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/An_Interview_with_Visionary_Miron_Livny_of_University_of_Wisconsin_in_the_Feb_10th_issue_/</loc>
<lastmod>2003-02-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor_is_going_open_source!/</loc>
<lastmod>2003-02-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Top_Five_Myths_About_Condor/</loc>
<lastmod>2003-04-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/fault_tolerant_shell/</loc>
<lastmod>2003-04-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/New_section_on_platform-specific_information_added_to_the_Condor_manual</loc>
<lastmod>2003-06-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor-Users_mailing_list_opened!/</loc>
<lastmod>2003-07-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Paradyn-Condor_Week_will_be_April_14-16th,_2004!/</loc>
<lastmod>2004-02-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/NeST_0.9.6_released/</loc>
<lastmod>2004-03-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor_Setup_Hawkeye_package_is_available/</loc>
<lastmod>2004-04-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Paradyn-Condor_Week/</loc>
<lastmod>2004-04-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/UK_Condor_Week_will_be_Oct_11-15th,_2004!/</loc>
<lastmod>2004-09-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Solving_Optimization_Problems_with_Grid-Enabled_Technologies/</loc>
<lastmod>2004-10-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Stork_0.9.1_released</loc>
<lastmod>2004-10-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor_Week_2005_announced/</loc>
<lastmod>2004-11-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Using_the_GRID_to_improve_the_computation_speed_of_electrical_impedance_tomography_(EIT)_reconstruct/</loc>
<lastmod>2005-01-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/An_eagle-eye_view_of_the_Condor_project/</loc>
<lastmod>2005-02-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Hartford_Life_is_in_the_news/</loc>
<lastmod>2005-02-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/CERN_readies_world's_biggest_science_grid/</loc>
<lastmod>2005-03-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor_Week_2005/</loc>
<lastmod>2005-03-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/UW_Condor_project_is_a_piece_of_CERN's_massive_grid_computer/</loc>
<lastmod>2005-03-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/the_Render_Queue_Integration/</loc>
<lastmod>2005-03-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Himani_Apte/</loc>
<lastmod>2005-04-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Coraid_in_Hungarian_Grid_Project/</loc>
<lastmod>2005-05-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/GLOW/</loc>
<lastmod>2005-05-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Alain_Roy_is_in_the_news</loc>
<lastmod>2005-06-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Twenty_Years_of_Condor/</loc>
<lastmod>2005-07-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Wikipedia/</loc>
<lastmod>2005-07-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/the_Rosen_Center_for_Advanced_Computing/</loc>
<lastmod>2005-07-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor_provides_cycles_to_the_TeraGrid_at_RCAC/</loc>
<lastmod>2005-08-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Grid_Computing_with_Condor_in_the_insurance_industry/</loc>
<lastmod>2005-08-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Optena_launches_a_Condor_Knowledge_Base_and_Support_Site/</loc>
<lastmod>2005-08-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/The_Sweet_Sound_of_Grid_Computing/</loc>
<lastmod>2005-08-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Finding_the_Business_Case_for_Grids/</loc>
<lastmod>2005-10-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Press_release_from_Canadian_environmental_minister/</loc>
<lastmod>2005-10-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Building_a_Linux_cluster_on_a_budget_from_Linux.com/</loc>
<lastmod>2005-11-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Communicating_outside_the_flock,_Part_1_Condor-G_with_Globus_at_a_href=httpwww-128.ibm.comde/</loc>
<lastmod>2005-12-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Formation_of_a_Condor_Enterprise_Users_Group/</loc>
<lastmod>2005-12-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/ETICS_project/</loc>
<lastmod>2006-01-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/GLOW_Brings_Grids_to_Campus/</loc>
<lastmod>2006-01-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Communicating_outside_the_flock,_Part_2_Integrate_grid_resources_with_Condor-G_plus_Globus_Toolkit/</loc>
<lastmod>2006-02-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Digital_Aerial_Solutions_(DAS)_uses_Condor/</loc>
<lastmod>2006-02-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Announcing_the_International_Summer_School_on_Grid_Computing_2006/</loc>
<lastmod>2006-03-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/GAMS_and_Condor/</loc>
<lastmod>2006-03-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Simulating_Supersymmetry_with_Condor/</loc>
<lastmod>2006-03-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/A_Peek_into_Micron's_Grid_Infrastructure/</loc>
<lastmod>2006-04-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Registration_open_for_European_Condor_Week_2006,_June_26-29,_Milan,_Italy/</loc>
<lastmod>2006-05-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/UW_holds_Condor_meeting/</loc>
<lastmod>2006-05-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor_used_to_research_genetic_diseases/</loc>
<lastmod>2006-06-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/IBM_publishes_article_Manage_grid_resources_with_Condor_web_services/</loc>
<lastmod>2006-07-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Setting_up_a_Condor_cluster/</loc>
<lastmod>2006-09-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/UW-Madison_plays_a_central_role_in_Open_Science_Grid_(OSG)/</loc>
<lastmod>2006-09-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Linux_Journal_Magazine_publishes_article_Getting_Started_with_Condor/</loc>
<lastmod>2006-10-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor's_role_in_The_Wild/</loc>
<lastmod>2006-11-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor_in_production_at_Banesto,_a_major_bank_in_Spain/</loc>
<lastmod>2006-11-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Purdue_doubles_the_work_life_of_computers_with_overtime/</loc>
<lastmod>2006-12-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor_used_in_search_for_alternate_fuel_sources/</loc>
<lastmod>2007-01-15T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor_Week_2007_Schedule_posted/</loc>
<lastmod>2007-03-15T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/International_Summer_School_in_Grid_Computing/</loc>
<lastmod>2007-04-03T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor_helps_Clemson_University_researchers/</loc>
<lastmod>2007-04-30T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/BAE_Systems_incorporating_Condor_into_their_SOCET_SET_v5.4_release/</loc>
<lastmod>2007-05-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor_Week_2007_Concludes/</loc>
<lastmod>2007-05-03T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Durham_University_Department_of_Geography_flies_with_Condor/</loc>
<lastmod>2007-07-05T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/More_secure_configuration_for_PostgreSQL_and_Quill_documented/</loc>
<lastmod>2007-07-12T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Cardiff_supplies_UK_National_Grid_Service_with_first_Windows_Condor_Pool/</loc>
<lastmod>2007-09-14T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/High_Throughput_Computing_Week/</loc>
<lastmod>2007-10-15T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Serious_bug_in_v6.9.4_impacts_standard_universe_jobs/</loc>
<lastmod>2007-10-19T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Clemson_University_upgrades_to_supercomputer/</loc>
<lastmod>2007-10-22T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Clemson_corrals_idle_computers/</loc>
<lastmod>2007-10-22T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Purdue_University_becomes_an_HPC-Ops_center/</loc>
<lastmod>2007-11-06T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor-G_and_GT4_Tutorial/</loc>
<lastmod>2007-11-19T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Red_Hat_Enterprise_MRG_distributed_computing_platform_announced/</loc>
<lastmod>2007-12-04T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Milwaukee_Institute_seeks_to_build_computational_power/</loc>
<lastmod>2008-03-08T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Nature_publishes_virus_views_enabled_using_Purdue's_Condor_flock/</loc>
<lastmod>2008-03-29T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Martin_Banks_editorial_The_Parallel_Bridge/</loc>
<lastmod>2008-05-28T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor_Week_2008_Videos/</loc>
<lastmod>2008-06-06T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/European_Condor_Week_2008/</loc>
<lastmod>2008-06-10T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Pegasus_to_support_work_at_the_National_Human_Genome_Research_Institute/</loc>
<lastmod>2008-07-15T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/UW_scientists_play_key_role_in_largest_physics_experiment_to_date/</loc>
<lastmod>2008-09-10T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor_helps_Purdue_and_IU_work_together/</loc>
<lastmod>2008-11-18T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/CXOtoday.com_overview_of_Condor/</loc>
<lastmod>2009-02-13T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/NCSA_reports_on_the_Vulnerability_Assessment_project/</loc>
<lastmod>2009-02-24T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/International_Summer_School_on_Grid_Computing_2009/</loc>
<lastmod>2009-03-16T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor_supports_DiaGrid_at_Purdue_University,/</loc>
<lastmod>2009-07-30T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Red_Hat_CEO_Jim_Whitehurst_singles_out_Condor/</loc>
<lastmod>2009-08-19T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/The_Condor_project_will_help_with_the_workflows/</loc>
<lastmod>2009-10-09T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Purdue's_Condor-based_DiaGraid_named_top_100_IT_project/</loc>
<lastmod>2009-11-23T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Ordnance_Survey_Ireland_Maps_with_Condor/</loc>
<lastmod>2009-12-29T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor_cluster_helps_to_evolve_naval_strategy_in_Singapore/</loc>
<lastmod>2010-01-12T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Open_Source_Energy_Savings/</loc>
<lastmod>2010-03-02T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Cardiff_University_credits_Condor_with_reducing_energy_bills/</loc>
<lastmod>2010-03-03T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Purdue's_Condor-based_DiaGrid_manages_power_as_well/</loc>
<lastmod>2010-07-08T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor_brings_genome_assembly_down_to_Earth/</loc>
<lastmod>2010-07-19T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Announcing_Condor_Day_Japan/</loc>
<lastmod>2010-10-06T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Red_Hat_has_announces_the_release_of_Enterprise_MRG_Grid_1.3/</loc>
<lastmod>2010-10-20T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Purdue_researchers_analyze_Wikipedia_using_Condor,_DAGMan,_and_TeraGrid/</loc>
<lastmod>2010-12-08T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Cycle_Computing_uses_Condor_to_create_10,000-core_cluster_in_Amazon's_EC2/</loc>
<lastmod>2011-04-06T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Center_for_High_Throughput_Computing_(CHTC)_becomes_first_Red_Hat_Center_of_Excellence_Development_P/</loc>
<lastmod>2011-05-05T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Cycle_Computing_uses_Condor_to_create_30,000-core_cluster_in_Amazon's_EC2/</loc>
<lastmod>2011-09-20T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Upgrades_recommended/</loc>
<lastmod>2012-02-06T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Red_Hat_announces_the_release_of_Red_Hat_Enterprise_MRG_2.1,/</loc>
<lastmod>2012-02-10T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor_in_EC2_now_supported_by_Red_Hat/</loc>
<lastmod>2012-03-02T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Congratulations_to_Victor_Ruotti/</loc>
<lastmod>2012-03-15T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Two_Condor_papers_selected_as_most_influential_in_HPDC/</loc>
<lastmod>2012-03-25T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/50,000-Core_Condor_cluster_provisioned_by_Cycle_Computing/</loc>
<lastmod>2012-05-02T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/DOE_and_NSF_award_$27_million_to_OSG/</loc>
<lastmod>2012-07-03T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor_contributes_to_LHC_and_research_efforts_benefit/</loc>
<lastmod>2012-08-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor_Security_Releases_7.8.2_and_7.6.8/</loc>
<lastmod>2012-08-14T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor_Security_Release_7.6.9/</loc>
<lastmod>2012-08-15T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Red_Hat_releases_Enterprise_MRG_2.2/</loc>
<lastmod>2012-09-24T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor_Security_Release_7.8.6/</loc>
<lastmod>2012-10-25T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Condor_name_changing_to_HTCondor/</loc>
<lastmod>2012-10-25T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/ParadynHTCondor_Week_2013_registration_open/</loc>
<lastmod>2013-03-08T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/HTC_deals_with_big_data/</loc>
<lastmod>2013-04-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/Atlas_project_at_CERN_describes_their_computing_environment/</loc>
<lastmod>2013-05-29T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://htcondor.org/news/HPCwire_article_highlights_running_stochastic_models_on_HTCondor/</loc>