web-research
59.3 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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
<?xml version="1.0" encoding="us-ascii"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Connolly's WWW Research Notebook</title>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
</head>
<body>
<p><a href="../../../">W3C</a> <a href="../">Connolly</a></p>
<h1>WWW Research Notebook</h1>
<p>These are my notes on my personal goals for the web.</p>
<blockquote>
<p>Think globally; act locally.</p>
</blockquote>
<p>see also: SWAP -- <a href="/2000/10/swap/Overview.html">Semantic Web Area
for Play</a>, <a href="http://dm93.org/z2001/PerfectOffice">PerfectOffice</a>
personal notes</p>
<ul>
<li>Reflections: <a href="#July">July 2002</a>, <a name="2001"
id="_2001">Sep 2001</a>, <a href="#Jun2001:">Jun 2001</a></li>
<li><a href="#when">Time Management, Planning, and Records</a> (when?)
<p>also: <a href="../../../../2000/08/palm56/addr">Sep 2000 notes</a></p>
</li>
<li><a href="#Personal" name="how-much1" id="how-much1">Personal Finances,
Small Business Accounting</a> (how much?)
<p>also: <a href="/2000/08/palm56/exp.html">palm expenses</a>, quacken</p>
</li>
<li><a href="#where">Travel</a> (where?)</li>
<li><a href="#who">Contact Management, Directory Services, and
Authentication</a> (who?)</li>
<li><a href="#how">Infrastructure: Pipes, Gizmos, and Hacks</a> (how?)
<ul>
<li>Pre-digital media: paper, telephone</li>
</ul>
</li>
</ul>
<h2>Fractal Consistency</h2>
<p>Something tells me there's a model for these things...</p>
<p>monthly banks statements; 90 day window for chargebacks on credit cards</p>
<p>4 week appeal periods</p>
<p>weekly telcon agenda</p>
<p>check the calendar two weeks ahead every week.</p>
<p>Something about propagation delays, redundancy.</p>
<p>see also:</p>
<ul>
<li>fractal society (50yr ann timbl)</li>
<li>paper trail (in /DesignIssues/)</li>
</ul>
<h2><a name="July" id="July">July 2002: Approaching a flux point for RDF
personal information management?</a></h2>
<p>Wow... it's been over 2 years since I got the XSLT bug (<a
href="/XML/2000/04soccer-sched/Makefile">soccer schedule hack</a>, <a
href="/XML/2000/04rdf-parse/">RDF parser</a>)</p>
<p>I can now run fairly interesting rules over the following:</p>
<ul>
<li><a href="/2000/04/maillog2rdf/email">email</a>
<ul>
<li>mid_proxy.py -- IMAP to HTTP proxy, with RDF output
<ul>
<li>generated megabytes of RDF from years of email, ran rules over
all of it. took most of a night, though</li>
</ul>
</li>
<li>aboutMsg.py -- from RFC822 files
<ul>
<li>noodling on using this in procmail rules; haven't figured it
out yet</li>
</ul>
</li>
<li>TODO: get W3C's email search service to return RDF</li>
</ul>
<p>need to decide on a common namespace for those, document it. leaning
toward <code>http://www.w3.org/2000/10/swap/pim/email#</code></p>
</li>
<li>evolution calendar
<ul>
<li>vcal2xml.py, in palmagent. @@announce to rdf-calendar @@TODO: move
to swap/pim?</li>
<li>toICal.py, in Jan 2002 travel. @@TODO: move to swap/pim? obsolete
in favor of --strings approach?</li>
<li>sync with travel itineraries (grokTravItin.pl) -- works in batch,
but not in continuous agent mode
<ul>
<li>itinerary visualization</li>
<li>checking constraints</li>
</ul>
</li>
<li>sync with schedules in HTML, via XSLT scraping</li>
</ul>
</li>
<li>palmpilot
<p>mine broke, so I don't use these any more, but...</p>
<ul>
<li>HTML views of calendars</li>
</ul>
</li>
<li>SQL databases
<ul>
<li>dbview.py</li>
</ul>
</li>
<li>quicken
<ul>
<li>@@elaborate: saCASH experiment.</li>
<li>TODO: it's clearly a simple relational structure; reflect it thru
dbview.py</li>
</ul>
</li>
</ul>
<p>Well, I can run rules in batch mode. But I don't really have
<em>agents</em> working; i.e. long-running programs that keep data available
and/or up to date. I have HTTP server interfaces for IMAP and palmpilot data,
but I can't leave them running when I'm not looking because they don't
control access (and they're probably not robust enough).</p>
<h2><a name="2002:" id="_2002:">Sep 2002: Stuff</a></h2>
<p>Some goals/projects/hopes that maybe you can help with (aka "the someday
pile"):</p>
<ul>
<li><a href="/2000/08/palm56/datebook.html">scalable calendaring and
scheduling</a>
<p>(best of: PalmPilot datebook; psion agenda; Daytimer style time
management)</p>
<ul>
<li><a href="http://dev.w3.org/cvsweb/2001/telagent/">telagent</a> Jan
2001
<p>an HTTP agent to help you place and receive phone calls.</p>
</li>
<li><a href="http://dev.w3.org/cvsweb/2001/palmagent/">palmagent</a>
<p>turning the palmpilot into a semantic web agent</p>
</li>
</ul>
</li>
<li><a href="/2000/08/palm56/exp.html">personal finance</a>
<p>(best of: Quicken), ...</p>
</li>
<li><a href="/2000/09/wpk43/Overview.html">wpk idea</a> , union links
<p>also: an rdf-based OSD and/or RPM/deb.</p>
</li>
<li><a href="/2000/10/atrip/Makefile">RDF schema for travel
itineraries</a></li>
<li>RDF schema for presentation materials (working on it; see <a
href="../Makefile">Makefile</a>)</li>
<li>RDF bibliography tools: for the /TR/ page, for my own research notes;
look up old bibtex.dtd; relate to dublin core, INDECS, Ontolingua stuff
(got it mostly working; see <a href="/Addressing/schemes">addressing
schemes</a>)
<ul>
<li>... more <a href="../books_webqcat">books on my bookshelf</a> (raw
<a href="../books_cuecat">cuecat data</a>). @@SW-TODO: RDF-ize;
integrate with dublin core bibliography formatter in <a
href="/Addressing/schemes">addressing schemes</a>
<p><a href="http://www.kryptonians.net/webqcat/">webcuecat
service</a>; <a
href="http://sourceforge.net/projects/webqcat/">webqcat sourceforge
project</a></p>
<ul>
<li><cite><a
href="http://www.amazon.com/exec/obidos/ASIN/0201616416/danconnollyA">Extreme
Programming Explained: Embrace Change</a></cite> made me think
about leadership and software development on the plane back from
XML 2000. It made me feel good about <a
href="http://www.python.org/">python</a>, where unit testing is
second nature.</li>
</ul>
</li>
<li><a href="http://liinwww.ira.uka.de/bibliography/index.html">The
Collection of Computer Science Bibliographies</a> brought to you by
Alf-Christian Achilles <achilles@ira.uka.de></li>
</ul>
</li>
<li>RDF schema for CVS transactions (compare with webdav stuff)</li>
<li>... other <a href="web-research">research notebook</a> stuff</li>
</ul>
<p></p>
<h2><a name="Jun2001:" id="Jun2001:">Jun2001: So I'm getting there...</a></h2>
<p>I have these working:</p>
<ul>
<li>when the phone rings, follow a toolbar bookmark link and get the
caller-id info via HTTP. (implementation: <a
href="http://dev.w3.org/cvsweb/2001/telagent/">telagent</a>)</li>
<li>bulk-load RDF into my palmpilot (implementation: <a
href="http://dev.w3.org/cvsweb/2001/palmagent/">palmagent</a>)</li>
<li>edit palmpilot datebook via web forms (implemention: <a
href="http://dev.w3.org/cvsweb/2001/palmagent/">palmagent</a>; limited to
description/note; update synchronization is manual.)
<p>TODO:</p>
<ul>
<li>export the the palm memo (and TODO?) database(s) via a WikiWikiWeb
interface. (i.e. TextFormattingRules and EditThisPage stuff)</li>
<li>How to manage the structure of the datebook and address stuff?
Hopefully: RDF/n3.</li>
</ul>
</li>
<li>local web cache (implementation: wwwoffle@@).
<p>TODO:</p>
<ul>
<li>The pages linked from my browser toolbar should load INSTANTLY!
When I put a page in the toolbar, I should be able to specify max-age
(and access credentials, perhaps?). The browser should pass these on
to wwwoffled, which should poll at the max-age interval (or 1/2 of
it, for 2x redundancy?) so that I always get a cache hit.</li>
<li>Amaya's client cache should be dumped; use wwwoffle (or something
like it) in stead. Integrate tidy into the proxy-cache so that Amaya
only ever sees well-formed XHTML.</li>
<li>Hmm... perhaps the cache should live on the laptop? No, I don't
want access from my desktop to depend on the network link to the
laptop (which, happily, goes via 802.11; but as reliable as that is,
it's an unnecessary liability). The cache on each machine should
inform the other. Surely there are cache protocols that do this out
there; does Jigsaw grok them?</li>
</ul>
</li>
</ul>
<p>But... ugh! There's so much more...</p>
<p>Last night, I made a new contact at a bookstore. He sent me email today;
the mail user agent should know to link from his message to the event where
we met last night... assuming I gave it a copy of the business card he gave
me, vouching for its integrity. There should also be a link, via the phone
number of the bookstore, to my quicken/personal finance records where I
record the purchase of the book. And from there, via the ISBNs, to
MyLowestBookshelf@@link.</p>
<p>I have a cuecat for grabbing the ISBNs off the books easily, but my
scanner set-up is klunky. I use xsane, and I have used sane-cgi, but where do
I store the copies, balancing confidentiality, redundancy/availability, and
convenience? What URI/name do I give them? How do I associate the RDF
transcriptions of them?</p>
<p>Hmm... maybe one of these quick-something pens? or a USB scanner? or one
of those wand scanners? gocr is starting to work (@@experience report...
&sysreq?).</p>
<ul>
<li><a
href="http://www.twcny.rr.com/technofile/texts/tec112600.html">Cheapskate's
Buying Guide: Always look for USB peripherals for a modern Windows PC or
Mac</a> <br />
Nov. 26, 2000 <br />
By Al Fasoldt</li>
</ul>
<p>Just finding a convenient way to write down these thoughts is awkward. The
IRC/chump web-log thingy sure is nice. For PerfectOffice product reviews and
such, I tend to bookmark things; but bookmarking doesn't work; I use several
different browsers on at least two different machines. Perhaps a javascript
bookmarklet based shared bookmark thingy would work? Surely those are out
there... in the zope@@ or manilla@@ parts of the world.</p>
<p>In this installment, I'm using Amaya. Oops... encoding bug. ah... setting
the charset to US-ASCII fixes it. (bug isn't necessarily in Amaya; could be
anywhere in our cvs/jigedit/apache/ssh editing set-up.) Hmm... I should
publish the little nonascii.pl@@ script I use to fix these things.</p>
<dl>
<dt><strong>Jul 2000</strong></dt>
<dd><a href="/2000/01/sw/">Semantic Web hacking</a> , mostly in the <a
href="http://lists.w3.org/Archives/Public/www-rdf-interest/">RDF
interest group</a>. Persuing <a
href="/Collaboration/knowledge">knowledge exchange</a>
<ul>
<li>a <a rel="semantic-view" href="../home-smart.rdf">semantic
view</a> of this page, generated via a <a
rel="semantic-transformation"
href="../smart-home.xsl">transformation</a> (<a
href="/2000/06/webdata/xslt?xslfile=http%3A%2F%2Fwww.w3.org%2FPeople%2FConnolly%2Fsmart-home.xslxmlfile=http%3A%2F%2Fwww.w3.org%2FPeople%2FConnolly%2F">live
on-demand version</a>). Also: <a
href="http://xmlns.com/foaf/0.1/">foaf stuff</a></li>
<li><a href="/XML/2000/04soccer-sched/Makefile">soccer schedule
stuff</a> (2000/04)</li>
</ul>
</dd>
<dt>@@<a href="../kb">KB of terms</a> <a
href="/2000/10/n3/notation3.py">view source</a>; <a
href="http://cgi.w3.org/cgi-bin/notation3.py">about</a>; <a
href="/DesignIssues/Notation3">Notation 3</a>... <a
href="../search.html">older list of good Stuff</a>; <a
href="../search.html">automated search services and edited collection</a>
circa Feb '99</dt>
</dl>
<p>@@@@@@@@</p>
<p>@@intro blurb: take the MS Office concept global.</p>
<p>@@"I want my data back." i.e. I don't want access to my data to require a
license. @@how many applications have to mature on linux before I can wipe
WinNT off my desktop? Quicken, mIRC, AOLPress, NetMeeting</p>
<p><a
href="http://www.cs.yale.edu/homes/freeman/lifestreams.html">Lifestreams
Project Home Page</a></p>
<p><a
href="http://www.mirrorworlds.com/press/articles/nyt_oct96/1023surf.html">Seeing
the Forest of Knowledge for the Trees of Data</a></p>
<p>@@engelbart, Nelson</p>
<h2><a name="Personal" id="Personal">Personal Finances, Small Business
Accounting</a></h2>
<p><a href="/2000/08/palm56/exp.html">palm expenses</a></p>
<h2><a name="when" id="when">Time Management, Planning, and Records</a></h2>
<p>I went to a <cite>Time Power</cite>seminar in Feb 1991, and I've followed
the "take 20 minutes a day to plan" advice pretty regularly ever since. I
used the <a href="http://www.daytimer.com/about/history.html">Day-Timer</a>
paper planners for several years.</p>
<p>Then I discovered the psion. Wow! The world time app lets you see what
time it is anywhere in the world, and it uses an actual map for context. The
agenda is pretty cool (@@what are my gripes with it?). But the psion (at
least the series 3) doesn't sync.</p>
<p>(<a href="http://www.geocities.com/SiliconValley/8130/groups.htm">Psion
newsgroups control messages</a>)</p>
<p>I tried going back to a pencil, and I tried a few of the desktop PIM apps
(lotus organizer, Daytimer '99, MS outlook@@) and the yahoo calendar and
eventually, I discovered that just using an HTML document to simulate the
day-timer worked really well!</p>
<p>I use a Palm IIIx these days. The desktop software is too closed-world (no
links to the rest of the web). I discovered Lotus Organizer supports pilot
synchronization *and* web links *and* it has an API that I can get at from
python. So I tried that for a while. But it's pretty klunky.</p>
<p>So I'm designing a way to sync my HTML day-timer with the pilot. see <a
href="../../../../2000/08/palm56/addr">Sep 2000 notes</a></p>
<ul>
<li>personal recordkeeping: periodically time-stamp records using, e.g. <a
href="http://www.itconsult.co.uk/stamper/stampinf.htm">PGP Digital
Timestamping Service</a>. (cf DRM workshop)</li>
</ul>
<p><a href="ftp://ryeham.ee.ryerson.ca/pub/PalmOS/">pilot-link</a> 0.9.3 by
Kenneth Albanowski (<a
href="mailto:pilot-unix@lists.best.com">pilot-unix</a>, <a
href="http://www.acm.rpi.edu/~albert/pilot/">archive</a>)</p>
<p>Also:</p>
<dl>
<dt><a href="http://blevins.simplenet.com/diddle/diddle.htm">Diddle</a>
(and source) 14 Jul 1999 Mitch Blevins</dt>
<dd>"Diddle is a painting and drawing application. It features [...]
support for the LinkMaster protocol [...]" -- <a
href="http://hotfiles.zdnet.com/cgi-bin/texis/swlib/hotfiles/psinfo.html?fcode=0010MT&b=">ZD</a></dd>
<dt><a
href="http://www4.ncsu.edu/~bgdarnel/thoughtstream/">Thoughtstream</a>
(with source) 14 Jul 1999</dt>
<dd>(currently in an Alpha state... get the older, stable version)<br />
<a
href="http://blevins.simplenet.com/synapse-palmos-source-1.2.1.zip">older
version</a></dd>
<dt><a href="http://www4.ncsu.edu/~bgdarnel/linkmaster/">LinkMaster</a> and
modified versions of built-in apps (with source)</dt>
</dl>
<p><a href="http://purl.oclc.org/net/n9mtb/cq/">pyrite</a> 0.7.1 May 28, 1999
by Robt</p>
<h3>Browser history</h3>
<p> <a href="http://koala.ilog.fr/colas/browser-history/">browser-history</a>
from koala. @@where are my patches to xhml-ize it?</p>
<p>hmm... RDF? maybe an RSS dialect?</p>
<p>integrate with wwwoffle, for history search?</p>
<p></p>
<p>@@vCalendar gripes: lost context; no "Oh Yeah?"</p>
<p>@@28Aug99: tv listings: my yahoo tv listing bookmark just broke. I saw a
java applet that grabs data from <a
href="http://www.clicktv.com/">clicktv</a>. overengineered bloatware. The
right answer: get the raw data in XML right from the TV station's web sites
and do the aggregation at the client with javascript or something. I could
live with one middle man, as long as I could tell it exactly where to get the
data from. Hmm... relates to overlaid calendars at <a
href="http://www.egroups.com/">egroups</a>. I should be able to overlay my
family calendar with my local TV listings. Simple RDF graph merge, no? Local
newspapers have an opportunity here; they're the traditional aggregator of
this content. But with satellite TV and such, there's a challenge. Why aren't
<a
href="http://www.tmstv.com/cgi-bin/tvcgi.atx/_selectlineup?return=http%3A%2F%2Fwww.tmstv.com%2Fcgi-bin%2Ftvcgi.atx%2FSelectLineup&succeed=GridNow&fail=FailedSelect&noselect=Choose+Your+Cable+System&town2=Time+Warner+Austin+Upgraded&townselect=town3&town3=Broadcast">TV
listings</a> at <a href="http://www.austin360.com/">Austin360</a>
bookmarkable? that's what sent me to Yahoo in the first place. :-{ Hmm...
maybe they fixed that. And why one big GIF? I want to copy/paste the data,
search it, etc. :-{. Maybe when SVG comes along, we'll get more structured
data.</p>
<p><a href="http://c2.com/cgi/wiki?IsAnythingBetterThanPaper">Is Anything
Better Than Paper</a> -- <a
href="http://c2.com/cgi/wiki?WelcomeVisitors">wiki</a></p>
<p><a href="http://tycho.usno.navy.mil/tzones.html">World Time Zones</a></p>
<p>@@gripe about time zones and PDA scheduling apps</p>
<p>@@slta, music interchange: mup from <a
href="http://www.Arkkra.com/">Arkkra Enterprises</a> (<a
href="http://users.uniserve.ca/~bvdpoel/mup/mup-review.html">review</a>).</p>
<p>@@palm pilot datebook gripes</p>
<p>@@time power seminar</p>
<p>@@current state = sum of messages received</p>
<p>@@yahoo calendar gripes: why did they stop supporting HTML markup in
descriptions?</p>
<p>@@HTML schedule idiom: index by date into recorded
commitments/expectations (DL or TABLE)</p>
<p>@@phone: urls; <a href="http://people.netscape.com/jwz/">Jamie
Zawinski</a>'s caller-id stuff; incoming phone calls should generate an event
on my desktop.</p>
<p><a
href="http://www.cs.unc.edu/~yandle/xcallerid/">(http://www...xcallerid/)</a></p>
<p><a
href="http://www.mot.com/MIMS/ISG/Products/PowerClass28.8/manual/">Power 28.8
Modem Documentation</a></p>
<p><a
href="http://www.mot.com/MIMS/ISG/spec_sheets_pdf/3400_Pro_28.8.pdf">3400_Pro_28.8.pdf</a></p>
<p><a href="http://www.itutech.com/cnidmod.htm">PC Caller ID Plug</a></p>
<p><a href="http://teddy.muc.de/demo/">mgetty+sendfax</a></p>
<p><a href="http://www.leo.org/pub/comp/os/unix/networking/mgetty/">LEO -
/pub/comp/os/unix/networking/mgetty</a></p>
<p>@@bible study: mapping of book/chapter/verse into the web, with backlinks
from journal.</p>
<p>@@personal research notebook/bibliography: stable publishing, citation
services, digital libraries; <a href="http://www.cddb.com/">CDDB</a> <a
href="http://www.cddb.com/ftp/cddb-docs/cddb_howto.gz">spec</a></p>
<p><a href="http://theory.lcs.mit.edu/~dmjones/hbp/">The Hypertext
Bibliography Project</a></p>
<p>@@book log, movie log (DNS abuse by movie studios) (backlinks from IMDB),
record album log: quicken media category. digital movie tickets, rental
receipts.</p>
<p>@@digital photo album: what address to give to photographs? also: scans,
faxes</p>
<p>@@message-id: URLs: if I have it in my mail archive, and so do you, why
can't we use message-id: URLs easily?</p>
<p>@@Outlook Express: when I drag a message to the desktop, it makes a copy.
I want to be able to make a link. Either to an imap: address, a message-id:
address, or some combination (does the COM moniker design have support for
this sort of combination? @@OO/Web workshop notes too). Also: what about
message/rfc822 integration? what happens in IE/netscape when the HTTP
response sais Content-Type: message/rfc822? can I hit reply? (Mozilla
intertwingled thing, grendel, old web/mail/news integration thread).</p>
<p><a href="http://andrew2.andrew.cmu.edu/cyrus/imapd/">Cyrus IMAP Server
v1.5.2 Home Page</a></p>
<p><a name="mid-uri-support" id="mid-uri-support">mid: urls</a></p>
<p>See:</p>
<ul>
<li><a href="http://www.w3.org/Addressing/schemes.html">mid</a> : and <a
href="http://www.w3.org/Addressing/schemes.html">irc</a>:.</li>
<li><a href="http://www.w3.org/Addressing/schemes.html">How to add URI
schemes to your desktop</a></li>
<li>mozilla <a
href="http://www.mozilla.org/mailnews/smartmail.html">SmartMail</a> and
<a
href="http://www.mozilla.org/blue-sky/misc/199805/intertwingle.html">intertwingle</a>
(<a href="http://www.mozilla.org/mailnews/intro.html">mailnews</a>, <a
href="http://www.mozilla.org/rdf/50-words.html">RDF in 50 words</a>)</li>
</ul>
<p>@@irc: urls</p>
<p>@@irc: urls</p>
<p><a href="http://www.mirc.co.uk/mirclink.html">How to use and make links
from WWW to IRC</a></p>
<p><a href="http://www.GlobalChat.com/">GlobalChat</a></p>
<p><a href="http://www.cs.hut.fi/~tri/irchat/">Irchat - The ultimate
coolness</a></p>
<p>videoconferencing</p>
<p><a href="http://www.thp.uni-koeln.de/~rjkm/linux/bttv.html">BTTV
page</a></p>
<h2><a name="where" id="where">Travel</a></h2>
<p>@@air travel records and RDF</p>
<p>@@aa.com complaints</p>
<p>@@biztravel.com: almost!</p>
<p>@@index of people-I-know and events-I-attended by time and place
(displayed as a map)</p>
<h2><a name="who" id="who">Contact Management, Directory Services, and
Authentication</a></h2>
<p>@@yahoo calendar gripe: sync excludes yp entries</p>
<p>@@to study: perl ldap</p>
<p>@@cite PGP essentials<br />
<a href="http://www.pgpi.com/">The International PGP Home Page</a></p>
<p>@@SSN research</p>
<h3>Web Site Account Management</h3>
<p>@@relationship management: periodic events: dinner table, christmas cards,
periodic meetings, ...</p>
<p>@@auth form submission from Lawrence, signed XML</p>
<p>When I register for a web service, I want to be sure I have the option of
getting them to delete everything I ever told them. In fact, that should
happen by default after a period of inactivity (say... a year) unless I tell
them otherwise. They should send mail saying "haven't heard from you for a
while; still with us?" once a week for a month before they do it.</p>
<p>Passwords in the clear suck. Digest auth@@. Shared authentication
services. Single login. Public key?</p>
<h3>vCard, vCalendar throw away context</h3>
<p>One of the main reasons for the web was to get the computer to stop
throwing away information that humans work so hard to record.</p>
<p>vCalendar, RDF, and the "oh yeah?" button@@.</p>
<h2><a name="how" id="how">Infrastructure: Pipes, Gizmos, and Hacks</a></h2>
<p>@@crit.org</p>
<p>@@what's related: back-links</p>
<p><a
href="http://www.grapevine.bris.ac.uk/grapevine/recommender.htm">Grapevine:
Recommender</a></p>
<p><a href="http://dev.w3.org/cvsweb/2001/telagent/">telagent</a> Jan 2001 an
HTTP agent to help you place and receive phone calls.</p>
<h3>Wireless LAN</h3>
<p><a href="http://slashdot.org/askslashdot/99/06/25/1458227.shtml">ask
slashdot</a>: nobell</p>
<h3>High-Speed Net Access</h3>
<p>@@ <a href="http://www8.org/keynoters.html#metcalfe">Metcalfe at
WWW8</a></p>
<p><a href="http://www.cabledatacomnews.com/cmic/index.html">Cable Modem Info
Center</a> Saturday, 12 June, 1999 11:26:27 PM -0500</p>
<p><a href="http://www.austin.rr.com/twaustin/earlybirdfaq.html">Time Warner
Cable--Austin--See What's Next--Frequently Asked Questions</a></p>
<h3>9910packet-radio</h3>
<dl>
<dt></dt>
<dt><a href="http://www.ziplink.net/users/kd1sm/">Ralph R. Swick</a></dt>
<dt><a href="http://www.utexas.edu/students/utarc/">UTARC</a></dt>
<dt><a href="http://people.qualcomm.com/karn/tcpip.html">The KA9Q NOS
TCP/IP Package</a></dt>
<dt><a href="http://www.umecut.maine.edu/~baack/bay.htm">N1RWY's portable
packet page.</a></dt>
<dt><a href="http://www.cam.org/~radio/packetintro.html">INTRODUCTION TO
PACKET RADIO - by Larry Kenney, WB9LOZ</a></dt>
<dt><a
href="http://hamradio.cmcorp.com/tcpip/tcpintro.html">http://hamradio.cmcorp.com/tcpip/tcpintro.html</a></dt>
</dl>
<h3>Bookmarks</h3>
<p>@@netscape bookmarks have the right idea with DATE_ADDED and such; RDF
metadata; should use XHTML and their own namespace, though.</p>
<p>bookmarks should store referrer; but perhaps I can figure that out by
correlating DATE_ADDED with about:global-history.</p>
<p>hierarchies are evil! (Nelson). Bookmark *keywords*, not categories.
(@@WWWn conference paper about this?)</p>
<h3>Backups</h3>
<p>9806 CD-R, Disk</p>
<dl>
<dt></dt>
<dt><a
href="http://www.techstore.com/ts/spec_info.asp?sku=270SEA451&tsid=LGNBE2EU7MSH2HT300C0167HV0FETJAG">TechStore
LLC - Product Information</a></dt>
<dt><a
href="http://www.webauction.com/inprogress.html?CATEGORY=CDROM#RECORD">Auctions
in Progress CDROM</a></dt>
<dt><a
href="http://www.webauction.com/productpg.html?LOT=66087#prodinfo">YAMAHA
6X4X2 INTERNAL SCSI CD-RW DRIVE W/ADAPTEC EASYCD PRO/EASY
CREATOR/PC-New</a></dt>
<dt><a
href="http://www.marquis-computers.com/cd-r.html#yamaha">cd-r.html</a></dt>
<dt><a href="http://www.3-16.com/">Three-Sixteen Technical Services -
Austin & Central Texas' Best Source for Network Consulting!</a></dt>
<dt><a href="http://www.cdw.com/product/default.asp?EDC=87540">Computer
Discount Warehouse - YAMAHA CDR400T 4X6 CD-R INT TRAY - Part# 87540</a></dt>
<dt><a
href="http://ww2.altavista.digital.com/cgi-bin/news?msg@82377@comp%2eos%2elinux%2ehardware%26cd+r%26linux">Re:
CD-R's in Linux - How's it Going?</a></dt>
<dt><a
href="http://ww2.altavista.digital.com/cgi-bin/news?msg@81632@comp%2eos%2elinux%2ehardware%26cd+r%26linux">Re:
CD-R's in Linux - How's it Going?</a></dt>
<dt><a href="http://www.guug.de:8080/cgi-bin/winni/lsc.pl">Unix CD-Writer
compatibility list</a></dt>
<dt><a href="http://www.guug.de/~winni/linux/CD-Writing/">CD-Writing
HOWTO</a></dt>
<dt><a
href="http://www.fokus.gmd.de/nthp/employees/schilling/cdrecord.html">Cdrecord
release information</a></dt>
<dt><a href="http://www.dcn.ryerson.ca/~a2lloyd/">Adam's Bookmarks</a></dt>
<dt><a
href="http://www.altavista.digital.com/cgi-bin/query?pg=q&what=web&fmt=.&what=news&q=%2Bcd-r+%2Blinux">AltaVista:
Simple Query +cd-r +linux</a></dt>
<dt><a
href="http://www.onsale.com/category/Mass_Storage.htm#Section002">ONSALE
Index Mass Storage</a></dt>
<dt><a
href="http://www.webauction.com/inprogress.html?CATEGORY=STORAGE">Auctions
in Progress STORAGE</a></dt>
<dt><a href="http://www.cdw.com/product/default.asp?EDC=101141">Computer
Discount Warehouse - YAMAHA CRW4260 4X6 CD-R INT SCSI KIT - Part#
101141</a></dt>
<dt><a href="http://www.zdnet.com/pcmag/features/cd-rw/rev11.html">PC
Magazine: To Write or Rewrite? - Plextor PlexWriter 4/12max
(03/10/98)</a></dt>
<dt><a href="http://www.zdnet.com/pcmag/features/cd-rw/index.html">To Write
or Rewrite? - PC Magazine</a></dt>
<dt><a
href="https://www.techstore.com/ts/secure/oh_view_invoice.asp?order_id=MGNBE2EU7MSH2HT300C0167HV0&tsid=LGNBE2EU7MSH2HT300C0167HV0FETJAG">TechStore
Order #10821 for Dan Connolly</a></dt>
<dt><a
href="https://www.techstore.com/ts/secure/oh_view_invoice.asp?order_id=MGNBE2EU7MSH2HT300C0167HV0+&tsid=LGNBE2EU7MSH2HT300C0167HV0FETJAG">10821</a></dt>
</dl>
<h3>9906pilot-pda</h3>
<dl>
<dt></dt>
<dt><a href="http://www.wademan.com/Pilot/Program/FAQ.htm">Wade's Pilot
Programming FAQ</a></dt>
<dt><a href="http://www.wabasoft.com/">@wabasoft</a></dt>
<dt><a
href="http://hotfiles.zdnet.com/cgi-bin/texis/swlib/hotfiles/pssearch.html?link=1&Usrt=date&UTcat=communications&UTsubcat=internet">ZDNet's
PalmPilotSoftware.com</a></dt>
<dt><a href="http://www.pflugerville.tx.us/homepage.shtml">Pflugerville,
Texas, USA</a></dt>
<dt><a href="http://palmpilot.3com.com/devzone/docs.html">3Com/Palm
Computing - Developer Documentation</a></dt>
<dt><a href="http://www.isaac.cs.berkeley.edu/pilot/">Pilot stuff from the
ISAAC Group</a></dt>
</dl>
<p>9712pilot</p>
<dl>
<dt></dt>
<dt><a href="http://www.ora.com/catalog/palmprog/">Palm Programming: The
Developer's Guide</a></dt>
<dt><a
href="http://ourworld.compuserve.com/homepages/nseessle/frames/pilot/dat_e.htm#datebook">Datebook</a></dt>
<dt><a href="http://smack.dillernet.com/m100/h1.html">Web100 Hardware:
Model 100</a></dt>
<dt><a href="http://smack.dillernet.com/m100/top.html">Web100 Top
Page</a></dt>
<dt><a href="http://pancake.w3.org/9712pilot/">Dan's Pilot Page</a></dt>
</dl>
<p><a href="http://eunuchs.org/linux/palm/palm_content.html">linux and the
palm pilot</a> from <a href="http://eunuchs.org/linux/index.html">Michael
Holve - everything linux</a></p>
<p>9906pilot-pda</p>
<dl>
<dt></dt>
<dt><a href="http://www.wademan.com/Pilot/Program/FAQ.htm">Wade's Pilot
Programming FAQ</a></dt>
<dt><a href="http://www.wabasoft.com/">@wabasoft</a></dt>
<dt><a
href="http://hotfiles.zdnet.com/cgi-bin/texis/swlib/hotfiles/pssearch.html?link=1&Usrt=date&UTcat=communications&UTsubcat=internet">ZDNet's
PalmPilotSoftware.com</a></dt>
<dt><a href="http://palmpilot.3com.com/devzone/docs.html">3Com/Palm
Computing - Developer Documentation</a></dt>
<dt><a href="http://www.isaac.cs.berkeley.edu/pilot/">Pilot stuff from the
ISAAC Group</a></dt>
<dd></dd>
<dt><a href="http://www.pilotfaq.com/chatlogs.htm">Calvin's PalmPilot FAQ -
IRC/Chat Announcements and Logs</a></dt>
</dl>
<p>9901hp200lx</p>
<dl>
<dt></dt>
<dt><a
href="http://www.geocities.com/SiliconValley/Park/4335/hppt.html">Yan's
HomePage: HP Palmtop Infopage</a></dt>
<dt><a
href="http://www.palmtop.net/cgi-bin/sup-srch.pl?case=i&search_phrase=gdb&whichCat=All&method=words&boolean=or&sort=date">S.U.P.E.R.
- Search results</a></dt>
<dt><a href="http://www.sp.uconn.edu/%7Emchem1/hypermail/0385.html">HPLX-L:
Re: hp200lx software development kit</a></dt>
<dt><a href="http://www.sp.uconn.edu/%7Emchem1/hypermail/">HPLX-L by
thread</a></dt>
<dt><a href="http://www.cdpubs.com/hhsys/tocs/31toc.html">PDA Developers
3.1 TOC</a></dt>
<dt><a
href="http://ourworld.compuserve.com/homepages/gilles/pal/pal.htm">The PAL
Page</a></dt>
<dt><a
href="http://ourworld.compuserve.com/homepages/gilles/pal/pal.htm">The PAL
Page</a></dt>
<dt><a href="http://www.palmtop.net/">The Palmtop Network</a></dt>
<dt><a
href="http://www.hp.com/cposupport/swindexes/pt200lx_swie.html">$webpgtitle</a></dt>
<dt><a href="http://www.snafu.de/~wehe/ir_misc.html#6">Infrared Devices
working with LINUX (SONY-DSC-F1)</a></dt>
<dt><a
href="http://www.sp.uconn.edu/%7Emchem1/hypermail/0295.html">HPLX.Mail: Re:
hp200lx software development kit</a></dt>
<dt><a
href="http://www.buy.hp.com/cgi-bin/buy/cc_product.cgi?sku=F1021B">HP200lx
Connectivity Pack $120</a></dt>
<dt><a href="http://www.hplx.net/faq.faq.html">HPLX.NET FAQs: THE
FAQ</a></dt>
<dt><a href="http://www.sp.uconn.edu/~mchem1/HPLX.shtml">HPLX-L Command
Center</a></dt>
<dt><a
href="http://cgi.ebay.com/aw-cgi/eBayISAPI.dll?ViewItem&item=57009149">eBay
item 57009149 (Ends 01/17/99 23:54:18 PST) - HP 200 LX Palmtop
Computer</a></dt>
<dt><a
href="http://www.hp.com/handheld/palmtops/product_info/hp200lx_prdtinfo.html">Hewlett-Packard:
HP 200LX Palmtop PC</a></dt>
<dt><a
href="http://www.hp.com/handheld/getting_help/support/palmtops/index.html">Hewlett-Packard:
HP 200LX Palmtop PC Frequently Asked Questions</a></dt>
<dt><a href="http://www.palmtop.net/supernew.html">S.U.P.E.R. - Just the
new stuff please...</a></dt>
<dt><a href="http://members.xoom.com/rwhitby/lxtcp.html">LXTCP Home
Page</a></dt>
<dt><a href="http://www.dasoft.com/WWW/wv2.html">WWW/LX - the Internet
Solution in Your Pocket!</a></dt>
<dt><a
href="http://falbala.wu-wien.ac.at:8684/pub/english.cgi/d49867/ADB%3a%20appointment%20book%20database%20format%20variant">ADB:
appointment book database format</a></dt>
</dl>
<h2>Pre-digital media: paper, telephone</h2>
<p>@@phone: urls</p>
<p><a href="http://www.babinszki.com/distiller/">Babinszki World - Net
Distillery (PDF)</a></p>
<p><a href="http://www.dataindex.com/symbol.htm">UPC, Barcode</a></p>
<p>9805scanner</p>
<dl>
<dt></dt>
<dt><a
href="http://www.visioneer.com/products/flatbed/3000family/">Visioneer
Paperport</a></dt>
</dl>
<p></p>
<hr />
<p>unsorted bookmarks:</p>
<dl>
<dt></dt>
<dt><h3>Pancake</h3>
</dt>
<dd><dl>
<dt></dt>
<dt></dt>
<dt><h3>linux, beach</h3>
</dt>
<dd><dl>
<dt></dt>
<dt><a href="ftp://theory.lcs.mit.edu/pub/emacs/edb/">Directory
of /pub/emacs/edb</a></dt>
<dt><a href="http://epsilon.hpnc.com/mysql/">MySQL by T.c.X.
DataKonsultAB</a></dt>
<dt><a href="http://ca.php.net/cvsweb.cgi">PHP Version 3.0 CVS
Tree: /</a></dt>
<dt><a
href="ftp://ftp.rhein-zeitung.de/pub/comp/olis-rpms/Python-1.5/">Directory
of /pub/comp/olis-rpms/Python-1.5</a></dt>
<dt><a
href="http://www.storage.ibm.com/storage/techsup/hddtech/dpea/dpeajum.htm">IBMdisk
drive: DPES-30540, 30810 and 31080</a></dt>
<dt><a href="http://www.slug.org.au/etherboot/">Etherboot home
page</a></dt>
<dt></dt>
<dt><a
href="http://www.linkexplorer.com/gimp/">http://www.linkexplorer.com/gimp</a></dt>
<dt><a
href="http://www.varesearch.com/products/vb.html">VArBook 70
Notebooks</a></dt>
<dt><h3>Pancake</h3>
</dt>
<dd><dl>
<dt></dt>
<dt><a
href="http://yp.yahoo.com/yt.hm?FAM=yahoo&CMD=GEOPATH&SEC=dirpath&SP=&da1=&da2=5775+Airport+Blvd&da3=Austin&dname=Computer+City+Supercenter&dphone=512-459-1755&IC=%3A%3A%3A%3A30.32279%3A-97.71464%3A2%3AComputer+City+Supercenter&GC=X%3A-97.75052%7CY%3A30.30588%7CLT%3A30.51425%7CLN%3A-97.82754%7CLS%3A3163412%7Cc%3AAustin%7Cs%3ATX%7Cd%3A635%7Cp%3AUSA&AD2=2302+Alimony+Cv&AD3=Austin%2C+TX++78727-3149&recent=1">Driving
Directions (to Compaq Repair place)</a></dt>
<dt><a href="http://www.simpletech.com/">Simple
Technology: Memory and PC Card Manufacturer</a></dt>
</dl>
</dd>
<p></p>
<dt><a href="http://beach.w3.org/">Linux/Beach (monday,
weekend)</a></dt>
<dt><a
href="http://www.redhat.com/linux-info/pkglist/i386.html">Package
listing for i386</a></dt>
<dt><a
href="ftp://ftp.redhat.com//pub/contrib/i386/python-mySQLmodule-1.3-1.i386.rpm">ftp://ftp.redhat.com//pub/contrib/i386/python-mySQLmodule-1.3-1.i386.rpm</a></dt>
<dt><a
href="ftp://ftp.redhat.com//pub/contrib/i386/python-devel-1.4-1.i386.rpm">ftp://ftp.redhat.com//pub/contrib/i386/python-devel-1.4-1.i386.rpm</a></dt>
<dt><a
href="ftp://ftp.redhat.com//pub/contrib/i386/python-1.4-1.i386.rpm">ftp://ftp.redhat.com//pub/contrib/i386/python-1.4-1.i386.rpm</a></dt>
<dt><a
href="http://rufus.w3.org/linux/redhat/redhat-5.0/">Index of
/linux/redhat/redhat-5.0</a></dt>
<dt><a href="http://www.orl.co.uk/vnc/">VNC - Virtual Network
Computing from ORL</a></dt>
</dl>
</dd>
<p></p>
<dt><a
href="http://www.linux-mandrake.com">(www.linux-mandrake.com)</a></dt>
<dt><a
href="http://www.rpmfind.net/linux/RPM/redhat/5.2/i386/">RedHat-5.2
for i386 : redhat/5.2/i386</a></dt>
</dl>
<p></p>
</dd>
<dt><h3>WinNT shoal</h3>
</dt>
<dd><dl>
<dt></dt>
<dt><a
href="http://www.python.org/windows/OdbcHints.html">http://www.python.org/windows/OdbcHints.html</a></dt>
<dt><a href="http://www.bcpl.net/~djelliot/new2.html">The PC Help
Home Page</a></dt>
<dt><a
href="http://hp.vector.co.jp/authors/VA002416/teraterm.html">Tera
Term Home Page</a></dt>
</dl>
</dd>
<p></p>
<dt><h3>9804 Mozilla</h3>
</dt>
<dd><dl>
<dt></dt>
<dt><a href="http://www.mozilla.org/blue-sky/">blue sky</a></dt>
<dt><a
href="http://www.mozilla.org/docs/tplist/catFlow/modunote.htm">Modularization
Techniques</a></dt>
<dt><a href="http://www.aliweb.com/mozilla/">Index of
/mozilla</a></dt>
</dl>
</dd>
<p></p>
<dt><h3>9808pub</h3>
</dt>
<dd><dl>
<dt></dt>
<dt></dt>
<dt><a href="http://www.objs.com/survey/vo.htm">Virtual
Office</a></dt>
<dt><a
href="http://www.xraylith.wisc.edu/~khan/software/gnu-win32/egcs.html">EGCS
Development Toolchain for GNU-Win32 b19</a></dt>
<dt><a href="http://www.sudval.org/~sdg/rror/index.html">Robert's
Rules of Order.</a></dt>
<dt><a href="http://www.sudval.org/~sdg/">Scott's homepage</a></dt>
<dt><a
href="http://www.nightmare.com/~rushing/pictures.html">pictures</a></dt>
<dt><a href="http://www.nightmare.com/~rushing/">Sam Rushing's home
page</a></dt>
<dt><a href="http://www.nightmare.com/">Nightmare Software</a></dt>
<dt><a
href="http://www.leo.org/pub/rec/music/guitar/songs/collection/index.html">LEO
- /pub/rec/music/guitar/songs/collection</a></dt>
<dt></dt>
<dt></dt>
<dt><a
href="http://laulujoutsen.pc.helsinki.fi/~mjr/linux/cola.archive/1998-07/mjr.1998-07-31.022">mswordview
version 0.1.0 - Word 8 to html converter</a></dt>
</dl>
<p></p>
</dd>
<dt><h3>9807pub</h3>
</dt>
<dd><dl>
<dt></dt>
<dt><a href="http://opensource.oreilly.com/">Welcome to the O'Reilly
Opensource Center</a></dt>
<dt><a
href="http://www.microsoft.com/xml/notepad/download.asp">Microsoft
XML Notepad -- Download</a></dt>
<dt><a href="http://www.atvef.com/atvef_spec/TVE-public.htm">ATVEF
Specification</a></dt>
<dt><a
href="http://www.davesclassics.com/arcade/Roms/defender.zip">Defender</a></dt>
<dt><a href="http://www.primenet.com/~bjp/conference.html">GNOME
conference</a></dt>
<dt><a
href="http://starship.skyport.net/~lemburg/mxTextTools.html">TextTools
- Fast text manipulation tools for Python</a></dt>
<dt><a href="http://www.tuxedo.org/~esr/trove/">Trove project
page</a></dt>
<dt><a href="http://www-uk.hpl.hp.com/people/ak/java/hex.html">HEX -
The HTML Enabled XML Parser</a></dt>
<dt><a
href="http://www.mentalix.com/down_linuxhowto.htm">Mentalix</a></dt>
<dd>scanner linux</dd>
<dt><a href="http://www4.pisoft.it/~andreoli/mulinux.html">muLinux
Home Page</a></dt>
<dt><a
href="http://laulujoutsen.pc.helsinki.fi/~mjr/linux/cola.archive/1998-07/mjr.1998-07-20.006">muLinux
V1.1 - micro Linux one-floppy system</a></dt>
<dt><a
href="http://laulujoutsen.pc.helsinki.fi/~mjr/linux/cola.archive/1998-07/mjr.1998-07-20.016">modoss
linux spredsheat</a></dt>
<dt><a
href="http://www.swbell.com/Catalog/order_form.html?product_code=CID">Products
and Services Order Form</a></dt>
</dl>
<p></p>
</dd>
<dt></dt>
<dt><a
href="http://www.daytimer.com/technology/software/download/soft1.html">Daytimer
Download</a></dt>
<dt><a
href="http://www.daytimer.com/technology/software/dto98/index.html">Day-Timer:
Software - Organizer 98 for Windows</a></dt>
<dt><a
href="http://www.microsoft.com/sitebuilder/features/IE5behave.asp">IE5
Behaviours</a></dt>
<dt><a href="http://pager.yahoo.com/jpager/">Yahoo! Java Pager</a></dt>
<dt></dt>
<dt><a href="http://www.timeanddate.com/">www.timeanddate.com</a></dt>
<dt><a href="http://www.idt.net/net2phone/">IDT Net2Phone</a></dt>
<dt><a href="http://www.palmtop.co.uk/">Palmtop magazine homepage</a></dt>
<dt><h3>9802 XML</h3>
</dt>
<dd><dl>
<dt></dt>
<dt><a href="http://www.megginson.com/xml-wg/infoset.html">XML
Information Modules</a></dt>
<dt><a
href="http://www.mintert.com/xml/trans/REC-xml-19980210-de.html">Extensible
Markup Language (XML) 1.0 - Deutsche Übersetzung</a></dt>
<dt><a
href="http://www.microsoft.com/workshop/author/dhtml/edit/download.htm">SBN
Downloads: Dynamic HTML Editing Component</a></dt>
<dt><a href="http://www.mozilla.org/rdf/doc/xml.html">XML in
Mozilla</a></dt>
<dt><a href="http://www.uic.edu/~cmsmcq/tech/n1873.html">A Proposal
to Introduce "Module" Structures into SGML</a></dt>
<dt><a
href="http://developer.netscape.com/news/viewsource/bray_xml.html">Beyond
HTML: XML and Automated Web Processing</a></dt>
<dt><a
href="http://itrc.uwaterloo.ca:80/~papresco/PySgml/PyGrove/">Processing
SGML Groves in Python</a></dt>
<dt><a href="http://itrc.uwaterloo.ca:80/~papresco/">Paul Prescod's
Home Page</a></dt>
<dt><a
href="http://itrc.uwaterloo.ca:80/~papresco/ole-sp/groveoa.idl">http://itrc.uwaterloo.c...esco/ole-sp/groveoa.idl</a></dt>
<dt><a
href="http://www.doctools.com/note-xll-principles-19980120.html">Extensible
Linking Language (XLL) Design Principles</a></dt>
<dt><a
href="http://www.vsms.nottingham.ac.uk/vsms/xml/jewels.html">jewels
(xml)</a></dt>
<dt><a
href="http://www.w3.org/Team/1998/01/XML-data/">XML-Data</a></dt>
<dt><h3>9801xml0</h3>
</dt>
<dd><dl>
<dt></dt>
<dt><a href="http://www.php.net/">Professional Home Pages
Version 3.0</a></dt>
<dt><a href="http://htmlscript.volant.com/">Htmlscript
Corporation -- The Document IS The Application</a></dt>
<dt><a href="http://www.metahtml.com/">Welcome to
Meta-HTML.COM</a></dt>
<dt><a
href="http://www.metahtml.com/examples/iteration.mhtml">Meta-HTML:
Looping</a></dt>
<dt><a
href="http://hoohoo.ncsa.uiuc.edu/docs/tutorials/includes.html">NCSA
HTTPd Tutorial: Server Side Includes (SSI)</a></dt>
<dt><a
href="http://www.apache.org/docs/mod/mod_include.html">Apache
module mod_include</a></dt>
<dt><a href="http://perl.apache.org/embperl.html">Embperl -
Embeding Perl Code in HTML</a></dt>
<dt><a
href="http://starship.skyport.net/crew/scott/PyLR.html">PyLR --
Fast LR parsing in python</a></dt>
</dl>
</dd>
<p></p>
</dl>
</dd>
<p></p>
<dt><a href="http://www.nightmare.com/software.html">Available
Software</a></dt>
<dt><a href="http://www.leo.org/~doering/mgetty/index.html">Mgetty +
Sendfax Documentation Centre</a></dt>
<dt></dt>
<dt><a
href="http://www.computerworld.com/home/news.nsf/all/9808064usps">Clinton
backs universal E-mail plan</a></dt>
<dt><a
href="http://www.ntia.doc.gov/ntiahome/domainname/usrfc/dotusrfc.htm">.us
Request for Comments</a></dt>
<dt></dt>
<dt><a
href="http://www.shopping.hp.com/cgi-bin/shopping/hpvillage?BV_EngineID=halcegkgeeibemfcfjfcffcjh.5&BV_Operation=Dyn_AdReceive&form%25STORE_ID=0&form%25observe_selected=1&BV_SessionID=2062819228&form%25position=Box2+from+RS&form%25destination=%2fhpvillage%2ftemplates%2fprint_supplies%2fproduct_detail.html.tmpl&form%25OID=6465&form%25destination_type=template&form%25PRODUCT_ID=6406&BV_ServiceName=HPShoppingVillage&form%25PRODUCT_TEMPLATE=%2fhpvillage%2ftemplates%2fprint_supplies%2fproduct_detail.html.tmpl">Palmtop</a></dt>
<dt><a href="http://www.smarthome.com/">Home Automation Systems Catalog X10
automation home security surveillance audio video control</a></dt>
<dt><a href="http://appindex.freshmeat.net/view/899836937/">( freshmeat ) -
( details of "Maxwell" )</a></dt>
<dt></dt>
<dt><a href="http://www.cs.uu.nl/~hanwen/lilypond/">LilyPond -- The GNU
Project Music Typesetter</a></dt>
<dt></dt>
<dt><a
href="http://www.yahoo.com/Business_and_Economy/Companies/Office_Supplies_and_Services/Calendars_and_Personal_Organizers/">Yahoo!
Business and Economy:Companies:Office Supplies and Services:Calendars and
Personal Organizers</a></dt>
<dt></dt>
<dt><a
href="http://www.best.com/~effugas/gnome_gui_irc_conference_1.html">GNOME
UISG V2.0 IRC Conference</a></dt>
<dd></dd>
<dt></dt>
<dt><a href="http://www.cco.caltech.edu/~jafl/xdnd/">Drag-And-Drop</a></dt>
<dt><a
href="http://www.csn.ul.ie/~caolan/docs/MSWordView-Demo.html">MSWordView,
MSWord 8 converter Web Gateway</a></dt>
<dt><a href="http://www-formal.stanford.edu/jmc/index.html">John
McCarthy</a></dt>
<dt><a href="http://www.sat.dundee.ac.uk/~arb/psion/">arb's Psion
Software</a></dt>
<dt><a href="http://www.constitution.org/rror/rror--00.htm">Robert's Rules
of Order Revised</a></dt>
<dt><a href="http://3lib.ukonline.co.uk/reverse.htm">OPL Reverse
Translation</a></dt>
<dt><a href="http://www.kerswell.demon.co.uk/">Psi-Sync for Microsoft
Outlook Home Page</a></dt>
<dt><a
href="http://www.developer.com/journal/techfocus/081798_jpython.html">http://www.developer.co...cus/081798_jpython.html</a></dt>
<dt><a href="http://tnt.microimages.com/www/html/freestuf/mix/">Free X
server for Windows and Mac</a></dt>
<dt><a href="http://impressive.net/services/dtrt/">DTRT: A CGI Script to Do
The Right Thing</a></dt>
<dt></dt>
<dt><a href="http://www.jtauber.com/fop/">FOP: A Formatting Object to PDF
Converter</a></dt>
<dt></dt>
<dt></dt>
<dt></dt>
<dt><a href="http://www.port.com/docs/acincar.htm">PORT Auto/Air Power
Adapter</a></dt>
<dt></dt>
<dt><a href="http://wol.ra.phy.cam.ac.uk/mackay/dscf1.html#vc">Sony's
DSC-F1 - User information / FAQ</a></dt>
<dt><a href="http://www.icct.net/~ajackson/linux_adventures.html">My
adventures setting up Linux</a></dt>
<dd></dd>
<dt><a href="http://www.php.net/">PHP3: PHP: Hypertext Preprocessor</a></dt>
<dt><a href="http://www.cs.utexas.edu/users/wombat/">Ben's Fuzzy
Multiverse</a></dt>
<dt><a href="http://www.focusinfo.com/pi/tvgoldpro.htm">TView®
Gold</a></dt>
<dt></dt>
<dt><a href="http://photo.net/mjcal/case-space.html">Making Way for
Intelligence in Case Space</a></dt>
<dt></dt>
<dt><a
href="http://www.la.utexas.edu/course-materials/philosophy/koons/313k/">Phl
313K Logic, Sets and Functions</a></dt>
<dt><a
href="http://thoralf2.uwaterloo.ca/htdocs/stext.html#principia">Supplements</a></dt>
<dt><a href="http://mitpress.mit.edu/journal-home.tcl?issn=10996621">Markup
Languages: Theory and Practice</a></dt>
<dt><a
href="http://www.tcx.se/Manual_chapter/manual_Syntax.html#Join">MySQL
Reference Manual for version 3.22.10-beta. - 7 MySQL language
reference</a></dt>
<dt></dt>
<dt><a
href="http://www.cudenver.edu/~mryder/itc_data/semiotics.html">Semiotics</a></dt>
<dt><h3>Web History</h3>
</dt>
<dd><dl>
<dt></dt>
<dt><a
href="http://ksi.cpsc.ucalgary.ca/archives/WWW-TALK/.www-talk-1992.messages/246.html">EMail
Msg</a></dt>
<dt><a
href="http://ksi.cpsc.ucalgary.ca/archives/WWW-TALK/www-talk-1992.index.html">WWW
Talk 1992 Archives</a></dt>
<dt><a
href="http://www.georgetown.edu/crossroads/asw/lit.html#hypertext">American
Studies Web: Literature and Hypertext</a></dt>
<dt><a
href="http://ksi.cpsc.ucalgary.ca/archives/WWW-TALK/archives.html">WWW-Talk
and WWW-HTML Mail Archives</a></dt>
<dt><a
href="http://www.eit.com/old/www.lists/www-talk.1991/index.html#10">WWW-Talk
1991 by thread</a></dt>
<dt><a
href="http://lists.w3.org/Archives/Team/www-talk-historical/1995JanFeb/0244.html">www-talk-historical@w3.org
from January to February 1995: Client-side searching proposal</a></dt>
<dt><a
href="http://www.pathfinder.com/time/magazine/1997/dom/970519/tech.the_man_who_i.html">THE
MAN WHO INVENTED THE WEB</a></dt>
</dl>
</dd>
<p></p>
<dt><h3>People</h3>
</dt>
<dd><dl>
<dt></dt>
<dt><a href="http://www.ics.uci.edu/~rohit/">Rohit Khare's ICS Home
Page</a></dt>
<dt><a href="http://www.cs.iastate.edu/~leavens/main.html">Research
Directed by Gary T. Leavens</a></dt>
<dt><a href="http://www1.shore.net/~crism/index.html">Chris
Maden</a></dt>
<dt><a
href="http://simon.cs.cornell.edu/Info/People/kleinber/kleinber.html#papers">Jon
Kleinberg's Homepage</a></dt>
<dt><a href="http://www-swiss.ai.mit.edu/~jar/jar-bio.html">Jonathan
Rees's projects list</a></dt>
<dt></dt>
</dl>
</dd>
<p></p>
<dt><a
href="http://www.research.digital.com/SRC/pachyderm/">Pachyderm</a></dt>
<dt></dt>
<dt><a href="http://www.computerworld.com/">Computerworld Home</a></dt>
<dt></dt>
<dt><a href="http://www.pythonware.com/madscientist/">The Mad Scientist's
Secret Laboratory</a></dt>
<dd>python, sgml, xml-rpc</dd>
<dt><a href="http://www.windowmaker.org/">Official Window Maker
Website</a></dt>
<dt><h3></h3>
<p></p>
</dt>
<dt><a
href="http://gatekeeper.dec.com/pub/DEC/SRC/technical-notes/SRC-1997-029-html/">SRC
Technical Note 1997-029</a></dt>
<dt><a
href="http://www.javasoft.com/people/jag/StandardsPhases/index.html">Phase
relationships in the standardization process</a></dt>
<dt></dt>
<dt><a href="http://www.this.net/~frank/pstill.html">PStill - A PS to PDF
converter by Frank Siegert</a></dt>
<dt><a href="http://www.cs.uit.no/~dagb/irda/irda.html">The Linux/IR
Project</a></dt>
<dt><a href="http://www.cs.helsinki.fi/~jjaakkol/sgrep.html">Sgrep - Home
page</a></dt>
<dt></dt>
<dt></dt>
<dt></dt>
<dt><h3>9901xml-rpc</h3>
</dt>
<dd><dl>
<dt></dt>
<dt><a
href="http://www.datachannel.com/xml_resources/webbroker/">spec</a></dt>
<dt><a href="http://www.xmlrpc.com/">XML-RPC.COM: Home Page</a></dt>
</dl>
</dd>
<p></p>
<dt><a href="http://access.adobe.com/simple_form.html">Access.adobe.com
Conversion by Simple Form</a></dt>
<dt><a
href="http://www.research.digital.com/SRC/publications/src-rr.html">SRC -
Research Reports</a></dt>
<dt></dt>
<dd></dd>
<dt><a href="http://lcweb.loc.gov/copyright/">U.S. Copyright Office Home
Page</a></dt>
<dt><a href="http://www.phy.hw.ac.uk/~karsten/M/">Mahogany: Open Source
Mail client</a></dt>
<dd></dd>
<dt><a
href="http://www.zevils.com/linux/mp3tools/">(http://www.../mp3tools/)</a></dt>
<dt></dt>
<dt><h3>Books that Deserve Shelf-Space</h3>
</dt>
<dd><dl>
<dt></dt>
<dt><a
href="http://www.amazon.com/exec/obidos/ASIN/0691037639/o/qid=916960984/sr=2-1/002-1631588-3975844">Amazon.com:
A Glance: Programming As If People Mattered : Friendly Programs,
Software Engineering, and Other Noble Delusions</a></dt>
<dt><h3>SPwM3</h3>
</dt>
<dd><dl>
<dt></dt>
<dt><a
href="http://gatekeeper.dec.com/pub/DEC/SRC/research-reports/abstracts/src-rr-020.html">Digital
Systems Research Center: Report 20</a></dt>
<dt><a
href="http://gatekeeper.dec.com/pub/DEC/SRC/research-reports/abstracts/src-rr-035.html">Digital
Systems Research Center: Report 35</a></dt>
</dl>
</dd>
<p></p>
<dt><a
href="http://www.amazon.com/exec/obidos/ASIN/0201634627/danconnollyA/002-0458424-3070450">Amazon.com:
A Glance: How to Set Up and Maintain a Web Site</a></dt>
</dl>
<p></p>
</dd>
<dt><a href="http://home.earthlink.net/~nawalker/pharmacy.html">Reklaw -
Pharmacy (CVS Front-end)</a></dt>
<dt><a href="http://www.garlic.com/~lynn/rfcietff.htm">IETF STD1 and
RFC-INDEX information</a></dt>
<dt><a href="http://www.google.com/defaults.html">Making Google Your
Default</a></dt>
<dt><a href="http://www.aiim.org/events/aiim99/">AIIM International</a></dt>
<dt></dt>
<dt><a
href="http://www.cs.cmu.edu/~guyb/real-world/indexing/index.html">Algorithms
in the Real World: Indexing</a></dt>
<dt><a href="http://www.ishiboo.com/~nirva/Projects/stillgrab/">StillGrab:
Digital Camera Image retriever</a></dt>
<dt></dt>
<dt></dt>
<dt><a
href="http://lxr.mozilla.org/grendel/source/grendel/storage/BerkeleyMessage.java#39">mozilla/grendel/storage/BerkeleyMessage.java</a></dt>
<dt></dt>
<dt><a href="http://www2.hursley.ibm.com/rexx/">Rexx</a></dt>
<dt><a href="http://tweedledee.physics.ucsb.edu/~kris/exp/brain.html">The
Web as a Brain</a></dt>
<dt><a href="http://bsd.mojones.com/mother_jones/MJ94/krasny.html">What is
community? Noam Chomsky</a></dt>
<dd></dd>
<dt><a href="http://www.publicagenda.org/">Public Agenda, Public Agenda
Online: Public Policy Research</a></dt>
<dt><a
href="http://www.utexas.edu/ftp/pub/courses/mis311f/history/hist032.htm">Scholz's</a></dt>
<dt><a
href="http://www.research.digital.com/SRC/publications/src-rr.html">SRC -
Research Reports</a></dt>
<dt><h3>Addressing</h3>
</dt>
<dd><dl>
<dt></dt>
<dt><a
href="http://www.nsf.gov/pubs/1998/nsf9863/nsf9863.htm">DIGITAL
LIBRARIES INITIATIVE - PHASE II</a></dt>
<dt></dt>
</dl>
</dd>
<p></p>
<dt><h3></h3>
<p></p>
</dt>
<dt><h3>9712pim-tapi</h3>
</dt>
<dd><dl>
<dt></dt>
<dt><a
href="http://premium.microsoft.com/msdn/library/sdkdoc/winbase/dll_1o8p.htm">LoadLibrary</a></dt>
<dt><a
href="http://premium.microsoft.com/msdn/library/sdkdoc/tapi21/overvw1_64j7.htm">Receiving
Calls</a></dt>
<dt><a
href="http://www.pcworld.com/hardware/communications/articles/apr97/1504p222d.html">Special
Report: Small Office/Home Office (4/97)</a></dt>
<dt><a
href="http://www.cnet.com/Content/Reviews/Special/Gizmos/ss06.html">CNET
Reviews - Special - Geek's guide to gadgets - Webley</a></dt>
<dt><a href="http://www.webley.com/join_now.html">Webley Join
Now!</a></dt>
<dt><a
href="http://premium.microsoft.com/support/kb/articles/q141/6/25.asp">ACC:
Using TAPI to Dial a Phone Under Win95/NT 4.0 (95/97)</a></dt>
<dt><a href="http://www.microsoft.com/msdn/">MSDN Online</a></dt>
<dt><a href="http://premium.microsoft.com/msdn/library/">MSDN Online
Library</a></dt>
<dt><a href="http://www.exceletel.com/WindowsTelephony.htm">ExceleTel
- Windows Telephony Architecture</a></dt>
<dt><a
href="http://www.amundsen.com/mstdg/tapivb5/tapivb5.htm">Download the
TAPI Test Bed for VB5</a></dt>
<dt><a
href="http://www.microsoft.com/java/sdk/20/jdirect/FAQ.htm">j/direct
Frequently Asked Questions</a></dt>
<dt><a
href="http://www.microsoft.com/win32dev/apiext/tapiwp.htm">Windows
Telephony (TAPI) Support in Windows NT 4.0</a></dt>
</dl>
</dd>
<p></p>
<dt><h3></h3>
<p></p>
</dt>
<dt><h3>9807desktop-scripting</h3>
</dt>
<dd><dl>
<dt></dt>
<dt><a
href="http://www.microsoft.com/outlook/beta2/default.htm">Outlook 98
Beta 2 Download</a></dt>
<dt><a href="http://www.cs.columbia.edu/~hgs/rtp/audio.html">Audio
I/O Devices for Conferencing</a></dt>
<dt><a href="http://www.pi.se/ken/cti_iptel.html">Ken's CTI, IVR and
Call Center Page</a></dt>
<dt><a href="http://c2.com/cgi/wiki?WikiWikiWeb">WikiWikiWeb</a></dt>
<dt><a
href="http://starship.skyport.net/crew/scharf/GroupMind/GroupMind.cgi?req=show&file=DanConnolly.gromi">DanConnolly</a></dt>
<dt><a href="http://sams.prohosting.com/cwashington/">Scripting tools
for 32bit Windows operating systems</a></dt>
<dt><a
href="http://www.ice.com/java/icemail/index.shtml">ICEMail</a></dt>
<dt><a href="http://www.ice.com/java/jcvs/">jcvs</a></dt>
<dt><a
href="http://wwwwbs.cs.tu-berlin.de/~schwartz/pmh/laola.html">LAOLA
Homepage, Sep/23/97</a></dt>
<dt><a
href="http://wwwwbs.cs.tu-berlin.de/~schwartz/perl/OLE-Storage-0.386.tar.gz">OLE-Storage-0.386.tar></a></dt>
<dt><a
href="http://www.alphaWorks.ibm.com/formula/pilotbean">PilotBean: A
JavaBean from alphaWorks by IBM</a></dt>
</dl>
</dd>
<p></p>
<dt><h3></h3>
<p></p>
</dt>
<dt><h3></h3>
<p></p>
</dt>
<dt><h3></h3>
</dt>
</dl>
<h2>Contents</h2>
<p>@@<em>I merged most of this in with <a href="http://www.w3.org/">the W3C
specs and development materials</a></em>.</p>
<ol>
<li><a href="http://www.w3.org/Collaboration/">Collaboration
Technologies</a></li>
<li><a
href="http://www.w3.org/People/Connolly/technologies/index.html">Development
Technologies</a></li>
<li><a
href="http://www.w3.org/People/Connolly/drafts/citations.html">Resource
Discovery and Reliable Links</a></li>
<li><a href="http://www.w3.org/MarkUp/MarkUp.html">HTML
Standardization</a></li>
<li><a
href="http://www.w3.org/People/Connolly/drafts/html-design.html">HTML
Design and Evolution</a></li>
<li><a href="http://www.w3.org/MarkUp/SGML/Overview.html">More complete
SGML support on the Web</a></li>
<li><a href="#mime">More complete MIME support on the Web</a></li>
<li><a href="http://www.w3.org/International/">Non-western Character sets,
languages, and writing systems for the Web</a></li>
<li><a href="http://www.w3.org/Protocols/OORPC/Overview.html">Automated
Protocols: OORPC</a></li>
<li><a href="http://www.w3.org/Security/Overview.html">Net Commerce,
Security, and Privacy</a></li>
</ol>
<h2><a name="mime" id="mime">More complete MIME support on the Web</a></h2>
<p>Currently, there is widespread support for individuals on the net to
compose and send messages and articles in the internet message format,
specified by RFC822. Support for its multimedia enhancement MIME, is
growing.</p>
<p>There is also widespread support for navigating information collections
and archives using HTML. Support for HTML authoring is growing.</p>
<p>But support for integrating HTML and MIME is poor. I can compose a message
in HTML and send it via mail or news as a MIME multipart/alternative message
containing a plain text version and the HTML version. But I don't often go to
the trouble because the various list servers and archivers disregard the MIME
headers, treat the message as plain text, and then _convert_ it to HTML for
distribution via web (http) servers. Not even my web user agent is smart
enough to extract the HTML from a MIME message stored in my mailbox or
retrieved from a news server.</p>
<h3>Resources</h3>
<ul>
<li><a href="news:comp.mail.mime">comp.mail.mime</a></li>
<li><a href="http://ds.internic.net/rfc/rfc1521.txt">rfc1521</a> , the MIME
specification</li>
<li><a href="http://www.cs.indiana.edu/hyplan/mvanheyn.html">Marc
VanHeyningen</a></li>
</ul>
<p></p>
<hr />
<address>
<a href="http://www.w3.org/People/Connolly/">Dan Connolly</a> <a
href="mailto:connolly@w3.org"><tt>connolly@w3.org</tt></a><br />
Created @@<br />
revived Jun 1999<br />
<small>$Revision: 1.67 $ $Author: connolly $<br />
$Date: 2002/08/16 22:30:31 $</small>
</address>
<p></p>
</body>
</html>