-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwordpress.xml
More file actions
5303 lines (4989 loc) · 359 KB
/
wordpress.xml
File metadata and controls
5303 lines (4989 loc) · 359 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
This is a WordPress eXtended RSS file generated by WordPress as an export of your site.
It contains information about your site's posts, pages, comments, categories, and other content.
You may use this file to transfer that content from one site to another.
This file is not intended to serve as a complete backup of your site.
To import this information into a WordPress site follow these steps:
1. Log in to that site as an administrator.
2. Go to Tools: Import in the WordPress admin panel.
3. Install the "WordPress" importer from the list.
4. Activate & Run Importer.
5. Upload this file using the form provided on that page.
6. You will first be asked to map the authors in this export file to users
on the site. For each author, you may choose to map to an
existing user on the site or to create a new user.
7. WordPress will then import each of the posts, pages, comments, categories, etc.
contained in this file into your site.
-->
<!-- generator="WordPress.com" created="2014-10-03 12:02"-->
<rss version="2.0" xmlns:excerpt="http://wordpress.org/export/1.2/excerpt/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:wp="http://wordpress.org/export/1.2/">
<channel>
<title>Infrequent Rambling</title>
<link>http://blog.dreamshake.net</link>
<description>Just me, (really) unedited</description>
<pubDate>Fri, 03 Oct 2014 12:02:03 +0000</pubDate>
<language>en</language>
<wp:wxr_version>1.2</wp:wxr_version>
<wp:base_site_url>http://wordpress.com/</wp:base_site_url>
<wp:base_blog_url>http://blog.dreamshake.net</wp:base_blog_url>
<wp:wp_author>
<wp:author_login>pdbailey34</wp:author_login>
<wp:author_email>bailey@dreamshake.net</wp:author_email>
<wp:author_display_name><![CDATA[Bailey]]></wp:author_display_name>
<wp:author_first_name><![CDATA[]]></wp:author_first_name>
<wp:author_last_name><![CDATA[]]></wp:author_last_name>
</wp:wp_author>
<wp:category>
<wp:term_id>2385047</wp:term_id>
<wp:category_nicename>ancient-stuff</wp:category_nicename>
<wp:category_parent/>
<wp:cat_name><![CDATA[Ancient stuff]]></wp:cat_name>
<wp:category_description><![CDATA[Posts I've imported from previous blogs. Intermittently, they go back to 2003, and further if I can negotiate the Wayback Machine.]]></wp:category_description>
</wp:category>
<wp:category>
<wp:term_id>257</wp:term_id>
<wp:category_nicename>geek</wp:category_nicename>
<wp:category_parent/>
<wp:cat_name><![CDATA[Geek]]></wp:cat_name>
<wp:category_description><![CDATA[Things that relate to technology, or other stuff that the mainstream might consider "geeky". IMHO geek != pejorative.]]></wp:category_description>
</wp:category>
<wp:category>
<wp:term_id>109346</wp:term_id>
<wp:category_nicename>general-silliness</wp:category_nicename>
<wp:category_parent/>
<wp:cat_name><![CDATA[General Silliness]]></wp:cat_name>
</wp:category>
<wp:category>
<wp:term_id>17925</wp:term_id>
<wp:category_nicename>idiot-box</wp:category_nicename>
<wp:category_parent/>
<wp:cat_name><![CDATA[Idiot box]]></wp:cat_name>
<wp:category_description><![CDATA[It's the telly, innit?]]></wp:category_description>
</wp:category>
<wp:category>
<wp:term_id>32264713</wp:term_id>
<wp:category_nicename>lab-coat-stuff</wp:category_nicename>
<wp:category_parent/>
<wp:cat_name><![CDATA[Lab coat stuff]]></wp:cat_name>
</wp:category>
<wp:category>
<wp:term_id>477839</wp:term_id>
<wp:category_nicename>live-stuff</wp:category_nicename>
<wp:category_parent/>
<wp:cat_name><![CDATA[Live stuff]]></wp:cat_name>
</wp:category>
<wp:category>
<wp:term_id>171</wp:term_id>
<wp:category_nicename>meta</wp:category_nicename>
<wp:category_parent/>
<wp:cat_name><![CDATA[Meta]]></wp:cat_name>
<wp:category_description><![CDATA[Blogging about blogging. How self-referentially dull can one person get?]]></wp:category_description>
</wp:category>
<wp:category>
<wp:term_id>190</wp:term_id>
<wp:category_nicename>movies</wp:category_nicename>
<wp:category_parent/>
<wp:cat_name><![CDATA[Movies]]></wp:cat_name>
<wp:category_description><![CDATA[Stuff I think about films.]]></wp:category_description>
</wp:category>
<wp:category>
<wp:term_id>18</wp:term_id>
<wp:category_nicename>music</wp:category_nicename>
<wp:category_parent/>
<wp:cat_name><![CDATA[Music]]></wp:cat_name>
</wp:category>
<wp:category>
<wp:term_id>436</wp:term_id>
<wp:category_nicename>photography</wp:category_nicename>
<wp:category_parent/>
<wp:cat_name><![CDATA[Photography]]></wp:cat_name>
</wp:category>
<wp:category>
<wp:term_id>2835</wp:term_id>
<wp:category_nicename>serious</wp:category_nicename>
<wp:category_parent/>
<wp:cat_name><![CDATA[Serious]]></wp:cat_name>
<wp:category_description><![CDATA[Serious stuff. Don't expect much in here.]]></wp:category_description>
</wp:category>
<wp:category>
<wp:term_id>49818</wp:term_id>
<wp:category_nicename>social-media</wp:category_nicename>
<wp:category_parent/>
<wp:cat_name><![CDATA[Social Media]]></wp:cat_name>
<wp:category_description><![CDATA[Since a lot of my web usage seems to be this nowadays, I've given myself a category to blog with.]]></wp:category_description>
</wp:category>
<wp:category>
<wp:term_id>825</wp:term_id>
<wp:category_nicename>sport</wp:category_nicename>
<wp:category_parent/>
<wp:cat_name><![CDATA[Sport]]></wp:cat_name>
</wp:category>
<wp:category>
<wp:term_id>903593</wp:term_id>
<wp:category_nicename>the-wireless</wp:category_nicename>
<wp:category_parent/>
<wp:cat_name><![CDATA[The Wireless]]></wp:cat_name>
</wp:category>
<wp:category>
<wp:term_id>97</wp:term_id>
<wp:category_nicename>uncategorised</wp:category_nicename>
<wp:category_parent/>
<wp:cat_name><![CDATA[Uncategorised]]></wp:cat_name>
</wp:category>
<wp:category>
<wp:term_id>3958</wp:term_id>
<wp:category_nicename>cricket</wp:category_nicename>
<wp:category_parent>sport</wp:category_parent>
<wp:cat_name><![CDATA[Cricket]]></wp:cat_name>
</wp:category>
<wp:tag>
<wp:term_id>149655390</wp:term_id>
<wp:tag_slug>ancientstuff</wp:tag_slug>
<wp:tag_name><![CDATA[ancientstuff]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>15842146</wp:term_id>
<wp:tag_slug>geek-2</wp:tag_slug>
<wp:tag_name><![CDATA[geek]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>149655392</wp:term_id>
<wp:tag_slug>generalsilliness</wp:tag_slug>
<wp:tag_name><![CDATA[generalsilliness]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>1056281</wp:term_id>
<wp:tag_slug>idiotbox</wp:tag_slug>
<wp:tag_name><![CDATA[idiotbox]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>149655432</wp:term_id>
<wp:tag_slug>labcoatstuff</wp:tag_slug>
<wp:tag_name><![CDATA[labcoatstuff]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>21377181</wp:term_id>
<wp:tag_slug>livestuff</wp:tag_slug>
<wp:tag_name><![CDATA[livestuff]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>11868075</wp:term_id>
<wp:tag_slug>meta-2</wp:tag_slug>
<wp:tag_name><![CDATA[meta]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>1877474</wp:term_id>
<wp:tag_slug>movies-2</wp:tag_slug>
<wp:tag_name><![CDATA[movies]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>192227</wp:term_id>
<wp:tag_slug>music-2</wp:tag_slug>
<wp:tag_name><![CDATA[music]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>659997</wp:term_id>
<wp:tag_slug>photography-2</wp:tag_slug>
<wp:tag_name><![CDATA[photography]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>398</wp:term_id>
<wp:tag_slug>politics</wp:tag_slug>
<wp:tag_name><![CDATA[politics]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>40798605</wp:term_id>
<wp:tag_slug>serious-2</wp:tag_slug>
<wp:tag_name><![CDATA[serious]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>409553</wp:term_id>
<wp:tag_slug>socialmedia</wp:tag_slug>
<wp:tag_name><![CDATA[socialmedia]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>149655479</wp:term_id>
<wp:tag_slug>thewireless</wp:tag_slug>
<wp:tag_name><![CDATA[thewireless]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>19052140</wp:term_id>
<wp:tag_slug>uncategorised-2</wp:tag_slug>
<wp:tag_name><![CDATA[uncategorised]]></wp:tag_name>
</wp:tag>
<generator>http://wordpress.com/</generator>
<image>
<url>https://s2.wp.com/i/buttonw-com.png</url>
<title> » Infrequent Rambling</title>
<link>http://blog.dreamshake.net</link>
</image>
<item>
<title>wordpress-2009-06-24-xml.txt</title>
<link>http://blog.dreamshake.net/?attachment_id=3</link>
<pubDate>Wed, 24 Jun 2009 08:54:25 +0000</pubDate>
<dc:creator>pdbailey34</dc:creator>
<guid isPermaLink="false">http://dreamshake.files.wordpress.com/2009/06/wordpress-2009-06-24-xml.txt</guid>
<description/>
<content:encoded><![CDATA[http://dreamshake.files.wordpress.com/2009/06/wordpress-2009-06-24-xml.txt]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>3</wp:post_id>
<wp:post_date>2009-06-24 08:54:25</wp:post_date>
<wp:post_date_gmt>2009-06-24 08:54:25</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>wordpress-2009-06-24-xml-txt</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://dreamshake.files.wordpress.com/2009/06/wordpress-2009-06-24-xml.txt</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_oembed_e87b02a56a88623640833e39207b953d</wp:meta_key>
<wp:meta_value><![CDATA[{{unknown}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Big Bore-ther</title>
<link>http://blog.dreamshake.net/2003/05/27/big-bore-ther/</link>
<pubDate>Tue, 27 May 2003 10:18:26 +0000</pubDate>
<dc:creator>pdbailey34</dc:creator>
<guid isPermaLink="false">http://blog.dreamshake.net/?p=68</guid>
<description/>
<content:encoded><![CDATA[Does anyone really care about the latest series of Big Brother?
Well, if you go by the viewing figures (7-8 million) for the first episode, then this is set to be the biggest ever. At the risk of sounding like an intellectual snob, this really is lowest common denominator TV. Following on the heels of "Pop Idol", "Fame Academy", "I'm A Celebrity, Resurrect My Career", the television industry is proving that it knows how to flog a dead horse (see cookery, gardening and home improvement shows for further details).
I am proud to say that I don't know any of the contestants' names, but that will doubtless change over the next two months, as saturation coverage continues. Channel 4 will be off-limits, except for the cricket!]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>68</wp:post_id>
<wp:post_date>2003-05-27 11:18:26</wp:post_date>
<wp:post_date_gmt>2003-05-27 10:18:26</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>big-bore-ther</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="ancient-stuff"><![CDATA[Ancient stuff]]></category>
</item>
<item>
<title>Bye Bye Beckham!</title>
<link>http://blog.dreamshake.net/2003/06/18/bye-bye-beckham/</link>
<pubDate>Wed, 18 Jun 2003 14:23:37 +0000</pubDate>
<dc:creator>pdbailey34</dc:creator>
<guid isPermaLink="false">http://blog.dreamshake.net/?p=70</guid>
<description/>
<content:encoded><![CDATA[Thank God. They're leaving the country. The only worry is that they'll be back soon.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>70</wp:post_id>
<wp:post_date>2003-06-18 15:23:37</wp:post_date>
<wp:post_date_gmt>2003-06-18 14:23:37</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>bye-bye-beckham</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="ancient-stuff"><![CDATA[Ancient stuff]]></category>
</item>
<item>
<title>I'm back!!!!</title>
<link>http://blog.dreamshake.net/2003/07/07/im-back/</link>
<pubDate>Mon, 07 Jul 2003 10:56:45 +0000</pubDate>
<dc:creator>pdbailey34</dc:creator>
<guid isPermaLink="false">http://blog.dreamshake.net/?p=81</guid>
<description/>
<content:encoded><![CDATA[Well, I've been very lax recently, not posting to my blog, and generally feeling a bit sorry for myself. Aside from a bit of entertainment at work (more about that in a later post I think) I've actually found it difficult to adapt to being single again. Out of practice I suppose. Anyway, I had started to consider options that really wouldn't have been options a couple of years ago.
Suddenly though, I woke up on Sunday, and all was right with the world. I've remembered how to be single, and remembered that I did once have standards (hard though that may be to believe!) and I no longer need to derive comfort from those who are even worse off than me.
I have a horrible cold at the moment, but even that has failed to dampen my spirits. I'm changing my job a bit too, and that is definitely something to look forward to. Now if only my lottery numbers would come up, everything would be perfect...]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>81</wp:post_id>
<wp:post_date>2003-07-07 11:56:45</wp:post_date>
<wp:post_date_gmt>2003-07-07 10:56:45</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>im-back</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="ancient-stuff"><![CDATA[Ancient stuff]]></category>
</item>
<item>
<title>Spooks rocks!</title>
<link>http://blog.dreamshake.net/2003/07/07/spooks-rocks/</link>
<pubDate>Mon, 07 Jul 2003 22:33:51 +0000</pubDate>
<dc:creator>pdbailey34</dc:creator>
<guid isPermaLink="false">http://blog.dreamshake.net/?p=79</guid>
<description/>
<content:encoded><![CDATA[After last week's disappointing episode, this evening's was excellent. It's rubbish really, because it seems very far-fetched (and the writers had very little access to any kind of facts), but it's very enjoyable.
And it's about time Tom gave that American bird one. MI5 knocking the back right out of the CIA!]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>79</wp:post_id>
<wp:post_date>2003-07-07 23:33:51</wp:post_date>
<wp:post_date_gmt>2003-07-07 22:33:51</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>spooks-rocks</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="ancient-stuff"><![CDATA[Ancient stuff]]></category>
</item>
<item>
<title>Oh, the weather outside is frightful...</title>
<link>http://blog.dreamshake.net/2003/07/16/oh-the-weather-outside-is-frightful/</link>
<pubDate>Wed, 16 Jul 2003 21:06:59 +0000</pubDate>
<dc:creator>pdbailey34</dc:creator>
<guid isPermaLink="false">http://blog.dreamshake.net/?p=76</guid>
<description/>
<content:encoded><![CDATA[Bugger me, it's hot! Even the latest thunder storm doesn't seem to have cleared the air. I definitely reckon I'd be better off in Sydney, with Abs and Neil.
New job came through today too. I'm <strong>very</strong> pleased. BBQ at the weekend will be the perfect opportunity to celebrate...]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>76</wp:post_id>
<wp:post_date>2003-07-16 22:06:59</wp:post_date>
<wp:post_date_gmt>2003-07-16 21:06:59</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>oh-the-weather-outside-is-frightful</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="ancient-stuff"><![CDATA[Ancient stuff]]></category>
</item>
<item>
<title>Quote for the day</title>
<link>http://blog.dreamshake.net/2003/07/22/quote-for-the-day/</link>
<pubDate>Tue, 22 Jul 2003 11:01:32 +0000</pubDate>
<dc:creator>pdbailey34</dc:creator>
<guid isPermaLink="false">http://blog.dreamshake.net/?p=74</guid>
<description/>
<content:encoded><![CDATA[<em>"To err is human -- and to blame it on a computer is even more so."</em>
<strong>Robert Orben</strong>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>74</wp:post_id>
<wp:post_date>2003-07-22 12:01:32</wp:post_date>
<wp:post_date_gmt>2003-07-22 11:01:32</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>quote-for-the-day</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="ancient-stuff"><![CDATA[Ancient stuff]]></category>
</item>
<item>
<title>Released today...</title>
<link>http://blog.dreamshake.net/2003/07/28/released-today/</link>
<pubDate>Mon, 28 Jul 2003 09:49:52 +0000</pubDate>
<dc:creator>pdbailey34</dc:creator>
<guid isPermaLink="false">http://blog.dreamshake.net/?p=72</guid>
<description/>
<content:encoded><![CDATA[Breathe (remix) - Blu Cantrell featuring Sean Paul
Good song. I'll be buying it at lunchtime.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>72</wp:post_id>
<wp:post_date>2003-07-28 10:49:52</wp:post_date>
<wp:post_date_gmt>2003-07-28 09:49:52</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>released-today</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="ancient-stuff"><![CDATA[Ancient stuff]]></category>
</item>
<item>
<title>Go on Freddy!</title>
<link>http://blog.dreamshake.net/2003/08/04/go-on-freddy/</link>
<pubDate>Mon, 04 Aug 2003 09:36:56 +0000</pubDate>
<dc:creator>pdbailey34</dc:creator>
<guid isPermaLink="false">http://blog.dreamshake.net/?p=83</guid>
<description/>
<content:encoded><![CDATA[Well, the second test against the Saffers was an almost complete waste of time.
Well, maybe not completely. We now know that Gough is finished in international terms, McGrath is about as good as me, Flintoff can be the most entertaining batsman England have, and I hate Graeme Smith! Roll on Trent Bridge...]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>83</wp:post_id>
<wp:post_date>2003-08-04 10:36:56</wp:post_date>
<wp:post_date_gmt>2003-08-04 09:36:56</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>go-on-freddy</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="ancient-stuff"><![CDATA[Ancient stuff]]></category>
</item>
<item>
<title>On National Identity Cards</title>
<link>http://blog.dreamshake.net/2003/08/05/on-national-identity-cards/</link>
<pubDate>Tue, 05 Aug 2003 14:11:50 +0000</pubDate>
<dc:creator>pdbailey34</dc:creator>
<guid isPermaLink="false">http://blog.dreamshake.net/?p=85</guid>
<description/>
<content:encoded><![CDATA[I've been reading about a number of people's concerns about National Indentity cards. Up until now, I must admit, I hadn't given much thought to the matter, or been particularly concerned about my privacy and civil rights.
However, <a href="http://web.archive.org/web/20040209112145/http://www.theregister.co.uk/content/6/32148.html">having just read an article on The Register</a>, I am definitely worried where society will be in 10-15 years. It isn't inconceivable that our ID card, credit card, cell phone, and electronic money will all be integrated, giving some with the inclination the ability to track us, see what and when we spend money, and basically draw up an itinerary of our day-to-day lives.
I don't know about you, but I object to that.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>85</wp:post_id>
<wp:post_date>2003-08-05 15:11:50</wp:post_date>
<wp:post_date_gmt>2003-08-05 14:11:50</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>on-national-identity-cards</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="ancient-stuff"><![CDATA[Ancient stuff]]></category>
</item>
<item>
<title>40 Years on, and resonant as ever</title>
<link>http://blog.dreamshake.net/2003/08/22/40-years-on-and-resonant-as-ever/</link>
<pubDate>Fri, 22 Aug 2003 09:22:52 +0000</pubDate>
<dc:creator>pdbailey34</dc:creator>
<guid isPermaLink="false">http://blog.dreamshake.net/?p=87</guid>
<description/>
<content:encoded><![CDATA[40 years ago this coming Thursday, Dr. Martin Luther King Jr. gave his world-famous speech at the Lincoln memorial. One of the defining moments of the Twentieth Century, sadly we still don't have the world that Dr. King dreamed of. Here are two parts that are both famous, and highly moving.
<em>"I have a dream that one day this nation will rise up and live out the true meaning of its creed: "We hold these truths to be self-evident: that all men are created equal." I have a dream that one day on the red hills of Georgia the sons of former slaves and the sons of former slaveowners will be able to sit down together at a table of brotherhood. I have a dream that one day even the state of Mississippi, a desert state, sweltering with the heat of injustice and oppression, will be transformed into an oasis of freedom and justice. I have a dream that my four children will one day live in a nation where they will not be judged by the color of their skin but by the content of their character. I have a dream today."</em>
<em>When we let freedom ring, when we let it ring from every village and every hamlet, from every state and every city, we will be able to speed up that day when all of God's children, black men and white men, Jews and Gentiles, Protestants and Catholics, will be able to join hands and sing in the words of the old Negro spiritual, "Free at last! free at last! thank God Almighty, we are free at last!"</em>
The full speech:
<blockquote>Five score years ago, a great American, in whose symbolic shadow we stand signed the Emancipation Proclamation. This momentous decree came as a great beacon light of hope to millions of Negro slaves who had been seared in the flames of withering injustice. It came as a joyous daybreak to end the long night of captivity. But one hundred years later, we must face the tragic fact that the Negro is still not free.
One hundred years later, the life of the Negro is still sadly crippled by the manacles of segregation and the chains of discrimination. One hundred years later, the Negro lives on a lonely island of poverty in the midst of a vast ocean of material prosperity. One hundred years later, the Negro is still languishing in the corners of American society and finds himself an exile in his own land.
So we have come here today to dramatize an appalling condition. In a sense we have come to our nation's capital to cash a check. When the architects of our republic wrote the magnificent words of the Constitution and the Declaration of Independence, they were signing a promissory note to which every American was to fall heir.
This note was a promise that all men would be guaranteed the inalienable rights of life, liberty, and the pursuit of happiness. It is obvious today that America has defaulted on this promissory note insofar as her citizens of color are concerned. Instead of honoring this sacred obligation, America has given the Negro people a bad check which has come back marked "insufficient funds." But we refuse to believe that the bank of justice is bankrupt. We refuse to believe that there are insufficient funds in the great vaults of opportunity of this nation.
So we have come to cash this check -- a check that will give us upon demand the riches of freedom and the security of justice. We have also come to this hallowed spot to remind America of the fierce urgency of now. This is no time to engage in the luxury of cooling off or to take the tranquilizing drug of gradualism. Now is the time to rise from the dark and desolate valley of segregation to the sunlit path of racial justice. Now is the time to open the doors of opportunity to all of God's children. Now is the time to lift our nation from the quicksands of racial injustice to the solid rock of brotherhood.
It would be fatal for the nation to overlook the urgency of the moment and to underestimate the determination of the Negro. This sweltering summer of the Negro's legitimate discontent will not pass until there is an invigorating autumn of freedom and equality. Nineteen sixty-three is not an end, but a beginning. Those who hope that the Negro needed to blow off steam and will now be content will have a rude awakening if the nation returns to business as usual. There will be neither rest nor tranquility in America until the Negro is granted his citizenship rights.
The whirlwinds of revolt will continue to shake the foundations of our nation until the bright day of justice emerges. But there is something that I must say to my people who stand on the warm threshold which leads into the palace of justice. In the process of gaining our rightful place we must not be guilty of wrongful deeds. Let us not seek to satisfy our thirst for freedom by drinking from the cup of bitterness and hatred.
We must forever conduct our struggle on the high plane of dignity and discipline. we must not allow our creative protest to degenerate into physical violence. Again and again we must rise to the majestic heights of meeting physical force with soul force.
The marvelous new militancy which has engulfed the Negro community must not lead us to distrust of all white people, for many of our white brothers, as evidenced by their presence here today, have come to realize that their destiny is tied up with our destiny and their freedom is inextricably bound to our freedom.
We cannot walk alone. And as we walk, we must make the pledge that we shall march ahead. We cannot turn back. There are those who are asking the devotees of civil rights, "When will you be satisfied?" we can never be satisfied as long as our bodies, heavy with the fatigue of travel, cannot gain lodging in the motels of the highways and the hotels of the cities. We cannot be satisfied as long as the Negro's basic mobility is from a smaller ghetto to a larger one. We can never be satisfied as long as a Negro in Mississippi cannot vote and a Negro in New York believes he has nothing for which to vote. No, no, we are not satisfied, and we will not be satisfied until justice rolls down like waters and righteousness like a mighty stream.
I am not unmindful that some of you have come here out of great trials and tribulations. Some of you have come fresh from narrow cells. Some of you have come from areas where your quest for freedom left you battered by the storms of persecution and staggered by the winds of police brutality. You have been the veterans of creative suffering. Continue to work with the faith that unearned suffering is redemptive.
Go back to Mississippi, go back to Alabama, go back to Georgia, go back to Louisiana, go back to the slums and ghettos of our northern cities, knowing that somehow this situation can and will be changed. Let us not wallow in the valley of despair. I say to you today, my friends, that in spite of the difficulties and frustrations of the moment, I still have a dream. It is a dream deeply rooted in the American dream.
I have a dream that one day this nation will rise up and live out the true meaning of its creed: "We hold these truths to be self-evident: that all men are created equal." I have a dream that one day on the red hills of Georgia the sons of former slaves and the sons of former slaveowners will be able to sit down together at a table of brotherhood. I have a dream that one day even the state of Mississippi, a desert state, sweltering with the heat of injustice and oppression, will be transformed into an oasis of freedom and justice. I have a dream that my four children will one day live in a nation where they will not be judged by the color of their skin but by the content of their character. I have a dream today.
I have a dream that one day the state of Alabama, whose governor's lips are presently dripping with the words of interposition and nullification, will be transformed into a situation where little black boys and black girls will be able to join hands with little white boys and white girls and walk together as sisters and brothers. I have a dream today. I have a dream that one day every valley shall be exalted, every hill and mountain shall be made low, the rough places will be made plain, and the crooked places will be made straight, and the glory of the Lord shall be revealed, and all flesh shall see it together. This is our hope. This is the faith with which I return to the South. With this faith we will be able to hew out of the mountain of despair a stone of hope. With this faith we will be able to transform the jangling discords of our nation into a beautiful symphony of brotherhood. With this faith we will be able to work together, to pray together, to struggle together, to go to jail together, to stand up for freedom together, knowing that we will be free one day.
This will be the day when all of God's children will be able to sing with a new meaning, "My country, 'tis of thee, sweet land of liberty, of thee I sing. Land where my fathers died, land of the pilgrim's pride, from every mountainside, let freedom ring." And if America is to be a great nation, this must become true. So let freedom ring from the prodigious hilltops of New Hampshire. Let freedom ring from the mighty mountains of New York. Let freedom ring from the heightening Alleghenies of Pennsylvania! Let freedom ring from the snowcapped Rockies of Colorado! Let freedom ring from the curvaceous peaks of California! But not only that; let freedom ring from Stone Mountain of Georgia! Let freedom ring from Lookout Mountain of Tennessee! Let freedom ring from every hill and every molehill of Mississippi. From every mountainside, let freedom ring.
When we let freedom ring, when we let it ring from every village and every hamlet, from every state and every city, we will be able to speed up that day when all of God's children, black men and white men, Jews and Gentiles, Protestants and Catholics, will be able to join hands and sing in the words of the old Negro spiritual, "Free at last! free at last! thank God Almighty, we are free at last!"</blockquote>
<em>
</em>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>87</wp:post_id>
<wp:post_date>2003-08-22 10:22:52</wp:post_date>
<wp:post_date_gmt>2003-08-22 09:22:52</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>40-years-on-and-resonant-as-ever</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="ancient-stuff"><![CDATA[Ancient stuff]]></category>
</item>
<item>
<title>Life Sucks</title>
<link>http://blog.dreamshake.net/2003/08/26/life-sucks/</link>
<pubDate>Tue, 26 Aug 2003 12:12:31 +0000</pubDate>
<dc:creator>pdbailey34</dc:creator>
<guid isPermaLink="false">http://blog.dreamshake.net/?p=89</guid>
<description/>
<content:encoded><![CDATA[Mostly, I haven't discussed anything personal, or less trivial on my blog. In fact, on most occasions, I've actively avoided it. I'm not a person who is comfortable discussing personal or emotional matters at the best of times, let alone doing it on a website. The events of the last few days have left me feeling a bit empty and confused, so I feel the need to offload a little bit.
Some background first. Two weeks ago, I was set up with the friend of a friend. Normally, I wouldn't go near that kind of situation with a barge pole, but the person doing the introducing is someone who I trust, and I figured that I had very little to lose. Anyway, having met this person, I thought it had been a very good idea! She was really cool, we seemed to get on well, I thought she was attractive, so I was keen to meet her again.
Fast forward to this weekend, and we're both at a barbeque. Most of the people there are her friends, which made me feel a little bit nervous, but she was great, and I didn't feel uncomfortable at all. Then, out of the blue, an argument that I had had with our mutual friend came up in conversation, and things took a downward turn.
Now, I'm the first to admit that I wasn't keen to explain the circumstances of the falling out to her. It didn't make me look great, and obviously I didn't want to put her off. For the purposes of talking (writing?) through this an explanation is necessary. About a month ago, both me and the perosn that I fell out with were at a barbeque (maybe I should stay away from barbeques!), and she heard me describe one of her (other) friends as fat.
Now, I'm nobody's fool, and I should have realised that word is not an adjective to use in polite company, but I did use it. I had been drinking for 12 hours, so my recollection isn't perfect, but I'm sure that I didn't use it in the pejorative sense. In actual fact, I thought that the person I had used it to describe was quite attractive. I think we really argued because my friend had reacted by shouting at me, and I don't take to that sort of thing too kindly. I'm perfectly prepared to admit that I was insensitive and stupid to describe someone's friend in that way. I said as much by the end of the argument, and thought very little about it. If anything, I thought that the disagreement was quite amusing, in the way that it had descended into a shouting match! We were too similar really, and rational discussion went out of the window.
Anyway, back to last weekend. Eventually, the girl who I had been getting on so well with (let's call her Louise) kept asking my partner-in-arguing (let's call her Hannah) what the argument was about. Understandably, Hannah told Louise all about it. I wasn't aware that any of this had happened at the time. So, half an hour later, when I'm wondering where Louise has gone, I find her upstairs, and discover that Hannah has explained what happened. Louise was really upset about it all, to the point of crying, and, after not too long, I left, going home feeling pretty crushed if I'm honest. A couple of hours before things had been going so well, and now this.
The next day I woke up, still feeling pretty shit (it's not nice to know that you've made someone cry), and sent Louise a text message, attempting to apologise, and telling her that I'd really like to see her again. She said that she didn't want to, which is fair enough, and I went into full self-pity mode. It was only when I tried to explain to a friend of mine why I had such a bad weekend that I really started to think about events.
I like to try to put myself in the other person's shoes when I'm looking at things. How would I have reacted in her position? And that was when it struck me. I wouldn't have reacted like that. I would have been angry that someone had felt able to insult my friend (which is what I did, albeit unintentionally), and I'm as defensive of my friends as anyone. Would I have elected not to see them again, not to even ask them about what they had said? No. Would I have judged them by one drunken comment? No. And herein lies my dilemma.
In a way, now I feel angry and confused. I can understand why Louise is upset, but I can't understand her reaction (not entirely anyway). Normally I'd just be angry, but I like Louise a lot, more than anyone I have met in a long time. So I'm the real loser here, and I feel gutted.
To top it all off, it seems as though Hannah isn't speaking to me either, or at the very least, isn't over-keen to say anything. Which I really don't understand. Anyone who knows me should know I can be very harsh and tactless at times, but I'm not nasty or vindictive, and appearance means very little to me. But I feel like the bad guy. If I had gone to bed earlier a month ago, I'd probably have the chance to see Louise again. As it stands, that's not happening, and one of my friends isn't speaking to me either, and it feels as though there's nothing I can do.
So, to sum up, and to close this entry, see the title; Life Sucks!]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>89</wp:post_id>
<wp:post_date>2003-08-26 13:12:31</wp:post_date>
<wp:post_date_gmt>2003-08-26 12:12:31</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>life-sucks</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="ancient-stuff"><![CDATA[Ancient stuff]]></category>
</item>
<item>
<title>Back Again</title>
<link>http://blog.dreamshake.net/2003/08/28/back-again/</link>
<pubDate>Thu, 28 Aug 2003 13:52:34 +0000</pubDate>
<dc:creator>pdbailey34</dc:creator>
<guid isPermaLink="false">http://blog.dreamshake.net/?p=91</guid>
<description/>
<content:encoded><![CDATA[I'm going to make a concerted effort to try to make more, and better entries here. After my extended diatribe about last weekend (I'm still a bit confused about everything that happened?!), back to happier things. Hopefully Houston is coming together for a holiday in December, off to London for the weekend, and the Deeping basketball season is almost upon us again.
Cool!]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>91</wp:post_id>
<wp:post_date>2003-08-28 14:52:34</wp:post_date>
<wp:post_date_gmt>2003-08-28 13:52:34</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>back-again</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="ancient-stuff"><![CDATA[Ancient stuff]]></category>
</item>
<item>
<title>Quality Weekend</title>
<link>http://blog.dreamshake.net/2003/09/02/quality-weekend/</link>
<pubDate>Tue, 02 Sep 2003 16:15:04 +0000</pubDate>
<dc:creator>pdbailey34</dc:creator>
<guid isPermaLink="false">http://blog.dreamshake.net/?p=94</guid>
<description/>
<content:encoded><![CDATA[Watched Tomb Raider: Cradle of Life, went down to London, got drunk, met someone quite cool, enjoyed myself.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>94</wp:post_id>
<wp:post_date>2003-09-02 17:15:04</wp:post_date>
<wp:post_date_gmt>2003-09-02 16:15:04</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>quality-weekend</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="ancient-stuff"><![CDATA[Ancient stuff]]></category>
</item>
<item>
<title>Skee Lo</title>
<link>http://blog.dreamshake.net/2003/09/03/skee-lo/</link>
<pubDate>Wed, 03 Sep 2003 22:11:31 +0000</pubDate>
<dc:creator>pdbailey34</dc:creator>
<guid isPermaLink="false">http://blog.dreamshake.net/?p=97</guid>
<description/>
<content:encoded><![CDATA[<em>"I wish I was a little bit taller
I wish I was a baller
I wish I had a girl who looked good
I would call her
I wish I had a rabbit in a hat with a bat
and a six four Impala."</em>
That is all.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>97</wp:post_id>
<wp:post_date>2003-09-03 23:11:31</wp:post_date>
<wp:post_date_gmt>2003-09-03 22:11:31</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>skee-lo</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="ancient-stuff"><![CDATA[Ancient stuff]]></category>
</item>
<item>
<title>Old Friends</title>
<link>http://blog.dreamshake.net/2003/09/11/old-friends/</link>
<pubDate>Thu, 11 Sep 2003 07:10:29 +0000</pubDate>
<dc:creator>pdbailey34</dc:creator>
<guid isPermaLink="false">http://blog.dreamshake.net/?p=99</guid>
<description/>
<content:encoded><![CDATA[Heard from an old friend from university yesterday. Really cool surprise. So, if you're reading this Nicky, good to hear from you again!
More soon.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>99</wp:post_id>
<wp:post_date>2003-09-11 08:10:29</wp:post_date>
<wp:post_date_gmt>2003-09-11 07:10:29</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>old-friends</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="ancient-stuff"><![CDATA[Ancient stuff]]></category>
</item>
<item>
<title>Shopping List</title>
<link>http://blog.dreamshake.net/2003/09/18/shopping-list/</link>
<pubDate>Thu, 18 Sep 2003 19:42:36 +0000</pubDate>
<dc:creator>pdbailey34</dc:creator>
<guid isPermaLink="false">http://blog.dreamshake.net/?p=101</guid>
<description/>
<content:encoded><![CDATA[Don't you just hate making shopping lists?]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>101</wp:post_id>
<wp:post_date>2003-09-18 20:42:36</wp:post_date>
<wp:post_date_gmt>2003-09-18 19:42:36</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>shopping-list</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="ancient-stuff"><![CDATA[Ancient stuff]]></category>
</item>
<item>
<title>London Calling</title>
<link>http://blog.dreamshake.net/2003/10/07/london-calling/</link>
<pubDate>Tue, 07 Oct 2003 09:15:12 +0000</pubDate>
<dc:creator>pdbailey34</dc:creator>
<guid isPermaLink="false">http://blog.dreamshake.net/?p=105</guid>
<description/>
<content:encoded><![CDATA[... with apologies to The Clash for this entry's title!
Now, I have always said that I didn't think I was a big city person. Nice to visit, but terrible to live in. Having been to London a lot over the past 6-7 years, maybe I'm wrong. In a strange way, I actually feel at home here. Not just because I have quite a few friends in and around the place, but actually travelling around the city, I feel comfortable. I'm sure the day-to-day grind is something that might get me down, but I think I'm going to have to give it a try. Another 12 months Oracle/PLSQL experience will stand me in good stead, I think.
Going to Vienna tomorrow. Looking forward to it now, and starting to get excited about flying on a proper plane. Think the pilot will let me look in the cockpit? :)]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>105</wp:post_id>
<wp:post_date>2003-10-07 10:15:12</wp:post_date>
<wp:post_date_gmt>2003-10-07 09:15:12</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>london-calling</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="ancient-stuff"><![CDATA[Ancient stuff]]></category>
</item>
<item>
<title>Out and About</title>
<link>http://blog.dreamshake.net/2003/10/07/out-and-about/</link>
<pubDate>Tue, 07 Oct 2003 15:12:26 +0000</pubDate>
<dc:creator>pdbailey34</dc:creator>
<guid isPermaLink="false">http://blog.dreamshake.net/?p=103</guid>
<description/>
<content:encoded><![CDATA[I'm out and about on my travels this week... heading down to London for a couple of days for a dull training course (and taking the opportunity to have some beers whilst I'm down there), then it's off to Vienna for a long weekend.
Really looking for to that, actually, it'll be good to leave this sceptred isle again, since it's been a while. Not to mention I'm visiting Nicky, who I have hardly seen since I left university. Should be a good laugh!]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>103</wp:post_id>
<wp:post_date>2003-10-07 16:12:26</wp:post_date>
<wp:post_date_gmt>2003-10-07 15:12:26</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>out-and-about</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="ancient-stuff"><![CDATA[Ancient stuff]]></category>
</item>
<item>
<title>This means nothing to me...</title>
<link>http://blog.dreamshake.net/2003/10/13/this-means-nothing-to-me/</link>
<pubDate>Mon, 13 Oct 2003 09:34:16 +0000</pubDate>
<dc:creator>pdbailey34</dc:creator>
<guid isPermaLink="false">http://blog.dreamshake.net/?p=107</guid>
<description/>
<content:encoded><![CDATA[I'm going to go for lyrical titles for my entries from now on. Makes thinking of a title easier. This one's pretty easy, particularly if you know where I've been this weekend.
Didn't see too much of the city, but that wasn't the real reason for the trip, so I can't say I'm too bothered. I'm writing this sitting in Nicky's flat in Vienna, but when I get the chance to post it, I don't know. Free WiFi hotspots don't seem to be very prevalent yet, so it might have to wait until I'm at home.
<strong>Update:</strong>
Vienna Airport has a Wireless LAN, and it's free, so I can post this in transit. Works quite well actually, was a bit flaky where I first sat down, but now it's fine.
I feel a bit odd now, the weekend being over. Chances are I'm unlikely to see Nicky again, since she's off to SA in the new year. Very strange saying goodbye to someone for what could be forever. I felt quite emotional, which is a bit out of the ordinary for me. Oh well, nice to have had the chance to meet up.
The weekend was pretty cool actually, went to a Mexican bar as soon as I got into Vienna, with a load of Nicky's mates. Got relatively drunk, although most of them were really hammered, ended on dancing on the bar, and mixing my drinks as much as possible.
Sushi the next day for breakfast/lunch, then back to the flat, and vegging out in front of the TV. Quick wander around Vienna, couple of beers, then back to the flat, and watched Cube (very strange film), and Withnail & I (very funny film).
Sunday afternoon was spent in various drinking establishments, which was pretty enjoyable, and then a Thai meal in the evening. All in all, I probably spent as much time in Irish bars as Austrian one, but when it comes down to it, they all have one thing in common. Alcohol.
I actually had a pretty relaxed and chilled out weekend, which was just what I needed.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>107</wp:post_id>
<wp:post_date>2003-10-13 10:34:16</wp:post_date>
<wp:post_date_gmt>2003-10-13 09:34:16</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>this-means-nothing-to-me</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="ancient-stuff"><![CDATA[Ancient stuff]]></category>
</item>
<item>
<title>In the time of Chimpanzees, I was a monkey...</title>
<link>http://blog.dreamshake.net/2003/11/15/in-the-time-of-chimpanzees-i-was-a-monkey/</link>
<pubDate>Sat, 15 Nov 2003 19:43:10 +0000</pubDate>
<dc:creator>pdbailey34</dc:creator>
<guid isPermaLink="false">http://blog.dreamshake.net/?p=109</guid>
<description/>
<content:encoded><![CDATA[Saturday night in, alone and ill... hence the particular lyrical title.
Had lunch with Helen today, which was great. Sometimes you look back, and wonder... but then sometimes I wonder how life has conspired to ensure that I'm not (currently) rich and famous!
Anyway, real reason for my post: If you're obsessed with music, a bit like me, this site is <strong>very</strong> cool! <a href="http://web.archive.org/web/20040209112420/http://www.coversproject.com/">Coversproject.com</a> lists all songs that an artist or band has covered, and all of their songs that someone else has covered. Very entertaining, and is certainly whiling a few hours away this evening.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>109</wp:post_id>
<wp:post_date>2003-11-15 20:43:10</wp:post_date>
<wp:post_date_gmt>2003-11-15 19:43:10</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>in-the-time-of-chimpanzees-i-was-a-monkey</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="ancient-stuff"><![CDATA[Ancient stuff]]></category>
</item>
<item>
<title>Too many people take second best...</title>
<link>http://blog.dreamshake.net/2003/11/29/too-many-people-take-second-best/</link>
<pubDate>Sat, 29 Nov 2003 10:58:47 +0000</pubDate>
<dc:creator>pdbailey34</dc:creator>
<guid isPermaLink="false">http://blog.dreamshake.net/?p=111</guid>
<description/>
<content:encoded><![CDATA[Right so I'm watching the Tomb Raider DVD, which I borrowed from Helen, and I realise that Angelina Jolie is actually perfect. Why? She's left-handed.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>111</wp:post_id>
<wp:post_date>2003-11-29 11:58:47</wp:post_date>
<wp:post_date_gmt>2003-11-29 10:58:47</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>too-many-people-take-second-best</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="ancient-stuff"><![CDATA[Ancient stuff]]></category>
</item>
<item>
<title>I'm leaving on a jet plane...</title>
<link>http://blog.dreamshake.net/2003/12/03/im-leaving-on-a-jet-plane/</link>
<pubDate>Wed, 03 Dec 2003 20:04:18 +0000</pubDate>
<dc:creator>pdbailey34</dc:creator>
<guid isPermaLink="false">http://blog.dreamshake.net/?p=22</guid>
<description/>
<content:encoded><![CDATA[Well, in a week's time I should be landing at Philadelphia International Airport, and then catching a flight on to West Palm Beach. It's been a while since I've been on holiday (over two years actually), so I'm getting quite excited now. Hopefully the weather will be good, the beer will flow, and I'll have an entertaining, relaxing time!]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>22</wp:post_id>
<wp:post_date>2003-12-03 21:04:18</wp:post_date>
<wp:post_date_gmt>2003-12-03 20:04:18</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>im-leaving-on-a-jet-plane</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="ancient-stuff"><![CDATA[Ancient stuff]]></category>
</item>
<item>
<title>...bienvenido a Miami...</title>
<link>http://blog.dreamshake.net/2003/12/17/bienvenido-a-miami/</link>
<pubDate>Wed, 17 Dec 2003 16:56:16 +0000</pubDate>
<dc:creator>pdbailey34</dc:creator>
<guid isPermaLink="false">http://blog.dreamshake.net/?p=25</guid>
<description/>
<content:encoded><![CDATA[Well, this is the first opportunity I've really had to make an entry about my holiday so far. First off, I flew into Palm Beach on the 10th, met Mark and we drove approximately an hour up the coast to a small town called Vero Beach, where he's been staying whilst he's been doing his flight training. Vero is quiet, and not too much happens there, but we had a few nights out that were pretty good.
On Monday, we came down to Miami for a few days, and we're staying in Miami Beach, in a hotel on Collins Avenue. Ocean Drive is about a 10-15 minute walk away, and whilst the weather has been overcast some of the time, it's always been warm. So far, I've been eyed up by the best-looking transvestite I've ever seen (when we left the club, she was snogging a bloke that I'm 100% certain didn't know she was male). I've also been accused of being gay by an Australian (now that hurt!), and she just wouldn't accept that I was straight. Sadly, she wandered off before I got the chance to show her first-hand that I was indeed heterosexual.
We met a very fit barmaid for breakfast (who was lovely too. Unlike a lot of US women) and last night went to a bar that I swear was straight out of Coyote Ugly (if you haven't seen the film, insanely attractive barstaff, scantily clad, serving drinks and dancing on the bar). Again, me and Mark were asked if we were a couple, but at least this time I got the chance to demonstrate that I wasn't to the girl in question! Oh, one other thing, this bar wasn't letting men in, only women, because "there are already too many guys in here", so we talked a couple of local girls into accompanying us in, and bought them some drinks. I like a bar that stops letting men in (as long as I'm already inside!).
Almost forgot, went to a Heat game last night, and saw Miami beat Atlanta quite comfortably. Great arena, but disappointingly there were probably only about 6,000 people. Dwyane Wade will be a great player, if last night is anything to go by.
Unfortunately, because of bad weather on Mark's flight test, this is our last full day in Miami, as he has to go back to do his practical test in Vero on Friday. Still, it'll be a way to save money for a couple of days, before heading down to West Palm Beach on Saturday to hit the tiles, and catch our flight home :( on Sunday.
Well, that's about it for the time being, maybe I'll post again before I get home, but it's unlikely. Finding internet access isn't at the top of my list of things to do!]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>25</wp:post_id>
<wp:post_date>2003-12-17 17:56:16</wp:post_date>
<wp:post_date_gmt>2003-12-17 16:56:16</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>bienvenido-a-miami</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="ancient-stuff"><![CDATA[Ancient stuff]]></category>
</item>
<item>
<title>So here it is...</title>
<link>http://blog.dreamshake.net/2003/12/29/so-here-it-is/</link>
<pubDate>Mon, 29 Dec 2003 08:55:46 +0000</pubDate>
<dc:creator>pdbailey34</dc:creator>
<guid isPermaLink="false">http://blog.dreamshake.net/?p=30</guid>
<description/>
<content:encoded><![CDATA[A belated Merry Christmas, and a prosperous new year to everyone who occasionally reads this blog (which, surprisingly, is up to double figures by all accounts). I'm back at work today, which is a bugger, but there's not a huge amount happening today.
Saw a few people I haven't seen for ages at a school reunion on the 27th, which was cool. I'll do another entry this afternoon, detailing a bit more about the evening...]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>30</wp:post_id>
<wp:post_date>2003-12-29 09:55:46</wp:post_date>
<wp:post_date_gmt>2003-12-29 08:55:46</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>so-here-it-is</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="ancient-stuff"><![CDATA[Ancient stuff]]></category>
</item>
<item>
<title>...You've got to admit, it's getting better...</title>
<link>http://blog.dreamshake.net/2004/01/15/youve-got-to-admit-its-getting-better/</link>
<pubDate>Thu, 15 Jan 2004 15:48:30 +0000</pubDate>
<dc:creator>pdbailey34</dc:creator>
<guid isPermaLink="false">http://blog.dreamshake.net/?p=27</guid>
<description/>
<content:encoded><![CDATA[Well, 2004 is here, and guess what, it's not so different than last year so far. I went down to Clapham for NYE, and had quite a lot to drink (oh, OK, lots to drink) in a bar called B@1. It was good fun, although I might have felt better the next day if I hadn't decided to emulate Jeff Bridges in "The Big Lebowski", and drink lots of White Russians!
I've got this weekend off, and then I'm out and about all over the country the following three weekends, so I'm going to try to get the work finished on my new website. It's coming along fairly well, and hopefully there'll be more than this blog at dreamshake.net very soon. Not that it'll be hugely interesting, but at least there will be more to read than just my occasional ramblings.
Still waiting to hear from Mr. Collins about his New Year's experience. Should be interesting!]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>27</wp:post_id>
<wp:post_date>2004-01-15 16:48:30</wp:post_date>
<wp:post_date_gmt>2004-01-15 15:48:30</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>youve-got-to-admit-its-getting-better</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="ancient-stuff"><![CDATA[Ancient stuff]]></category>
</item>
<item>
<title>Just a quick one</title>
<link>http://blog.dreamshake.net/2004/01/21/just-a-quick-one/</link>
<pubDate>Wed, 21 Jan 2004 16:26:57 +0000</pubDate>
<dc:creator>pdbailey34</dc:creator>
<guid isPermaLink="false">http://blog.dreamshake.net/?p=32</guid>
<description/>
<content:encoded><![CDATA[Check out <a href="http://web.archive.org/web/20040208224339/http://www.wikipedia.com/">Wikipedia</a>. If you don't know, a wiki is a website that allows all visitors to it to edit it's content. In that regard, it's very much like Tim Berners-Lee's original vision for the worldwide web, a collaborative effort, rather than a content provider just pushing data to consumers.
Anyway, Wikipedia is an encyclopedia, and quite and extensive one at that, with the difference being that anyone can edit and add entries. I've just put in some more information about Werrington, for example.
I like the idea of sharing information like this, and it's pleasing to see that it isn't actively being defaced.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>32</wp:post_id>
<wp:post_date>2004-01-21 17:26:57</wp:post_date>
<wp:post_date_gmt>2004-01-21 16:26:57</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>just-a-quick-one</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="ancient-stuff"><![CDATA[Ancient stuff]]></category>
</item>
<item>
<title>...Another year older, and deeper in debt...</title>
<link>http://blog.dreamshake.net/2004/02/09/another-year-older-and-deeper-in-debt/</link>
<pubDate>Mon, 09 Feb 2004 10:37:14 +0000</pubDate>
<dc:creator>pdbailey34</dc:creator>
<guid isPermaLink="false">http://blog.dreamshake.net/?p=35</guid>
<description/>
<content:encoded><![CDATA[Well, I haven't written an entry in a couple of weeks, I've been a bit slack because I've been extremely busy. My birthday was good fun, and Wednesday, Thursday, Friday and Saturday were very entertaining nights out. Cost me a few quid, but hey, it was worth it!
My usual round of trips to London on training courses are due to re-commence soon, so I'll doubtless have to find some more entertaining stuff to do! I've also found that my phone has a broken "1" key, so I'm having to get a bloody replacement for that. I can't say that I'm hugely pleased about that extra expense.
On the plus side, I've got my new mini PC set up, and it is working like a charm with my TV, and recording FreeView programmes. Point and click recording is very cool, and being able to burn it to DVD is fairly handy also.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>35</wp:post_id>
<wp:post_date>2004-02-09 11:37:14</wp:post_date>
<wp:post_date_gmt>2004-02-09 10:37:14</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>