-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathforum-logs-for-17-jan-2017
3166 lines (3107 loc) · 151 KB
/
forum-logs-for-17-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 17 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 fates are cruel an' the chances are slim<br />so grab a good sieve and dig in.<br />~<a href=http://trilema.com/2020/nannare/#comment-147503>my elder slavegirl</a>
</div>
</div>
<div id="mask_foot"></div>
<div id="container">
<div id="content"> <div class="spacer"></div> <span id="shash-92095"><div class="post" id="post-92095"> <h1><a href="http://trilema.com/2020/forum-logs-for-17-jan-2017/" rel="bookmark" title="Permanent Link to Forum logs for 17 Jan 2017">Forum logs for 17 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>asciilifeform:</b></td>
<td class="breakup"> 'LDAR - lay down and rot' (from BingoBoingo's <a href="https://www.reddit.com/r/Incels/comments/56bs95/incel_faq_read_this_so_you_dont_shitpost/" target=\'_blank\'>https://www.reddit.com/r/Incels/comments/56bs95/incel_faq_read_this_so_you_dont_shitpost/</a> ) << genius </td>
<td><font color="gray">[<a id="2230169" href="#2230169">00:37</a>]</font></td>
</tr>
<tr>
<td><b>mats:</b></td>
<td class="breakup"> TIL all of WoW's GUI is driven by XML and Lua </td>
<td><font color="gray">[<a id="2230170" href="#2230170">01:32</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/17/effective-government-regulation-of-bitcoin-in-china/" target=\'_blank\'>http://www.contravex.com/2017/01/17/effective-government-regulation-of-bitcoin-in-china/</a> << » Contravex: A blog by Pete Dushenski - Effective government regulation. Of Bitcoin. In China. </font></td>
<td><font color="gray">[<a id="2230171" href="#2230171">01:34</a>]</font></td>
</tr>
<tr>
<td><b>mats:</b></td>
<td class="breakup"> also, i learned of 'Amish erotica' today: <a href="http://www.newsweek.com/2015/05/08/fifty-shades-amish-strange-genre-romance-novel-324940.html" target=\'_blank\'>http://www.newsweek.com/2015/05/08/fifty-shades-amish-strange-genre-romance-novel-324940.html</a> </td>
<td><font color="gray">[<a id="2230172" href="#2230172">01:34</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> mats aha. </td>
<td><font color="gray">[<a id="2230173" href="#2230173">08:10</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> "I am a female incel. In 3 weeks I will be a 25 year old virgin. A socially anxious, insecure, overweight, suicidal, complete failure. I'm going to die a kissless virgin. I will always be poor, always lack traditional beauty, always be an obtuse person. Intelligence and grace will never come naturally. And despite years of positivity about myself and with some idea that I was unique and beautiful in my own way, I realize-- th </td>
<td><font color="gray">[<a id="2230174" href="#2230174">08:25</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> at was denial and delusion. I am a genetic mistake. I'm a complete waste. I am disgusting. Here to forever be the "duff" (designated ugly fat friend). Equivalent to a pet dog." << riight, and i'm supposed to provide the gallons and bushels of wsod required to make this pass as in-character, somehow ? how! </td>
<td><font color="gray">[<a id="2230175" href="#2230175">08:25</a>]</font></td>
</tr>
<tr>
<td><b>mod6:</b></td>
<td class="breakup"> mornin' </td>
<td><font color="gray">[<a id="2230176" href="#2230176">09:59</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> hey therer </td>
<td><font color="gray">[<a id="2230177" href="#2230177">10:03</a>]</font></td>
</tr>
<tr>
<td><b>thestringpuller:</b></td>
<td class="breakup"> mats: yea. that's so people could mod the interface for raids and shit. </td>
<td><font color="gray">[<a id="2230178" href="#2230178">10:40</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> <a href="http://trilema.com/forum-logs-for-17-jan-2017#2230175" target=\'_blank\'>http://trilema.com/forum-logs-for-17-jan-2017#2230175</a> << what's the implausible part ? </td>
<td><font color="gray">[<a id="2230179" href="#2230179">11:05</a>]</font></td>
</tr>
<tr>
<td><font color="gray">a111:</font></td>
<td class="breakup"><font color="gray"> Logged on 2017-01-17 13:25 mircea_popescu: at was denial and delusion. I am a genetic mistake. I'm a complete waste. I am disgusting. Here to forever be the "duff" (designated ugly fat friend). Equivalent to a pet dog." << riight, and i'm supposed to provide the gallons and bushels of wsod required to make this pass as in-character, somehow ? how! </font></td>
<td><font color="gray">[<a id="2230180" href="#2230180">11:05</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> suppose you met an ant one day, and this and told you in morse code its whole genome. </td>
<td><font color="gray">[<a id="2230181" href="#2230181">11:06</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> thereby you know you're asleep and dreaming. because the machinery that'd allow the item know its dna precludes it being ant-shaped and the culture it requires to know morse precludes it being ant-substance. </td>
<td><font color="gray">[<a id="2230182" href="#2230182">11:07</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> ants don't eat pistols though. people -- do. so sometimes they decode enough of 'own dna'. </td>
<td><font color="gray">[<a id="2230183" href="#2230183">11:07</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> and if they do, they go put it on reddit. </td>
<td><font color="gray">[<a id="2230184" href="#2230184">11:09</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> you know, every guy in kresty dreams of one day becoming basically like us, with enough money to buy a round for everyone. and they think that if they did get the money, that's how they used it. </td>
<td><font color="gray">[<a id="2230185" href="#2230185">11:09</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> yet, from experience, loads of kresty alumni do get rich eventually </td>
<td><font color="gray">[<a id="2230186" href="#2230186">11:10</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> yet how many rounds are bought ? </td>
<td><font color="gray">[<a id="2230187" href="#2230187">11:10</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> perhaps better than harvard. </td>
<td><font color="gray">[<a id="2230188" href="#2230188">11:10</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> indeed. </td>
<td><font color="gray">[<a id="2230189" href="#2230189">11:10</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> there are indeed folx who quietly and decorously eat pistol, like gentlemen, without any reddit component. but because no reddit, there is no trivial telescope to see them through, and they do not leave 'good example' to those who must learn. </td>
<td><font color="gray">[<a id="2230190" href="#2230190">11:13</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> iirc mircea_popescu had an article about this. </td>
<td><font color="gray">[<a id="2230191" href="#2230191">11:13</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> it's altogether woman in question is going to eat anything. she's just as uterinely productive as any other viteline that she chooses to "have problems" is ultimately uninteresting. </td>
<td><font color="gray">[<a id="2230192" href="#2230192">11:14</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> altogether unlikely* </td>
<td><font color="gray">[<a id="2230193" href="#2230193">11:14</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> uterinely productive ? </td>
<td><font color="gray">[<a id="2230194" href="#2230194">11:16</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> "Step 2. The state will maintain a fund for buying 18yo females for the puporse of populating the breeder farms - " </td>
<td><font color="gray">[<a id="2230195" href="#2230195">11:16</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> i could think of many other animals i'd rather raise for meat </td>
<td><font color="gray">[<a id="2230196" href="#2230196">11:17</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> but that's just me. </td>
<td><font color="gray">[<a id="2230197" href="#2230197">11:17</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> well that's you, yeah. </td>
<td><font color="gray">[<a id="2230198" href="#2230198">11:17</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> o look, the uterine / viteline thing dun work in english. aaanyway. "any other bovine" i guess. </td>
<td><font color="gray">[<a id="2230199" href="#2230199">11:18</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> it'd be interesting to see what humans bred for 'long pig', 100+ generations, would look like. </td>
<td><font color="gray">[<a id="2230200" href="#2230200">11:19</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> in latin, vitellus (yolk, and such) comes from vitulus (bull calf). much like in german protein is "eggwhite" because... ALBUMIN </td>
<td><font color="gray">[<a id="2230201" href="#2230201">11:20</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> (yes, alb = white. in romanian and other languages) </td>
<td><font color="gray">[<a id="2230202" href="#2230202">11:20</a>]</font></td>
</tr>
<tr>
<td><b>thestringpuller:</b></td>
<td class="breakup"> asciilifeform: so. the more I read from people like Emin (a "respected" academic) the more sad I become that education is now a scam. maybe its true. can't beat stupid. </td>
<td><font color="gray">[<a id="2230203" href="#2230203">11:36</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> thestringpuller: who's that </td>
<td><font color="gray">[<a id="2230204" href="#2230204">12:18</a>]</font></td>
</tr>
<tr>
<td><b>thestringpuller:</b></td>
<td class="breakup"> <a href="http://hackingdistributed.com/2016/12/22/scaling-bitcoin-with-secure-hardware/" target=\'_blank\'>http://hackingdistributed.com/2016/12/22/scaling-bitcoin-with-secure-hardware/</a> << this asshole </td>
<td><font color="gray">[<a id="2230205" href="#2230205">12:19</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> snore. </td>
<td><font color="gray">[<a id="2230206" href="#2230206">12:19</a>]</font></td>
</tr>
<tr>
<td><b>thestringpuller:</b></td>
<td class="breakup"> It would be snore for me too if he wasn't a professor teaching our kids nonsense. </td>
<td><font color="gray">[<a id="2230207" href="#2230207">12:19</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> thestringpuller: try quitting reddit, it is better for you than even quitting cigarettes </td>
<td><font color="gray">[<a id="2230208" href="#2230208">12:20</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> srsly. </td>
<td><font color="gray">[<a id="2230209" href="#2230209">12:20</a>]</font></td>
</tr>
<tr>
<td><b>thestringpuller:</b></td>
<td class="breakup"> he's on more than just reddit. </td>
<td><font color="gray">[<a id="2230210" href="#2230210">12:20</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> quite the 'on more' also then. </td>
<td><font color="gray">[<a id="2230211" href="#2230211">12:20</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> *quit </td>
<td><font color="gray">[<a id="2230212" href="#2230212">12:20</a>]</font></td>
</tr>
<tr>
<td><b>thestringpuller:</b></td>
<td class="breakup"> quitting school? sounds better every day. </td>
<td><font color="gray">[<a id="2230213" href="#2230213">12:21</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> srsly mircea_popescu had a very good article, re how to treat charlatans </td>
<td><font color="gray">[<a id="2230214" href="#2230214">12:21</a>]</font></td>
</tr>
<tr>
<td><b>thestringpuller:</b></td>
<td class="breakup"> In Aldous Huxely's dystopia misinformation takes over real education. What are you left with when all the real people die off? </td>
<td><font color="gray">[<a id="2230215" href="#2230215">12:21</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> the cockroaches, the ants. </td>
<td><font color="gray">[<a id="2230216" href="#2230216">12:23</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> and quite possibly the real people died long, long ago. </td>
<td><font color="gray">[<a id="2230217" href="#2230217">12:24</a>]</font></td>
</tr>
<tr>
<td><b>trinque:</b></td>
<td class="breakup"> also left with your own hands, and whatever you've done with them </td>
<td><font color="gray">[<a id="2230218" href="#2230218">12:28</a>]</font></td>
</tr>
<tr>
<td><b>trinque:</b></td>
<td class="breakup"> not to mention that socialist education was a net loss </td>
<td><font color="gray">[<a id="2230219" href="#2230219">12:29</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> trinque has it. all that's left is your own hands. 'if not you, then who' etc. </td>
<td><font color="gray">[<a id="2230220" href="#2230220">12:29</a>]</font></td>
</tr>
<tr>
<td><b>thestringpuller:</b></td>
<td class="breakup"> dark ages 3.0 </td>
<td><font color="gray">[<a id="2230221" href="#2230221">12:30</a>]</font></td>
</tr>
<tr>
<td><b>* mircea_popescu</b></td>
<td class="breakup"> graced the subte (subway) today. the advertising is something else! "pizza #1 por cantidad the queso por porcion". </td>
<td><font color="gray">[<a id="2230222" href="#2230222">12:30</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> what the fuck, why not buy some cheese if that's the criteria. </td>
<td><font color="gray">[<a id="2230223" href="#2230223">12:31</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> "this grana padano slice is the "pizza" with highest cheese per portion content ever : 100%" </td>
<td><font color="gray">[<a id="2230224" href="#2230224">12:31</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> relatedly, i found that streets of odessa are all on 'google street', and discovered that ~every single cafe there is a mcdonalds now. </td>
<td><font color="gray">[<a id="2230225" href="#2230225">12:32</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> and also that there is a ~monument of steve jobs~ </td>
<td><font color="gray">[<a id="2230226" href="#2230226">12:32</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> heh. dorks. </td>
<td><font color="gray">[<a id="2230227" href="#2230227">12:32</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> unrelatedly, and BingoBoingo might find this interesting, i finally tamed one of the wildcats, but she died four days later. i dug grave at midnight, and wondered if neighbours would call police. but nobody did. </td>
<td><font color="gray">[<a id="2230228" href="#2230228">12:33</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> ( was ~6 wks. old beast, and already very sickly when found. fed antibiotic, liquid food, etc. but no dice. asciilifeform will not be changing professions and running a zoo, nor a circus. ) </td>
<td><font color="gray">[<a id="2230229" href="#2230229">12:35</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> but i still have the fleas. so i suppose i could open flea circus. </td>
<td><font color="gray">[<a id="2230230" href="#2230230">12:36</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> you still have to train thsoe. </td>
<td><font color="gray">[<a id="2230231" href="#2230231">12:37</a>]</font></td>
</tr>
<tr>
<td><b>Framedragger:</b></td>
<td class="breakup"> oh hm - commendable efforts asciilifeform, sad outcome :( </td>
<td><font color="gray">[<a id="2230232" href="#2230232">12:37</a>]</font></td>
</tr>
<tr>
<td><b>Framedragger:</b></td>
<td class="breakup"> <a href="https://archive.is/Z6JDu" target=\'_blank\'>https://archive.is/Z6JDu</a> << gabriel_laddel_p's "A Realistic Solution to the Education Problem", finally found time to read through it, not bad. guess it's been discussed before tho </td>
<td><font color="gray">[<a id="2230233" href="#2230233">12:53</a>]</font></td>
</tr>
<tr>
<td><b>Framedragger:</b></td>
<td class="breakup"> !#s realistic solution </td>
<td><font color="gray">[<a id="2230234" href="#2230234">12:53</a>]</font></td>
</tr>
<tr>
<td><font color="gray">a111:</font></td>
<td class="breakup"><font color="gray"> 10 results for "realistic solution", <a href="http://btcbase.org/log-search?q=realistic%20solution" target=\'_blank\'>http://btcbase.org/log-search?q=realistic%20solution</a> </font></td>
<td><font color="gray">[<a id="2230235" href="#2230235">12:53</a>]</font></td>
</tr>
<tr>
<td><b>Framedragger:</b></td>
<td class="breakup"> i liked "incidental sexpr", too >> <a href="http://btcbase.org/log/2015-09-09#1267282" target=\'_blank\'>http://btcbase.org/log/2015-09-09#1267282</a> </td>
<td><font color="gray">[<a id="2230236" href="#2230236">12:54</a>]</font></td>
</tr>
<tr>
<td><font color="gray">a111:</font></td>
<td class="breakup"><font color="gray"> Logged on 2015-09-09 05:01 trinque: started with math, said "what if we didn't have any order of operations except those explicitly stated, and also "wtf re: infix anyway?" </font></td>
<td><font color="gray">[<a id="2230237" href="#2230237">12:54</a>]</font></td>
</tr>
<tr>
<td><b>hanbot:</b></td>
<td class="breakup"> asciilifeform's feral cat appreciation nodule would prolly enjoy the pobrecitamos shore here (found only recently because super labyrinthine/unmarked pedestrian access). penniless 'fishermen' sit on concrete stumps and occasionally pull up ~minnow, cats abound, waiting for 'might as well throw it to the cats'. nevertheless they manage to be very skinny, and fairly confused. </td>
<td><font color="gray">[<a id="2230238" href="#2230238">12:56</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> lol pobrecitamo is quite an apt to describe the local retard. </td>
<td><font color="gray">[<a id="2230239" href="#2230239">12:57</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> "small big poorhead" </td>
<td><font color="gray">[<a id="2230240" href="#2230240">12:57</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> there are fishermen in buenos aires ?! </td>
<td><font color="gray">[<a id="2230241" href="#2230241">12:59</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> that water looked like bmore's, mostly sludge </td>
<td><font color="gray">[<a id="2230242" href="#2230242">12:59</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> sure. </td>
<td><font color="gray">[<a id="2230243" href="#2230243">12:59</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> how can anything live there. </td>
<td><font color="gray">[<a id="2230244" href="#2230244">12:59</a>]</font></td>
</tr>
<tr>
<td><b>hanbot:</b></td>
<td class="breakup"> "thing", "live" </td>
<td><font color="gray">[<a id="2230245" href="#2230245">12:59</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> here's a pro tip : the "vida de noche" etc fashionable resort is "mar del plata". from reports it's a) all fambly beach, very densely populated, NO PARTIES and b) deeply contaminated with sewage. they don't care. </td>
<td><font color="gray">[<a id="2230246" href="#2230246">13:00</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> will waddle through the characteristic ocre brown of sewage. soberania, argentina no es un pais pobre, etcetera. </td>
<td><font color="gray">[<a id="2230247" href="#2230247">13:00</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> mircea_popescu: my last summer near the black sea, there was ~no beach, closed, sewage. </td>
<td><font color="gray">[<a id="2230248" href="#2230248">13:00</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> you should see the riverfront here. miles of what anywhere else would be primo waterfront real estate, covered in old garbage. </td>
<td><font color="gray">[<a id="2230249" href="#2230249">13:01</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> MILES. </td>
<td><font color="gray">[<a id="2230250" href="#2230250">13:01</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> hanbot: no wonder the cats are thin, if they eat sludgefish </td>
<td><font color="gray">[<a id="2230251" href="#2230251">13:01</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> no development in sight, 100 feet to a highway. they put the fucking highway by the ~best land in town. </td>
<td><font color="gray">[<a id="2230252" href="#2230252">13:01</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> i don't think the depths of argentina imbecility can either be comprehended or described withouy a multi-year commitment. it's just a different planet down here. </td>
<td><font color="gray">[<a id="2230253" href="#2230253">13:02</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> mircea_popescu: t. dalrymple once wrote about a beach in liberia, where the locals would not even bother to build a latrine, just shat in the sand </td>
<td><font color="gray">[<a id="2230254" href="#2230254">13:02</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> so perhaps similar. </td>
<td><font color="gray">[<a id="2230255" href="#2230255">13:02</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> anyone seriously looking for practical proof re the whole race-intelligence nonsense is invited to spend some time in buenos aires doing anything. start a bakery, i don't care. </td>
<td><font color="gray">[<a id="2230256" href="#2230256">13:03</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> the ivy league of argentina is not qualified to populate san quentin. </td>
<td><font color="gray">[<a id="2230257" href="#2230257">13:03</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> they're all white, but without exception the stupidest people i ever met. </td>
<td><font color="gray">[<a id="2230258" href="#2230258">13:03</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> and i met 1980s russian proletariat and whatnot. </td>
<td><font color="gray">[<a id="2230259" href="#2230259">13:04</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> mircea_popescu: i saw quite a few old-fashioned greasy mechanic shops on the streets of b-a </td>
<td><font color="gray">[<a id="2230260" href="#2230260">13:04</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> and my own mechanic here in monkeystan is from b-a, incidentally. </td>
<td><font color="gray">[<a id="2230261" href="#2230261">13:04</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> and i saw a bunch of parrots squeaking reveille. </td>
<td><font color="gray">[<a id="2230262" href="#2230262">13:04</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> so perhaps that's one surviving culture. </td>
<td><font color="gray">[<a id="2230263" href="#2230263">13:04</a>]</font></td>
</tr>
<tr>
<td><b>* hanbot</b></td>
<td class="breakup"> was also harassed by uppity old women while trying to feed actual salmon scraps to local feline. it's enlightening, inasmuch as one realizes places that kinda suck for humans really suck for animals. you'd kinda hope cat > zombie but it just doesn't work out that way. </td>
<td><font color="gray">[<a id="2230264" href="#2230264">13:05</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> asciilifeform no, it most pointedly it's not. see the noise discussion, where was it </td>
<td><font color="gray">[<a id="2230265" href="#2230265">13:05</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> i bet mircea_popescu could have his 'chaika' fixed somewhere in b-a </td>
<td><font color="gray">[<a id="2230266" href="#2230266">13:05</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> <a href="http://btcbase.org/log/2016-12-01#1576008" target=\'_blank\'>http://btcbase.org/log/2016-12-01#1576008</a> </td>
<td><font color="gray">[<a id="2230267" href="#2230267">13:05</a>]</font></td>
</tr>
<tr>
<td><font color="gray">a111:</font></td>
<td class="breakup"><font color="gray"> Logged on 2016-12-01 20:49 mircea_popescu: it was long a low level puzzle this, "seriously, 2010 toyota sounds LIKE THAT ?!" </font></td>
<td><font color="gray">[<a id="2230268" href="#2230268">13:05</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> mircea_popescu: orc mechanics naturally don't use original parts. </td>
<td><font color="gray">[<a id="2230269" href="#2230269">13:06</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> (where would they get'em ?) </td>
<td><font color="gray">[<a id="2230270" href="#2230270">13:06</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> hanbot: what did the old woman want </td>
<td><font color="gray">[<a id="2230271" href="#2230271">13:07</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> in the fucking shop ? </td>
<td><font color="gray">[<a id="2230272" href="#2230272">13:07</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> orc mechanics DO ATTEMPT TO CHARGE WHAT ACTUAL MECHANICS DO! </td>
<td><font color="gray">[<a id="2230273" href="#2230273">13:07</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> they think this is a country! that they should get rents! and salaries! and be paid! holy shit ? </td>
<td><font color="gray">[<a id="2230274" href="#2230274">13:07</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> what can i say, i live in one of those also. </td>
<td><font color="gray">[<a id="2230275" href="#2230275">13:08</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> <a href="http://trilema.com/2017/postcards-from-retardistan/" target=\'_blank\'>http://trilema.com/2017/postcards-from-retardistan/</a> << 2nd picture. orc real estate agent steals the windows and tries to charge what they do in miami. they're not simply orcs, not here. </td>
<td><font color="gray">[<a id="2230276" href="#2230276">13:08</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> "why shouldn't this be just like miami ? it's hot and by the water!" "yes, but miami is mostly party sluts and rich old jewish ex-party-sluts wheres buenos aires is the world's largest open air feebleminded reservation." "so ?" </td>
<td><font color="gray">[<a id="2230277" href="#2230277">13:09</a>]</font></td>
</tr>
<tr>
<td><b>hanbot:</b></td>
<td class="breakup"> asciilifeform: she wanted to be important, i imagine. you shouldn't feed fish to cats, don'tchaknow, cause what if that's not what's good for them. this, ofc, buried in metric fuckton of babbling, todo biens, etc. i'm honestly ashamed i didn't outright sock her one. i end up questioning whether i've a moral imperative to massacre almost every time i venture out by now. </td>
<td><font color="gray">[<a id="2230278" href="#2230278">13:11</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> hanbot: at least in this respect, my monkeystan wins. my neighbours actually compete with me for cat-restaurant attraction. </td>
<td><font color="gray">[<a id="2230279" href="#2230279">13:13</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> but some folx get carried away, my next door old woman turned out to be 'cat hoarder', ended up in hospital somehow, and her relatives called in the d00dz in gas masks and chem suits </td>
<td><font color="gray">[<a id="2230280" href="#2230280">13:14</a>]</font></td>
</tr>
<tr>
<td><b>hanbot:</b></td>
<td class="breakup"> fairly difficult for me to judge which state of affairs is sorrier </td>
<td><font color="gray">[<a id="2230281" href="#2230281">13:16</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> it's a thing with old women. classical witch with her cat is not exactly coincidental. </td>
<td><font color="gray">[<a id="2230282" href="#2230282">13:17</a>]</font></td>
</tr>
<tr>
<td><b>hanbot:</b></td>
<td class="breakup"> why is it always cats, anyway? why not...butterflies? crystals? succulents? </td>
<td><font color="gray">[<a id="2230283" href="#2230283">13:18</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> cat is a preditor. the old woman is ~ a farmed animal, roughly in the sense of the afids ants keep. </td>
<td><font color="gray">[<a id="2230284" href="#2230284">13:19</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> yes there's a lot of cats to the crone which superficially contrasts the lots of sheep to the shepherd, but that is driven by the relative size not the actual relationship. </td>
<td><font color="gray">[<a id="2230285" href="#2230285">13:19</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> weasels lick blood and cats lick old women. </td>
<td><font color="gray">[<a id="2230286" href="#2230286">13:19</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> now this is interesting, and has weight, because i actually envied the old woman her ability to get the cats to come indoors </td>
<td><font color="gray">[<a id="2230287" href="#2230287">13:20</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> you don't look like a sheep, even if in costume, mr wolfislav. </td>
<td><font color="gray">[<a id="2230288" href="#2230288">13:20</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> evidently. </td>
<td><font color="gray">[<a id="2230289" href="#2230289">13:20</a>]</font></td>
</tr>
<tr>
<td><b>trinque:</b></td>
<td class="breakup"> gotta wonder what role toxoplasmosis plays in the hoarding. </td>
<td><font color="gray">[<a id="2230290" href="#2230290">13:27</a>]</font></td>
</tr>
<tr>
<td><b>* trinque</b></td>
<td class="breakup"> admits *wanting to* find that infection drove these creatures to live in animal shit </td>
<td><font color="gray">[<a id="2230291" href="#2230291">13:28</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> the problems of the cats are a scale model of the problems of the inhabitants of modern socialist monkeystans </td>
<td><font color="gray">[<a id="2230292" href="#2230292">13:29</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> they congregate, unnaturally, around the concentrated (and typically quite unhealthy) food sources </td>
<td><font color="gray">[<a id="2230293" href="#2230293">13:30</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> just like city dwellers. </td>
<td><font color="gray">[<a id="2230294" href="#2230294">13:30</a>]</font></td>
</tr>
<tr>
<td><b>trinque:</b></td>
<td class="breakup"> "thing that ought to have died" </td>
<td><font color="gray">[<a id="2230295" href="#2230295">13:31</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> when carnivorous beast lives in the forest, where it belongs, elementarily its population does not explode grotesquely as in old woman's basement etc. </td>
<td><font color="gray">[<a id="2230296" href="#2230296">13:32</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> (it will, as is well-known, cycle, but not to absurd density of 'hoarder') </td>
<td><font color="gray">[<a id="2230297" href="#2230297">13:33</a>]</font></td>
</tr>
<tr>
<td><b>* danielpbarron</b></td>
<td class="breakup"> has 1 tame and 5 wild felines </td>
<td><font color="gray">[<a id="2230298" href="#2230298">13:39</a>]</font></td>
</tr>
<tr>
<td><b>BingoBoingo:</b></td>
<td class="breakup"> <mircea_popescu> you should see the riverfront here. miles of what anywhere else would be primo waterfront real estate, covered in old garbage. << Just like Murican cities! </td>
<td><font color="gray">[<a id="2230299" href="#2230299">13:50</a>]</font></td>
</tr>
<tr>
<td><b>BingoBoingo:</b></td>
<td class="breakup"> <asciilifeform> unrelatedly, and BingoBoingo might find this interesting, i finally tamed one of the wildcats, but she died four days later. i dug grave at midnight, and wondered if neighbours would call police. but nobody did. << I usally bury dead critters found on premises as well. Just keep them out of the compost. </td>
<td><font color="gray">[<a id="2230300" href="#2230300">13:51</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> BingoBoingo: actually i found this one a few blocks away, on a walk. spent considerable money and effort in attempt to grow it. </td>
<td><font color="gray">[<a id="2230301" href="#2230301">13:52</a>]</font></td>
</tr>
<tr>
<td><b>BingoBoingo:</b></td>
<td class="breakup"> Ah, I usually don't see too incredibly young ones. Most often dead critters I find are smaller ones that seem to have been "cat entertainment" </td>
<td><font color="gray">[<a id="2230302" href="#2230302">13:56</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> mircea_popescu: in quite other non-news, apparently there is a ru clone ( <a href="http://oao-ka.ru/Vremennyj_katalog/Kanal_nye_shifratory_konfidecial_noj_informacii/APPARAT_ShIFROVANIJa_POTOKOV_CIFROVOJ_INFORMACII_SA295-1___KORD-KM__.htm" target=\'_blank\'>http://oao-ka.ru/Vremennyj_katalog/Kanal_nye_shifratory_konfidecial_noj_informacii/APPARAT_ShIFROVANIJa_POTOKOV_CIFROVOJ_INFORMACII_SA295-1___KORD-KM__.htm</a> ) of usg's 'taclane' channel cipherator. </td>
<td><font color="gray">[<a id="2230303" href="#2230303">13:59</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> and it is even made by modern descendant of solzhenitsyn's famous employer. </td>
<td><font color="gray">[<a id="2230304" href="#2230304">13:59</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> in other non-news, <a href="http://phuctor.nosuchlabs.com/gpgfp/824E48D75383F65BF17D4C0103619CA0085F767E" target=\'_blank\'>http://phuctor.nosuchlabs.com/gpgfp/824E48D75383F65BF17D4C0103619CA0085F767E</a> << a very, very busy usg beaver. </td>
<td><font color="gray">[<a id="2230305" href="#2230305">17:14</a>]</font></td>
</tr>
<tr>
<td><b>Framedragger:</b></td>
<td class="breakup"> <a href="https://www.nytimes.com/2017/01/17/us/politics/obama-commutes-bulk-of-chelsea-mannings-sentence.html?_r=0" target=\'_blank\'>https://www.nytimes.com/2017/01/17/us/politics/obama-commutes-bulk-of-chelsea-mannings-sentence.html?_r=0</a> </td>
<td><font color="gray">[<a id="2230306" href="#2230306">17:29</a>]</font></td>
</tr>
<tr>
<td><b>trinque:</b></td>
<td class="breakup"> is this precedent for chopped off dick == pardoned ? </td>
<td><font color="gray">[<a id="2230307" href="#2230307">17:35</a>]</font></td>
</tr>
<tr>
<td><b>trinque:</b></td>
<td class="breakup"> seems entirely apt. </td>
<td><font color="gray">[<a id="2230308" href="#2230308">17:35</a>]</font></td>
</tr>
<tr>
<td><b>trinque:</b></td>
<td class="breakup"> they should streamline this into a state-sanctioned rehabilitation program. </td>
<td><font color="gray">[<a id="2230309" href="#2230309">17:37</a>]</font></td>
</tr>
<tr>
<td><b>Framedragger:</b></td>
<td class="breakup"> meh. dropping the whole 'all this is mayongenderism omg' forum kerfuffle, you think gender played an actual part here? :) </td>
<td><font color="gray">[<a id="2230310" href="#2230310">17:37</a>]</font></td>
</tr>
<tr>
<td><b>Framedragger:</b></td>
<td class="breakup"> dropping for a bitŪ </td>
<td><font color="gray">[<a id="2230311" href="#2230311">17:37</a>]</font></td>
</tr>
<tr>
<td><b>Framedragger:</b></td>
<td class="breakup"> for a bit* </td>
<td><font color="gray">[<a id="2230312" href="#2230312">17:38</a>]</font></td>
</tr>
<tr>
<td><b>trinque:</b></td>
<td class="breakup"> I don't think you realize the politics behind it. </td>
<td><font color="gray">[<a id="2230313" href="#2230313">17:38</a>]</font></td>
</tr>
<tr>
<td><b>trinque:</b></td>
<td class="breakup"> !#s dulap </td>
<td><font color="gray">[<a id="2230314" href="#2230314">17:38</a>]</font></td>
</tr>
<tr>
<td><font color="gray">a111:</font></td>
<td class="breakup"><font color="gray"> 210 results for "dulap", <a href="http://btcbase.org/log-search?q=dulap" target=\'_blank\'>http://btcbase.org/log-search?q=dulap</a> </font></td>
<td><font color="gray">[<a id="2230315" href="#2230315">17:38</a>]</font></td>
</tr>
<tr>
<td><b>trinque:</b></td>
<td class="breakup"> ^ oblig </td>
<td><font color="gray">[<a id="2230316" href="#2230316">17:38</a>]</font></td>
</tr>
<tr>
<td><b>* asciilifeform</b></td>
<td class="breakup"> pictures a future mircea_popescu novella, 'dulap archipelago' </td>
<td><font color="gray">[<a id="2230317" href="#2230317">17:38</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> o hai </td>
<td><font color="gray">[<a id="2230318" href="#2230318">17:39</a>]</font></td>
</tr>
<tr>
<td><b>trinque:</b></td>
<td class="breakup"> afternoon! </td>
<td><font color="gray">[<a id="2230319" href="#2230319">17:40</a>]</font></td>
</tr>
<tr>
<td><b>Framedragger:</b></td>
<td class="breakup"> will honestly review. i don't want to appear completely naive here </td>
<td><font color="gray">[<a id="2230320" href="#2230320">17:40</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> trinque effects of toxoplasmosis is somewhat well studied. for one thing it's very prevalent. for the other, it DOES affect rat behaviour. </td>
<td><font color="gray">[<a id="2230321" href="#2230321">17:41</a>]</font></td>
</tr>
<tr>
<td><b>Framedragger:</b></td>
<td class="breakup"> i have to share this 'cause it's lulzy: <a href="http://wotpaste.cascadianhacker.com/pastes/at3ds/?raw=true" target=\'_blank\'>http://wotpaste.cascadianhacker.com/pastes/at3ds/?raw=true</a> </td>
<td><font color="gray">[<a id="2230322" href="#2230322">17:41</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> but <a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2526142/" target=\'_blank\'>https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2526142/</a> etc </td>
<td><font color="gray">[<a id="2230323" href="#2230323">17:41</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> survey study, "Consistent and significant differences in Cattell's personality factors were found between Toxoplasma-infected and -uninfected subjects in 9 of 11 studies, and these differences were not the same for men and women." </td>
<td><font color="gray">[<a id="2230324" href="#2230324">17:42</a>]</font></td>
</tr>
<tr>
<td><b>trinque:</b></td>
<td class="breakup"> also <a href="http://btcbase.org/log/2015-10-24#1307026" target=\'_blank\'>http://btcbase.org/log/2015-10-24#1307026</a> </td>
<td><font color="gray">[<a id="2230325" href="#2230325">17:43</a>]</font></td>
</tr>
<tr>
<td><font color="gray">a111:</font></td>
<td class="breakup"><font color="gray"> Logged on 2015-10-24 19:25 mircea_popescu: <a href="http://thelastpsychiatrist.com/2010/06/another_diagnosis_of_schizophr.html" target=\'_blank\'>http://thelastpsychiatrist.com/2010/06/another_diagnosis_of_schizophr.html</a> >> quite worth a read. </font></td>
<td><font color="gray">[<a id="2230326" href="#2230326">17:43</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> oh speaking of schizophrenia, anyone seen the film i watched last night and which is quite excellent on the topic but i can't rememeber its name ? </td>
<td><font color="gray">[<a id="2230327" href="#2230327">17:44</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> mircea_popescu: i read this (iirc, this very one) when it came out, and still question the arrow of causality here </td>
<td><font color="gray">[<a id="2230328" href="#2230328">17:44</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> ah, i'm not proposing anything of the sort, just giving some "stuff related", ie, that he's not entirely on his own </td>
<td><font color="gray">[<a id="2230329" href="#2230329">17:44</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> (entirely plausibly, those with the described characteristics are simply more likely to pick up the microbe, rather than vice-versa) </td>
<td><font color="gray">[<a id="2230330" href="#2230330">17:45</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> or the cats. yep. </td>
<td><font color="gray">[<a id="2230331" href="#2230331">17:45</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> and in other news, after #chainstate ended up making people learn lisp, #eulora is now making people learn c </td>
<td><font color="gray">[<a id="2230332" href="#2230332">17:49</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> everyone oughta know c. </td>
<td><font color="gray">[<a id="2230333" href="#2230333">17:50</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> just like knowing how to use and clean kalash. </td>
<td><font color="gray">[<a id="2230334" href="#2230334">17:50</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> it is an eternal thing. </td>
<td><font color="gray">[<a id="2230335" href="#2230335">17:50</a>]</font></td>
</tr>
<tr>
<td><b>jurov:</b></td>
<td class="breakup"> except this kalash is c++ </td>
<td><font color="gray">[<a id="2230336" href="#2230336">17:51</a>]</font></td>
</tr>
<tr>
<td><b>jurov:</b></td>
<td class="breakup"> and the issue is null dereference in destructor </td>
<td><font color="gray">[<a id="2230337" href="#2230337">17:52</a>]</font></td>
</tr>
<tr>
<td><b>asciilifeform:</b></td>
<td class="breakup"> aaah, that's not a kalash at all, but american m-whatever-with-shit-bolted-on-the-sides. </td>
<td><font color="gray">[<a id="2230338" href="#2230338">17:52</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> stop hatein! </td>
<td><font color="gray">[<a id="2230339" href="#2230339">17:52</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> crazy shit stick! </td>
<td><font color="gray">[<a id="2230340" href="#2230340">17:52</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> what wrong with you! </td>
<td><font color="gray">[<a id="2230341" href="#2230341">17:52</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> dude is learning difference between data and pointer to data, it's all good. </td>
<td><font color="gray">[<a id="2230342" href="#2230342">17:52</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> oh and also "danielpbarron> why would adding a declaration like this cause it to crash? apparently some other change i made that works without crashing on its own conflicts with this somehow". </td>
<td><font color="gray">[<a id="2230343" href="#2230343">17:54</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> i'd say it's very good crash course. </td>
<td><font color="gray">[<a id="2230344" href="#2230344">17:54</a>]</font></td>
</tr>
<tr>
<td><b>Framedragger:</b></td>
<td class="breakup"> truns out `diff` and/or version control are useful :p "what shit did i change..." </td>
<td><font color="gray">[<a id="2230345" href="#2230345">17:55</a>]</font></td>
</tr>
<tr>
<td><b>danielpbarron:</b></td>
<td class="breakup"> yes i'm looking at the diff now </td>
<td><font color="gray">[<a id="2230346" href="#2230346">17:56</a>]</font></td>
</tr>
<tr>
<td><b>Framedragger:</b></td>
<td class="breakup"> cool stuff. </td>
<td><font color="gray">[<a id="2230347" href="#2230347">17:56</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> danielpbarron: what, your diffulator doesn't tell you about c declaration conflicts? </td>
<td><font color="gray">[<a id="2230348" href="#2230348">17:56</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> he's new omaigerd. give him some space. </td>
<td><font color="gray">[<a id="2230349" href="#2230349">17:57</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> why aren't you using llvm to crap out asts and diff those? </td>
<td><font color="gray">[<a id="2230350" href="#2230350">17:57</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> i have more bad ideas if you want some </td>
<td><font color="gray">[<a id="2230351" href="#2230351">17:57</a>]</font></td>
</tr>
<tr>
<td><b>Framedragger:</b></td>
<td class="breakup"> SafeSpace<SafePointer> space() ? </td>
<td><font color="gray">[<a id="2230352" href="#2230352">17:58</a>]</font></td>
</tr>
<tr>
<td><b>mircea_popescu:</b></td>
<td class="breakup"> this should be expressed in comic panel form </td>
<td><font color="gray">[<a id="2230353" href="#2230353">17:58</a>]</font></td>
</tr>
<tr>
<td><b>jurov:</b></td>
<td class="breakup"> xkcd surely has one </td>
<td><font color="gray">[<a id="2230354" href="#2230354">17:58</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> wait no what you really want to do is compile the binaries pipe them through xxd and into vi where you can compare them bitwise </td>
<td><font color="gray">[<a id="2230355" href="#2230355">17:58</a>]</font></td>
</tr>
<tr>
<td><b>Framedragger:</b></td>
<td class="breakup"> ben_vulpes: admit, you just read about this on HN </td>
<td><font color="gray">[<a id="2230356" href="#2230356">17:59</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> or hm maybe store them as rows in postgres </td>
<td><font color="gray">[<a id="2230357" href="#2230357">17:59</a>]</font></td>
</tr>
<tr>
<td><b>Framedragger:</b></td>
<td class="breakup"> that google girl did it </td>
<td><font color="gray">[<a id="2230358" href="#2230358">17:59</a>]</font></td>
</tr>
<tr>
<td><b>ben_vulpes:</b></td>
<td class="breakup"> Framedragger: it's called a "topical reference" </td>