-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive2005.0.html
executable file
·1556 lines (1540 loc) · 66.4 KB
/
archive2005.0.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">
Rhythmic tapping space scifaiku.
</div>
<li><a href="b2005/patapan.html">Patapan</a> - Thu Dec 22 21:30:59 2005</li><br />
<div class="note">
Cinquain about a homey ritual and its passing.
</div>
<li><a href="b2005/unassisted.html">Unassisted living</a> - Thu Dec 22 16:51:11 2005</li><br />
<div class="note">
Listing of choral pieces we will perform 24 December 2005.
</div>
<li><a href="b2005/christmas2006.html">Program for a Christmas Eve Mass</a> - Wed Dec 21 22:42:51 2005</li><br />
<div class="note">
Links to all the cinquain poems I have posted here.
</div>
<li><a href="b2005/cinqlist.html">List of cinquains here</a> - Wed Dec 21 22:37:16 2005</li><br />
<div class="note">
Fundamental force scifaiku.
</div>
<li><a href="b2005/tug.html">Tug</a> - Wed Dec 21 17:06:16 2005</li><br />
<div class="note">
Life extension scifaiku with nostalgia.
</div>
<li><a href="b2005/memorystillfresh.html">In memory still fresh</a> - Sat Dec 17 19:15:48 2005</li><br />
<div class="note">
Earth elemental scifaiku.
</div>
<li><a href="b2005/flankkilauea.html">On the flank of Kilauea</a> - Sat Dec 17 11:45:33 2005</li><br />
<div class="note">
Kinetic photography with some risk.
</div>
<li><a href="b2005/lightgravity.html">Light and gravity and motion</a> - Fri Dec 16 18:12:33 2005</li><br />
<div class="note">
Archaeology museum scifaiku.
</div>
<li><a href="b2005/returnolduvai.html">Return to Olduvai Gorge</a> - Fri Dec 16 11:34:42 2005</li><br />
<div class="note">
Relationship scifaiku.
</div>
<li><a href="b2005/boytoy.html">Boy toy</a> - Fri Dec 16 11:21:26 2005</li><br />
<div class="note">
Dressed up for a special ceremony. Scifaiku.
</div>
<li><a href="b2005/fineryday.html">Finery for a day</a> - Wed Dec 14 17:44:49 2005</li><br />
<div class="note">
Yule scene under a mile of water. Scifaiku.
</div>
<li><a href="b2005/artificialtree.html">Artificial tree</a> - Wed Dec 14 08:56:39 2005</li><br />
<div class="note">
A building blows up in the next town over. We are fine, and we wonder whether our car is okay. Turns out that it was.
</div>
<li><a href="b2005/bfexplosion.html">Explosion in Bergenfield</a> - Tue Dec 13 22:19:49 2005</li><br />
<div class="note">
Fibonacci scifaiku on signals with a pattern.
</div>
<li><a href="b2005/waterhole.html">Gathered around the water hole</a> - Mon Dec 12 22:04:33 2005</li><br />
<div class="note">
Just in time inventory management scifaiku in space.
</div>
<li><a href="b2005/p.r.n.html">Rx prn</a> - Sat Dec 10 12:48:26 2005</li><br />
<div class="note">
Harsh diagnosis from a galactic point of view. Scifaiku.
</div>
<li><a href="b2005/planetoma.html">Planetoma</a> - Sat Dec 10 12:37:10 2005</li><br />
<div class="note">
Scifaiku tanka on psychohistory and its limits.
</div>
<li><a href="b2005/thestillpoint.html">The still point</a> - Sat Dec 10 06:13:54 2005</li><br />
<div class="note">
Chemically accurate wine tasting scifaiku.
</div>
<li><a href="b2005/oenophile.html">The oenophile</a> - Fri Dec 9 08:32:05 2005</li><br />
<div class="note">
Metempsychosis scifaiku.
</div>
<li><a href="b2005/habeascorpus.html">Habeas corpus</a> - Mon Dec 5 21:03:12 2005</li><br />
<div class="note">
Military psionic scifaiku.
</div>
<li><a href="b2005/skunkworks.html">Skunkworks</a> - Mon Dec 5 10:28:51 2005</li><br />
<div class="note">
Poker-playing dog scifaiku.
</div>
<li><a href="b2005/mightaswellfold.html">Might as well fold</a> - Sun Dec 4 07:21:49 2005</li><br />
<div class="note">
Hay(na)ku scifaiku on big city security.
</div>
<li><a href="b2005/threatlevel.html">Elevated threat level</a> - Sat Dec 3 05:55:56 2005</li><br />
<div class="note">
Collected URLs for November 2005.
</div>
<li><a href="b2005/nov2005link.html">November 2005 links</a> - Thu Dec 1 22:51:52 2005</li><br />
<div class="note">
The rest of the story about the repair of a pair of Charles Harland recliners.
</div>
<li><a href="b2005/reclinerupdate.html">Recliner update</a> - Thu Dec 1 22:48:48 2005</li><br />
<div class="note">
Retrospective scifaiku on a short-short SF story.
</div>
<li><a href="b2005/exileforlife.html">Exile for life</a> - Wed Nov 30 21:44:29 2005</li><br />
<div class="note">
I was part of a net phenomenon without knowing it.
</div>
<li><a href="b2005/newmusic.html">On the vanguard of new music</a> - Wed Nov 30 06:39:06 2005</li><br />
<div class="note">
An update to a story about an unsightly sight.
</div>
<li><a href="b2005/nomoreuglyfoot.html">No more ugly foot</a> - Sun Nov 27 18:19:49 2005</li><br />
<div class="note">
Scifaiku on the pretty stars, just for show.
</div>
<li><a href="b2005/blinkenlights.html">Blinkenlights</a> - Sun Nov 27 16:26:53 2005</li><br />
<div class="note">
Holiday tradition scifaiku, twisted.
</div>
<li><a href="b2005/photoline.html">At the head of the photo line</a> - Sat Nov 26 20:49:44 2005</li><br />
<div class="note">
Feline cinquain of night.
</div>
<li><a href="b2005/nocturnesealpoint.html">Nocturne for unaccompanied seal point</a> - Sat Nov 26 10:16:40 2005</li><br />
<div class="note">
Lair seeking buyer. Scifaiku.
</div>
<li><a href="b2005/openfortress.html">Open fortress</a> - Sat Nov 26 06:25:00 2005</li><br />
<div class="note">
Space scifaiku zip for Thanksgiving.
</div>
<li><a href="b2005/passdarkmatter.html">Pass the dark matter</a> - Thu Nov 24 07:57:25 2005</li><br />
<div class="note">
One-breath scifaiku on a nursery via Britney.
</div>
<li><a href="b2005/icreation.html">Interstellar creation</a> - Wed Nov 23 22:13:19 2005</li><br />
<div class="note">
Civil engineering scifaiku.
</div>
<li><a href="b2005/doubledutch.html">Double Dutch</a> - Wed Nov 23 21:58:00 2005</li><br />
<div class="note">
Alternative US history memorial scifaiku.
</div>
<li><a href="b2005/fulllifeline.html">A full lifeline</a> - Tue Nov 22 13:05:09 2005</li><br />
<div class="note">
Relationship management scifaiku.
</div>
<li><a href="b2005/crm.html">CRM</a> - Sun Nov 20 14:13:00 2005</li><br />
<div class="note">
Too good looking for her own good. Scifaiku.
</div>
<li><a href="b2005/curseofbeauty.html">The curse of beauty</a> - Fri Nov 18 22:10:36 2005</li><br />
<div class="note">
Apocalyptic government scifaiku.
</div>
<li><a href="b2005/lastdays0.html">The last days of the Republic</a> - Wed Nov 16 12:55:56 2005</li><br />
<div class="note">
Enjoying time with one's companion animal. Scifaiku.
</div>
<li><a href="b2005/petfancy.html">Pet fancy</a> - Mon Nov 14 09:54:47 2005</li><br />
<div class="note">
Scifaiku kukai entry on the topic 'friendship.'
</div>
<li><a href="b2005/friendship.html">(untitled)</a> - Sun Nov 13 13:52:46 2005</li><br />
<div class="note">
Undecipherable text scifaiku.
</div>
<li><a href="b2005/checkyourbackpocket.html">Check your back pocket</a> - Sat Nov 12 16:08:34 2005</li><br />
<div class="note">
Late autumn scifaiku somewhere else.
</div>
<li><a href="b2005/intothewind.html">Not a good idea to rake leaves into the wind</a> - Fri Nov 11 12:13:42 2005</li><br />
<div class="note">
Mankind's spread. Scifaiku.
</div>
<li><a href="b2005/lummox.html">Lummox</a> - Thu Nov 10 20:07:24 2005</li><br />
<div class="note">
Punning animal companion scifaiku.
</div>
<li><a href="b2005/yourpet.html">He's your pet - you take care of him</a> - Thu Nov 10 17:39:31 2005</li><br />
<div class="note">
Observation on a name.
</div>
<li><a href="b2005/sarkozy.html">How my mind works</a> - Thu Nov 10 06:39:33 2005</li><br />
<div class="note">
As the state goes, so goes the borough of Dumont this year, with a Democratic sweep in the election.
</div>
<li><a href="b2005/dumontdemocrats.html">Dumont gone Democratic</a> - Tue Nov 8 22:51:20 2005</li><br />
<div class="note">
Punny math pirate scifaiku.
</div>
<li><a href="b2005/penrose.html">Jolly Roger Penrose</a> - Mon Nov 7 18:18:46 2005</li><br />
<div class="note">
Signs of life. Scifaiku.
</div>
<li><a href="b2005/waiting0.html">Waiting</a> - Mon Nov 7 14:53:30 2005</li><br />
<div class="note">
Short short story on a tense situation.
</div>
<li><a href="b2005/wetpants.html">Wet pants</a> - Sun Nov 6 18:52:56 2005</li><br />
<div class="note">
Experience everything, only more so. Scifaiku.
</div>
<li><a href="b2005/outfinity.html">Outfinity</a> - Sun Nov 6 13:10:40 2005</li><br />
<div class="note">
Nuclear scifaiku with a couple.
</div>
<li><a href="b2005/islandofstability.html">Back to the island of stability</a> - Sat Nov 5 12:37:37 2005</li><br />
<div class="note">
A mishap involving schoolchildren. Scifaiku.
</div>
<li><a href="b2005/fieldtrip.html">Field trip</a> - Fri Nov 4 19:16:20 2005</li><br />
<div class="note">
Scifaiku of obsession.
</div>
<li><a href="b2005/beyondtheveil.html">Beyond the veil</a> - Fri Nov 4 16:35:49 2005</li><br />
<div class="note">
Collected URLs for October 2005
</div>
<li><a href="b2005/oct2005link.html">October 2005 links</a> - Thu Nov 3 22:48:55 2005</li><br />
<div class="note">
Wistful body modification scifaiku.
</div>
<li><a href="b2005/regretalmostall.html">I regret almost all of it</a> - Tue Nov 1 17:10:51 2005</li><br />
<div class="note">
Climate change scifaiku.
</div>
<li><a href="b2005/postpolar.html">Post-polar</a> - Tue Nov 1 06:15:17 2005</li><br />
<div class="note">
Scary cinematic monster scifaiku.
</div>
<li><a href="b2005/beholdthecave.html">Behold the cave</a> - Mon Oct 31 22:19:28 2005</li><br />
<div class="note">
Review of a book on white-collar unemployment by investigative reporter Barbara Ehrenreich.
</div>
<li><a href="b2005/baitswitch.html">Review of Bait and Switch</a> - Mon Oct 31 10:28:33 2005</li><br />
<div class="note">
Two animal encounters not far from the big city.
</div>
<li><a href="b2005/animalsuburbs.html">Animals in the suburbs.</a> - Sun Oct 30 20:32:03 2005</li><br />
<div class="note">
Succor on those lonely nights far away. Scifaiku.
</div>
<li><a href="b2005/martianmission.html">Martian mission</a> - Sun Oct 30 17:44:41 2005</li><br />
<div class="note">
Where the feeble senses fail, so do alphabets. Scifaiku.
</div>
<li><a href="b2005/nbsp.html">Non-breaking space</a> - Sat Oct 29 11:16:06 2005</li><br />
<div class="note">
Emission spectrum scifaiku.
</div>
<li><a href="b2005/DD.html">DD</a> - Sat Oct 29 10:55:39 2005</li><br />
<div class="note">
Metallurgy scifaiku.
</div>
<li><a href="b2005/sstandards.html">Spotless standards</a> - Fri Oct 28 20:44:22 2005</li><br />
<div class="note">
Potentially hostile watchers. Scifaiku.
</div>
<li><a href="b2005/vicesquadbeat.html">On the vice squad beat</a> - Fri Oct 28 17:34:17 2005</li><br />
<div class="note">
Scifaiku on a furtive presence.
</div>
<li><a href="b2005/jerseydevil.html">Jersey Devil</a> - Thu Oct 27 13:22:33 2005</li><br />
<div class="note">
Android scifaiku with a math title.
</div>
<li><a href="b2005/ibp.html">Integration by parts</a> - Wed Oct 26 09:26:30 2005</li><br />
<div class="note">
Sylvan scifaiku.
</div>
<li><a href="b2005/rightofway.html">Right of way</a> - Tue Oct 25 12:45:58 2005</li><br />
<div class="note">
Fun and education at the central black hole. Scifaiku.
</div>
<li><a href="b2005/galacticcenter.html">Galactic center</a> - Tue Oct 25 10:37:23 2005</li><br />
<div class="note">
Tropical storm scifaiku.
</div>
<li><a href="b2005/hurricane.html">Blowout</a> - Sun Oct 23 09:07:21 2005</li><br />
<div class="note">
Fugitive scifaiku.
</div>
<li><a href="b2005/whereabouts.html">Whereabouts unknown</a> - Fri Oct 21 08:05:37 2005</li><br />
<div class="note">
Visual scifaiku.
</div>
<li><a href="b2005/qualityoflight.html">A quality of light</a> - Tue Oct 18 22:38:51 2005</li><br />
<div class="note">
Polled for the upcoming political races here in New Jersey.
</div>
<li><a href="b2005/countedagain.html">Counted again</a> - Tue Oct 18 07:59:57 2005</li><br />
<div class="note">
Relativity scifaiku.
</div>
<li><a href="b2005/inertial.html">Inertial</a> - Mon Oct 17 21:56:03 2005</li><br />
<div class="note">
Moody puppet scifaiku.
</div>
<li><a href="b2005/moonlit0.html">Moonlit</a> - Sun Oct 16 13:05:15 2005</li><br />
<div class="note">
Chiliastic scifaiku.
</div>
<li><a href="b2005/reign.html">Reign</a> - Sun Oct 16 12:57:52 2005</li><br />
<div class="note">
Planetary personal ad scifaiku.
</div>
<li><a href="b2005/oldmaid.html">Old maid</a> - Sat Oct 15 17:30:39 2005</li><br />
<div class="note">
After the great war, a society gathers. Scifaiku.
</div>
<li><a href="b2005/dragonland.html">Dragonland</a> - Sat Oct 15 17:23:38 2005</li><br />
<div class="note">
Alternate military history scifaiku.
</div>
<li><a href="b2005/sweepingback.html">Sweeping back the sea</a> - Thu Oct 13 13:09:44 2005</li><br />
<div class="note">
Royal pomp scifaiku.
</div>
<li><a href="b2005/inreview.html">In review</a> - Wed Oct 12 18:34:28 2005</li><br />
<div class="note">
A conundrum in spatial relationships. Scifaiku.
</div>
<li><a href="b2005/ploperdown.html">Plop 'er down</a> - Wed Oct 12 18:31:35 2005</li><br />
<div class="note">
Quotation on our parochiality.
</div>
<li><a href="b2005/whocares.html">Who cares for what is far away?</a> - Tue Oct 11 23:00:58 2005</li><br />
<div class="note">
My blood is no good.
</div>
<li><a href="b2005/badblood.html">Bad blood</a> - Tue Oct 11 21:50:11 2005</li><br />
<div class="note">
Collected URLs for September 2005.
</div>
<li><a href="b2005/sep05link.html">September 2005 links</a> - Mon Oct 10 22:50:58 2005</li><br />
<div class="note">
Mini-review of the Nobel Prize winner's famous book, in reference to current events.
</div>
<li><a href="b2005/blindnessreview.html">Blindness, by José Saramago</a> - Mon Oct 10 22:49:16 2005</li><br />
<div class="note">
Favorite munchies scifaiku.
</div>
<li><a href="b2005/comfortfood.html">Comfort food</a> - Sun Oct 9 19:26:01 2005</li><br />
<div class="note">
Hay(na)ku on the morning after a catastrophe.
</div>
<li><a href="b2005/thatnight.html">After that night</a> - Fri Oct 7 18:49:18 2005</li><br />
<div class="note">
Multiverse infatuation scifaiku.
</div>
<li><a href="b2005/secretadmirer.html">Your secret admirer</a> - Fri Oct 7 18:46:28 2005</li><br />
<div class="note">
Transhuman rhythm section scifaiku.
</div>
<li><a href="b2005/1234.html">One 2wo 3hree 4our</a> - Thu Oct 6 21:44:39 2005</li><br />
<div class="note">
Scifaiku brick on string cosmology.
</div>
<li><a href="b2005/cutofherjib.html">The cut of her jib</a> - Wed Oct 5 17:11:45 2005</li><br />
<div class="note">
New games, new tactics. Scifaiku one-breath.
</div>
<li><a href="b2005/spoonful.html">Spoonful</a> - Tue Oct 4 23:00:17 2005</li><br />
<div class="note">
Petroleum scifaiku in an antique style.
</div>
<li><a href="b2005/bonnyfutures.html">Bonny futures</a> - Tue Oct 4 22:59:52 2005</li><br />
<div class="note">
Religion scifaiku on taking special precautions.
</div>
<li><a href="b2005/sharia.html">Sharia</a> - Tue Oct 4 22:55:19 2005</li><br />
<div class="note">
Tanka scifaiku for the new year.
</div>
<li><a href="b2005/tishri1.html">Tishri 1</a> - Sat Oct 1 10:51:03 2005</li><br />
<div class="note">
Video game scifaiku.
</div>
<li><a href="b2005/lifeafterlife.html">Life after life</a> - Sat Oct 1 06:47:50 2005</li><br />
<div class="note">
Biker hay(na)ku.
</div>
<li><a href="b2005/untitled0.html">(untitled)</a> - Sat Oct 1 06:26:07 2005</li><br />
<div class="note">
Cinquain on the difficulty of translating from Italian to German.
</div>
<li><a href="b2005/lostcinq.html">Lost in translation</a> - Thu Sep 29 22:44:14 2005</li><br />
<div class="note">
Scifaiku from the pov of some mighty pissed-off aliens.
</div>
<li><a href="b2005/horseyourode.html">And the horse you rode in on</a> - Thu Sep 29 22:24:08 2005</li><br />
<div class="note">
Pulp comic scifaiku.
</div>
<li><a href="b2005/archrival.html">Archrival</a> - Tue Sep 27 12:09:36 2005</li><br />
<div class="note">
Marketing scifaiku with infinite digits after the decimal place.
</div>
<li><a href="b2005/transcendental.html">Transcendental</a> - Mon Sep 26 20:24:22 2005</li><br />
<div class="note">
Hay(na)ku scifaiku on a strategic asset and its defense.
</div>
<li><a href="b2005/fly0.html">Fly</a> - Wed Sep 21 22:15:30 2005</li><br />
<div class="note">
A view from a different viewpoint. Scifaiku.
</div>
<li><a href="b2005/milkyway.html">Milky Way</a> - Wed Sep 21 22:12:59 2005</li><br />
<div class="note">
Someone's winning and someone's growing something. Scifaiku.
</div>
<li><a href="b2005/victorygarden.html">Victory garden</a> - Tue Sep 20 08:40:29 2005</li><br />
<div class="note">
Hay(na)ku scifaiku on the aftermath of a disaster alert.
</div>
<li><a href="b2005/bottleboxpallet.html">Bottles in boxes on pallets</a> - Sun Sep 18 22:46:58 2005</li><br />
<div class="note">
Church choir (soprano, alto, tenor, baritone) resumes.
</div>
<li><a href="b2005/choir0506.html">Return of SATB</a> - Sun Sep 18 13:01:21 2005</li><br />
<div class="note">
Hay(na)ku on pirate booty.
</div>
<li><a href="b2005/manowar.html">Man O' War</a> - Sun Sep 18 06:46:53 2005</li><br />
<div class="note">
Infant cuteness scifaiku.
</div>
<li><a href="b2005/childisborn.html">A child is born</a> - Sun Sep 18 06:44:40 2005</li><br />
<div class="note">
Watching a bad situation unfold.
</div>
<li><a href="b2005/witness0.html">Witness to a misdemeanor</a> - Sat Sep 17 12:33:24 2005</li><br />
<div class="note">
Stellarenga on degenerate nuclear matter.
</div>
<li><a href="b2005/burntout.html">Burnt-out case</a> - Fri Sep 16 22:40:28 2005</li><br />
<div class="note">
The main thing to remember when you have a time machine is to use it to send yourself instructions on how to make a time machine. Scifaiku.
</div>
<li><a href="b2005/notetoself.html">Note to self</a> - Fri Sep 16 22:35:40 2005</li><br />
<div class="note">
Email billet doux. Scifaiku senryu.
</div>
<li><a href="b2005/spamportuguese.html">Spam from the Portuguese</a> - Fri Sep 16 12:33:14 2005</li><br />
<div class="note">
Metaphysical services hay(na)ku.
</div>
<li><a href="b2005/hasacost.html">Everything has a cost</a> - Thu Sep 15 20:38:19 2005</li><br />
<div class="note">
Let the good times roll. Scifaiku.
</div>
<li><a href="b2005/partydrs.html">Party like a dead rock star</a> - Thu Sep 15 20:37:03 2005</li><br />
<div class="note">
Hay(na)ku on dangerous harmless amusement.
</div>
<li><a href="b2005/foolingaround.html">Fooling around in the alley</a> - Thu Sep 15 09:59:38 2005</li><br />
<div class="note">
Pigs fly without wings. Scifaiku.
</div>
<li><a href="b2005/withoutfeathers.html">Without feathers</a> - Wed Sep 14 08:04:27 2005</li><br />
<div class="note">
Lists of links to books from Project Gutenberg I intend to read.
</div>
<li><a href="b2005/etextlist.html">Public domain etexts on my list to read</a> - Tue Sep 13 22:32:40 2005</li><br />
<div class="note">
Hay(na)ku on domestic harmony.
</div>
<li><a href="b2005/byarrangement.html">By arrangement</a> - Tue Sep 13 15:41:56 2005</li><br />
<div class="note">
Mysterious shipment scifaiku.
</div>
<li><a href="b2005/privatecarrier.html">Private carrier</a> - Mon Sep 12 20:00:15 2005</li><br />
<div class="note">
Book review of a story about a family.
</div>
<li><a href="b2005/positionreview.html">The Position by Meg Wolitzer</a> - Sun Sep 11 21:32:46 2005</li><br />
<div class="note">
Emotional pharmaceutical scifaiku.
</div>
<li><a href="b2005/rx.html">Rx</a> - Sun Sep 11 13:17:32 2005</li><br />
<div class="note">
An angry September 11 cinquain.
</div>
<li><a href="b2005/nosacred.html">Still no sacred ground</a> - Sun Sep 11 10:58:11 2005</li><br />
<div class="note">
Scifaiku of necessity.
</div>
<li><a href="b2005/checklist.html">Checklist Xs</a> - Sun Sep 11 08:09:46 2005</li><br />
<div class="note">
A cybernetic scifaiku.
</div>
<li><a href="b2005/louisvillememphis.html">Between Louisville and Memphis</a> - Sat Sep 10 12:40:02 2005</li><br />
<div class="note">
Tolkein's evening star beyond our range of seeing. Scifaiku.
</div>
<li><a href="b2005/pixeltreasures.html">Pixel treasures</a> - Fri Sep 9 22:00:35 2005</li><br />
<div class="note">
Memorial cinquain for September 11th.
</div>
<li><a href="b2005/midseptember.html"> A mid-September morning</a> - Fri Sep 9 21:20:33 2005</li><br />
<div class="note">
Neoteny scifaiku.
</div>
<li><a href="b2005/lostboys.html">The lost boys</a> - Fri Sep 9 21:18:54 2005</li><br />
<div class="note">
Catching up on the latest doings, after a descent to Hell. Scifaiku.
</div>
<li><a href="b2005/upto.html">So what'cha been doing?</a> - Tue Sep 6 12:42:20 2005</li><br />
<div class="note">
A touch of drama. Scifaiku.
</div>
<li><a href="b2005/scenemovie.html">Scene from a movie</a> - Mon Sep 5 12:35:54 2005</li><br />
<div class="note">
Traveling steerage class has its drawbacks. Scifaiku.
</div>
<li><a href="b2005/plantostayawake.html">Plan to stay awake</a> - Mon Sep 5 12:24:14 2005</li><br />
<div class="note">
Mating custom scifaiku.
</div>
<li><a href="b2005/ourforebears.html">Ways of our forebears</a> - Mon Sep 5 06:46:59 2005</li><br />
<div class="note">
Scifaiku on looking through time to find only pain.
</div>
<li><a href="b2005/farseeing.html">The wonderful far-seeing machine</a> - Sun Sep 4 06:53:45 2005</li><br />
<div class="note">
Post-industrial reminiscence of an agrarian time. Scifaiku.
</div>
<li><a href="b2005/cowgirl.html">Cowgirl</a> - Sun Sep 4 06:51:52 2005</li><br />
<div class="note">
Collected URLs for August 2005
</div>
<li><a href="b2005/aug05link.html">Links for August 2005</a> - Sat Sep 3 22:41:52 2005</li><br />
<div class="note">
Scifaiku on giving up on a habitat.
</div>
<li><a href="b2005/theroaches.html">Let the roaches have the place</a> - Fri Sep 2 18:19:13 2005</li><br />
<div class="note">
Abomination or just natural order of things? Scifaiku.
</div>
<li><a href="b2005/mechannibalsquestion.html">The mechannibal's question</a> - Wed Aug 31 22:11:18 2005</li><br />
<div class="note">
Storm scifaiku.
</div>
<li><a href="b2005/ridingthestormout.html">Riding the storm out</a> - Mon Aug 29 15:10:56 2005</li><br />
<div class="note">
Review of the Jim Jarmusch movie starring Bill Murray.
</div>
<li><a href="b2005/brokenflowers.html">Broken Flowers (review)</a> - Sun Aug 28 20:59:24 2005</li><br />
<div class="note">
Fashion technology scifaiku.
</div>
<li><a href="b2005/continuingthetheme.html">Continuing the theme</a> - Sun Aug 28 20:57:49 2005</li><br />
<div class="note">
Scifaiku on a replicant.
</div>
<li><a href="b2005/rachaelssong.html">Rachael's song</a> - Sat Aug 27 21:07:29 2005</li><br />
<div class="note">
A token of faith. Scifaiku.
</div>
<li><a href="b2005/comfortafflicted.html">Comfort for the afflicted</a> - Sat Aug 27 12:44:03 2005</li><br />
<div class="note">
Given an infinite universe, a scenario like this must inevitably occur somewhere. Scifaiku.
</div>
<li><a href="b2005/takeout.html">Takeout</a> - Fri Aug 26 23:06:10 2005</li><br />
<div class="note">
An unwelcome realization dawns. Scifaiku.
</div>
<li><a href="b2005/cantbeagoodsign.html">That can't be a good sign...</a> - Thu Aug 25 19:22:06 2005</li><br />
<div class="note">
Flowers under strange constellations. Scifaiku.
</div>
<li><a href="b2005/tendourgardens.html">We must tend our gardens</a> - Wed Aug 24 22:16:01 2005</li><br />
<div class="note">
Tanka for a cyborg into high quality audio.
</div>
<li><a href="b2005/iplant.html">iPlant</a> - Tue Aug 23 21:13:20 2005</li><br />
<div class="note">
Distributed nonbiological mind scifaiku.
</div>
<li><a href="b2005/greymatter.html">Grey matter</a> - Mon Aug 22 22:34:56 2005</li><br />
<div class="note">
Contamination scifaiku.
</div>
<li><a href="b2005/justtosay.html">This is just to say</a> - Mon Aug 22 07:42:31 2005</li><br />
<div class="note">
Three strange photos.
</div>
<li><a href="b2005/ghostly2.html">More unsettling images</a> - Sat Aug 20 18:32:56 2005</li><br />
<div class="note">
A birthday party in Arkham horror scifaiku.
</div>
<li><a href="b2005/funlittleones.html">Fun for the little ones</a> - Sat Aug 20 05:55:11 2005</li><br />
<div class="note">
Called up for jury duty in New Jersey.
</div>
<li><a href="b2005/gjsummons.html">State Grand Jury summons</a> - Wed Aug 17 22:20:59 2005</li><br />
<div class="note">
Cinquain about a girl playing a role.
</div>
<li><a href="b2005/inoutcharacter.html">In and out of character</a> - Wed Aug 17 22:17:55 2005</li><br />
<div class="note">
Summer storms knock the power out here and we try to cope.
</div>
<li><a href="b2005/powerless.html">For a time, powerless</a> - Wed Aug 17 08:11:30 2005</li><br />
<div class="note">
Tinseltown birth scifaiku.
</div>
<li><a href="b2005/gestationsequel.html">Gestation - the sequel</a> - Wed Aug 17 07:50:14 2005</li><br />
<div class="note">
Intense union scifaiku.
</div>
<li><a href="b2005/hyperkiss.html">Hyperkiss</a> - Tue Aug 16 07:52:53 2005</li><br />
<div class="note">
Secrets of engineering. Scifaiku.
</div>
<li><a href="b2005/seamy.html">Seamy side</a> - Sun Aug 14 11:14:35 2005</li><br />
<div class="note">
Here's a link from a backwater blog to see whether John Walkenbach can find it.
</div>
<li><a href="b2005/bloglinkexperiment.html">J-Walk Blog Link Experiment</a> - Sat Aug 13 12:14:50 2005</li><br />
<div class="note">
Security scifaiku.
</div>
<li><a href="b2005/eea.html">Life under extraordinary emergency authority</a> - Sat Aug 13 12:08:25 2005</li><br />
<div class="note">
On one consolation of growing old.
</div>
<li><a href="b2005/hyperopia.html">Farsight</a> - Fri Aug 12 22:08:31 2005</li><br />
<div class="note">
Slightly naughty cybernetic scifaiku.
</div>
<li><a href="b2005/appreciation.html">An appreciation</a> - Fri Aug 12 21:54:24 2005</li><br />
<div class="note">
Planetary scifaiku.
</div>
<li><a href="b2005/midnight0.html">Midnight in the ...</a> - Thu Aug 11 14:00:14 2005</li><br />
<div class="note">
Illicit activity aftermath scifaiku.
</div>
<li><a href="b2005/ordinaryneighborhood.html">In some ordinary neighborhood</a> - Thu Aug 11 13:33:45 2005</li><br />
<div class="note">
Cyborg frugality scifaiku.
</div>
<li><a href="b2005/intothedarkness.html">Into the darkness</a> - Wed Aug 10 20:53:36 2005</li><br />
<div class="note">
Some extreme engineering of desirable traits in the plant kingdom. Scifaiku.
</div>
<li><a href="b2005/blight.html">Blight resistance</a> - Tue Aug 9 21:36:11 2005</li><br />
<div class="note">
Shakespearean faerie space scifaiku.
</div>
<li><a href="b2005/onoberon.html">Once upon a time on Oberon</a> - Tue Aug 9 20:41:18 2005</li><br />
<div class="note">
Folded paper 4-space scifaiku.
</div>
<li><a href="b2005/hiroshimaday.html">Hiroshima Day</a> - Mon Aug 8 19:42:40 2005</li><br />
<div class="note">
Space ship scifaiku.
</div>
<li><a href="b2005/marriedmothership.html">Married to the Mothership</a> - Sun Aug 7 22:21:49 2005</li><br />
<div class="note">
Collected links for July 2005.
</div>
<li><a href="b2005/july2005link.html">Links for July 2005</a> - Sun Aug 7 16:01:44 2005</li><br />
<div class="note">
Mind doping in competition. Scifaiku.
</div>
<li><a href="b2005/forawin.html">Anything for a win</a> - Sat Aug 6 12:21:43 2005</li><br />
<div class="note">
Scifaiku on alternative use of vibrate mode in phones.
</div>
<li><a href="b2005/subsonic.html">Subsonic frequencies</a> - Fri Aug 5 23:48:09 2005</li><br />
<div class="note">
Deep sea disaster scifaiku.
</div>
<li><a href="b2005/negbuoy.html">Negative buoyancy</a> - Fri Aug 5 22:09:31 2005</li><br />
<div class="note">
Improvised Explosive Device cinquain.
</div>
<li><a href="b2005/iedvirtuoso.html">The IED virtuoso</a> - Wed Aug 3 21:53:25 2005</li><br />
<div class="note">
Frankenstein's monster hardware scifaiku.
</div>
<li><a href="b2005/drawingboard.html">Back to the drawing board</a> - Wed Aug 3 21:22:09 2005</li><br />
<div class="note">
A brain dump of the time I spent with my college friend Ian in Manhattan.
</div>
<li><a href="b2005/withian.html">My dinner with Ian</a> - Tue Aug 2 08:23:00 2005</li><br />
<div class="note">
Alien scifaiku brick.
</div>
<li><a href="b2005/theireyes.html">It was their eyes</a> - Tue Aug 2 07:41:31 2005</li><br />
<div class="note">
French documentary film of the life cycle of the Emperor Penguins of Antarctica, reviewed.
</div>
<li><a href="b2005/marchpenguins.html">Review of March of the Penguins</a> - Sun Jul 31 18:40:21 2005</li><br />
<div class="note">
Resuming spin class after a long, long layoff.
</div>
<li><a href="b2005/inthesaddle.html">Saddled back up</a> - Sat Jul 30 19:17:08 2005</li><br />
<div class="note">
Scifaiku set at a future space elevator.
</div>
<li><a href="b2005/latitude0.html">Latitude 0</a> - Sat Jul 30 06:12:42 2005</li><br />
<div class="note">
Stanley Kunitz, former poet laureate of the U.S., turns 100 today.
</div>
<li><a href="b2005/kunitz100.html">Birthday of Stanley Kunitz</a> - Fri Jul 29 19:33:51 2005</li><br />
<div class="note">
Fallout from the disarray in space. Scifaiku.
</div>
<li><a href="b2005/furloughed.html">Furloughed</a> - Fri Jul 29 15:20:09 2005</li><br />
<div class="note">
Racing scifaiku.
</div>
<li><a href="b2005/tourdetot.html">Tour de Tot</a> - Wed Jul 27 14:57:56 2005</li><br />
<div class="note">
Partial synopsis of Harry Potter and the Half-Blood Prince available on the net.
</div>
<li><a href="b2005/hp6cliffnotes.html">More Harry Potter summaries</a> - Tue Jul 26 22:10:11 2005</li><br />
<div class="note">
Scifaiku fragment on the rules of the game.
</div>
<li><a href="b2005/covercutcrush.html">Cover, cut, crush</a> - Tue Jul 26 18:26:25 2005</li><br />
<div class="note">
Schoolyard taunting, somewhere. Scifaiku.
</div>
<li><a href="b2005/larvaecruel.html">Larvae can be so cruel</a> - Tue Jul 26 18:01:10 2005</li><br />
<div class="note">
A 55 word story with a father and a daughter and some technology.
</div>
<li><a href="b2005/f260802_0.html">Melt my heart</a> - Tue Jul 26 08:07:18 2005</li><br />
<div class="note">
Summer rooftop scifaiku.
</div>
<li><a href="b2005/christmasjuly.html">Christmas in July</a> - Mon Jul 25 06:41:34 2005</li><br />
<div class="note">
Color saturated scifaku sequence.
</div>
<li><a href="b2005/greenblue.html">Green on blue</a> - Sun Jul 24 21:29:50 2005</li><br />
<div class="note">
Scifaiku coordinating Revelation, Macbeth, and Fountains of Wayne.
</div>
<li><a href="b2005/redlight.html">Little red light</a> - Sun Jul 24 21:17:31 2005</li><br />
<div class="note">
Just passed the 800th day of blogging here.
</div>
<li><a href="b2005/DCCC.html">800 days</a> - Sat Jul 23 21:18:16 2005</li><br />
<div class="note">
It's a book that gets down to business, with lots of dialogue and a minimum of hocus-pocus.
</div>
<li><a href="b2005/hp6.html">Harry Potter and the Half-Blood Prince review</a> - Sat Jul 23 21:13:06 2005</li><br />
<div class="note">
Musical chemical astronomical scifaiku.
</div>
<li><a href="b2005/sodiumd.html">Sodium D sus</a> - Sat Jul 23 14:28:04 2005</li><br />
<div class="note">
My sister's 1 BR, 1 bath unit is up for sale. Check it out (Flash required).
</div>
<li><a href="b2005/sanbruno_condo.html">Condo for sale in San Bruno, CA</a> - Thu Jul 21 20:14:50 2005</li><br />
<div class="note">
Memorial scifaiku for James Doohan.
</div>
<li><a href="b2005/doohan2.html">Not part of the design (reprise)</a> - Thu Jul 21 08:02:45 2005</li><br />
<div class="note">
White House leakage filk
</div>
<li><a href="b2005/plame.html">Agent Plame</a> - Thu Jul 21 07:46:16 2005</li><br />
<div class="note">
Lonesome space scifaiku.
</div>
<li><a href="b2005/faraway.html">Far and away</a> - Wed Jul 20 21:30:02 2005</li><br />
<div class="note">
Dumont, New Jersey, receives a large bailout from the state to help remedy the years of mismanagement by the Council.
</div>
<li><a href="b2005/dumontbailout.html">$600k from New Jersey</a> - Wed Jul 20 08:09:31 2005</li><br />
<div class="note">
Scifaiku senryu in the Star Wars universe.
</div>
<li><a href="b2005/decorator.html">Decorator's sense</a> - Tue Jul 19 22:20:11 2005</li><br />
<div class="note">
Launch ever more distant. Scifaiku.
</div>
<li><a href="b2005/whenwewereyoung.html">Remember when we were young and launch was easy?</a> - Mon Jul 18 20:16:46 2005</li><br />
<div class="note">
Palindromic space scifaiku.
</div>
<li><a href="b2005/imadam.html">Madam, I'm Adam</a> - Mon Jul 18 08:32:27 2005</li><br />
<div class="note">
Cometary sequelae scifaiku.
</div>
<li><a href="b2005/perseids05.html">Perseids Meteor Showers, July 17 - Aug 2</a> - Sun Jul 17 08:23:47 2005</li><br />
<div class="note">
Visual enhancement scifaiku.
</div>
<li><a href="b2005/xrayspecs.html">X-ray specs</a> - Sun Jul 17 07:51:41 2005</li><br />
<div class="note">
Horror scifaiku with a pun.
</div>
<li><a href="b2005/inventory.html">Counting inventory</a> - Sat Jul 16 07:48:05 2005</li><br />
<div class="note">
Pandemic scifaiku.
</div>
<li><a href="b2005/noevil.html">See no evil, hear no evil, speak no evil</a> - Fri Jul 15 00:15:57 2005</li><br />
<div class="note">
He looks like I feel sometimes.
</div>
<li><a href="b2005/meancowboy.html">Mean cowboy</a> - Thu Jul 14 08:46:58 2005</li><br />
<div class="note">
A minor aspect of the evening's events points to a perplexing tragedy.
</div>
<li><a href="b2005/er3.html">Coda to the second emergency room story</a> - Wed Jul 13 22:53:14 2005</li><br />
<div class="note">
Sculpting another species into art. Scifaiku.
</div>
<li><a href="b2005/topiary.html">The genteel art of topiary</a> - Tue Jul 12 23:45:11 2005</li><br />
<div class="note">
A week later, I'm back in the hospital because my gut done shut down.
</div>
<li><a href="b2005/er2.html">Emergency room redux: Nausea, or the Sickness Unto Death</a> - Mon Jul 11 22:10:53 2005</li><br />
<div class="note">
Acephalic scifaiku.
</div>
<li><a href="b2005/nobrainer.html">It's a no-brainer</a> - Mon Jul 11 20:28:02 2005</li><br />
<div class="note">
Organic space tech scifaiku.
</div>
<li><a href="b2005/myothercar.html">My other car is an interstellar transit liner</a> - Mon Jul 11 17:49:06 2005</li><br />
<div class="note">
Chronology scifaiku.
</div>
<li><a href="b2005/ordinarytime.html">Ordinary time</a> - Mon Jul 11 07:43:20 2005</li><br />
<div class="note">
Zip scifaiku from a disaster victim.
</div>
<li><a href="b2005/homeheart.html">Home is where the heart is</a> - Mon Jul 11 07:38:46 2005</li><br />
<div class="note">
Shaggy dog cinquain poem.
</div>
<li><a href="b2005/hopeful0.html">Hopeful</a> - Thu Jul 7 07:02:00 2005</li><br />
<div class="note">
Courtly regalia in the upper Midwest. Scifaiku.
</div>
<li><a href="b2005/trappings.html">Trappings of nobility</a> - Wed Jul 6 07:02:00 2005</li><br />
<div class="note">
Cinquain on a humid intimate evening at home.
</div>
<li><a href="b2005/sundaynight.html">Sunday night</a> - Tue Jul 5 21:16:14 2005</li><br />
<div class="note">
Sudden climate change scifaiku.
</div>
<li><a href="b2005/deepfreeze.html">Deep freeze</a> - Tue Jul 5 08:19:23 2005</li><br />
<div class="note">
We went to see Steven Spielberg's latest summer movie.
</div>
<li><a href="b2005/warworlds.html">Review of War of the Worlds (film)</a> - Mon Jul 4 20:04:04 2005</li><br />
<div class="note">
Cometary impact scifaiku.
</div>
<li><a href="b2005/independence.html">Independence Day</a> - Mon Jul 4 13:43:32 2005</li><br />
<div class="note">
Scifaiku on information communicated through means other than speech.
</div>
<li><a href="b2005/griot.html">Griot</a> - Mon Jul 4 09:58:48 2005</li><br />
<div class="note">
A cough persists, I seek help, time elapses.
</div>
<li><a href="b2005/er.html">My visit to the emergency room</a> - Sun Jul 3 17:24:15 2005</li><br />
<div class="note">
Chinese golem scifaiku.
</div>
<li><a href="b2005/mustserve.html">For they are the ones who must serve</a> - Sun Jul 3 16:37:42 2005</li><br />
<div class="note">
Collected items from around the web, long form.
</div>
<li><a href="b2005/june2005link.html">Links from June 2005</a> - Sat Jul 2 08:17:35 2005</li><br />
<div class="note">
A time-travel take on assassination. Scifaiku.
</div>
<li><a href="b2005/assassination.html">Assassination</a> - Wed Jun 29 23:02:57 2005</li><br />
<div class="note">
Mission briefing scifaiku.
</div>
<li><a href="b2005/sol3freedom.html">Operation Sol 3 Freedom</a> - Wed Jun 29 22:42:28 2005</li><br />
<div class="note">
A set of photos on a spirit motif.
</div>
<li><a href="b2005/threeghostly.html">Three ghostly pictures</a> - Wed Jun 29 22:08:29 2005</li><br />
<div class="note">
Cinquain on a proud bird.
</div>
<li><a href="b2005/homeland.html">Homeland</a> - Wed Jun 29 22:02:00 2005</li><br />
<div class="note">
Robot interview scifaiku.
</div>
<li><a href="b2005/draftcorridor.html">A draft in the corridor</a> - Sun Jun 26 08:21:57 2005</li><br />
<div class="note">
Reproductive capacity scifaiku.
</div>
<li><a href="b2005/babymama.html">Baby mama</a> - Thu Jun 23 06:37:52 2005</li><br />
<div class="note">
A review of Susanna Clarke's first book, with magicians, history, and other worlds.
</div>
<li><a href="b2005/strangenorrell.html">Review - Jonathan Strange & Mr Norrell</a> - Tue Jun 21 22:33:51 2005</li><br />
<div class="note">
Cinquain on a rift in a relationship.
</div>
<li><a href="b2005/lostkey.html">Lost key</a> - Tue Jun 21 18:31:17 2005</li><br />
<div class="note">
Brick scifaiku with monks and operating systems.
</div>
<li><a href="b2005/kathmandu.html">A long way from Kathmandu</a> - Tue Jun 21 13:41:13 2005</li><br />
<div class="note">
Two-wheeler tech scifaiku with spectroscopy embedded.
</div>
<li><a href="b2005/e1rte66.html">Element 1, Route 66</a> - Mon Jun 20 22:01:17 2005</li><br />
<div class="note">
Lazy day scifaiku.
</div>
<li><a href="b2005/sleepingin.html">Sleeping in</a> - Sat Jun 18 18:32:52 2005</li><br />
<div class="note">
Chivalry cinquain.
</div>
<li><a href="b2005/garter.html">The Most Noble Order of the Garter</a> - Sat Jun 18 18:01:37 2005</li><br />
<div class="note">
Martial scifaiku from two eras.
</div>
<li><a href="b2005/roninpoint.html">Ronin on point</a> - Sun Jun 12 06:57:02 2005</li><br />
<div class="note">
Cryonic scifaiku.
</div>
<li><a href="b2005/icequeen.html">Return of the Ice Queen</a> - Thu Jun 9 21:38:48 2005</li><br />
<div class="note">
Zen scifaiku in the Matrix.
</div>
<li><a href="b2005/nospoon.html">There is no spoon</a> - Wed Jun 8 22:37:49 2005</li><br />
<div class="note">
55 word story with a man, a woman, and physicality.
</div>
<li><a href="b2005/glimpsecleavage.html">A Glimpse of Cleavage</a> - Mon Jun 6 22:01:05 2005</li><br />
<div class="note">
55 word short story in Hollywood, with high concept.
</div>
<li><a href="b2005/pitch.html">The Pitch</a> - Mon Jun 6 21:58:30 2005</li><br />
<div class="note">
Civil War reference in a space scifaiku.
</div>
<li><a href="b2005/wreckdouglass.html">The wreck of the Frederick Douglass</a> - Sun Jun 5 15:35:34 2005</li><br />
<div class="note">
Bride-price Star Trek scifaiku.
</div>
<li><a href="b2005/commod.html">Commodification</a> - Sat Jun 4 22:16:25 2005</li><br />
<div class="note">
Child care which won't be swayed. Scifaiku.
</div>
<li><a href="b2005/implacableauthority.html">Implacable authority</a> - Sat Jun 4 08:39:41 2005</li><br />
<div class="note">
Astronomical gustatory scifaiku.
</div>
<li><a href="b2005/wingsof.html">On wings</a> - Fri Jun 3 07:37:55 2005</li><br />
<div class="note">
Scifaiku on a self-sacrificial form of worship.
</div>
<li><a href="b2005/cyborggod.html">The cyborgs' god</a> - Wed Jun 1 21:14:56 2005</li><br />
<div class="note">