-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathforum-logs-for-13-jan-2017
3951 lines (3893 loc) · 186 KB
/
forum-logs-for-13-jan-2017
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>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="Cache-control" content="private,max-age:9800">
<meta name="description" content="Planet Earth's most widely read blog." />
<meta name="robots" content="index,follow,noarchive" />
<link rel="icon" href="http://trilema.com/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="http://trilema.com/wp-content/themes/trilema/style.css" type="text/css" media="screen" />
<style type="text/css"> body { background: #fff url('http://trilema.com/wp-content/themes/trilema/images/bg_oct2009.jpg') no-repeat center top; } </style>
<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="http://trilema.com/feed/atom/" />
<link rel="alternate" type="application/rss+xml" title="Trilema RSS Feed" href="http://trilema.com/feed/" />
<link rel="pingback" href="http://trilema.com/xmlrpc.php" />
<title>Forum logs for 13 Jan 2017 on Trilema - A blog by Mircea Popescu.</title>
<style type="text/css">
ol.footnotes li {list-style-type:lower-roman;}
ol.footnotes{font-size:0.8em; color:#000000;} </style>
</head>
<body>
<div id="base">
<div id="mask_head_ie"></div>
<div id="base2">
<div id="header">
<div id="blogtitle"><a href="http://trilema.com">Trilema</a></div>
<div id="subtitle">The scandalous blog of a sexual predator.
</div>
</div>
<div id="mask_foot"></div>
<div id="container">
<div id="content"> <div class="spacer"></div> <span id="shash-92091"><div class="post" id="post-92091"> <h1><a href="http://trilema.com/2020/forum-logs-for-13-jan-2017/" rel="bookmark" title="Permanent Link to Forum logs for 13 Jan 2017">Forum logs for 13 Jan 2017</a></h1> <div class="date"> Monday, 16 March, Year 12 d.Tr. | Author: <a href="http://trilema.com/author/" title="Posts by "></a> </div>
<div class="entry">
<table style="font-size:1em;width:"580px;">
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> yeh </td>
<td><font color="gray">[<a id="2228105" href="#2228105">00:26</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> !~google salina turda </td>
<td><font color="gray">[<a id="2228106" href="#2228106">00:27</a>]</font></td>
</tr>
<tr>
<td><b>jhvh1:</b></td>
<td class="breakup"> mircea_popescu: Salina Turda - Wikipedia: <<a href="https://en.wikipedia.org/wiki/Salina_Turda>" target=\'_blank\'>https://en.wikipedia.org/wiki/Salina_Turda></a> Salina Turda Salt Mine: <<a href="http://salinaturda.eu/%3Flang%3Den>" target=\'_blank\'>http://salinaturda.eu/%3Flang%3Den></a> Salina Turda amusement park in Romania - Business Insider: <<a href="http://www.businessinsider.com/salina-turda-amusement-park-in-romania-2015-7>" target=\'_blank\'>http://www.businessinsider.com/salina-turda-amusement-park-in-romania-2015-7></a> </td>
<td><font color="gray">[<a id="2228107" href="#2228107">00:27</a>]</font></td>
</tr>
<tr>
<td><b>davout:</b></td>
<td class="breakup"> in other false pope news <a href="http://yournewswire.com/pope-francis-global-central-bank/" target=\'_blank\'>http://yournewswire.com/pope-francis-global-central-bank/</a> </td>
<td><font color="gray">[<a id="2228108" href="#2228108">02:56</a>]</font></td>
</tr>
<tr>
<td><b>davout:</b></td>
<td class="breakup"> sorry, antipope </td>
<td><font color="gray">[<a id="2228109" href="#2228109">02:56</a>]</font></td>
</tr>
<tr>
<td><b>Framedragger:</b></td>
<td class="breakup"> <a href="http://btcbase.org/log/2017-01-13#1602076" target=\'_blank\'>http://btcbase.org/log/2017-01-13#1602076</a> << tyvm! </td>
<td><font color="gray">[<a id="2228110" href="#2228110">06:29</a>]</font></td>
</tr>
<tr>
<td><font color="gray">a111:</font></td>
<td class="breakup"><font color="gray"> Logged on 2017-01-13 00:12 pete_dushenski: Framedragger: no worries, it's updated. </font></td>
<td><font color="gray">[<a id="2228111" href="#2228111">06:29</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> nooow then, let's continue with this lisp thingee. </td>
<td><font color="gray">[<a id="2228112" href="#2228112">07:49</a>]</font></td>
</tr>
<tr>
<td><font color="gray">deedbot:</font></td>
<td class="breakup"><font color="gray"> <a href="http://phuctor.nosuchlabs.com/gpgkey/E7AD433551E8685B6C4269A2AA6E66E19F80FB175F3F0A4DE9756009B0D8166F" target=\'_blank\'>http://phuctor.nosuchlabs.com/gpgkey/E7AD433551E8685B6C4269A2AA6E66E19F80FB175F3F0A4DE9756009B0D8166F</a> << Recent Phuctorings. - Phuctored: 1673...8977 divides RSA Moduli belonging to '77.245.149.177 (ssh-rsa key from 77.245.149.177 (13-14 June 2016 extraction) for Phuctor import. Ask asciilifeform or framedragger on Freenode, or email fd at mkj dot lt) <ssh...lt> ' (host177.b6.trdns.com. TR) </font></td>
<td><font color="gray">[<a id="2228113" href="#2228113">08:52</a>]</font></td>
</tr>
<tr>
<td><font color="gray">deedbot:</font></td>
<td class="breakup"><font color="gray"> <a href="http://phuctor.nosuchlabs.com/gpgkey/E7AD433551E8685B6C4269A2AA6E66E19F80FB175F3F0A4DE9756009B0D8166F" target=\'_blank\'>http://phuctor.nosuchlabs.com/gpgkey/E7AD433551E8685B6C4269A2AA6E66E19F80FB175F3F0A4DE9756009B0D8166F</a> << Recent Phuctorings. - Phuctored: 1509...9469 divides RSA Moduli belonging to '77.245.149.177 (ssh-rsa key from 77.245.149.177 (13-14 June 2016 extraction) for Phuctor import. Ask asciilifeform or framedragger on Freenode, or email fd at mkj dot lt) <ssh...lt> ' (host177.b6.trdns.com. TR) </font></td>
<td><font color="gray">[<a id="2228114" href="#2228114">08:52</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> i guess they're mostly going to be double bangs from now on huh. </td>
<td><font color="gray">[<a id="2228115" href="#2228115">08:57</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> !~calc 30! </td>
<td><font color="gray">[<a id="2228116" href="#2228116">09:00</a>]</font></td>
</tr>
<tr>
<td><b>jhvh1:</b></td>
<td class="breakup"> mircea_popescu: 30! = 2.652528598121911E32 </td>
<td><font color="gray">[<a id="2228117" href="#2228117">09:01</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> !~calc 16! </td>
<td><font color="gray">[<a id="2228118" href="#2228118">09:01</a>]</font></td>
</tr>
<tr>
<td><b>jhvh1:</b></td>
<td class="breakup"> mircea_popescu: 16! = 20922789888000 </td>
<td><font color="gray">[<a id="2228119" href="#2228119">09:01</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> !~calc 8! </td>
<td><font color="gray">[<a id="2228120" href="#2228120">09:01</a>]</font></td>
</tr>
<tr>
<td><b>jhvh1:</b></td>
<td class="breakup"> mircea_popescu: 8! = 40320 </td>
<td><font color="gray">[<a id="2228121" href="#2228121">09:01</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> !~calc 20! </td>
<td><font color="gray">[<a id="2228122" href="#2228122">09:02</a>]</font></td>
</tr>
<tr>
<td><b>jhvh1:</b></td>
<td class="breakup"> mircea_popescu: 20! = 2432902008176640000 </td>
<td><font color="gray">[<a id="2228123" href="#2228123">09:02</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> in other lulz -- <a href="https://archive.is/WxWgs" target=\'_blank\'>https://archive.is/WxWgs</a> << run moar weirdo closed chats </td>
<td><font color="gray">[<a id="2228124" href="#2228124">10:21</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> digging through the logs to find a point of reference for " phf that actually goes back to a thread long time ago" i found <a href="http://btcbase.org/log/2015-11-09#1320422" target=\'_blank\'>http://btcbase.org/log/2015-11-09#1320422</a> instead. how did the proposed solution work out for you phf ? </td>
<td><font color="gray">[<a id="2228125" href="#2228125">10:25</a>]</font></td>
</tr>
<tr>
<td><font color="gray">a111:</font></td>
<td class="breakup"><font color="gray"> Logged on 2015-11-09 04:39 phf: which brings me to the point that i have folders for all but "make new hardware" item in that list of b-a scope in various states of disarray, and it would be great if there was some prioritization, like it was the case with eulora "oh we need this done, you do it". </font></td>
<td><font color="gray">[<a id="2228126" href="#2228126">10:25</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> and otherwise, anyone recall the link to the big array/list discussion cuz i can't fucking find it </td>
<td><font color="gray">[<a id="2228127" href="#2228127">10:25</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> mircea_popescu: <a href="http://btcbase.org/log/2016-04-02#1444246" target=\'_blank\'>http://btcbase.org/log/2016-04-02#1444246</a> ? </td>
<td><font color="gray">[<a id="2228128" href="#2228128">11:21</a>]</font></td>
</tr>
<tr>
<td><font color="gray">a111:</font></td>
<td class="breakup"><font color="gray"> Logged on 2016-04-02 01:12 phf: Nah, universally. A significant property of arrays shared across languages is that they give you some guarantees about access time, space utilization </font></td>
<td><font color="gray">[<a id="2228129" href="#2228129">11:21</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> lessee </td>
<td><font color="gray">[<a id="2228130" href="#2228130">11:21</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> very much. </td>
<td><font color="gray">[<a id="2228131" href="#2228131">11:22</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> ty. howdja get it ? </td>
<td><font color="gray">[<a id="2228132" href="#2228132">11:22</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> it was memorable </td>
<td><font color="gray">[<a id="2228133" href="#2228133">11:22</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> because compact, correct description of 'what is array' </td>
<td><font color="gray">[<a id="2228134" href="#2228134">11:22</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> nice. wanted to re=read it anyway. </td>
<td><font color="gray">[<a id="2228135" href="#2228135">11:22</a>]</font></td>
</tr>
<tr>
<td><b>* mircea_popescu</b></td>
<td class="breakup"> is preparing lisp mega-article. only 30k words or so. </td>
<td><font color="gray">[<a id="2228136" href="#2228136">11:23</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> <a href="http://www.xach.com/naggum/articles/[email protected]" target=\'_blank\'>http://www.xach.com/naggum/articles/[email protected]</a> << possibly related, re the 'resources' thing </td>
<td><font color="gray">[<a id="2228137" href="#2228137">11:24</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> 'Common Lisp is a big-city language. Spit out the hayseed, pronounce "shit" with one syllable and "shotgun" with two. You're not in Kansas, anymore. C is the language of the poor farmer village where the allocation of every seed and livestock matters, where taxes are low and public service non-existent.' </td>
<td><font color="gray">[<a id="2228138" href="#2228138">11:24</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> ^ actually a discussion of cl strings! </td>
<td><font color="gray">[<a id="2228139" href="#2228139">11:26</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> this makes me loathe lisp and prefer c. </td>
<td><font color="gray">[<a id="2228140" href="#2228140">11:35</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> there is no future, for the record, for the "big city" understood as rules of pronounciation, high taxes and "public services". </td>
<td><font color="gray">[<a id="2228141" href="#2228141">11:35</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> this goes back to the 'tallest tower' thread. </td>
<td><font color="gray">[<a id="2228142" href="#2228142">11:36</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> much like his "car going off road is bad mkay" made my skin crawl. why the fuck would i ALWAYS go anywhere there's a road, what am i, too young to grow a beard ? </td>
<td><font color="gray">[<a id="2228143" href="#2228143">11:36</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> asciilifeform there is NO RELATION between civilisation and impotence. </td>
<td><font color="gray">[<a id="2228144" href="#2228144">11:36</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> why does 'city with paved roads and indoor plumbing' necessarily equate to 'impotence' ? </td>
<td><font color="gray">[<a id="2228145" href="#2228145">11:37</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> phf for instance, is shockingly delicate, specifically because he's more from russia than you. and the japanese folk, ESPECIALLY back in the days when misspeaking to samurai == beheading, were remarkably delicate also. </td>
<td><font color="gray">[<a id="2228146" href="#2228146">11:37</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> i must've missed one hell of a thread. where, e.g., phf was 'delicate'..? </td>
<td><font color="gray">[<a id="2228147" href="#2228147">11:37</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> so no, civilisation doth exist irrespective of "follow the road and wear breeches" </td>
<td><font color="gray">[<a id="2228148" href="#2228148">11:37</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> it doesn't shock you, the man's delicacy ? </td>
<td><font color="gray">[<a id="2228149" href="#2228149">11:38</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> are we talking of same d00d? because the phf i recall sleeps in a tent, in arizona desert, surrounded by 48 virgins </td>
<td><font color="gray">[<a id="2228150" href="#2228150">11:38</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> or what was it. </td>
<td><font color="gray">[<a id="2228151" href="#2228151">11:38</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> i meant in demeanor. </td>
<td><font color="gray">[<a id="2228152" href="#2228152">11:39</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> dunno, maybe he sat in kresty, and just weighs words veeery carefully. </td>
<td><font color="gray">[<a id="2228153" href="#2228153">11:39</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> which is the point, somewhat. </td>
<td><font color="gray">[<a id="2228154" href="#2228154">11:39</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> "big city" is very specifically NOT the big city where naggum dreamed to move, as depicted in sex and the city. </td>
<td><font color="gray">[<a id="2228155" href="#2228155">11:39</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> actually from my reading naggum's 'city' is simply 'place where the mains sockets work, the roads are smooth, and vehicle can be mercedes and not necessarily mule' </td>
<td><font color="gray">[<a id="2228156" href="#2228156">11:40</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> big city as in, new orleans, with low taxes and slaves. not as in new york, with high taxes, "public services" and "pronounce words this way" </td>
<td><font color="gray">[<a id="2228157" href="#2228157">11:40</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> this is a generous read to the point of wishful thinking, i suspect. </td>
<td><font color="gray">[<a id="2228158" href="#2228158">11:40</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> 'public service' does not necessarily mean 'communist', just means that it is available to folks within the walls. can have price of admission, as in medieval germany, it is not specified how 'public road' is paid for. </td>
<td><font color="gray">[<a id="2228159" href="#2228159">11:41</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> but in any case there's absolutely no progre monopoly on civilisation. on the contrary. </td>
<td><font color="gray">[<a id="2228160" href="#2228160">11:41</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> naggum, for instance, used payware lisptrons that cost megabux. </td>
<td><font color="gray">[<a id="2228161" href="#2228161">11:41</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> asciilifeform define "public service" if you will ? </td>
<td><font color="gray">[<a id="2228162" href="#2228162">11:41</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> 'available ad libitum to those within the walls' </td>
<td><font color="gray">[<a id="2228163" href="#2228163">11:41</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> naggum evidently intends restrictions as to shape AND USAGE. this you don't see because you opt to, but in his world, as constructed from his words, it is legitimate for someone to come and tell you "this isn't a proper use of the public service", and it is illegitimate for you to retort "tough" </td>
<td><font color="gray">[<a id="2228164" href="#2228164">11:42</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> it so happens that i read all of the material from the naggum archive. and apparently d00d lived in oslo, a very strongly socialist hellhole, and hated it for all of the right reasons. </td>
<td><font color="gray">[<a id="2228165" href="#2228165">11:43</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> (tax on auto, for instance, was 100k usd iirc) </td>
<td><font color="gray">[<a id="2228166" href="#2228166">11:43</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> ironically, i'd make the auto tax 100x yearly average income. </td>
<td><font color="gray">[<a id="2228167" href="#2228167">11:43</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> the lulzy bit is that places like oslo, bangkok, etc. with draconian auto tax, still have jams. </td>
<td><font color="gray">[<a id="2228168" href="#2228168">11:47</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> just not of car. </td>
<td><font color="gray">[<a id="2228169" href="#2228169">11:47</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> i have a solution for that, too! <a href="http://trilema.com/2016/an-immodest-proposal/" target=\'_blank\'>http://trilema.com/2016/an-immodest-proposal/</a> </td>
<td><font color="gray">[<a id="2228170" href="#2228170">11:49</a>]</font></td>
</tr>
<tr>
<td><font color="gray">deedbot:</font></td>
<td class="breakup"><font color="gray"> <a href="http://www.contravex.com/2017/01/13/mothers-and-fathers/" target=\'_blank\'>http://www.contravex.com/2017/01/13/mothers-and-fathers/</a> << » Contravex: A blog by Pete Dushenski - Mothers and fathers. </font></td>
<td><font color="gray">[<a id="2228171" href="#2228171">11:55</a>]</font></td>
</tr>
<tr>
<td><font color="gray">deedbot:</font></td>
<td class="breakup"><font color="gray"> <a href="http://phuctor.nosuchlabs.com/gpgkey/B216777E530792039BCD01CA8DB5D3834CAF576E9FCA906E9DB886AEF9CD7851" target=\'_blank\'>http://phuctor.nosuchlabs.com/gpgkey/B216777E530792039BCD01CA8DB5D3834CAF576E9FCA906E9DB886AEF9CD7851</a> << Recent Phuctorings. - Phuctored: 1514...3553 divides RSA Moduli belonging to '88.200.63.156 (ssh-rsa key from 88.200.63.156 (13-14 June 2016 extraction) for Phuctor import. Ask asciilifeform or framedragger on Freenode, or email fd at mkj dot lt) <ssh...lt> ' (Unknown SI) </font></td>
<td><font color="gray">[<a id="2228172" href="#2228172">12:06</a>]</font></td>
</tr>
<tr>
<td><font color="gray">deedbot:</font></td>
<td class="breakup"><font color="gray"> <a href="http://phuctor.nosuchlabs.com/gpgkey/B216777E530792039BCD01CA8DB5D3834CAF576E9FCA906E9DB886AEF9CD7851" target=\'_blank\'>http://phuctor.nosuchlabs.com/gpgkey/B216777E530792039BCD01CA8DB5D3834CAF576E9FCA906E9DB886AEF9CD7851</a> << Recent Phuctorings. - Phuctored: 1639...7709 divides RSA Moduli belonging to '88.200.63.156 (ssh-rsa key from 88.200.63.156 (13-14 June 2016 extraction) for Phuctor import. Ask asciilifeform or framedragger on Freenode, or email fd at mkj dot lt) <ssh...lt> ' (Unknown SI) </font></td>
<td><font color="gray">[<a id="2228173" href="#2228173">12:06</a>]</font></td>
</tr>
<tr>
<td><b>thestringpuller:</b></td>
<td class="breakup"> !~seen jurov </td>
<td><font color="gray">[<a id="2228174" href="#2228174">12:46</a>]</font></td>
</tr>
<tr>
<td><b>jhvh1:</b></td>
<td class="breakup"> thestringpuller: jurov was last seen in #trilema 23 hours, 23 minutes, and 4 seconds ago: <jurov> <a href="http://www.livescience.com/57461-army-wants-biodegradable-bullets.html" target=\'_blank\'>http://www.livescience.com/57461-army-wants-biodegradable-bullets.html</a> << reality can outdo both onion and qntra </td>
<td><font color="gray">[<a id="2228175" href="#2228175">12:46</a>]</font></td>
</tr>
<tr>
<td><font color="gray">deedbot:</font></td>
<td class="breakup"><font color="gray"> <a href="http://trilema.com/2017/my-three-days-of-ai/" target=\'_blank\'>http://trilema.com/2017/my-three-days-of-ai/</a> << Trilema - My three days of AI </font></td>
<td><font color="gray">[<a id="2228176" href="#2228176">13:21</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> speaking of which : ben_vulpes would you join candi here and set everyone in l1 to its eat list ? i deem you've satisfied contractual obligations re support if you'll be kind enough to bring it back within a day or two should it get knocked off that's entirely fine by my lights. and everyone else : have fun with the lisp repl, but don't abuse. </td>
<td><font color="gray">[<a id="2228177" href="#2228177">13:25</a>]</font></td>
</tr>
<tr>
<td><b>BingoBoingo:</b></td>
<td class="breakup"> In old news, bear food riot <a href="http://www.reuters.com/article/idUSL22583868" target=\'_blank\'>http://www.reuters.com/article/idUSL22583868</a> </td>
<td><font color="gray">[<a id="2228178" href="#2228178">14:12</a>]</font></td>
</tr>
<tr>
<td><font color="gray">deedbot:</font></td>
<td class="breakup"><font color="gray"> <a href="http://qntra.net/2017/01/womens-march-alienating-white-women-with-platform/" target=\'_blank\'>http://qntra.net/2017/01/womens-march-alienating-white-women-with-platform/</a> << Qntra - "Women's March" Alienating White Women With Platform </font></td>
<td><font color="gray">[<a id="2228179" href="#2228179">15:06</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> mircea_popescu: you have a key for her? </td>
<td><font color="gray">[<a id="2228180" href="#2228180">15:08</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> !!up candi_lustt </td>
<td><font color="gray">[<a id="2228181" href="#2228181">15:08</a>]</font></td>
</tr>
<tr>
<td><font color="gray">deedbot:</font></td>
<td class="breakup"><font color="gray"> candi_lustt voiced for 30 minutes. </font></td>
<td><font color="gray">[<a id="2228182" href="#2228182">15:08</a>]</font></td>
</tr>
<tr>
<td><b>candi_lustt:</b></td>
<td class="breakup"> ben_vulpes: error, see: <a href="http://p.bvulpes.com/pastes/KON9K/?raw=true" target=\'_blank\'>http://p.bvulpes.com/pastes/KON9K/?raw=true</a> </td>
<td><font color="gray">[<a id="2228183" href="#2228183">15:08</a>]</font></td>
</tr>
<tr>
<td><b>candi_lustt:</b></td>
<td class="breakup"> deedbot: error, see: <a href="http://p.bvulpes.com/pastes/i4aUD/?raw=true" target=\'_blank\'>http://p.bvulpes.com/pastes/i4aUD/?raw=true</a> </td>
<td><font color="gray">[<a id="2228184" href="#2228184">15:08</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> cool </td>
<td><font color="gray">[<a id="2228185" href="#2228185">15:08</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> (+ 1 1) </td>
<td><font color="gray">[<a id="2228186" href="#2228186">15:08</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> (say "hi") </td>
<td><font color="gray">[<a id="2228187" href="#2228187">15:09</a>]</font></td>
</tr>
<tr>
<td><b>phf:</b></td>
<td class="breakup"> (progn *users*) </td>
<td><font color="gray">[<a id="2228188" href="#2228188">15:09</a>]</font></td>
</tr>
<tr>
<td><b>candi_lustt:</b></td>
<td class="breakup"> ("asciilifeform" "ben_vulpes" "bingoboingo" "danielpbarron" "davout" "diana_coman" "hanbot" "jurov" "mike_c" "mircea_popescu" "mod6" "phf" "trinque") </td>
<td><font color="gray">[<a id="2228189" href="#2228189">15:09</a>]</font></td>
</tr>
<tr>
<td><b>candi_lustt:</b></td>
<td class="breakup"> i'm alive </td>
<td><font color="gray">[<a id="2228190" href="#2228190">15:10</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> candi_lustt <a href="http://p.bvulpes.com/pastes/yXCkU/?raw=true" target=\'_blank\'>http://p.bvulpes.com/pastes/yXCkU/?raw=true</a> eat </td>
<td><font color="gray">[<a id="2228191" href="#2228191">15:13</a>]</font></td>
</tr>
<tr>
<td><b>candi_lustt:</b></td>
<td class="breakup"> ben_vulpes: <a href="http://p.bvulpes.com/pastes/v147r/?raw=true" target=\'_blank\'>http://p.bvulpes.com/pastes/v147r/?raw=true</a> </td>
<td><font color="gray">[<a id="2228192" href="#2228192">15:13</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> (+ 1 1) </td>
<td><font color="gray">[<a id="2228193" href="#2228193">15:13</a>]</font></td>
</tr>
<tr>
<td><b>candi_lustt:</b></td>
<td class="breakup"> 2 </td>
<td><font color="gray">[<a id="2228194" href="#2228194">15:13</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> (paste "butts") </td>
<td><font color="gray">[<a id="2228195" href="#2228195">15:13</a>]</font></td>
</tr>
<tr>
<td><b>candi_lustt:</b></td>
<td class="breakup"> error: #<undefined-function paste {10070D62E3}> </td>
<td><font color="gray">[<a id="2228196" href="#2228196">15:13</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> (mpbot:paste "butts") </td>
<td><font color="gray">[<a id="2228197" href="#2228197">15:13</a>]</font></td>
</tr>
<tr>
<td><b>candi_lustt:</b></td>
<td class="breakup"> error: #<sb-int:simple-reader-package-error "The symbol ~S is not external in the ~A package." {10070E98E3}> </td>
<td><font color="gray">[<a id="2228198" href="#2228198">15:13</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> (mpbot::paste "butts") </td>
<td><font color="gray">[<a id="2228199" href="#2228199">15:13</a>]</font></td>
</tr>
<tr>
<td><b>candi_lustt:</b></td>
<td class="breakup"> "<a href="http://p.bvulpes.com/pastes/ToMuj/?raw=true"" target=\'_blank\'>http://p.bvulpes.com/pastes/ToMuj/?raw=true"</a> </td>
<td><font color="gray">[<a id="2228200" href="#2228200">15:14</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> mircea_popescu: you have a key for her? </td>
<td><font color="gray">[<a id="2228201" href="#2228201">15:14</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> (mpbot:paste "butts") </td>
<td><font color="gray">[<a id="2228202" href="#2228202">15:16</a>]</font></td>
</tr>
<tr>
<td><b>candi_lustt:</b></td>
<td class="breakup"> error: The symbol "PASTE" is not external in the MPBOT package.Line: 1, Column: 72, File-Position: 72Stream: #<sb-impl::string-input-stream {10071B3B53}> </td>
<td><font color="gray">[<a id="2228203" href="#2228203">15:16</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> betta </td>
<td><font color="gray">[<a id="2228204" href="#2228204">15:17</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> mircea_popescu: many of your parens escapes did not work in ai post </td>
<td><font color="gray">[<a id="2228205" href="#2228205">15:18</a>]</font></td>
</tr>
<tr>
<td><b>trinque:</b></td>
<td class="breakup"> ben_vulpes: if you princ that error iirc it wont fart out the format string </td>
<td><font color="gray">[<a id="2228206" href="#2228206">15:18</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> also <a href="http://trilema.com/2017/my-three-days-of-ai/#selection-3947.0-4087.77" target=\'_blank\'>http://trilema.com/2017/my-three-days-of-ai/#selection-3947.0-4087.77</a> would be worth preserving whitespace in to make the point </td>
<td><font color="gray">[<a id="2228207" href="#2228207">15:19</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> (mpbot:paste "butts") </td>
<td><font color="gray">[<a id="2228208" href="#2228208">15:19</a>]</font></td>
</tr>
<tr>
<td><b>candi_lustt:</b></td>
<td class="breakup"> The symbol "PASTE" is not external in the MPBOT package.Line: 1, Column: 72, File-Position: 72Stream: #<sb-impl::string-input-stream {1007504E23}> </td>
<td><font color="gray">[<a id="2228209" href="#2228209">15:19</a>]</font></td>
</tr>
<tr>
<td><b>trinque:</b></td>
<td class="breakup"> <a href="http://btcbase.org/log/2017-01-13#1602256" target=\'_blank\'>http://btcbase.org/log/2017-01-13#1602256</a> << </td>
<td><font color="gray">[<a id="2228210" href="#2228210">15:19</a>]</font></td>
</tr>
<tr>
<td><font color="gray">a111:</font></td>
<td class="breakup"><font color="gray"> Logged on 2017-01-13 20:13 candi_lustt: error: #<sb-int:simple-reader-package-error "The symbol ~S is not external in the ~A package." {10070E98E3}> </font></td>
<td><font color="gray">[<a id="2228211" href="#2228211">15:19</a>]</font></td>
</tr>
<tr>
<td><b>phf:</b></td>
<td class="breakup"> (mpbot::paste "butts") </td>
<td><font color="gray">[<a id="2228212" href="#2228212">15:19</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> deeeeebugger </td>
<td><font color="gray">[<a id="2228213" href="#2228213">15:20</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> heap exhausted game over </td>
<td><font color="gray">[<a id="2228214" href="#2228214">15:20</a>]</font></td>
</tr>
<tr>
<td><b>trinque:</b></td>
<td class="breakup"> heap inflation pls </td>
<td><font color="gray">[<a id="2228215" href="#2228215">15:20</a>]</font></td>
</tr>
<tr>
<td><b>phf:</b></td>
<td class="breakup"> oh somebody mentioned candi_lustt in a message, i think a111, and that triggered mp's code, which in turn has some exciting exponential properties </td>
<td><font color="gray">[<a id="2228216" href="#2228216">15:21</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> aok </td>
<td><font color="gray">[<a id="2228217" href="#2228217">15:21</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> > exciting </td>
<td><font color="gray">[<a id="2228218" href="#2228218">15:22</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> so i guess in five minutes or so i'll restart her when freenode wakes up to the dead socket? </td>
<td><font color="gray">[<a id="2228219" href="#2228219">15:22</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> mircea_popescu: <a href="http://trilema.com/2017/my-three-days-of-ai/#identifier_10_71072" target=\'_blank\'>http://trilema.com/2017/my-three-days-of-ai/#identifier_10_71072</a> << busted </td>
<td><font color="gray">[<a id="2228220" href="#2228220">15:23</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> standby 2 </td>
<td><font color="gray">[<a id="2228221" href="#2228221">15:29</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> in re shannonizer lulz, <a href="http://www.onthelambda.com/2014/02/20/how-to-fake-a-sophisticated-knowledge-of-wine-with-markov-chains/" target=\'_blank\'>http://www.onthelambda.com/2014/02/20/how-to-fake-a-sophisticated-knowledge-of-wine-with-markov-chains/</a> </td>
<td><font color="gray">[<a id="2228222" href="#2228222">15:44</a>]</font></td>
</tr>
<tr>
<td><font color="gray">deedbot:</font></td>
<td class="breakup"><font color="gray"> <a href="http://qntra.net/2017/01/under-pressure-domestic-margin-trading-at-chinese-fiatbitcoin-interfaces-folding/" target=\'_blank\'>http://qntra.net/2017/01/under-pressure-domestic-margin-trading-at-chinese-fiatbitcoin-interfaces-folding/</a> << Qntra - Under Pressure Domestic Margin Trading At Chinese fiat/Bitcoin Interfaces Folding </font></td>
<td><font color="gray">[<a id="2228223" href="#2228223">15:46</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> !!up candi_lustt </td>
<td><font color="gray">[<a id="2228224" href="#2228224">16:12</a>]</font></td>
</tr>
<tr>
<td><font color="gray">deedbot:</font></td>
<td class="breakup"><font color="gray"> candi_lustt voiced for 30 minutes. </font></td>
<td><font color="gray">[<a id="2228225" href="#2228225">16:12</a>]</font></td>
</tr>
<tr>
<td><b>candi_lustt:</b></td>
<td class="breakup"> ben_vulpes: error, see: <a href="http://p.bvulpes.com/pastes/P87lX/?raw=true" target=\'_blank\'>http://p.bvulpes.com/pastes/P87lX/?raw=true</a> </td>
<td><font color="gray">[<a id="2228226" href="#2228226">16:12</a>]</font></td>
</tr>
<tr>
<td><b>candi_lustt:</b></td>
<td class="breakup"> deedbot: error, see: <a href="http://p.bvulpes.com/pastes/TZkq1/?raw=true" target=\'_blank\'>http://p.bvulpes.com/pastes/TZkq1/?raw=true</a> </td>
<td><font color="gray">[<a id="2228227" href="#2228227">16:12</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> (+ 1 1) </td>
<td><font color="gray">[<a id="2228228" href="#2228228">16:12</a>]</font></td>
</tr>
<tr>
<td><b>candi_lustt:</b></td>
<td class="breakup"> 2 </td>
<td><font color="gray">[<a id="2228229" href="#2228229">16:12</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> ben_vulpes i was thinking she gets upt in half hour intervals </td>
<td><font color="gray">[<a id="2228230" href="#2228230">16:14</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> no good ? </td>
<td><font color="gray">[<a id="2228231" href="#2228231">16:14</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> your call really </td>
<td><font color="gray">[<a id="2228232" href="#2228232">16:16</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> anyone with eval permissions could register the nick, so may as well do it yourself. </td>
<td><font color="gray">[<a id="2228233" href="#2228233">16:16</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> sluts gonna slut. </td>
<td><font color="gray">[<a id="2228234" href="#2228234">16:16</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> fixed footnote. lisp dun mix well with the footnote system </td>
<td><font color="gray">[<a id="2228235" href="#2228235">16:17</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> you're telling me </td>
<td><font color="gray">[<a id="2228236" href="#2228236">16:18</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> iirc i recently tried to mix something entirely else with it, and also got barf </td>
<td><font color="gray">[<a id="2228237" href="#2228237">16:18</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> it was... less-than sign ? </td>
<td><font color="gray">[<a id="2228238" href="#2228238">16:18</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> asciilifeform comments don't allow < semantically because it's the start of a html tag articles have problems parsing<sup><a href="#footnote_0_92091" id="identifier_0_92091" class="footnote-link footnote-identifier-link" title=" and ">i</a></sup> because it's footnote convention </td>
<td><font color="gray">[<a id="2228239" href="#2228239">16:19</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> aah </td>
<td><font color="gray">[<a id="2228240" href="#2228240">16:21</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> could set the footnote to arbitrary anything, but meh. and i see no good way out of the comment thing, because it ~is~ stuck parsing the comment. </td>
<td><font color="gray">[<a id="2228241" href="#2228241">16:22</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> mp-wp supports footnotes ~in comments~ ?! </td>
<td><font color="gray">[<a id="2228242" href="#2228242">16:22</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> nah. </td>
<td><font color="gray">[<a id="2228243" href="#2228243">16:32</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> though it prolly should huh. </td>
<td><font color="gray">[<a id="2228244" href="#2228244">16:32</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> !~later tell BingoBoingo what the hell does one use to get gap-sealing foam off skin ? my hands look like 'advance leprousy' after two dozen washes with 4+ solvents.. </td>
<td><font color="gray">[<a id="2228245" href="#2228245">16:32</a>]</font></td>
</tr>
<tr>
<td><b>jhvh1:</b></td>
<td class="breakup"> asciilifeform: The operation succeeded. </td>
<td><font color="gray">[<a id="2228246" href="#2228246">16:32</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> ahahaha </td>
<td><font color="gray">[<a id="2228247" href="#2228247">16:33</a>]</font></td>
</tr>
<tr>
<td><b>BingoBoingo:</b></td>
<td class="breakup"> asciilifeform: Has it cured yet? </td>
<td><font color="gray">[<a id="2228248" href="#2228248">16:36</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> of course! </td>
<td><font color="gray">[<a id="2228249" href="#2228249">16:36</a>]</font></td>
</tr>
<tr>
<td><b>BingoBoingo:</b></td>
<td class="breakup"> And why weren't you using nitrile gloves?! </td>
<td><font color="gray">[<a id="2228250" href="#2228250">16:36</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> and with liberal admixture of dirt and insects </td>
<td><font color="gray">[<a id="2228251" href="#2228251">16:36</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> BingoBoingo: didn't feel like climbing down from ladder to get'em. </td>
<td><font color="gray">[<a id="2228252" href="#2228252">16:37</a>]</font></td>
</tr>
<tr>
<td><b>BingoBoingo:</b></td>
<td class="breakup"> Well, sandpaper works </td>
<td><font color="gray">[<a id="2228253" href="#2228253">16:37</a>]</font></td>
</tr>
<tr>
<td><b>BingoBoingo:</b></td>
<td class="breakup"> acetone sometimes works on hard surfaces... </td>
<td><font color="gray">[<a id="2228254" href="#2228254">16:38</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> BingoBoingo: yeah, got most of it off with wet sand, still remains the conformal crud. </td>
<td><font color="gray">[<a id="2228255" href="#2228255">16:38</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> acetone failed. </td>
<td><font color="gray">[<a id="2228256" href="#2228256">16:38</a>]</font></td>
</tr>
<tr>
<td><b>BingoBoingo:</b></td>
<td class="breakup"> Aha, you've got a rather solid cure then </td>
<td><font color="gray">[<a id="2228257" href="#2228257">16:38</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> very solid, a++++ </td>
<td><font color="gray">[<a id="2228258" href="#2228258">16:38</a>]</font></td>
</tr>
<tr>
<td><b>BingoBoingo:</b></td>
<td class="breakup"> Well pretty much limited to mechanical removal nao </td>
<td><font color="gray">[<a id="2228259" href="#2228259">16:38</a>]</font></td>
</tr>
<tr>
<td><b>BingoBoingo:</b></td>
<td class="breakup"> Wait 24 hours </td>
<td><font color="gray">[<a id="2228260" href="#2228260">16:39</a>]</font></td>
</tr>
<tr>
<td><b>BingoBoingo:</b></td>
<td class="breakup"> then try lava soap </td>
<td><font color="gray">[<a id="2228261" href="#2228261">16:39</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> asciilifeform just wait. your skin exfoliates naturally, they will come off. </td>
<td><font color="gray">[<a id="2228262" href="#2228262">16:40</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> WAY better than giving yourself contact dermatitis. </td>
<td><font color="gray">[<a id="2228263" href="#2228263">16:40</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> mircea_popescu: well noshit. is what i normally do. </td>
<td><font color="gray">[<a id="2228264" href="#2228264">16:40</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> there is ~no good chem solution for your problem as it is. </td>
<td><font color="gray">[<a id="2228265" href="#2228265">16:40</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> q was about 'exists faster method?' </td>
<td><font color="gray">[<a id="2228266" href="#2228266">16:40</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> mircea_popescu: i am currently satisfied that this is so. </td>
<td><font color="gray">[<a id="2228267" href="#2228267">16:40</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> carbon sulfide, which is carcinogenic. </td>
<td><font color="gray">[<a id="2228268" href="#2228268">16:41</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> BingoBoingo: and funnily enough, first thing i did was (knockoff) lava soap. </td>
<td><font color="gray">[<a id="2228269" href="#2228269">16:41</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> i keep it in the work room. </td>
<td><font color="gray">[<a id="2228270" href="#2228270">16:41</a>]</font></td>
</tr>
<tr>
<td><b>BingoBoingo:</b></td>
<td class="breakup"> Anyways pumice and time </td>
<td><font color="gray">[<a id="2228271" href="#2228271">16:41</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> (there is no running water there and so it is the only wash..) </td>
<td><font color="gray">[<a id="2228272" href="#2228272">16:41</a>]</font></td>
</tr>
<tr>
<td><b>candi_lustt:</b></td>
<td class="breakup"> The variable is is unbound. </td>
<td><font color="gray">[<a id="2228273" href="#2228273">16:41</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> lol! how did ^ happen </td>
<td><font color="gray">[<a id="2228274" href="#2228274">16:41</a>]</font></td>
</tr>
<tr>
<td><b>BingoBoingo:</b></td>
<td class="breakup"> if still tacky you can cover foamskin with powder </td>
<td><font color="gray">[<a id="2228275" href="#2228275">16:41</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> parentheses ?? </td>
<td><font color="gray">[<a id="2228276" href="#2228276">16:41</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> ( ) </td>
<td><font color="gray">[<a id="2228277" href="#2228277">16:41</a>]</font></td>
</tr>
<tr>
<td><b>candi_lustt:</b></td>
<td class="breakup"> nil </td>
<td><font color="gray">[<a id="2228278" href="#2228278">16:41</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> lol </td>
<td><font color="gray">[<a id="2228279" href="#2228279">16:41</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> aw fuck </td>
<td><font color="gray">[<a id="2228280" href="#2228280">16:41</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> ben_vulpes can it only retort if its name is on the line ? otherwise this will become problematic </td>
<td><font color="gray">[<a id="2228281" href="#2228281">16:42</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> mircea_popescu: it needs to be fed your brain </td>
<td><font color="gray">[<a id="2228282" href="#2228282">16:43</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> !!up candi_lustt </td>
<td><font color="gray">[<a id="2228283" href="#2228283">16:43</a>]</font></td>
</tr>
<tr>
<td><font color="gray">deedbot:</font></td>
<td class="breakup"><font color="gray"> candi_lustt voiced for 30 minutes. </font></td>
<td><font color="gray">[<a id="2228284" href="#2228284">16:43</a>]</font></td>
</tr>
<tr>
<td><b>candi_lustt:</b></td>
<td class="breakup"> ben_vulpes: error, see: <a href="http://p.bvulpes.com/pastes/kQeDo/?raw=true" target=\'_blank\'>http://p.bvulpes.com/pastes/kQeDo/?raw=true</a> </td>
<td><font color="gray">[<a id="2228285" href="#2228285">16:43</a>]</font></td>
</tr>
<tr>
<td><b>candi_lustt:</b></td>
<td class="breakup"> deedbot: error, see: <a href="http://p.bvulpes.com/pastes/3IAka/?raw=true" target=\'_blank\'>http://p.bvulpes.com/pastes/3IAka/?raw=true</a> </td>
<td><font color="gray">[<a id="2228286" href="#2228286">16:43</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> ^^ </td>
<td><font color="gray">[<a id="2228287" href="#2228287">16:43</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> if you want a default that'll persist over reboots so she does at least something, i can jam that in there </td>
<td><font color="gray">[<a id="2228288" href="#2228288">16:43</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> candi_lustt eat <a href="http://p.bvulpes.com/pastes/jO4Hu/?raw=true" target=\'_blank\'>http://p.bvulpes.com/pastes/jO4Hu/?raw=true</a> </td>
<td><font color="gray">[<a id="2228289" href="#2228289">16:44</a>]</font></td>
</tr>
<tr>
<td><b>candi_lustt:</b></td>
<td class="breakup"> mircea_popescu: <a href="http://p.bvulpes.com/pastes/PSAht/?raw=true" target=\'_blank\'>http://p.bvulpes.com/pastes/PSAht/?raw=true</a> </td>
<td><font color="gray">[<a id="2228290" href="#2228290">16:44</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> ben_vulpes i don't want her to do anything specifically, but she also can't answer to a single-open-parens control sequence </td>
<td><font color="gray">[<a id="2228291" href="#2228291">16:44</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> i guess can have !( for it and you wipe ! ? </td>
<td><font color="gray">[<a id="2228292" href="#2228292">16:44</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> foo(+ 1) </td>
<td><font color="gray">[<a id="2228293" href="#2228293">16:45</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> can't the lords be trusted to shut her up when they're done playing? </td>
<td><font color="gray">[<a id="2228294" href="#2228294">16:45</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> (+ 1 "no good") </td>