-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive2004.html
executable file
·2558 lines (2541 loc) · 108 KB
/
archive2004.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta name="generator" content="HTML Tidy for Linux/x86 (vers 1st May 2003), see www.w3.org">
<base href="http://www.magahiz.com/frabjous/">
<title>Frabjous Times</title>
<meta name="description" content="A mix of original fiction, poetry, off the wall observations, and reviews.">
<meta name="keywords" content="Richard Magahiz, blog, weblog, fiction, reviews, poetry">
<meta name="Generator" content="publish-1.3">
<meta name="ICBM" content="40.945000, -74.005333">
<meta name="DC.title" content="Frabjous Times">
<link rel="stylesheet" type="text/css"
href="http://www.magahiz.com/frabjous/style.css">
<link rel="SHORTCUT ICON" href="/frabjous/frabjous.ico">
<link rel="alternate" type="application/rss+xml" title="RSS"
href="http://www.magahiz.com/frabjous/rss.xml">
</head>
<body>
<div id="pagenav">
<ul>
<li><a href="#content">Content</a></li>
<li><a href="#navigation">Navigation</a></li>
<li><a href="#footer">footer</a></li>
</ul>
</div>
<div id="overall">
<center>
<h1>Frabjous Times</h1>
</center>
<div id="content">
<!-- INSERTCONTENT --><ul>
<div class="note">
Collected URLs for December 2004
</div>
<li><a href="blog/dec04link.html">Links for December 2004</a> - Fri Dec 31 20:26:36 2004</li><br />
<div class="note">
Paranormal familial scifaiku.
</div>
<li><a href="blog/fulmination.html">Fulmination</a> - Fri Dec 31 20:24:24 2004</li><br />
<div class="note">
Lovecraftian lawn ornament scifaiku.
</div>
<li><a href="blog/hdisplay.html">Holiday display</a> - Wed Dec 29 21:01:52 2004</li><br />
<div class="note">
Unsportsmanlike scifaiku.
</div>
<li><a href="blog/fandom.html">Fandom</a> - Tue Dec 28 18:08:52 2004</li><br />
<div class="note">
Birthday zero-G scifaiku.
</div>
<li><a href="blog/blow_but.html">Blow, but not too hard</a> - Sat Dec 25 13:07:08 2004</li><br />
<div class="note">
Scifaiku on Dickens's classic, updated.
</div>
<li><a href="blog/ghostmarley.html">Ghost of Christmas past</a> - Thu Dec 23 18:04:00 2004</li><br />
<div class="note">
Extinction scifaiku.
</div>
<li><a href="blog/hearme.html">Can you hear me now?</a> - Tue Dec 28 08:08:32 2004</li><br />
<div class="note">
Post-operative cinquain.
</div>
<li><a href="blog/mastectomy.html">Mastectomy</a> - Tue Dec 21 23:00:08 2004</li><br />
<div class="note">
Reunion dance cinquain.
</div>
<li><a href="blog/spotlit.html">Spotlit</a> - Mon Dec 20 06:41:10 2004</li><br />
<div class="note">
Geological scifaiku.
</div>
<li><a href="blog/cadreaming.html">California dreaming</a> - Mon Dec 20 22:15:30 2004</li><br />
<div class="note">
Scifaiku of the future of the species.
</div>
<li><a href="blog/dmartian.html">Daughters of the Martian Evolution</a> - Sat Dec 18 10:43:25 2004</li><br />
<div class="note">
Scifaiku on transmissible ailments.
</div>
<li><a href="blog/spicy.html">spicy</a> - Fri Dec 17 21:36:12 2004</li><br />
<div class="note">
Robot scifaiku after Asimov's Galactic Empire series of books.
</div>
<li><a href="blog/roofers.html">No fear of heights</a> - Mon Dec 20 21:51:02 2004</li><br />
<div class="note">
Alien scifaiku with sound effects.
</div>
<li><a href="blog/boomshakalaka.html">Boom shaka laka</a> - Tue Dec 14 18:49:40 2004</li><br />
<div class="note">
Advertising scifaiku hearkening to the past.
</div>
<li><a href="blog/recognition.html">Recognition</a> - Mon Dec 13 07:35:36 2004</li><br />
<div class="note">
Cinquain of a seedy sort.
</div>
<li><a href="blog/rrow.html">Restaurant row</a> - Thu Dec 9 19:34:02 2004</li><br />
<div class="note">
Cinquain about a boxed lunch.
</div>
<li><a href="blog/aisaibento.html">Aisai bento</a> - Wed Dec 8 19:13:54 2004</li><br />
<div class="note">
My cinquain published in volume 8 of webzine Autumn Leaves.
</div>
<li><a href="blog/autumnleaves8.html">Web published once more</a> - Wed Dec 8 18:42:44 2004</li><br />
<div class="note">
Link to the feed on my del.icio.us account.
</div>
<li><a href="blog/delicious0.html">del.icio.us feed</a> - Tue Dec 7 08:17:46 2004</li><br />
<div class="note">
Cinquain on a thunderstorm.
</div>
<li><a href="blog/tropical.html">Tropical Depression</a> - Sat Dec 4 18:16:26 2004</li><br />
<div class="note">
Future inaugural scifaiku.
</div>
<li><a href="blog/grace0.html">Grace</a> - Sat Dec 4 06:55:58 2004</li><br />
<div class="note">
Scifaiku with a name borrowed from an infamous Revolutionary War incident.
</div>
<li><a href="blog/fortgolgotha.html">Fort Golgotha</a> - Fri Dec 3 21:46:34 2004</li><br />
<div class="note">
Cinquain on the Marvin Gaye song.
</div>
<li><a href="blog/whatsgoingon.html">What's Going On?</a> - Wed Dec 1 22:31:52 2004</li><br />
<div class="note">
Collected URLs for November.
</div>
<li><a href="blog/nov04link.html">Links for November 2004.</a> - Wed Dec 1 08:30:03 2004</li><br />
<div class="note">
Obtaining a renewal New Jersey drivers license.
</div>
<li><a href="blog/njlicense.html">New license</a> - Mon Nov 29 22:27:04 2004</li><br />
<div class="note">
Hurricane scifaiku.
</div>
<li><a href="blog/rider.html">Rider</a> - Sun Nov 28 08:48:30 2004</li><br />
<div class="note">
Cinquain on a gathering.
</div>
<li><a href="blog/remnant.html">Among the remnant</a> - Sat Nov 27 12:04:28 2004</li><br />
<div class="note">
Covenant scifaiku.
</div>
<li><a href="blog/oathbreaking.html">Oathbreaking</a> - Fri Nov 26 18:51:56 2004</li><br />
<div class="note">
Space colonist scifaiku.
</div>
<li><a href="blog/sealedfor.html">Sealed for your protection</a> - Wed Nov 24 20:25:08 2004</li><br />
<div class="note">
Brick scifaiku on the aftermath of conflict.
</div>
<li><a href="blog/heartshaped.html">Purple heart-shaped</a> - Tue Nov 23 08:33:52 2004</li><br />
<div class="note">
Scifaiku on shutting up.
</div>
<li><a href="blog/remainsilent.html">You have the right to remain silent</a> - Mon Nov 22 08:40:54 2004</li><br />
<div class="note">
Organic vechicle tech scifaiku.
</div>
<li><a href="blog/sweettooth.html">Sweet tooth</a> - Sun Nov 21 18:08:06 2004</li><br />
<div class="note">
Temporal relationship scifaiku.
</div>
<li><a href="blog/notjustyet.html">Not just yet</a> - Thu Nov 18 09:14:24 2004</li><br />
<div class="note">
Cinquain on a song about a football play.
</div>
<li><a href="blog/allkinds.html">All Kinds of Time</a> - Mon Nov 15 21:52:22 2004</li><br />
<div class="note">
Memorial technological religious scifaiku.
</div>
<li><a href="blog/vlsi.html">VLSI</a> - Mon Nov 15 07:40:50 2004</li><br />
<div class="note">
Want ad cinquain.
</div>
<li><a href="blog/bestoffer.html">Looking for best offer</a> - Sat Nov 13 11:29:22 2004</li><br />
<div class="note">
Chess and wargaming scifaiku.
</div>
<li><a href="blog/blacksturn.html">Black's Turn</a> - Sat Nov 13 06:34:20 2004</li><br />
<div class="note">
Scifaiku based on Philip Pullman's trilogy.
</div>
<li><a href="blog/eyestosee.html">For those who have eyes to see it</a> - Thu Dec 9 19:36:26 2004</li><br />
<div class="note">
Two computer scifaiku.
</div>
<li><a href="blog/tinbox.html">In a small tin box</a> - Wed Nov 10 19:20:10 2004</li><br />
<div class="note">
Scifaiku on a future night scene.
</div>
<li><a href="blog/impoundment.html">Impoundment</a> - Sat Dec 11 20:17:14 2004</li><br />
<div class="note">
Cinquain on a card game.
</div>
<li><a href="blog/hearts.html">Hearts</a> - Tue Nov 9 06:42:20 2004</li><br />
<div class="note">
Scifaiku on an unpleasant run-in.
</div>
<li><a href="blog/wrongside.html">Wrong side of the border</a> - Sun Nov 7 12:53:38 2004</li><br />
<div class="note">
Scifaiku on one eternal image.
</div>
<li><a href="blog/windowsoul.html">Windows of the Soul</a> - Sun Nov 7 08:00:52 2004</li><br />
<div class="note">
End time mirror cinquain.
</div>
<li><a href="blog/eschaton.html">Eschaton</a> - Sat Nov 6 13:44:58 2004</li><br />
<div class="note">
Cinquain on a song title.
</div>
<li><a href="blog/vibrations.html">Good Vibrations</a> - Sat Nov 6 06:28:06 2004</li><br />
<div class="note">
Mirror cinquain with a medical and a geological angle.
</div>
<li><a href="blog/sciencepain.html">A science of pain</a> - Wed Nov 3 22:53:42 2004</li><br />
<div class="note">
Tolkein scifaiku.
</div>
<li><a href="blog/fourthage.html">The End of the Fourth Age</a> - Wed Nov 3 21:25:44 2004</li><br />
<div class="note">
Johnny Ramone memorial scifaiku.
</div>
<li><a href="blog/besedated.html">I Wanna Be Sedated</a> - Wed Nov 3 18:51:02 2004</li><br />
<div class="note">
Trouble installing a Linksys WRT54G wired/wireless router here.
</div>
<li><a href="blog/wrt54g.html">Router pains</a> - Mon Nov 1 22:17:09 2004</li><br />
<div class="note">
The various items which caught my attention during my recent server outage.
</div>
<li><a href="blog/augoct04link.html">Three months of links</a> - Sun Oct 31 21:07:52 2004</li><br />
<div class="note">
Missing person scifaiku.
</div>
<li><a href="blog/milkcarton.html">Back of the milk carton</a> - Sun Oct 31 14:24:40 2004</li><br />
<div class="note">
Volcanic cinquain.
</div>
<li><a href="blog/groundobserver.html">The Ground Observer</a> - Sat Oct 30 15:11:48 2004</li><br />
<div class="note">
Lebowski scifaiku.
</div>
<li><a href="blog/tenpin.html">Tenpin logic</a> - Wed Nov 3 18:49:24 2004</li><br />
<div class="note">
Scifaiku on inadvertent biowarfare commemorating Welles's broadcast.
</div>
<li><a href="blog/warworlds.html">War of the Worlds</a> - Wed Nov 3 18:48:26 2004</li><br />
<div class="note">
Historical cinquain based on a painting by Manet.
</div>
<li><a href="blog/crowned.html">Crowned head</a> - Wed Nov 3 18:48:38 2004</li><br />
<div class="note">
Cinquain of memory and sound.
</div>
<li><a href="blog/cavitation.html">Cavitation</a> - Wed Nov 3 18:46:30 2004</li><br />
<div class="note">
Scifaiku, after all is said and done.
</div>
<li><a href="blog/jeneregrettes.html">Je ne regrettes rien</a> - Tue Oct 26 21:51:33 2004</li><br />
<div class="note">
Postseason baseball cinquain.
</div>
<li><a href="blog/forking.html">The diamond of forking basepaths.</a> - Wed Nov 3 18:44:46 2004</li><br />
<div class="note">
Scifaiku under the sea.
</div>
<li><a href="blog/seismically.html">Seismically active</a> - Sat Oct 23 06:00:58 2004</li><br />
<div class="note">
Scifaiku on a dining fine point.
</div>
<li><a href="blog/sommelier.html">The prudent sommelier</a> - Fri Oct 22 07:18:07 2004</li><br />
<div class="note">
Cinquain for the third anniversary of 9/11/2001.
</div>
<li><a href="blog/falling.html">Falling</a> - Thu Oct 21 16:12:48 2004</li><br />
<div class="note">
Gender bending scifaiku
</div>
<li><a href="blog/crosssleeved.html">Crosssleeved</a> - Tue Oct 19 07:13:06 2004</li><br />
<div class="note">
Chemistry post-apocalyptic scifaiku.
</div>
<li><a href="blog/280604.html">(Untitled)</a> - Mon Oct 18 08:10:20 2004</li><br />
<div class="note">
Cinquain on a late night street scene.
</div>
<li><a href="blog/downtown.html">Downtown</a> - Mon Oct 18 08:04:08 2004</li><br />
<div class="note">
Grim middle passage scifaiku.
</div>
<li><a href="blog/9thcircle.html">Ninth Circle</a> - Sun Oct 17 07:34:50 2004</li><br />
<div class="note">
Cinquain on a harvest image.
</div>
<li><a href="blog/funnies.html">Funnies</a> - Sun Oct 17 07:32:44 2004</li><br />
<div class="note">
Scifaiku on a truant student.
</div>
<li><a href="blog/hooky.html">Hooky</a> - Sat Oct 16 17:49:28 2004</li><br />
<div class="note">
I'm hosting this on a different machine now.
</div>
<li><a href="blog/newserver.html">Moved over</a> - Sat Oct 16 13:47:16 2004</li><br />
<div class="note">
A mix of original fiction, poetry, off the wall observations, and reviews.
</div>
<li><a href="blog/index.html">None</a> - Sat Oct 16 13:43:24 2004</li><br />
<div class="note">
Memorial scifaiku on the actress Fay Wray.
</div>
<li><a href="blog/wray.html">On Fay Wray</a> - Tue Aug 10 08:23:13 2004</li><br />
<div class="note">
Mirror cinquain on the rigors of going into business for oneself.
</div>
<li><a href="blog/tenpercent.html">Ten percent off</a> - Mon Aug 9 11:02:48 2004</li><br />
<div class="note">
Scifaiku on fake clouds.
</div>
<li><a href="blog/altocirrus0.html">Altocirrus</a> - Mon Aug 9 10:58:19 2004</li><br />
<div class="note">
A modern-day update of an old tradition. Scifaiku.
</div>
<li><a href="blog/trampled.html">Trampled</a> - Sat Aug 7 19:37:58 2004</li><br />
<div class="note">
Future music scifaiku.
</div>
<li><a href="blog/lushlife.html">Lush life</a> - Sat Aug 7 19:36:51 2004</li><br />
<div class="note">
Space scifaiku incorporating an old ritualistic practice.
</div>
<li><a href="blog/coup.html">Counting coup</a> - Mon Aug 2 08:15:52 2004</li><br />
<div class="note">
List of urls for July 2004.
</div>
<li><a href="blog/july2004.html">July 2004 links</a> - Sun Aug 1 07:31:18 2004</li><br />
<div class="note">
Cinquain about an infatuation.
</div>
<li><a href="blog/crush.html">Crush</a> - Sat Jul 31 22:56:46 2004</li><br />
<div class="note">
Elegy for the late Francis Crick. Scifaiku.
</div>
<li><a href="blog/crick.html">On Francis Crick</a> - Fri Jul 30 08:51:34 2004</li><br />
<div class="note">
Inhaled spirit scifaiku.
</div>
<li><a href="blog/awol.html">AWOL</a> - Thu Jul 29 14:34:42 2004</li><br />
<div class="note">
Border indignities scifaiku-tanka.
</div>
<li><a href="blog/x040802_1.html">Emigrating</a> - Tue Jul 27 09:27:34 2004</li><br />
<div class="note">
Seventh stellarenga on the Holst suite.
</div>
<li><a href="blog/neptuneplanet.html">Neptune, the Mystic</a> - Sun Jul 18 16:34:46 2004</li><br />
<div class="note">
Sixth stellarenga on the Holst suite.
</div>
<li><a href="blog/uranusplanet.html">Uranus, the Magician</a> - Sun Jul 18 16:34:11 2004</li><br />
<div class="note">
Fifth stellarenga on the Holst suite.
</div>
<li><a href="blog/saturnplanet.html">Saturn, the Bringer of Old Age</a> - Sun Jul 18 16:33:28 2004</li><br />
<div class="note">
Fourth stellarenga on the Holst suite.
</div>
<li><a href="blog/jupiterplanet.html">Jupiter, the Bringer of Jollity</a> - Sun Jul 18 16:32:48 2004</li><br />
<div class="note">
Second stellarenga on the Holst suite.
</div>
<li><a href="blog/venusplanet.html">Venus, the Bringer of Peace</a> - Sun Jul 18 16:32:09 2004</li><br />
<div class="note">
Third stellarenga on the Holst suite.
</div>
<li><a href="blog/mercuryplanet.html">Mercury, the Winged Messenger</a> - Sun Jul 18 16:31:31 2004</li><br />
<div class="note">
Stellarenga on the first of Holst's _The Planets_.
</div>
<li><a href="blog/marsplanet.html">Mars, the Bringer of War</a> - Sun Jul 18 10:13:07 2004</li><br />
<div class="note">
Scifaiku on someone out on their own for the first time.
</div>
<li><a href="blog/hardknock.html">Hard knock life</a> - Sat Jul 17 13:22:09 2004</li><br />
<div class="note">
Family and national politics collide in this imagined cinquain.
</div>
<li><a href="blog/redblue.html">The Red and the Blue</a> - Wed Jul 14 15:34:13 2004</li><br />
<div class="note">
Review of the General Tools 840 Doweling Jig.
</div>
<li><a href="blog/doweljig.html">Flawed tool</a> - Mon Jul 12 22:05:53 2004</li><br />
<div class="note">
Scifaiku on the situation of James Doohan.
</div>
<li><a href="blog/doohan.html">Not part of the design</a> - Sun Jul 11 20:51:02 2004</li><br />
<div class="note">
This server could go quietly away at any moment.
</div>
<li><a href="blog/notright.html">Not right in the head</a> - Sat Jul 10 17:25:12 2004</li><br />
<div class="note">
Mirror cinquain describing a moment in the city.
</div>
<li><a href="blog/5thave.html">Above Fifth Avenue</a> - Fri Jul 9 07:57:40 2004</li><br />
<div class="note">
Hearing Diana Krall and Ollabelle at Tanglewood.
</div>
<li><a href="blog/krall.html">July 4, 2004 concert</a> - Tue Jul 6 06:55:00 2004</li><br />
<div class="note">
Mirror cinquain on the aftermath of a domestic disagreement.
</div>
<li><a href="blog/assumptions.html">Lousy assumptions</a> - Mon Jul 5 17:08:59 2004</li><br />
<div class="note">
Railroad scifaiku with WWII echoes.
</div>
<li><a href="blog/predawn.html">Pre-dawn whistle</a> - Sat Jul 3 10:31:27 2004</li><br />
<div class="note">
Wistful maritime scifaiku.
</div>
<li><a href="blog/smaris.html">Stella Maris</a> - Sat Jul 3 06:32:34 2004</li><br />
<div class="note">
Sites sighted during June.
</div>
<li><a href="blog/june2004.html">June 2004 collected links</a> - Fri Jul 2 20:32:24 2004</li><br />
<div class="note">
Scifaiku on oppressive tracking.
</div>
<li><a href="blog/badges.html">Steenkin' badges</a> - Thu Jul 1 08:18:26 2004</li><br />
<div class="note">
Scifaiku on an updated scene from Hansel and Gretel.
</div>
<li><a href="blog/14angels.html">Fourteen angels</a> - Tue Jun 29 08:29:32 2004</li><br />
<div class="note">
Scifaiku on someone missing in the net.
</div>
<li><a href="blog/witching.html">(untitled)</a> - Mon Jun 28 07:40:02 2004</li><br />
<div class="note">
Review of Michael Moore's documentary on the lead-up to the war.
</div>
<li><a href="blog/f911.html">Fahrenheit 9/11 review</a> - Mon Jun 28 07:37:33 2004</li><br />
<div class="note">
Cinquain about an annual shoreside sight.
</div>
<li><a href="blog/so_nj.html">South Jersey shore</a> - Sun Jun 27 13:56:45 2004</li><br />
<div class="note">
Less a review than some observations on the dramatis personae.
</div>
<li><a href="blog/hp3m.html">Harry Potter and the Prisoner of Azkaban review</a> - Thu Jun 24 11:01:37 2004</li><br />
<div class="note">
Cinquain about a new star.
</div>
<li><a href="blog/fusion0.html">Fusion reaction</a> - Thu Jun 24 08:45:42 2004</li><br />
<div class="note">
Gourmet food scifaiku.
</div>
<li><a href="blog/plesiosaur.html">For summer grilling</a> - Fri Jun 18 18:30:35 2004</li><br />
<div class="note">
Scifaiku on extreme social controls.
</div>
<li><a href="blog/x040802_8.html">Aquarius</a> - Mon Jun 14 21:29:15 2004</li><br />
<div class="note">
A meta-scifaiku
</div>
<li><a href="blog/googolku.html">(untitled)</a> - Mon Jun 14 06:53:16 2004</li><br />
<div class="note">
Cinquain set in a dark church.
</div>
<li><a href="blog/htrinity.html">The Feast of the Holy Trinity</a> - Sun Jun 13 11:41:04 2004</li><br />
<div class="note">
Cinquain on a last feeling of freedom.
</div>
<li><a href="blog/postedlimit.html">Over the posted limit</a> - Sat Jun 12 09:33:31 2004</li><br />
<div class="note">
Advice for a spook. Scifaiku.
</div>
<li><a href="blog/x140802_22.html">stego</a> - Fri Jun 4 09:04:15 2004</li><br />
<div class="note">
URLs collected during May 2004.
</div>
<li><a href="blog/may2004.html">May 2004 links</a> - Tue Jun 1 23:01:53 2004</li><br />
<div class="note">
Scifaiku fragment combining flowers and rollercoasters.
</div>
<li><a href="blog/jilted.html">jilted</a> - Mon May 31 15:16:10 2004</li><br />
<div class="note">
Alien tech scifaiku.
</div>
<li><a href="blog/septum.html">Septum</a> - Mon May 31 05:56:33 2004</li><br />
<div class="note">
A nonsense search phrase meets a dragon in this scifaiku.
</div>
<li><a href="blog/ni-ul.html">Nigritude ultramarine</a> - Fri May 28 14:01:13 2004</li><br />
<div class="note">
Moving to the newer version of the by-nd-nc license.
</div>
<li><a href="blog/cc2.html">New Creative Commons license</a> - Thu May 27 07:40:39 2004</li><br />
<div class="note">
Cinquain yoking musical and botanical images.
</div>
<li><a href="blog/achorus.html">Amateur chorus</a> - Thu May 27 07:28:17 2004</li><br />
<div class="note">
Another B-movie scifaiku.
</div>
<li><a href="blog/x260802_17.html">Personal ad</a> - Wed May 26 21:39:36 2004</li><br />
<div class="note">
Social/space scifaiku about nationalists at the end of things.
</div>
<li><a href="blog/theirland.html">Hardline</a> - Tue May 25 08:21:49 2004</li><br />
<div class="note">
Scifaiku on a modified feline.
</div>
<li><a href="blog/lincei.html">Lynx</a> - Mon May 24 15:26:02 2004</li><br />
<div class="note">
Zip scifaiku on an abandoned area.
</div>
<li><a href="blog/walled.html">Walled sector</a> - Sat May 22 16:41:27 2004</li><br />
<div class="note">
Scifaiku knocking a stock figure down a notch.
</div>
<li><a href="blog/x071002_00.html">(untitled)</a> - Thu May 20 07:32:41 2004</li><br />
<div class="note">
A scifaiku scene from the Wizard of Oz.
</div>
<li><a href="blog/x181102_36.html">(untitled)</a> - Wed May 19 07:13:43 2004</li><br />
<div class="note">
Urban renewal scifaiku.
</div>
<li><a href="blog/x181102_55.html">(untitled)</a> - Mon May 17 07:30:52 2004</li><br />
<div class="note">
Noshes of the future, with special dietary needs. Scifaiku.
</div>
<li><a href="blog/hardcandy.html">Hard candy</a> - Sat May 15 21:27:30 2004</li><br />
<div class="note">
Cinquain on the themes of cicadas and college freshmen.
</div>
<li><a href="blog/y17.html">Year Seventeen</a> - Thu May 13 19:42:35 2004</li><br />
<div class="note">
Bimetallic scifaiku.
</div>
<li><a href="blog/metalmetal.html">Metal on metal</a> - Mon May 10 07:39:11 2004</li><br />
<div class="note">
Crime scene in the future. Scifaiku.
</div>
<li><a href="blog/responder.html">First responder</a> - Sun May 9 15:52:56 2004</li><br />
<div class="note">
Social activism in the post-contact future. Scifaiku.
</div>
<li><a href="blog/petalien.html">People for the Ethical Treatment of Aliens</a> - Sun May 9 15:48:18 2004</li><br />
<div class="note">
Post-breakup cinquain.
</div>
<li><a href="blog/c181102_0.html">Weather report</a> - Sun May 9 14:43:36 2004</li><br />
<div class="note">
Wagnerian inundation scifaiku.
</div>
<li><a href="blog/bluescreen.html">Blue screen</a> - Sat May 8 15:24:13 2004</li><br />
<div class="note">
World in a bottle at the end of time scifaiku.
</div>
<li><a href="blog/terrarium.html">Terrarium</a> - Thu May 6 21:27:35 2004</li><br />
<div class="note">
List of links for April 2004.
</div>
<li><a href="blog/april2004.html">April 2004 links</a> - Tue May 4 06:35:22 2004</li><br />
<div class="note">
A meteoric scifaiku.
</div>
<li><a href="blog/nearearth.html">Near near earth approach</a> - Mon Apr 26 11:58:31 2004</li><br />
<div class="note">
A favorite food in space. Scifaiku.
</div>
<li><a href="blog/mpizza.html">Extra topping</a> - Fri Apr 23 22:15:35 2004</li><br />
<div class="note">
Cinquain on a subterranean sea cave like the one I saw in Bermuda.
</div>
<li><a href="blog/limestone.html">Under Limestone</a> - Fri Apr 23 09:17:50 2004</li><br />
<div class="note">
Precautions taken at the seat of power. Scifaiku.
</div>
<li><a href="blog/summit0.html">Summit</a> - Tue Apr 20 07:19:22 2004</li><br />
<div class="note">
Meteorological haiku.
</div>
<li><a href="blog/calamine.html">(untitled)</a> - Mon Apr 19 07:38:24 2004</li><br />
<div class="note">
Zip scifaiku on a rogue planet, possibly terraformed?
</div>
<li><a href="blog/holespace.html">Hole out of space</a> - Sun Apr 18 13:38:46 2004</li><br />
<div class="note">
Cinquain blending Bunuel, the papacy, dada, and St. Mark's place.
</div>
<li><a href="blog/venetian.html">Venetian blind</a> - Wed May 25 22:42:25 2005</li><br />
<div class="note">
The rebel crowd in a future setting. Scifaiku.
</div>
<li><a href="blog/delinquent.html">Delinquent</a> - Thu Apr 15 19:42:14 2004</li><br />
<div class="note">
Here she comes. Scifaiku.
</div>
<li><a href="blog/pageant.html">Pageant</a> - Wed Apr 14 08:09:56 2004</li><br />
<div class="note">
A scifaiku about acting with a mind of your own.
</div>
<li><a href="blog/willful.html">Willful</a> - Fri Apr 9 07:28:03 2004</li><br />
<div class="note">
Scifaiku on avant-garde music.
</div>
<li><a href="blog/whoopee.html">Gala premiere</a> - Thu Apr 8 07:48:38 2004</li><br />
<div class="note">
Mercantile haiku.
</div>
<li><a href="blog/shiver1.html">(untitled)</a> - Mon Apr 5 19:47:42 2004</li><br />
<div class="note">
Review of the movie _Jersey Girl_.
</div>
<li><a href="blog/jerseygirl.html">Jersey Girl (review)</a> - Sun Apr 4 17:27:44 2004</li><br />
<div class="note">
Nanotech scifaiku with a history reference.
</div>
<li><a href="blog/eegg.html">Easter egg</a> - Sun Apr 4 08:38:21 2004</li><br />
<div class="note">
A haiku from Bermuda.
</div>
<li><a href="blog/leak.html">(untitled)</a> - Sat Apr 3 05:47:39 2004</li><br />
<div class="note">
In search of parts for a 26 year old piece of furniture.
</div>
<li><a href="blog/recliner.html">Charles Harland recliner</a> - Fri Apr 2 22:52:32 2004</li><br />
<div class="note">
Prionic contagion in poultry scifaiku.
</div>
<li><a href="blog/pchick.html">Psycho chicken</a> - Fri Apr 2 09:20:00 2004</li><br />
<div class="note">
Collection of urls.
</div>
<li><a href="blog/march2004.html">Links for March 2004</a> - Thu Apr 1 09:09:29 2004</li><br />
<div class="note">
Automotive space scifaiku.
</div>
<li><a href="blog/kingroad.html">King of the road</a> - Wed Mar 31 20:03:25 2004</li><br />
<div class="note">
A food scifaiku which may someday be taken over by events.
</div>
<li><a href="blog/hydroponic.html">Hydroponic</a> - Wed Mar 31 20:01:39 2004</li><br />
<div class="note">
Haiku.
</div>
<li><a href="blog/cafe0.html">Cafe scene</a> - Mon Mar 29 08:24:08 2004</li><br />
<div class="note">
A booze-soaked scifaiku in space.
</div>
<li><a href="blog/swizzle.html">Swizzle</a> - Sat Mar 27 16:00:45 2004</li><br />
<div class="note">
Early morning haiku.
</div>
<li><a href="blog/foxstand.html">Fox Stand Inn</a> - Sat Mar 27 08:10:35 2004</li><br />
<div class="note">
A morbid senryu.
</div>
<li><a href="blog/fenderbender.html">Fender bender</a> - Thu Mar 25 23:20:55 2004</li><br />
<div class="note">
A marketing exercise leads to mathematical complexity theory.
</div>
<li><a href="blog/knapsack.html">Knapsack of stamps</a> - Wed Mar 24 08:53:23 2004</li><br />
<div class="note">
Trucker of the 21st century. Scifaiku.
</div>
<li><a href="blog/hauler.html">Hauler</a> - Tue Mar 23 09:31:32 2004</li><br />
<div class="note">
Southern arcology scifaiku.
</div>
<li><a href="blog/dixie.html">Old Dixie cup</a> - Mon Mar 22 18:46:45 2004</li><br />
<div class="note">
Mirror cinquain on a melancholy loss.
</div>
<li><a href="blog/nosolace.html">No Solace</a> - Tue Mar 2 19:30:17 2004</li><br />
<div class="note">
Vacation scifaiku.
</div>
<li><a href="blog/highnuf.html">High enough</a> - Tue Mar 2 07:41:46 2004</li><br />
<div class="note">
URLs collected during February, 2004.
</div>
<li><a href="blog/feb2004.html">February 2004 links</a> - Mon Mar 1 09:06:00 2004</li><br />
<div class="note">
Spacey scifaiku at the big crunch.
</div>
<li><a href="blog/x181102_54.html">(untitled)</a> - Sun Feb 29 09:58:58 2004</li><br />
<div class="note">
What to wear when you have nowhere to wear it? Scifaiku.
</div>
<li><a href="blog/porter.html">Pret-a-porter</a> - Sat Feb 28 06:05:41 2004</li><br />
<div class="note">
Scifaiku inspired by The Colour Out of Space.
</div>
<li><a href="blog/breach0.html">Breach</a> - Fri Feb 27 06:09:30 2004</li><br />
<div class="note">
Calculus at The Gym.
</div>
<li><a href="blog/fxdx.html">Sweating f(x) dx</a> - Thu Feb 26 07:33:25 2004</li><br />
<div class="note">
Space scifaiku on a nasty job on a fridge ship.
</div>
<li><a href="blog/fuzzy1.html">Something fuzzy</a> - Tue Feb 24 20:55:58 2004</li><br />
<div class="note">
Links to the blog meme of Ralph Nader's unsafeness.
</div>
<li><a href="blog/unsafe0.html">Unsafe six ways</a> - Tue Feb 24 08:13:36 2004</li><br />
<div class="note">
A conventional IT procedure in an unconventional setting. Scifaiku.
</div>
<li><a href="blog/x181102_18.html">Corporate policy</a> - Mon Feb 23 09:29:32 2004</li><br />
<div class="note">
Scifaiku on an artifact.
</div>
<li><a href="blog/fossil.html">Fossil</a> - Sun Feb 22 18:34:01 2004</li><br />
<div class="note">
Scifaiku on the aftermath of regime change.
</div>
<li><a href="blog/overlorded.html">Overlorded</a> - Sat Feb 21 08:24:00 2004</li><br />
<div class="note">
This is the last year for the Oldsmobile brand of General Motors.
</div>
<li><a href="blog/noolds.html">Hic Jacet Oldsmobile</a> - Fri Feb 20 07:24:26 2004</li><br />
<div class="note">
One slightly futuristic use for an edifice. Scifaiku.
</div>
<li><a href="blog/pyramidz.html">Pyramidz</a> - Thu Feb 19 13:12:15 2004</li><br />
<div class="note">
Scifaiku on an alien urge.
</div>
<li><a href="blog/omnia.html">Omnia sol temperat</a> - Tue Feb 17 23:00:22 2004</li><br />
<div class="note">
The cable router here is making my incoming email bounce.
</div>
<li><a href="blog/routerflaky.html">Email bounces</a> - Tue Feb 17 09:16:36 2004</li><br />
<div class="note">
A cinquain suggesting violence and a choice to be made.
</div>
<li><a href="blog/thenwhat.html">But then what?</a> - Tue Feb 17 08:54:23 2004</li><br />
<div class="note">
Stellarenga on a lunar operation. Scifaiku.
</div>
<li><a href="blog/si_mare.html">Silicon Mare</a> - Mon Feb 16 07:38:20 2004</li><br />
<div class="note">
A quote on happiness, politics, and measurement.
</div>
<li><a href="blog/qu.html">Quantitative Utilitarianism</a> - Sun Feb 15 08:28:42 2004</li><br />
<div class="note">
Valentine's day scifaiku.
</div>
<li><a href="blog/smitten.html">Smitten</a> - Sat Feb 14 08:09:38 2004</li><br />
<div class="note">
Another scifaiku after Lewis Carroll.
</div>
<li><a href="blog/x140802_25.html">(untitled)</a> - Fri Feb 13 09:03:35 2004</li><br />
<div class="note">
The OED has a draft entry for the word blog used as a verb.
</div>
<li><a href="blog/toblog.html">Blog, v.</a> - Thu Feb 12 08:44:22 2004</li><br />
<div class="note">
Cinquain on recognizing something not there.
</div>
<li><a href="blog/endofwar.html">Knowing the end of war</a> - Tue Feb 10 21:22:58 2004</li><br />
<div class="note">
Food couture scifaiku based on Paris fashion.
</div>
<li><a href="blog/chocolat.html">Chocolat</a> - Tue Feb 10 06:45:20 2004</li><br />
<div class="note">
A birthday scifaiku for Mia Farrow, star of _Rosemary's Baby_.
</div>
<li><a href="blog/babysmother.html">The baby's mother</a> - Mon Feb 9 08:53:02 2004</li><br />
<div class="note">
A scifaiku about coexisting with contamination.
</div>
<li><a href="blog/isotopos.html">Isotopos</a> - Sun Feb 8 17:10:21 2004</li><br />
<div class="note">
Habitat scifaiku.
</div>
<li><a href="blog/navel.html">Navel of heaven</a> - Sun Feb 8 16:03:30 2004</li><br />
<div class="note">
Organized crime ... in space. Scifaiku.
</div>
<li><a href="blog/starwitness.html">Star witness</a> - Fri Feb 6 09:48:48 2004</li><br />
<div class="note">
The Verizon DSL is very unstable today.
</div>
<li><a href="blog/dslflaky0.html">You may experience trouble accessing this site</a> - Wed Feb 4 15:09:07 2004</li><br />
<div class="note">
The undead in trouble with the accountants. Scifaiku-senryu.
</div>
<li><a href="blog/x140802_10.html">trust</a> - Tue Feb 3 08:10:10 2004</li><br />
<div class="note">
Links picked up the first month of 2004.
</div>
<li><a href="blog/jan04link.html">The URLs of January</a> - Mon Feb 2 07:35:31 2004</li><br />
<div class="note">
Cinquain about an athletic moment.
</div>
<li><a href="blog/league.html">In the over-30 league</a> - Sun Feb 1 09:12:59 2004</li><br />
<div class="note">
eBay misspellings as a lucrative place to pick up bargains.
</div>
<li><a href="blog/misspelt.html">Misspelt</a> - Sat Jan 31 07:42:43 2004</li><br />
<div class="note">
Scifaiku in a bar.
</div>
<li><a href="blog/firedrakes.html">For the big game</a> - Fri Jan 30 08:27:28 2004</li><br />
<div class="note">
19th century quote describing a shop in London.
</div>
<li><a href="blog/curiosity.html">The real old curiosity shop</a> - Fri Jan 30 07:26:54 2004</li><br />
<div class="note">
Scifaiku on the prospect of storing a life's memories.
</div>
<li><a href="blog/terabyte.html">terabyte chip</a> - Thu Jan 29 07:13:31 2004</li><br />
<div class="note">
Haiku from a trip to Saranac Lake.
</div>
<li><a href="blog/h061002_03.html">old sleigh</a> - Wed Jan 28 15:15:01 2004</li><br />
<div class="note">
Crown cinquain on small irritations.
</div>
<li><a href="blog/stortures.html">Simple tortures</a> - Tue Jan 27 07:25:57 2004</li><br />
<div class="note">
My PDA goes blooey, but I get it back again.
</div>
<li><a href="blog/radioreset.html">The madness of King Treo</a> - Mon Jan 26 16:01:33 2004</li><br />
<div class="note">
Mars rover, the Matrix, and high calorie chow. Scifaiku.
</div>
<li><a href="blog/patapata.html">pata pata</a> - Mon Jan 26 09:10:35 2004</li><br />
<div class="note">
Zip scifaiku on the new year.
</div>
<li><a href="blog/shootmsgr.html">They shoot messengers, don't they?</a> - Sun Jan 25 09:49:51 2004</li><br />
<div class="note">
Scifaiku on a lapse of experience, noble in style but ribald in subject.
</div>
<li><a href="blog/dontsay.html">What books don't say</a> - Sat Jan 24 07:42:19 2004</li><br />
<div class="note">
Scifaiku based on OutKast's single mixed with a famous creature.
</div>
<li><a href="blog/heyya.html">Hey Ya</a> - Fri Jan 23 09:10:13 2004</li><br />
<div class="note">
Scifaiku on an aerobatic approach to life.
</div>
<li><a href="blog/x181102_35.html">Gravity Boy</a> - Thu Jan 22 22:08:50 2004</li><br />
<div class="note">
Former googlewhacks tracked over time, and similar lists.
</div>
<li><a href="blog/deltawhack.html">Transient googlewhacks</a> - Thu Jan 22 21:11:11 2004</li><br />
<div class="note">
Cinquain on the theme of simple pleasures.
</div>
<li><a href="blog/atc.html">All things considered</a> - Wed Jan 21 22:57:24 2004</li><br />
<div class="note">
Scifaiku based on a Top Two Single by OutKast.
</div>
<li><a href="blog/tentacular.html">The Way You Move</a> - Wed Jan 21 08:36:22 2004</li><br />
<div class="note">
The pleasures of icebreaking.
</div>
<li><a href="blog/imperma.html">Impermafrost</a> - Tue Jan 20 10:50:25 2004</li><br />
<div class="note">
Mirror cinquain with wordplay on a seedy neighborhood.
</div>
<li><a href="blog/graytom.html">Big Gray Tom</a> - Tue Jan 20 09:35:04 2004</li><br />
<div class="note">
Scifaiku based on a song by Kelis.
</div>
<li><a href="blog/milkshake.html">Milkshake</a> - Mon Jan 19 08:04:12 2004</li><br />
<div class="note">
A pair of scifaiku on future wedding celebrations.
</div>
<li><a href="blog/junewedding.html">June wedding</a> - Sun Jan 18 08:32:28 2004</li><br />
<div class="note">
Scifaiku based on a single by Alicia Keys.
</div>
<li><a href="blog/dontknow.html">You Don't Know My Name</a> - Sat Jan 17 07:39:43 2004</li><br />
<div class="note">
Battletech scifaiku one-breath.
</div>
<li><a href="blog/cluster.html">Cluster</a> - Fri Jan 16 13:16:59 2004</li><br />
<div class="note">
The esthetics of where one gets one's meat.
</div>
<li><a href="blog/xcarnivore.html">Extreme carnivorism</a> - Fri Jan 16 09:09:31 2004</li><br />
<div class="note">
Future history scifaiku from a song title by Ludacris.
</div>
<li><a href="blog/standup.html">Stand up</a> - Thu Jan 15 13:10:44 2004</li><br />
<div class="note">
The speeches of the Hungarian patriot and statesmen Louis Kossuth, online.
</div>
<li><a href="blog/orator.html">The orator</a> - Wed Jan 14 18:47:19 2004</li><br />
<div class="note">
Brick and one-breath scifaiku on leaving one's accustomed habitat.
</div>
<li><a href="blog/nonzero.html">Non-zero G</a> - Wed Jan 14 15:49:32 2004</li><br />
<div class="note">
Aerobatic scifaiku.
</div>
<li><a href="blog/x061002_22.html">Formation</a> - Wed Jan 14 08:58:13 2004</li><br />
<div class="note">
A too-quiet scifaiku.
</div>
<li><a href="blog/ozoneless.html">A summer's day</a> - Tue Jan 13 08:22:38 2004</li><br />
<div class="note">
Why it is that I'm not taking holistic liver support supplements now.
</div>
<li><a href="blog/liverpills.html">Liver pills no more</a> - Mon Jan 12 19:43:08 2004</li><br />
<div class="note">
Astronomical scifaiku at the opera.
</div>
<li><a href="blog/diva0.html">Diva</a> - Mon Jan 12 08:29:37 2004</li><br />
<div class="note">
The water pipes to the kitchen froze two days ago.
</div>
<li><a href="blog/nowater.html">No water</a> - Sun Jan 11 11:04:49 2004</li><br />
<div class="note">
Military scifaiku senryu in a comic strip setting.
</div>
<li><a href="blog/ace0.html">Ace</a> - Sun Jan 11 07:59:33 2004</li><br />
<div class="note">
Cinquain on a life passage.
</div>
<li><a href="blog/mudblood.html">Mudblood</a> - Sun Jan 11 07:57:35 2004</li><br />
<div class="note">
A post-apocalyptic superhero scifaiku.
</div>
<li><a href="blog/brepairman.html">Bicycle Repair Man</a> - Fri Jan 9 08:41:43 2004</li><br />
<div class="note">
Scifaiku on the $800M discovery waiting to be made on Mars.
</div>
<li><a href="blog/mdirt.html">Martian dirt</a> - Thu Jan 8 22:38:11 2004</li><br />
<div class="note">
On the Japanese view of the ends of life.
</div>
<li><a href="blog/mizuko.html">Water child</a> - Thu Jan 8 10:35:56 2004</li><br />
<div class="note">
A pair of scifaiku based on Christian hymns.
</div>
<li><a href="blog/omnisc.html">Omniscient</a> - Wed Jan 7 08:18:37 2004</li><br />
<div class="note">
Statistics from my first month out of work.
</div>
<li><a href="blog/idlestat.html">Idleness index</a> - Tue Jan 6 13:16:21 2004</li><br />
<div class="note">
One-breath scifaiku on dangerous airborne molecules.
</div>
<li><a href="blog/prion0.html">Defeat/Making a Wish</a> - Mon Jan 5 08:02:33 2004</li><br />
<div class="note">
Abbatoir scifaiku.
</div>
<li><a href="blog/downer.html">The downer</a> - Sat Jan 3 07:40:47 2004</li><br />
<div class="note">
Math scifaiku with nanotech.
</div>
<li><a href="blog/doubling.html">01-02-04 08:16:32.064</a> - Fri Jan 2 08:46:23 2004</li><br />
<div class="note">
Scifaiku on wealth from above.
</div>
<li><a href="blog/pto.html">Unidentified Philanthropic Object</a> - Thu Jan 1 08:38:04 2004</li><br />
<div class="note">
Scifaiku putting the familar in an alien broth.
</div>
<li><a href="blog/singalong.html">Squeaky clean</a> - Wed Dec 31 19:07:22 2003</li><br />
<div class="note">
Cinquain on art appreciation.
</div>
<li><a href="blog/themasters.html">Learning from the Masters</a> - Wed Dec 31 19:07:10 2003</li><br />
<div class="note">
URLs collected during December 2003
</div>
<li><a href="blog/dec2003link.html">Links and commentary</a> - Wed Dec 31 08:53:55 2003</li><br />
<div class="note">
The 19th century Spanish terms for those living in the Philippines.
</div>
<li><a href="blog/indio.html">Racial nomenclature</a> - Tue Dec 30 09:15:59 2003</li><br />
<div class="note">
A psych-type themed limerick.
</div>
<li><a href="blog/keepshirt.html">Keep your shirt on</a> - Sun Dec 28 10:34:25 2003</li><br />
<div class="note">
Fusion scifaiku, evoking a vision of a Homer Simpson of the future.
</div>
<li><a href="blog/tokamak.html">Piping hot</a> - Sat Dec 27 07:49:16 2003</li><br />
<div class="note">
Space scifaiku sequence based on spectral classification of stars.
</div>
<li><a href="blog/wobafgkm.html">WOBAFGKM</a> - Fri Dec 26 08:01:32 2003</li><br />
<div class="note">