< 1570493047 542872 :tromp!~tromp@2a02:a210:1585:3200:a55c:6be6:8fc7:5784 JOIN :#esoteric < 1570493366 519596 :tromp!~tromp@2a02:a210:1585:3200:a55c:6be6:8fc7:5784 QUIT :Ping timeout: 276 seconds < 1570494119 526946 :tromp!~tromp@2a02:a210:1585:3200:8def:2017:daa:a0d8 JOIN :#esoteric < 1570494419 559691 :tromp!~tromp@2a02:a210:1585:3200:8def:2017:daa:a0d8 QUIT :Ping timeout: 276 seconds < 1570495015 865890 :ais523_!93bcc3da@gateway/web/cgi-irc/kiwiirc.com/ip.147.188.195.218 JOIN :#esoteric < 1570495082 131091 :ais523_!93bcc3da@gateway/web/cgi-irc/kiwiirc.com/ip.147.188.195.218 PRIVMSG #esoteric : the problem is that it used flow control pins as data pins... which if you have a real serial port, that's fine ← if you're doing that, it isn't a serial port, it's a parallel port < 1570495232 776578 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :ais523_: well, except that the actual TI protocol is serial, isn't it < 1570495234 563415 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :clock + data? < 1570495264 651491 :ais523_!93bcc3da@gateway/web/cgi-irc/kiwiirc.com/ip.147.188.195.218 PRIVMSG #esoteric :I guess you could use the flow control pins as data pins, but not the actual data pins, but that seems perverse < 1570495282 34262 :ais523_!93bcc3da@gateway/web/cgi-irc/kiwiirc.com/ip.147.188.195.218 PRIVMSG #esoteric :if you're using two different pins to send data simultaneously, though, it isn't a serial connection by definition :-) < 1570495298 24544 :imode!~linear@unaffiliated/imode PRIVMSG #esoteric :bits go one at a time down a single wire. < 1570495306 904624 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :so it's using a "serial port" (as in 8250 compatible UART on a PC) in the common manner of a parallel port (GPIO bitbang) to implement a serial protocol :P < 1570495329 452845 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :ais523_: SPI is clock + bidirectional data, 3 pins (4 including a chip select) and that's universally considered serial < 1570495359 774349 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :Hooloovo0: btw the PIClink here seems to be an example of what I was saying re: programming a micro to act like a grey link http://merthsoft.com/linkguide/cable.html < 1570495469 763306 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :anyway i'm not clear on what the hardware level link protocol is < 1570495484 488794 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :The TI link protocol is pretty special. < 1570495490 526550 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :It's an async thing. < 1570495584 597937 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :When you want to send a bit, you pull one wire to zero, and the receiving end acknowledges by pulling the other wire to zero. < 1570495596 597268 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Which wire you pull determines if it was a 0 or a 1 bit. < 1570495611 661480 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :So there's no clock involved, it runs at whatever speed it runs. < 1570495631 334964 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Disclaimer: all I know about this probably came from http://paperlined.org/EE/microcontrollers/pic/projects/portable_VT_terminal/ti_86_link_port/link86all.htm -- at least that page looks familiar. < 1570495655 491102 :ais523_!93bcc3da@gateway/web/cgi-irc/kiwiirc.com/ip.147.188.195.218 PRIVMSG #esoteric : ais523_: SPI is clock + bidirectional data, 3 pins (4 including a chip select) and that's universally considered serial ← sorry, should have added "in the same direction" to that < 1570495675 112148 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :fizzie: huh, weird. < 1570495689 831510 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :cool, this has the info I was looking for < 1570495716 611070 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :kmc: Well, it does let you do it all in software on CPUs that might run at rather uncontrolled speeds, without having to have an UART or whatnot. < 1570495863 683980 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :yeah < 1570495867 89875 :ais523_!93bcc3da@gateway/web/cgi-irc/kiwiirc.com/ip.147.188.195.218 PRIVMSG #esoteric :hmm, that's an interesting way to fit the normal three wires that an async connection uses (data + strobe + ack) into two, although they both have to be drivable from both ends < 1570495867 448626 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :it seems pretty clever < 1570495878 25410 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :it also allows you to immediately tell if the other side is present < 1570495911 60209 :ais523_!93bcc3da@gateway/web/cgi-irc/kiwiirc.com/ip.147.188.195.218 PRIVMSG #esoteric :I assume that after sending a bit, then the sender undoes their pull, then the recipient undoes their pull, to keep the connection as delay-insensitive < 1570495932 83373 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :so i would say this is still serial because it transfers one bit of information at a time, even though it uses two wires to do it < 1570495937 579245 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :ACTION shrugs < 1570495955 184766 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :and yeah, it seems this allows the receiving end to slow down the sender when necessary < 1570495975 648123 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :effectively negotiating a baud rate which is the slower of what the two sides want < 1570495979 882184 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :it's actually very clever < 1570495987 238531 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I might even use this sometime in one of my own projects < 1570496005 808698 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I have used Manchester code for something < 1570496034 604630 :ais523_!93bcc3da@gateway/web/cgi-irc/kiwiirc.com/ip.147.188.195.218 PRIVMSG #esoteric :throughout my PhD I was working on a compiler to hardware which uses a delay-insensitive representation internally for most of the compilation process < 1570496045 794442 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :which is synchronous, so the bit times have to be roughly the same, but it has clock recovery so no precise absolute frequency reference is required < 1570496052 196938 :ais523_!93bcc3da@gateway/web/cgi-irc/kiwiirc.com/ip.147.188.195.218 PRIVMSG #esoteric :(for much the same reason that compilers to software use SSA or similar normal forms; you don't want to care about timing details until the compilation is finished) < 1570496057 422164 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :makes sense < 1570496072 741187 :ais523_!93bcc3da@gateway/web/cgi-irc/kiwiirc.com/ip.147.188.195.218 PRIVMSG #esoteric :so I ended up doing a lot of background reading on asynchronous circuitry < 1570496108 343544 :imode!~linear@unaffiliated/imode PRIVMSG #esoteric :there's a "bible" for asynchronous circuit design. < 1570496109 429836 :ais523_!93bcc3da@gateway/web/cgi-irc/kiwiirc.com/ip.147.188.195.218 PRIVMSG #esoteric :you nearly always need a separate wire for 0 bits and for 1 bits because you assume that the recipient can't tell which of two wires changed first < 1570496126 276164 :ais523_!93bcc3da@gateway/web/cgi-irc/kiwiirc.com/ip.147.188.195.218 PRIVMSG #esoteric :but normally, the acknowledgement would be on a third wire < 1570496127 906000 :imode!~linear@unaffiliated/imode PRIVMSG #esoteric :asynchronous pipelines are neat. I built one. < 1570496154 727450 :ais523_!93bcc3da@gateway/web/cgi-irc/kiwiirc.com/ip.147.188.195.218 PRIVMSG #esoteric :a big advantage of doing things that way is that you don't need to reset the logic levels after sending a bit, you just toggle the 0 wire or the 1 wire to send the bit < 1570496161 306615 :ais523_!93bcc3da@gateway/web/cgi-irc/kiwiirc.com/ip.147.188.195.218 PRIVMSG #esoteric :and the recipient toggles the ack wire to acknowledge < 1570496183 903245 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :this also reminds me of CAN a bit < 1570496185 469083 :imode!~linear@unaffiliated/imode PRIVMSG #esoteric :https://hatebin.com/huuywfgrqq save this as "pipeline.circ" and open it in http://www.cburch.com/logisim/ < 1570496185 763367 :ais523_!93bcc3da@gateway/web/cgi-irc/kiwiirc.com/ip.147.188.195.218 PRIVMSG #esoteric :imode: is this the famous "micropipelines" paper? < 1570496192 890974 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :it's open-collector and it has clock stretching sort of < 1570496200 938283 :imode!~linear@unaffiliated/imode PRIVMSG #esoteric :ais523_: sutherland? partially. there was a larger book. < 1570496208 621646 :ais523_!93bcc3da@gateway/web/cgi-irc/kiwiirc.com/ip.147.188.195.218 PRIVMSG #esoteric :the funny thing is, one of the references in that paper is dubious, and people keep copying it into their own reference lists without actually chasing the reference < 1570496221 256015 :imode!~linear@unaffiliated/imode PRIVMSG #esoteric :http://www2.imm.dtu.dk/pubdb/views/edoc_download.php/855/pdf/imm855.pdf this thing. < 1570496224 632683 :ais523_!93bcc3da@gateway/web/cgi-irc/kiwiirc.com/ip.147.188.195.218 PRIVMSG #esoteric :meaning that you have this book that's highly cited but almost nobody has actually read < 1570496237 183586 :imode!~linear@unaffiliated/imode PRIVMSG #esoteric :not surprised. < 1570496271 95324 :ais523_!93bcc3da@gateway/web/cgi-irc/kiwiirc.com/ip.147.188.195.218 PRIVMSG #esoteric :(the book was basically just being used as a surrogate source for a particular statement because the original source would have been very hard to get hold of at the time; however, the original source for the statement has since been digitised so it's much easier to find) < 1570496315 838697 :ais523_!93bcc3da@gateway/web/cgi-irc/kiwiirc.com/ip.147.188.195.218 PRIVMSG #esoteric :(and it's basically just a throwaway line in the book, rather than giving any additional context) < 1570496719 978548 :oerjan!oerjan@sprocket.nvg.ntnu.no JOIN :#esoteric < 1570497483 535832 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric : ok, so this channel is about esoteric hardware too now <-- pretty sure it's been that for a long time < 1570497935 454378 :ais523_!93bcc3da@gateway/web/cgi-irc/kiwiirc.com/ip.147.188.195.218 PRIVMSG #esoteric :programming isn't limited to software < 1570497972 931983 :ais523_!93bcc3da@gateway/web/cgi-irc/kiwiirc.com/ip.147.188.195.218 PRIVMSG #esoteric :although, the hardware meaning of "programming" normally means "to copy a program to" (where the program is usually software, but could be firmware or even a blueprint for making hardware) < 1570500160 27975 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :Hooloovo0: I'm signed up for the float tank at 11am tomorrow :) < 1570500384 587028 :ais523_!93bcc3da@gateway/web/cgi-irc/kiwiirc.com/ip.147.188.195.218 PRIVMSG #esoteric :hmm, so I guess "esoteric programming" in hardware would be updating the state of reconfigurable hardware via some ridiculous mechanism < 1570500391 256681 :ais523_!93bcc3da@gateway/web/cgi-irc/kiwiirc.com/ip.147.188.195.218 PRIVMSG #esoteric :such as waving magnets at it < 1570500401 735305 :imode!~linear@unaffiliated/imode PRIVMSG #esoteric :magnetized needle and a steady hand. < 1570500509 675086 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :hit it with a hammer < 1570502416 573381 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i'm pretty sure there's an old "real programmer" joke about that < 1570502454 537379 :pikhq!uid394595@gateway/web/irccloud.com/x-putygvflmnyxxsta PRIVMSG #esoteric :Probably a few. < 1570502456 749227 :ais523_!93bcc3da@gateway/web/cgi-irc/kiwiirc.com/ip.147.188.195.218 PRIVMSG #esoteric :there's an xkcd which may be either a) the joke you're thinking of or b) a parody of the joke you're thinking of < 1570502468 767839 :ais523_!93bcc3da@gateway/web/cgi-irc/kiwiirc.com/ip.147.188.195.218 PRIVMSG #esoteric :but I don't have xkcd numbers memorized < 1570502588 157024 :b_jonas!~x@catv-176-63-24-145.catv.broadband.hu PRIVMSG #esoteric :ok < 1570502602 21947 :imode!~linear@unaffiliated/imode PRIVMSG #esoteric :butterfly effect. < 1570502614 160606 :imode!~linear@unaffiliated/imode PRIVMSG #esoteric :https://www.xkcd.com/378/ < 1570502615 109550 :b_jonas!~x@catv-176-63-24-145.catv.broadband.hu PRIVMSG #esoteric :and I think you mean https://www.xkcd.com/378/ < 1570502626 76689 :b_jonas!~x@catv-176-63-24-145.catv.broadband.hu PRIVMSG #esoteric :argh you were faster < 1570502635 324879 :imode!~linear@unaffiliated/imode PRIVMSG #esoteric :ninja fingers. < 1570503862 557920 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :oh right < 1570504161 340586 :MDude!~MDude@c-174-55-101-236.hsd1.pa.comcast.net QUIT :Ping timeout: 265 seconds < 1570505369 377701 :ais523_!93bcc3da@gateway/web/cgi-irc/kiwiirc.com/ip.147.188.195.218 QUIT :Remote host closed the connection < 1570505922 719870 :Lord_of_Life_!~Lord@unaffiliated/lord-of-life/x-0885362 JOIN :#esoteric < 1570505993 447388 :Lord_of_Life!~Lord@unaffiliated/lord-of-life/x-0885362 QUIT :Ping timeout: 245 seconds < 1570506007 718903 :Lord_of_Life_!~Lord@unaffiliated/lord-of-life/x-0885362 NICK :Lord_of_Life < 1570506637 875319 :Hooloovo0!Hooloovoo@sorunome.de PRIVMSG #esoteric :kmc, merth's link guide should have the best info on that < 1570506654 224616 :Hooloovo0!Hooloovoo@sorunome.de PRIVMSG #esoteric :http://merthsoft.com/linkguide/hardware.html < 1570506729 719429 :Hooloovo0!Hooloovoo@sorunome.de PRIVMSG #esoteric :it's not really clock+data serial - it's more of a a send/ack serial < 1570506834 434474 :Hooloovo0!Hooloovoo@sorunome.de PRIVMSG #esoteric :but I guess ais253 left < 1570506853 621505 :imode!~linear@unaffiliated/imode PRIVMSG #esoteric :it's okay. this channel is logged. < 1570506876 908598 :imode!~linear@unaffiliated/imode PRIVMSG #esoteric :you can use lambdabot's @message feature to send a message to him as well. < 1570506883 186060 :Hooloovo0!Hooloovoo@sorunome.de PRIVMSG #esoteric :also cool re float tank < 1570506887 911499 :imode!~linear@unaffiliated/imode PRIVMSG #esoteric :@botslack < 1570506887 954849 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric ::) < 1570507200 353546 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :Hooloovo0: yeah I got the gist of it < 1570507214 491113 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :it's a clever solution really < 1570507218 623556 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I like it < 1570507400 872519 :ais523_!93bcc3da@gateway/web/cgi-irc/kiwiirc.com/ip.147.188.195.218 JOIN :#esoteric < 1570511303 213832 :ais523_!93bcc3da@gateway/web/cgi-irc/kiwiirc.com/ip.147.188.195.218 QUIT :Remote host closed the connection < 1570511595 970740 :sprocklem!~sprocklem@unaffiliated/sprocklem QUIT :Ping timeout: 252 seconds < 1570512546 549035 :sprocklem!~sprocklem@unaffiliated/sprocklem JOIN :#esoteric < 1570513597 936173 :tromp!~tromp@2a02:a210:1585:3200:8def:2017:daa:a0d8 JOIN :#esoteric < 1570513607 527563 :sprocklem!~sprocklem@unaffiliated/sprocklem QUIT :Ping timeout: 276 seconds < 1570513899 966288 :tromp!~tromp@2a02:a210:1585:3200:8def:2017:daa:a0d8 QUIT :Ping timeout: 264 seconds < 1570514392 375474 :sprocklem!~sprocklem@unaffiliated/sprocklem JOIN :#esoteric < 1570515570 869631 :hppavilion[1]!~omegasome@172.98.86.92 JOIN :#esoteric < 1570516550 879630 :Frater_EST!~adrianbib@wsip-68-15-198-210.ok.ok.cox.net JOIN :#esoteric < 1570516869 67281 :Frater_EST!~adrianbib@wsip-68-15-198-210.ok.ok.cox.net PART :#esoteric < 1570517820 348307 :sprocklem!~sprocklem@unaffiliated/sprocklem QUIT :Ping timeout: 265 seconds < 1570518456 887755 :sprocklem!~sprocklem@unaffiliated/sprocklem JOIN :#esoteric < 1570520232 596709 :tromp!~tromp@2a02:a210:1585:3200:8def:2017:daa:a0d8 JOIN :#esoteric < 1570520594 881243 :sprocklem!~sprocklem@unaffiliated/sprocklem QUIT :Ping timeout: 240 seconds < 1570520713 874576 :b_jonas!~x@catv-176-63-24-145.catv.broadband.hu QUIT :Quit: leaving < 1570521501 216561 :hppavilion[1]!~omegasome@172.98.86.92 QUIT :Remote host closed the connection < 1570521527 979427 :hppavilion[1]!~omegasome@172.98.86.92 JOIN :#esoteric < 1570522451 36165 :sprocklem!~sprocklem@unaffiliated/sprocklem JOIN :#esoteric < 1570523669 968723 :imode!~linear@unaffiliated/imode QUIT :Ping timeout: 246 seconds < 1570523957 8301 :sprocklem!~sprocklem@unaffiliated/sprocklem QUIT :Ping timeout: 240 seconds < 1570524028 599587 :sprocklem!~sprocklem@unaffiliated/sprocklem JOIN :#esoteric < 1570524397 597355 :sprocklem!~sprocklem@unaffiliated/sprocklem QUIT :Ping timeout: 250 seconds < 1570524508 810254 :sprocklem!~sprocklem@unaffiliated/sprocklem JOIN :#esoteric < 1570524541 792026 :oerjan!oerjan@sprocket.nvg.ntnu.no QUIT :Quit: Nite < 1570524787 597146 :Sgeo!~Sgeo@ool-18b982ad.dyn.optonline.net QUIT :Ping timeout: 250 seconds > 1570525143 100538 PRIVMSG #esoteric :14[[07Special:Log/delete14]]4 delete10 02 5* 03Ais523 5* 10deleted "[[02Hellborne10]]": Author request: abandoned idea, didn't get very far with design < 1570528235 536781 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf JOIN :#esoteric < 1570528240 125804 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :Hi I'm back < 1570528325 518478 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS < 1570528330 358969 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528332 393780 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528334 147722 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528335 707412 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528337 828231 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528349 958605 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :KRZYSZTOF SZEWCZYK CHUUUUUUUUUUUUJUUUUUUUUUUUUU < 1570528354 729759 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :WRÓCIŁEM < 1570528361 757081 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :KOCHAM CIĘ KOTKU < 1570528366 363829 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528378 819429 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :JAVASCRIPT ÜBER ALLES < 1570528382 338756 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :JAVASCRIPT ÜBER ALLES < 1570528385 933014 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :JAVASCRIPT ÜBER ALLES < 1570528387 913762 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528395 168891 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :SZEWCZYK CHUUUUUUUUUUUUJUUUUUUUUUUUUU < 1570528400 76974 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :SZEWCZYK CHUUUUUUUUUUUUJUUUUUUUUUUUUU < 1570528401 826135 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528403 317546 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528404 908584 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528406 827766 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528409 548855 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528412 303162 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528416 327289 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528418 268602 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528419 888505 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528421 486896 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528424 237193 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528426 30185 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528429 97670 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528430 795801 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528432 479584 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528434 266091 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528435 986405 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528437 686398 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528439 326341 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528440 951365 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528442 585858 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528444 145717 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528453 250646 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528454 625935 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528455 781676 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528456 964884 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528458 949369 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528460 113910 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528461 225569 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528462 220690 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528463 314191 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528464 432966 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528466 230092 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528480 413691 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528483 24275 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528485 152917 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528488 711607 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528490 615378 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528492 757093 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528494 636921 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528496 826583 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528498 627231 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528500 443780 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528502 260536 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528504 7267 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528504 516423 :arseniiv!~arseniiv@94.41.6.166.dynamic.ufanet.ru JOIN :#esoteric < 1570528508 801971 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528510 605064 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528512 301003 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528514 47453 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528515 827127 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528517 646954 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528519 478010 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528521 244711 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528522 909176 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528524 549441 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528526 228392 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528536 296984 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528538 148412 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528541 775722 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528543 467382 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528545 1080 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528546 546435 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528548 30680 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS 1,8JS < 1570528552 889265 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :JEEEEEEEEEBAAAAAAAĆ SZEEEEEEEEEEEWCZYYYYYYYKA < 1570528555 950325 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :JEEEEEEEEEBAAAAAAAĆ SZEEEEEEEEEEEWCZYYYYYYYKA < 1570528559 195832 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :JEEEEEEEEEBAAAAAAAĆ SZEEEEEEEEEEEWCZYYYYYYYKA < 1570528562 946566 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :JEEEEEEEEEBAAAAAAAĆ SZEEEEEEEEEEEWCZYYYYYYYKA < 1570528566 388375 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :JEEEEEEEEEBAAAAAAAĆ SZEEEEEEEEEEEWCZYYYYYYYKA < 1570528569 355396 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf PRIVMSG #esoteric :JEEEEEEEEEBAAAAAAAĆ SZEEEEEEEEEEEWCZYYYYYYYKA < 1570529008 561006 :hppavilion[1]!~omegasome@172.98.86.92 PRIVMSG #esoteric :What the fuck < 1570529028 198542 :hppavilion[1]!~omegasome@172.98.86.92 PRIVMSG #esoteric :ops? < 1570529306 340151 :szefczyk!~szewczyk@2a00:f41:1815:8005:eb08:7e4f:70b:ffbf QUIT :Remote host closed the connection < 1570532174 542306 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I though they'd gotten bored of that. < 1570532208 407538 :int-e!~noone@int-e.eu PRIVMSG #esoteric :I had the same hope. < 1570532234 856225 :int-e!~noone@int-e.eu PRIVMSG #esoteric :fizzie: Can you invite Sigyn? I think it should trigger on blatant repeated messages like that. < 1570532317 142100 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Let's give it a try. < 1570532338 559536 :ChanServ!ChanServ@services. MODE #esoteric +o :fizzie < 1570532340 413092 :Sigyn!sigyn@freenode/utility-bot/sigyn JOIN :#esoteric < 1570532340 449685 :Sigyn!sigyn@freenode/utility-bot/sigyn PRIVMSG #esoteric :** Warning: if there is any bot in #esoteric which should be exempted from Sigyn, contact staffers before it gets caught ** < 1570532349 85146 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :...well... < 1570532357 68537 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :That's a little scary. < 1570532361 325747 :fizzie!fis@unaffiliated/fizzie MODE #esoteric -o :fizzie < 1570532416 48033 :myname!~myname@ks300980.kimsufi.com PRIVMSG #esoteric :where to start < 1570532437 316917 :int-e!~noone@int-e.eu PRIVMSG #esoteric :hmm < 1570532509 89574 :int-e!~noone@int-e.eu PRIVMSG #esoteric :I guess esowiki is at risk? < 1570532536 964784 :int-e!~noone@int-e.eu PRIVMSG #esoteric :not sure about the rest, they usually just react and are not too repetetive. < 1570532550 792562 :int-e!~noone@int-e.eu PRIVMSG #esoteric :tricky. < 1570532557 175403 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Well, depends on what you ask them to do. < 1570532605 554594 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :zemhill_* can also repeat the same message over and over again, if someone's submitting stuff on the webs. Hmm. < 1570532730 95798 :int-e!~noone@int-e.eu PRIVMSG #esoteric :I'm kind of curious how this will/would play out. < 1570532840 145535 :myname!~myname@ks300980.kimsufi.com PRIVMSG #esoteric :it is not that uncommon that people ask the same trigger repeatedly, but i guess, that shouldn't be too often < 1570533076 952887 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Maybe I should talk to a staffer anyway. < 1570533104 148197 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Also, maybe I should register an account for HackEso. < 1570533122 972848 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 JOIN :#esoteric < 1570533206 199327 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :Is there a doc for that bot? It doesn't mention one in Taxonomy < 1570533250 967261 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I found relatively little information about it by Googling. < 1570533440 3476 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :it has a freenode/* cloak though, let me ask #freenode < 1570533715 586454 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :fizzie: " wib_jonas: the bot k-lines (and kills, in addition) on various triggers, most famously people repeating patterns" < 1570533721 793320 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :" so it most certainly does have side effects, and if the channel has official bots that could look a bit spammy, we should be informed so we can whitelist them before putting sigyn in the channel" < 1570533737 98782 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :fizzie: go to #freenode and talk to ops there < 1570533742 420958 :myname!~myname@ks300980.kimsufi.com PRIVMSG #esoteric :ah, good old fuchs < 1570533757 187904 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :fizzie: also, they admit that is ran by freenode < 1570533820 97902 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Yeah, I'm trying to get an account for HackEso and esowiki because I assume that'd be useful for whitelisting. < 1570533848 971694 :int-e!~noone@int-e.eu PRIVMSG #esoteric :fizzie: now I'm feeling bad for causing you work :/ < 1570533856 360376 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :(I think I'm just going to need to connect as them temporarily, since I don't think either has a great way of injecting raw text.) < 1570533945 840098 :int-e!~noone@int-e.eu PRIVMSG #esoteric :yeah at the very least you'll have to acquire the nick somehow < 1570533981 609210 :int-e!~noone@int-e.eu PRIVMSG #esoteric :but they also have to learn to register with nickserv on startup. < 1570534002 485421 :int-e!~noone@int-e.eu PRIVMSG #esoteric :well, authenticate < 1570534015 727678 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :There's the password approach, I think both of them can do that. < 1570534056 375058 :HackEso!~h@techne.zem.fi QUIT :Remote host closed the connection < 1570534193 460738 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Hm, well, I don't think multibot actually does passwords. I'll hack that in. < 1570534252 298725 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :fizzie: there are at least three ways to log in: (1) with PASSWD, (2) with NICKSERV ID , (3) with the CTCP extension. I can send details if you want later about how the CTCP thing works. < 1570534270 84984 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :each one sends password as cleartext, but that can be inside an ssl/tls connection in either case < 1570534345 542206 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I think that should maybe do it. < 1570534357 287599 :HackEso!~h@techne.zem.fi JOIN :#esoteric < 1570534368 907485 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Yes, that seems to have worked. < 1570534381 693406 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :I have old source code that implemented the CTCP login and worked at one point, though for freenode only and errors out on any other network < 1570534415 961448 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :HackEso is logged into nickserv as HackEso, or so the server claims < 1570534446 229816 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :we may have to part j-bot though < 1570534456 500724 :int-e!~noone@int-e.eu PRIVMSG #esoteric :wib_jonas: I've heard about SASL... but CTCP? < 1570534468 259559 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :int-e: sorry, it's SASL < 1570534477 468789 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :I'm talking off the top of my head because I'm a towkr < 1570534482 411499 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :CTCP is an unrelated thing < 1570534501 479547 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :it's SASL, which has so many S and L in its name that you'd think it uses some cryptographic challenge, but it doesn't < 1570534508 123294 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :rather confusing name < 1570534515 812580 :int-e!~noone@int-e.eu PRIVMSG #esoteric :Okay. CTCP is just a special kind of PRIVMSG so it seemed out of place. < 1570534522 779491 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :it just encodes the account name and password in base64 < 1570534523 548025 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Well, it can, right? There are SASL methods that involve crypto. < 1570534530 867774 :int-e!~noone@int-e.eu PRIVMSG #esoteric :ACTION uses CTCP all the time! < 1570534531 401143 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :FireFly: ping < 1570534547 271383 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Anyway, I think I'm fine with a TLS connection + PASS on connect. < 1570534575 333220 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :(The bouncer I use for myself + for fungot does SASL.) < 1570534575 447961 :fungot!~fungot@2a01:4b00:82bb:1341::2 PRIVMSG #esoteric :fizzie: keep in mind, but i'm sure you can < 1570534585 91715 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :FireFly: are you running j-bot? fizzie has invited Sigyn to #freenode . it's a bot ran by freenode that k-lines users who spam the channel < 1570534869 595121 :esowiki!~esowiki@techne.zem.fi JOIN :#esoteric < 1570534941 207592 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Okay, I think esowiki, fungot, HackEso, lambdabot are all registered now. < 1570534941 296762 :fungot!~fungot@2a01:4b00:82bb:1341::2 PRIVMSG #esoteric :fizzie: in fnord it only runs where ghc runs :) < 1570534968 8052 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :^prefixes < 1570534968 44280 :fungot!~fungot@2a01:4b00:82bb:1341::2 PRIVMSG #esoteric :Bot prefixes: fungot ^, HackEso `, EgoBot !, lambdabot @ or ?, thutubot +, metasepia ~, idris-bot ( , jconn ) , j-bot [ . < 1570535022 444900 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :fizzie: and you mentioned zemhill_________ too < 1570535054 954760 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Yes, I just don't want to touch that at this point. It's used very very little. < 1570535059 634506 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :yeah < 1570535077 719181 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :probably for the best < 1570535143 290770 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :So what's the normal rule for talking to Freenode ops, should I just pick a random one on the list or ask on the channel? < 1570535232 231817 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :fizzie: in this case, ask Fuchs on #freenode what to do since he already answered a question < 1570535258 414593 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :if it's not a secret thing, then asking on #freenode is the normal way < 1570535263 886898 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Right. < 1570535273 220503 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :but some operatorial things shouldn't be public, in which case you have to privmsg them < 1570535285 436321 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :like, if you want to mention specific details about the spammer < 1570535298 964977 :int-e!~noone@int-e.eu PRIVMSG #esoteric :Though the way #freenode is currently set up only staffers will see the messages anyway, I guess. < 1570535318 95553 :int-e!~noone@int-e.eu PRIVMSG #esoteric :(But their answers will be visible to all.) < 1570535324 300909 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Oh, that's interesting. < 1570535329 691508 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :int-e: no, it's not on +mz right now < 1570535334 713995 :int-e!~noone@int-e.eu PRIVMSG #esoteric :Huh, that's false... < 1570535345 957601 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :they do often switch it to +mz < 1570535346 406643 :int-e!~noone@int-e.eu PRIVMSG #esoteric :wib_jonas: Funny though I didn't see your question? Let me check again. < 1570535352 619525 :int-e!~noone@int-e.eu PRIVMSG #esoteric :wib_jonas: Or did you ask before I joined? < 1570535355 488720 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Right, it's that moderation thing. < 1570535360 151882 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :int-e: what question? < 1570535372 396730 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :question for what? < 1570535383 863157 :int-e!~noone@int-e.eu PRIVMSG #esoteric :wib_jonas: You asked about Sigyn on #freenode. < 1570535415 769026 :int-e!~noone@int-e.eu PRIVMSG #esoteric :wib_jonas: I joined around 12:58, I saw the answer around 13:19... I didn't see your question. < 1570535458 968771 :int-e!~noone@int-e.eu PRIVMSG #esoteric :But it didn't occur to me that it may have taken longer than 20 minutes to get it... hence my question here, now. < 1570535660 760643 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :int-e: they have unidentified users quieted < 1570535670 530423 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :int-e: in the mode #freenode +q $~a < 1570535700 971731 :int-e!~noone@int-e.eu PRIVMSG #esoteric :wib_jonas: thanks < 1570535708 4047 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :there, now I'm identified, you'll see if I say anything on #freenode, but I no longer have a reason to say anything there < 1570535774 485191 :int-e!~noone@int-e.eu PRIVMSG #esoteric :I was mystified. I hate being mystified by technology, that's what magic is for :) < 1570537891 875023 :Sgeo!~Sgeo@ool-18b982ad.dyn.optonline.net JOIN :#esoteric > 1570539324 330973 PRIVMSG #esoteric :14[[071+14]]4 10 02https://esolangs.org/w/index.php?diff=66559&oldid=66501 5* 03TwilightSparkle 5* (+908) 10 < 1570539376 559290 :atslash!~atslash@static.231.107.9.5.clients.your-server.de JOIN :#esoteric < 1570539902 679910 :sprocklem!~sprocklem@unaffiliated/sprocklem QUIT :Ping timeout: 268 seconds > 1570540100 22343 PRIVMSG #esoteric :14[[07Byter14]]4 M10 02https://esolangs.org/w/index.php?diff=66560&oldid=66337 5* 03PaniniTheDeveloper 5* (+0) 10 < 1570540702 461166 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :For the record, the Sigyn exemption for those four has been done. < 1570540817 440653 :int-e!~noone@int-e.eu PRIVMSG #esoteric :lambdabot: spam away! < 1570540830 263115 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :Roger that ;-) < 1570540890 109533 :int-e!~noone@int-e.eu PRIVMSG #esoteric :ACTION surreptitiously hides a lambdabot-shaped sock puppet away. < 1570540904 773645 :arseniiv!~arseniiv@94.41.6.166.dynamic.ufanet.ru PRIVMSG #esoteric :lambdabot: what does two added to three centillions equal? < 1570540938 334693 :arseniiv!~arseniiv@94.41.6.166.dynamic.ufanet.ru PRIVMSG #esoteric :I guess I broke them < 1570540966 683593 :arseniiv!~arseniiv@94.41.6.166.dynamic.ufanet.ru PRIVMSG #esoteric :wait, int-e, are you still there? < 1570540976 873012 :int-e!~noone@int-e.eu PRIVMSG #esoteric :> 2 + 3*10^303 -- 2 + 3*10^600 in B.E. doesn't fit into IRC. < 1570540978 488599 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 3000000000000000000000000000000000000000000000000000000000000000000000000000... < 1570540983 797688 :int-e!~noone@int-e.eu PRIVMSG #esoteric :oh. right. < 1570541003 527034 :int-e!~noone@int-e.eu PRIVMSG #esoteric :arseniiv: I don't know what a centillion is. < 1570541015 273106 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :isn't it like 1/100 lions? < 1570541020 744603 :arseniiv!~arseniiv@94.41.6.166.dynamic.ufanet.ru PRIVMSG #esoteric :I found it strange lambdabot didn’t say anything to my plain text question at all < 1570541024 439400 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :or maybe llions < 1570541025 236870 :int-e!~noone@int-e.eu PRIVMSG #esoteric :(Well, I do for the moment but I have no intent of retaining the information.) < 1570541033 45831 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :if there's such an animal as a llama, then there could be a llion too < 1570541039 914293 :int-e!~noone@int-e.eu PRIVMSG #esoteric :arseniiv: You do know that she's a bot, right? < 1570541048 552528 :arseniiv!~arseniiv@94.41.6.166.dynamic.ufanet.ru PRIVMSG #esoteric :I don't know what a centillion is. => I don’t remember that too < 1570541071 105251 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :arseniiv: usually he answers when you use one of the four prefixes, @ ? > :t < 1570541072 248684 :int-e!~noone@int-e.eu PRIVMSG #esoteric :arseniiv: And I did hide the sock puppet; it would be foolish to retrieve it just to answer your question. < 1570541095 828470 :int-e!~noone@int-e.eu PRIVMSG #esoteric :I might be caught lambdabot-handed. < 1570541124 83940 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :@run string "arseniiv: dimension error" < 1570541125 683964 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : error: < 1570541125 750134 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : • Variable not in scope: string :: [Char] -> t < 1570541125 811466 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : • Perhaps you meant one of these: < 1570541130 406530 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :@run var "arseniiv: dimension error" < 1570541132 145154 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : arseniiv: dimension error < 1570541140 150011 :arseniiv!~arseniiv@94.41.6.166.dynamic.ufanet.ru PRIVMSG #esoteric :int-e: but there could be at least a non-answer like… like I don’t know what precisely but at least something to make sure there’s no infinite loop anywhere < 1570541164 59127 :int-e!~noone@int-e.eu PRIVMSG #esoteric :arseniiv: try fungot. < 1570541171 156396 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :arseniiv: try j-bot or perlbot < 1570541179 920766 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :j-bot: what is a centillion < 1570541180 670081 :j-bot!eldis4@firefly.nu PRIVMSG #esoteric :wib_jonas: what (is a centillion) < 1570541190 156568 :fungot!~fungot@2a01:4b00:82bb:1341::2 PRIVMSG #esoteric :I, on the other hand, will never tolerate being used by humans for pretending to be machines. < 1570541196 896336 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :j-bot, help: < 1570541207 217671 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :j-bot, source: < 1570541207 451878 :arseniiv!~arseniiv@94.41.6.166.dynamic.ufanet.ru PRIVMSG #esoteric :perlbot: what is that with making the text yellow < 1570541207 562454 :j-bot!eldis4@firefly.nu PRIVMSG #esoteric :wib_jonas, jevalbot source is https://github.com/FireyFly/jevalbot (originally http://www.math.bme.hu/~ambrus/pu/jevalbot.tgz) < 1570541215 467079 :arseniiv!~arseniiv@94.41.6.166.dynamic.ufanet.ru PRIVMSG #esoteric :ha < 1570541222 37982 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :j-bot, echo: centillama < 1570541222 369332 :j-bot!eldis4@firefly.nu PRIVMSG #esoteric :wib_jonas, pong: centillama < 1570541232 194281 :int-e!~noone@int-e.eu PRIVMSG #esoteric :arseniiv: there's also the @lambdabot "trick". < 1570541251 883482 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :`? lambdabot < 1570541252 993865 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :lambdabot is a fully functional bot. just don't ask about @src. or the neighbours. < 1570541257 280190 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :? lambdabot < 1570541263 265755 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :?src < 1570541263 306789 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :src . Display the implementation of a standard function < 1570541285 801660 :arseniiv!~arseniiv@94.41.6.166.dynamic.ufanet.ru PRIVMSG #esoteric : I might be caught lambdabot-handed. => at least it’s better than right-handed or, I don’t want to say that, left-handed < 1570541361 603914 :int-e!~noone@int-e.eu PRIVMSG #esoteric :arseniiv: Oh, are you being plagued by sinister thoughts? < 1570541381 964289 :int-e!~noone@int-e.eu PRIVMSG #esoteric :Does fungot know any puns? < 1570541382 83427 :fungot!~fungot@2a01:4b00:82bb:1341::2 PRIVMSG #esoteric :int-e: i think that's an ( invalid) octal number. < 1570541385 204215 :arseniiv!~arseniiv@94.41.6.166.dynamic.ufanet.ru PRIVMSG #esoteric :int-e: maybe < 1570541438 872649 :arseniiv!~arseniiv@94.41.6.166.dynamic.ufanet.ru PRIVMSG #esoteric :fungot: may I impersonate you for a while, and if so, how could I achieve that? < 1570541439 21752 :fungot!~fungot@2a01:4b00:82bb:1341::2 PRIVMSG #esoteric :arseniiv: and they are slow and cost 25 cent in euros, no matter < 1570541455 212014 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :int-e: look through the quotes file, it may have some puns that he committed < 1570541469 743553 :int-e!~noone@int-e.eu PRIVMSG #esoteric :`' fungot < 1570541469 811158 :fungot!~fungot@2a01:4b00:82bb:1341::2 PRIVMSG #esoteric :int-e: to fnord? that's scary stuff! < 1570541470 257453 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :10) GregorR-L: i bet only you can prevent forest fires. basically, you know. \ 13) Finally I have found some actually useful purpose for it. \ 14) oerjan: are you a man, if there weren't evil in this kingdom to you! you shall find bekkler! executing program. please let me go... put me out! he's really a tricycle! pass him! \ 56) i am sad ( of course by analogy) < 1570541471 77941 :arseniiv!~arseniiv@94.41.6.166.dynamic.ufanet.ru PRIVMSG #esoteric :ah! it’s a robbery, I can’t afford those prices < 1570541479 107030 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :^ul (arseniiv: dimension error) < 1570541486 195695 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :^ul (arseniiv: dimension error)S < 1570541486 231831 :fungot!~fungot@2a01:4b00:82bb:1341::2 PRIVMSG #esoteric :arseniiv: dimension error < 1570541537 851384 :int-e!~noone@int-e.eu PRIVMSG #esoteric :fizzie: ^^ there's a business model for you. < 1570541573 396146 :arseniiv!~arseniiv@94.41.6.166.dynamic.ufanet.ru PRIVMSG #esoteric :wib_jonas: this works but I would be caught when writing that in chat < 1570541592 697269 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :wait, do we really have 102 fungot quotes? < 1570541592 922759 :fungot!~fungot@2a01:4b00:82bb:1341::2 PRIVMSG #esoteric :wib_jonas: you did some design decisions seemed silly to do a program, though. that means i can have some data carried along with it < 1570541598 681986 :arseniiv!~arseniiv@94.41.6.166.dynamic.ufanet.ru PRIVMSG #esoteric :I want to do that secretly. Or, should I say, I definitely don’t want that < 1570541635 751619 :int-e!~noone@int-e.eu PRIVMSG #esoteric :wib_jonas: Well, fungot never sleeps. < 1570541639 985777 :arseniiv!~arseniiv@94.41.6.166.dynamic.ufanet.ru PRIVMSG #esoteric :fungot has their own secret business too < 1570541640 270836 :fungot!~fungot@2a01:4b00:82bb:1341::2 PRIVMSG #esoteric :arseniiv: ah. so nothing i can do: ' fnord' peers.) ( all it's missing after that will immediately be allocated on the pinned heap? < 1570541669 7849 :arseniiv!~arseniiv@94.41.6.166.dynamic.ufanet.ru PRIVMSG #esoteric :allocates and deallocates things and doesn’t say anyone where and why < 1570541673 285554 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :arseniiv: I think buubot2 had such functionality, but buubot3 doesn't have it, perhaps because it's so easy to abuse < 1570541734 605032 :arseniiv!~arseniiv@94.41.6.166.dynamic.ufanet.ru PRIVMSG #esoteric :I should write a useful bot and get a trust of #esoteric with it and then… < 1570541831 224352 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :arseniiv: you can try running commands in HackEso/j-bot/lambdabot/fungоt that take some time to run, like up to ten seconds or whatever the timeout is, then if there's a lot of other chat, perhaps people will miss your command. < 1570541832 129060 :int-e!~noone@int-e.eu PRIVMSG #esoteric :@metar lowi < 1570541833 533663 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :LOWI 081320Z 28005KT 250V320 9999 FEW070 SCT100 14/06 Q1014 NOSIG < 1570541852 496881 :int-e!~noone@int-e.eu PRIVMSG #esoteric :. o O ( winter is coming ) < 1570541853 398980 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :arseniiv: it's the easiest with HackEso, since on a timeout, it just prints the output so far with no error message < 1570541873 344670 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :`perl -efor(1..999){sleep 1;print("$_ ")} < 1570541892 23916 :arseniiv!~arseniiv@94.41.6.166.dynamic.ufanet.ru PRIVMSG #esoteric :wib_jonas: then if there's a lot of other chat, perhaps people will miss your command. => hmmmmn I have doubts < 1570541903 920901 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :No output. < 1570541908 255193 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :arseniiv: HackEso is also pretty programmable, so you can make it give surprising results that seem unconnected to your query < 1570541911 826907 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :hmm < 1570541922 759206 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :`perl -efor(1..999){sleep 1;print("$_ ");flush STDOUT} < 1570541929 774974 :arseniiv!~arseniiv@94.41.6.166.dynamic.ufanet.ru PRIVMSG #esoteric :hm < 1570541953 392788 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :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 < 1570541958 889815 :arseniiv!~arseniiv@94.41.6.166.dynamic.ufanet.ru PRIVMSG #esoteric :fungot: let’s eat something < 1570541959 40173 :fungot!~fungot@2a01:4b00:82bb:1341::2 PRIVMSG #esoteric :arseniiv: is that not many people have understanding the concept. on fnord, and so < 1570542006 933087 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :lambdabot and j-bot support assignments too, so you can just make any variable or function have an unexpected value, and in j-bot, you can even change values from private message if you know the right incantations, but the drawback is that j-bot and lambdabot always mentions the nick of whoever they reply to < 1570542024 274768 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :no wait < 1570542028 81757 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :lambdabot doesn't < 1570542034 494841 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :and you can give assignments in private message < 1570542126 385484 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :but it's not easy in either j-bot or lambdabot to redefine builtins < 1570542134 500134 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :eg. it's not easy to make them say that 2+2 is 5 < 1570542136 477939 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :> 2+2 < 1570542138 829825 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 4 < 1570542140 744390 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :[ 2+2 < 1570542141 469956 :j-bot!eldis4@firefly.nu PRIVMSG #esoteric :wib_jonas: 4 < 1570542170 570232 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :if you try to redefine (+), you just get a message about how it's ambiguous with Prelude.(+) < 1570542224 598293 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :iirc rust works more sanely, because wildcard imports (like how you import every symbol that Prelude exports) can be shadowed by a symbol that is either local to a package or imported by name < 1570542579 232413 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :> maр (10*) [3,1,4,1,5,9,2] -- arseniiv < 1570542580 982381 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : [30,10, Ok, this is getting boring < 1570542600 772428 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :you can try to cheat that way < 1570542658 601727 :arseniiv!~arseniiv@94.41.6.166.dynamic.ufanet.ru PRIVMSG #esoteric :hee < 1570542687 442485 :fungot!~fungot@2a01:4b00:82bb:1341::2 QUIT :Changing host < 1570542687 442545 :fungot!~fungot@unaffiliated/fizzie/bot/fungot JOIN :#esoteric < 1570542737 425740 :HackEso!~h@techne.zem.fi QUIT :Changing host < 1570542737 425804 :HackEso!~h@unaffiliated/fizzie/bot/hackeso JOIN :#esoteric < 1570542798 146885 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :there's one way that buubot3 lets you cheat: while it's running the eval command (which evaluates a perl statement) in a sandbox, it's running all of them in the same sandbox, so if more than one buubot command is simultaneously running an eval, than one can kill, or perhaps even ptrace, the other < 1570542812 370144 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :ptrace may be impossible, but I experimented with killing a lot < 1570542880 507571 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :fizzie: no! don't add cloaks. they're usually longer than an ordinary hostname, so the max response length that they can give gets shorter < 1570542902 381811 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :fizzie: or if you do give them cloaks, then make sure to edit the spore or similar commands in HackEso to know about the new max message length < 1570543108 658096 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :``` perl -e'for$n(0..49){printf"%02d",$n;for$l("A".."Z"){print $l,lc($l)}}' | sport < 1570543109 786956 :HackEso!~h@unaffiliated/fizzie/bot/hackeso PRIVMSG #esoteric :1/6:00AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz01AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz02AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz03AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz04AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz05AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz06AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz07AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz08AaBbCcDdE < 1570543111 21987 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :`n < 1570543111 857905 :HackEso!~h@unaffiliated/fizzie/bot/hackeso PRIVMSG #esoteric :2/6:kLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz09AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz10AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz11AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz12AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz13AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz14AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz15AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz16AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPp < 1570543135 152711 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :fizzie: ^ see, sport skipped some letters between 08 and 09 there < 1570543136 435799 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :wib_jonas: Kind of too late now, didn't think of that. :/ < 1570543144 879210 :myname!~myname@ks300980.kimsufi.com PRIVMSG #esoteric :wtf does sport do < 1570543155 21364 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :`? sport < 1570543156 150939 :HackEso!~h@unaffiliated/fizzie/bot/hackeso PRIVMSG #esoteric :sport divides its input into irc-sized pieces and displays the nth (default first). The pipe version of `1. See also spore. < 1570543156 754074 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :`? spore < 1570543157 855557 :HackEso!~h@unaffiliated/fizzie/bot/hackeso PRIVMSG #esoteric :spore stores its input in tmp/spout and displays the nth line (default first). For a version considering irc line lengths, see sport. See also `spam. < 1570543188 347243 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :fizzie: for lambdabot, it probably matters less, because it has a very short message length on channels, and breaks into multiple lines for private messages < 1570543198 231792 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :but for HackEso this should be changed I think < 1570543217 417672 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :also now it can look at the IRC_* variables to know how long the target is < 1570543265 364638 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :also, this is the sort of thing why I don't trust the HackEso scripts and just use coreutils and perl one-liners when using HackEso < 1570543309 886127 :int-e!~noone@int-e.eu PRIVMSG #esoteric :lambdabot's fairly conservative about IRC message lengths... I seem to recall 350 characters for privmsg? < 1570543338 23758 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :HackEso was tuned for throughput, not reliability. < 1570543339 21947 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :it gave up after two list entries above, so that should fit < 1570543354 913138 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I'm kind of reluctant to bother them again, after I mentioned the cloaks after the Sigyn whitelisting and they said it would've been nice to have been told about that first. < 1570543386 267381 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :fizzie: sorry, I didn't know that you'd be applying for cloaks < 1570543389 153780 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :I would have told otherwise < 1570543395 539720 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Yeah, I should've mentioned. < 1570543417 353903 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :I never asked cloaks for my bots, because the hostname that they used was shorter than any cloak < 1570543437 615233 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :that said, you could of course try to register the esolangs community and get shorter cloaks eventually after a year.... < 1570543440 44068 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :nah < 1570543441 510361 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I don't think it's an issue for fungot, since it's got a conservative max length too. And probably not for esowiki either, because it doesn't matter if it truncates long titles a little more. < 1570543441 718375 :fungot!~fungot@unaffiliated/fizzie/bot/fungot PRIVMSG #esoteric :fizzie: let's try to factor 4 using shor's algorithm. :)... nah, just obfuscating often result in getting a scheme to play with them.) < 1570543457 678163 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :For HackEso it's a little unfortunate. < 1570543472 663847 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I remember we changed the username to ~h to get a few extra characters out. < 1570543488 937202 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :yes. we should golf the channel name too. < 1570543508 219134 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :sadly iirc freenode doesn't allow non-ascii channel names < 1570543535 808325 :int-e!~noone@int-e.eu PRIVMSG #esoteric :pfffft. < 1570543568 32732 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :so we can't use the four-byte channel name #ꙮ < 1570543589 752227 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Well, I'll look at the length situation when I get home. < 1570543595 193771 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :thank you < 1570543653 436646 :int-e!~noone@int-e.eu PRIVMSG #esoteric :`unidecode ꙮ < 1570543653 927870 :HackEso!~h@unaffiliated/fizzie/bot/hackeso PRIVMSG #esoteric :​[U+A66E CYRILLIC LETTER MULTIOCULAR O] < 1570543673 702379 :int-e!~noone@int-e.eu PRIVMSG #esoteric :Heh, I guessed correctly. < 1570543852 212637 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :and HackEso's old hostname is pretty short too < 1570543885 861463 :int-e!~noone@int-e.eu PRIVMSG #esoteric :we'll cope < 1570543889 64130 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :shorter than some ipv4 addresses < 1570543908 20774 :int-e!~noone@int-e.eu PRIVMSG #esoteric :`? oerjan < 1570543908 945563 :HackEso!~h@unaffiliated/fizzie/bot/hackeso PRIVMSG #esoteric :Your omnidryad saddle principal ideal golfing toe-obsessed "Darth Ook" oerjan the shifty eldrazi grinch is a punctual expert in minor compaction. Also a Groadep who minces Roald Dahl. He could never remember the word "amortized" so he put it here for convenience. His arkup-nemesis is mediawiki's default diff. He twice punned without noticing it. < 1570543910 957814 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :int-e: sure, by breaking messages to more likes, causing more spam < 1570543922 522954 :int-e!~noone@int-e.eu PRIVMSG #esoteric :Even this quote fits. ;-) < 1570543936 257643 :int-e!~noone@int-e.eu PRIVMSG #esoteric :Err wisdom. < 1570544216 908487 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :`? ance < 1570544217 956491 :HackEso!~h@unaffiliated/fizzie/bot/hackeso PRIVMSG #esoteric :Spelling of -ance/-ence words: advance, science, conference, experience, finance, insurance, licence, performance, reference, assistance, balance, defence, difference, distance, evidence, acceptance, appliance, audience, compliance, importance, influence, instance, intelligence, maintenance, preference, presence, sentence, sequence, substance, violence, absence, accordance, alliance, appearance, assurance, attendance, circumstance, clearance, < 1570544218 524846 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :`? brilliant < 1570544219 585363 :HackEso!~h@unaffiliated/fizzie/bot/hackeso PRIVMSG #esoteric :​04B҉ͭR̲̞Iͪ͞L̡͠L̝̊I̤ͣA̍҉N̏́T̈͡ 07̐̇ȉ̲s̉̐ 08̸̉ḷ̂i̪̱k͉ͬḛ็ 09͓̪t็ͬh̺̊e͜͢ 02͏͛B̈ͅE̳̘S̰ͤTͬͧ 06̰̕w̺̼o̷̓ŕ͂d̹̠ 13͍͑i͚̾n̺̮ 04̇͑t͗̍hͧ͌ḙ͕ 07̻͜ű̖ňͤi̴͠v̸̧ḛ͔ř̭s͍͠ẻ̗ 08͏̲a̮̺nͣ͟d̝ͨ 09̳͗i̟͘ẗ͎ 02̼̲ẘ̦i̭ͮl̢̋l̨̉ 06̺͌c̑͡h̽̀âͮn̩̈́g̫ͣe͉͒ 13ͦ̓y̙͕o̔͒u̷ͬr͂͐ 04̓͝l͙͐ȉ͕f̹́ẹ̲ 07̤̹F̌ͅÒ < 1570544220 300227 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :`? zarutian < 1570544221 446809 :HackEso!~h@unaffiliated/fizzie/bot/hackeso PRIVMSG #esoteric :You can trust Zarutian. He fixes, as an electronics technician, banal mistakes of electronics engineers. Rather cy(ph|b)erpunkish in outlook regarding the 'Net. Knows more about ocaps than you can imagine. Possesses an Icelandic unnerver that ejects freezingly hot lava out of its business end. Bears an 'Authentic fakes provider' seal from the guild of Realers. He is also known for making rather long HackEgo wisdom entries. Take for instance th < 1570544228 582763 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :HackEso says that these three are now too long > 1570544229 515445 PRIVMSG #esoteric :14[[07Byter14]]4 M10 02https://esolangs.org/w/index.php?diff=66561&oldid=66560 5* 03PaniniTheDeveloper 5* (+0) 10 < 1570544262 56461 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :but the others are probably fine < 1570544277 189531 :int-e!~noone@int-e.eu PRIVMSG #esoteric :wib_jonas: request permission to delete that wisdom entry < 1570544286 265100 :int-e!~noone@int-e.eu PRIVMSG #esoteric :wib_jonas: (the br* one) < 1570544638 48878 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :int-e: I'm not associated with that one < 1570544679 805344 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :int-e: I suggest to also delete wisdom/$'\xCC\x9A\xCC\x82'* < 1570544691 855926 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :but you may want to check the hg history first < 1570544704 568113 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :the longest potentially valuable wisdom is welcome.ru < 1570544710 703242 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :`? welcome.ru < 1570544711 708933 :HackEso!~h@unaffiliated/fizzie/bot/hackeso PRIVMSG #esoteric :​Добро пожаловать в Международный центр по разработке и внедрению языков эзотерического программирования! Для получения дополнительной информации посетите wiki: . (Для другого типа эзотеризма попробуйте #esoteric в EFnet или DALnet.) < 1570544738 439278 :int-e!~noone@int-e.eu PRIVMSG #esoteric :`forget brilliant < 1570544739 949125 :HackEso!~h@unaffiliated/fizzie/bot/hackeso PRIVMSG #esoteric :Forget what? < 1570544757 771736 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :I think with a 16-byte nickname, welcome.ru might just about fit in the output < 1570544785 506410 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :`добро-пожаловать zemhill_________ < 1570544786 628541 :HackEso!~h@unaffiliated/fizzie/bot/hackeso PRIVMSG #esoteric :zemhill_________: Добро пожаловать в Международный центр по разработке и внедрению языков эзотерического программирования! Для получения дополнительной информации посетите wiki: . (Для другого типа эзотеризма попробуйте #esoteric в EFnet или DALnet.) < 1570544795 716984 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :`добро-пожаловать 1zemhill_________ < 1570544796 869958 :HackEso!~h@unaffiliated/fizzie/bot/hackeso PRIVMSG #esoteric :1zemhill_________: Добро пожаловать в Международный центр по разработке и внедрению языков эзотерического программирования! Для получения дополнительной информации посетите wiki: . (Для другого типа эзотеризма попробуйте #esoteric в EFnet или DALnet. < 1570544799 799582 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :yep < 1570544806 142873 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :exact length < 1570544810 96639 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :we don't have to change that one < 1570544813 93637 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :or... < 1570544814 458769 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :wait, < 1570544852 769383 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :does this web client enable that obsolete extension that adds a one character prefix to messages telling whether the user is logged in to nickserv? < 1570544869 377964 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :some versions of xchat enables them, and then you get one fewer bytes of space < 1570544931 785866 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Maybe. Both the zemhill_________ and 1zemhill_________ ones fit in here. < 1570544944 407331 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Oh, no, it didn't, I'm just blind. < 1570544958 198621 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :The latter cut off the ). So either the web client doesn't, or this client does. < 1570544992 163603 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :the web client cust off the one with 1zemhill*, but that's an overlong nickname < 1570544995 371613 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :`q 729 < 1570544996 55746 :HackEso!~h@unaffiliated/fizzie/bot/hackeso PRIVMSG #esoteric :729) itidus21: hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, h < 1570545011 154147 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :^ that one does fit < 1570545018 848388 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :``` q 729; echo "and more" < 1570545020 263259 :HackEso!~h@unaffiliated/fizzie/bot/hackeso PRIVMSG #esoteric :729) itidus21: hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, hey, h \ < 1570545030 905550 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :and it's our longest quote < 1570545049 580712 :sprocklem!~sprocklem@unaffiliated/sprocklem JOIN :#esoteric < 1570545060 890423 :int-e!~noone@int-e.eu PRIVMSG #esoteric :so lucky < 1570545126 560731 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :`? pdf < 1570545130 69694 :HackEso!~h@unaffiliated/fizzie/bot/hackeso PRIVMSG #esoteric :PDF stands for Pretty Depressing Format. < 1570545132 386539 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :`? wisdom.pdf < 1570545133 790642 :HackEso!~h@unaffiliated/fizzie/bot/hackeso PRIVMSG #esoteric :Nicely formatted classical wisdoms and quotes book at https://www.dropbox.com/s/fyhqyvy3i8oh25m/wisdom.pdf < 1570545706 687048 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :We recently had the occasion to send some PDF files to an official thing, and turns out they were only able to view some of them. Presumably due to some sort of software incompatibility somewhere. < 1570545800 480767 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I couldn't find out any sort of patterns in what worked and what didn't, though. The PDF 1.4 files generated by wkhtmltopdf were fine. The ones that allegedly only showed up as blank were PDF 1.3 and 1.5 files (but why would they support only 1.4 in the middle?), generated by printing from Gimp or with 'pdftk' concatenating from various sources. < 1570545821 914889 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :All in all, it was a pretty depressing format. < 1570545829 596468 :imode!~linear@unaffiliated/imode JOIN :#esoteric < 1570545959 617547 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :fizzie: perhaps the default options were changed between those versions because people did debug out what doesn't work and reported which features some official things don't support < 1570545977 278456 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :you could probably fix it by changing the options, but you don't know what you have to change the options to < 1570545991 843261 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :fizzie: it wasn't a paper size thing, right? < 1570546008 334582 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Not as far as I can tell, they were all A4 according to pdfinfo. < 1570546018 578456 :int-e!~noone@int-e.eu PRIVMSG #esoteric :It's a Pretty Dubious Format too. < 1570546090 25677 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :...well, there are *some* differences in paper size, some are "595.28 x 841.89 pts (A4)" and others "595 x 842 pts (A4)". < 1570546123 338019 :myname!~myname@ks300980.kimsufi.com PRIVMSG #esoteric :how do you draw .38 pts? < 1570546149 231066 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I think my current plan is to print all the non-working ones, and send them the PDFs generated by the printer/scanner/copier machine at work, under the assumption that that's been engineered to work as widely as possible. < 1570546430 513672 :myname!~myname@ks300980.kimsufi.com PRIVMSG #esoteric :fizzie: you don't support "1.4 in the middle". you support the brand new 1.4 as soon as it comes out, drop support for 1.3 and never update to 1.5 once it shows up < 1570546510 348762 :int-e!~noone@int-e.eu PRIVMSG #esoteric :Potable Document Format - perfect for drinking games. < 1570546885 84956 :kritixilithos!~kritixili@gateway/tor-sasl/kritixilithos JOIN :#esoteric < 1570547499 17444 :Sgeo_!~Sgeo@ool-18b982ad.dyn.optonline.net JOIN :#esoteric < 1570547666 886038 :Sgeo!~Sgeo@ool-18b982ad.dyn.optonline.net QUIT :Ping timeout: 240 seconds < 1570548216 549748 :Sgeo__!~Sgeo@ool-18b982ad.dyn.optonline.net JOIN :#esoteric < 1570548397 45471 :Sgeo_!~Sgeo@ool-18b982ad.dyn.optonline.net QUIT :Ping timeout: 240 seconds < 1570548761 167152 :wib_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 QUIT :Remote host closed the connection < 1570548941 540525 :sprocklem!~sprocklem@unaffiliated/sprocklem QUIT :Ping timeout: 276 seconds < 1570549224 963375 :Lord_of_Life_!~Lord@unaffiliated/lord-of-life/x-0885362 JOIN :#esoteric < 1570549277 98451 :Lord_of_Life!~Lord@unaffiliated/lord-of-life/x-0885362 QUIT :Ping timeout: 240 seconds < 1570549307 340929 :Lord_of_Life_!~Lord@unaffiliated/lord-of-life/x-0885362 NICK :Lord_of_Life < 1570551487 846349 :arseniiv!~arseniiv@94.41.6.166.dynamic.ufanet.ru PRIVMSG #esoteric :int-e: one time or another, I think we all guessed that (at least to Adobe) it was a Profitable Document Format < 1570551506 806170 :arseniiv!~arseniiv@94.41.6.166.dynamic.ufanet.ru PRIVMSG #esoteric :s/at least / < 1570551527 47830 :int-e!~noone@int-e.eu PRIVMSG #esoteric :It may be that. < 1570551956 158920 :arseniiv!~arseniiv@94.41.6.166.dynamic.ufanet.ru PRIVMSG #esoteric :if one stels i and f from “profitable” (getting “portable”) and adds them to “acrobat”, it will become an obvious/ominous “boar if cat” < 1570551962 630159 :arseniiv!~arseniiv@94.41.6.166.dynamic.ufanet.ru PRIVMSG #esoteric :steals* < 1570551983 621921 :arseniiv!~arseniiv@94.41.6.166.dynamic.ufanet.ru PRIVMSG #esoteric :it was Adobe’s plan all along! < 1570552040 625627 :arseniiv!~arseniiv@94.41.6.166.dynamic.ufanet.ru PRIVMSG #esoteric :and it certainly is not something good. I don’t know what it is though < 1570552161 593108 :int-e!~noone@int-e.eu PRIVMSG #esoteric :here's another: potentially dangerous file < 1570552209 805088 :imode!~linear@unaffiliated/imode PRIVMSG #esoteric :programmable dangerous format. < 1570553890 902251 :kritixilithos!~kritixili@gateway/tor-sasl/kritixilithos QUIT :Quit: leaving < 1570554010 579179 :b_jonas!~x@catv-176-63-25-51.catv.broadband.hu JOIN :#esoteric > 1570555289 156733 PRIVMSG #esoteric :14[[07DNA-Sharp14]]4 M10 02https://esolangs.org/w/index.php?diff=66562&oldid=46377 5* 03Dtuser1337 5* (+0) 10conversion for quine section > 1570555543 371 PRIVMSG #esoteric :14[[07DNA-Sharp14]]4 10 02https://esolangs.org/w/index.php?diff=66563&oldid=66562 5* 03Dtuser1337 5* (+5) 10/* Quine */ symbol mode quine > 1570555556 670227 PRIVMSG #esoteric :14[[07DNA-Sharp14]]4 M10 02https://esolangs.org/w/index.php?diff=66564&oldid=66563 5* 03Dtuser1337 5* (+1) 10/* Quine */ oops < 1570555588 596050 :b_jonas!~x@catv-176-63-25-51.catv.broadband.hu PRIVMSG #esoteric :so apparently HackEso pays 18 bytes more tax to freenode per line than it used to > 1570556018 775704 PRIVMSG #esoteric :14[[07DNA-Sharp14]]4 10 02https://esolangs.org/w/index.php?diff=66565&oldid=66564 5* 03Dtuser1337 5* (+54) 10/* Quine */ possible implementation of the helix converted version from the line version. < 1570556086 20971 :FreeFull!~freefull@defocus/sausage-lover JOIN :#esoteric > 1570556483 954895 PRIVMSG #esoteric :14[[07User:Dtuser1337/Sandbox14]]4 10 02https://esolangs.org/w/index.php?diff=66566&oldid=66240 5* 03Dtuser1337 5* (-3) 10/* commands */ > 1570556688 631830 PRIVMSG #esoteric :14[[07User:Dtuser1337/Sandbox14]]4 10 02https://esolangs.org/w/index.php?diff=66567&oldid=66566 5* 03Dtuser1337 5* (-104) 10/* commands */ > 1570556708 274395 PRIVMSG #esoteric :14[[07User:Dtuser1337/Sandbox14]]4 10 02https://esolangs.org/w/index.php?diff=66568&oldid=66567 5* 03Dtuser1337 5* (-13) 10/* commands */ < 1570557316 993590 :joast!~rick@cpe-98-145-132-215.natnow.res.rr.com QUIT :Ping timeout: 240 seconds > 1570557441 73223 PRIVMSG #esoteric :14[[07User:Dtuser1337/Sandbox14]]4 10 02https://esolangs.org/w/index.php?diff=66569&oldid=66568 5* 03Dtuser1337 5* (+132) 10/* commands */ < 1570557516 189068 :tromp!~tromp@2a02:a210:1585:3200:8def:2017:daa:a0d8 QUIT :Remote host closed the connection > 1570557770 959618 PRIVMSG #esoteric :14[[07User:Dtuser1337/Sandbox14]]4 10 02https://esolangs.org/w/index.php?diff=66570&oldid=66569 5* 03Dtuser1337 5* (+156) 10/* commands */ < 1570557840 30330 :joast!~rick@cpe-98-146-112-4.natnow.res.rr.com JOIN :#esoteric > 1570558014 449139 PRIVMSG #esoteric :14[[07User:Dtuser1337/Sandbox14]]4 10 02https://esolangs.org/w/index.php?diff=66571&oldid=66570 5* 03Dtuser1337 5* (+86) 10/* commands */ > 1570558044 277521 PRIVMSG #esoteric :14[[07User:Dtuser1337/Sandbox14]]4 M10 02https://esolangs.org/w/index.php?diff=66572&oldid=66571 5* 03Dtuser1337 5* (+1) 10/* commands */ < 1570558310 18899 :tromp!~tromp@2a02:a210:1585:3200:7db5:e327:d7b:89b7 JOIN :#esoteric < 1570558565 967734 :tromp!~tromp@2a02:a210:1585:3200:7db5:e327:d7b:89b7 QUIT :Ping timeout: 252 seconds < 1570559054 956758 :atslash!~atslash@static.231.107.9.5.clients.your-server.de QUIT :Quit: This computer has gone to sleep > 1570559882 336269 PRIVMSG #esoteric :14[[07User:Dtuser1337/Sandbox14]]4 10 02https://esolangs.org/w/index.php?diff=66573&oldid=66572 5* 03Dtuser1337 5* (+772) 10/* commands */ > 1570559896 219657 PRIVMSG #esoteric :14[[07User:Dtuser1337/Sandbox14]]4 10 02https://esolangs.org/w/index.php?diff=66574&oldid=66573 5* 03Dtuser1337 5* (-2) 10/* errors */ < 1570560094 123698 :interruptinuse!~interrupt@girl.mrtheplague.net JOIN :#esoteric > 1570560314 443230 PRIVMSG #esoteric :14[[07User:Dtuser1337/Sandbox14]]4 10 02https://esolangs.org/w/index.php?diff=66575&oldid=66574 5* 03Dtuser1337 5* (+74) 10/* errors */ > 1570560512 313572 PRIVMSG #esoteric :14[[07User:Dtuser1337/Sandbox14]]4 10 02https://esolangs.org/w/index.php?diff=66576&oldid=66575 5* 03Dtuser1337 5* (+65) 10/* errors */ > 1570560724 315036 PRIVMSG #esoteric :14[[07User:Dtuser1337/Sandbox14]]4 10 02https://esolangs.org/w/index.php?diff=66577&oldid=66576 5* 03Dtuser1337 5* (+37) 10/* commands */ > 1570561252 682905 PRIVMSG #esoteric :14[[07Esolang:Sandbox14]]4 10 02https://esolangs.org/w/index.php?diff=66578&oldid=66281 5* 03Dtuser1337 5* (+80) 10 > 1570561287 876763 PRIVMSG #esoteric :14[[07Esolang:Sandbox14]]4 10 02https://esolangs.org/w/index.php?diff=66579&oldid=66578 5* 03Dtuser1337 5* (+130) 10 > 1570561426 401251 PRIVMSG #esoteric :14[[07User:Dtuser1337/Sandbox14]]4 10 02https://esolangs.org/w/index.php?diff=66580&oldid=66577 5* 03Dtuser1337 5* (+47) 10/* Hello world! */ < 1570561596 10542 :b_jonas!~x@catv-176-63-25-51.catv.broadband.hu PRIVMSG #esoteric :fizzie: and as for the original moderation problem, shachaf looks pretty reliable and he's often here, so maybe you should give him channel op rights < 1570561707 862867 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :not happening < 1570561723 237140 :b_jonas!~x@catv-176-63-25-51.catv.broadband.hu PRIVMSG #esoteric :ok < 1570561738 694524 :b_jonas!~x@catv-176-63-25-51.catv.broadband.hu PRIVMSG #esoteric :I can't think of anyone else that's so often here and looks reliable though < 1570561747 205854 :b_jonas!~x@catv-176-63-25-51.catv.broadband.hu PRIVMSG #esoteric :so in that case we'll have times with no moderators paying attention < 1570561755 137265 :b_jonas!~x@catv-176-63-25-51.catv.broadband.hu PRIVMSG #esoteric :I certainly can't be trusted > 1570561781 70668 PRIVMSG #esoteric :14[[07User:Dtuser1337/Sandbox14]]4 10 02https://esolangs.org/w/index.php?diff=66581&oldid=66580 5* 03Dtuser1337 5* (+76) 10/* errors */ < 1570561857 778051 :b_jonas!~x@catv-176-63-25-51.catv.broadband.hu PRIVMSG #esoteric :hmm... maybe FireFly is trustable < 1570561863 733947 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I think it was a good idea to exempt esowiki, though; to a machine, the above could look pretty spammy. < 1570561887 298943 :b_jonas!~x@catv-176-63-25-51.catv.broadband.hu PRIVMSG #esoteric :fizzie: certainly when our norwegian village edits the same page twenty times in a row > 1570561915 492082 PRIVMSG #esoteric :14[[07User:Dtuser1337/Sandbox14]]4 10 02https://esolangs.org/w/index.php?diff=66582&oldid=66581 5* 03Dtuser1337 5* (+70) 10/* commands */ > 1570561962 989209 PRIVMSG #esoteric :14[[07User:Dtuser1337/Sandbox14]]4 10 02https://esolangs.org/w/index.php?diff=66583&oldid=66582 5* 03Dtuser1337 5* (+20) 10/* examples */ < 1570561978 676740 :FireFly!znc@freenode/staff/firefly PRIVMSG #esoteric :I'm not sure I pay a lot of attention here, but if desired could probably deal with clear abuse when spotted < 1570561990 676415 :FireFly!znc@freenode/staff/firefly PRIVMSG #esoteric :hm < 1570562059 352225 :b_jonas!~x@catv-176-63-25-51.catv.broadband.hu PRIVMSG #esoteric :by the way, I really hope that Dtuser1337 is not another alias of Areallycoolusername > 1570562140 731088 PRIVMSG #esoteric :14[[07User:Dtuser1337/Sandbox14]]4 10 02https://esolangs.org/w/index.php?diff=66584&oldid=66583 5* 03Dtuser1337 5* (+19) 10/* Roll a dice */ < 1570562195 220633 :b_jonas!~x@catv-176-63-25-51.catv.broadband.hu PRIVMSG #esoteric :hmm... as for moderation > 1570562253 457335 PRIVMSG #esoteric :14[[07User:Dtuser1337/Sandbox14]]4 10 02https://esolangs.org/w/index.php?diff=66585&oldid=66584 5* 03Dtuser1337 5* (+41) 10/* errors */ < 1570562266 527733 :tromp!~tromp@2a02:a210:1585:3200:7db5:e327:d7b:89b7 JOIN :#esoteric < 1570562267 889060 :sprocklem!~sprocklem@unaffiliated/sprocklem JOIN :#esoteric < 1570562409 503118 :Sgeo__!~Sgeo@ool-18b982ad.dyn.optonline.net QUIT :Read error: Connection reset by peer < 1570562515 970501 :Sgeo!~Sgeo@ool-18b982ad.dyn.optonline.net JOIN :#esoteric < 1570562552 537413 :tromp!~tromp@2a02:a210:1585:3200:7db5:e327:d7b:89b7 QUIT :Ping timeout: 276 seconds < 1570562845 442740 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :Hooloovo0: I did the float tank thing < 1570562858 356803 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :it was neat < 1570562863 504986 :Hooloovo0!Hooloovoo@sorunome.de PRIVMSG #esoteric :how so? < 1570562874 731849 :b_jonas!~x@catv-176-63-25-51.catv.broadband.hu PRIVMSG #esoteric :FireFly: since I'm so rarely in #jsoftware, you now have chanserv +f privilages, which means you can modify the chanserv access list < 1570562876 826859 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :well, I felt very relaxed < 1570562892 171817 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :and being weightless is great for any kind of physical stress / muscle pain < 1570562948 390586 :Hooloovo0!Hooloovoo@sorunome.de PRIVMSG #esoteric :yeah, that makes sense < 1570562953 800147 :Hooloovo0!Hooloovoo@sorunome.de PRIVMSG #esoteric :how long were you in it? < 1570562960 396474 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I think I would get more out of it if I was better at mediation < 1570562963 435355 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :an hour < 1570562979 812721 :Hooloovo0!Hooloovoo@sorunome.de PRIVMSG #esoteric :did it feel like an hour? < 1570562995 695282 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :they do 15 minutes of soothing hippie nature/flute music followed by 40 minutes of silence, followed by 5 min of hippie music to bring you back < 1570563003 383480 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :but you can also provide your own soundtrack < 1570563009 195681 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :eh I lost track of time < 1570563031 760068 :b_jonas!~x@catv-176-63-25-51.catv.broadband.hu PRIVMSG #esoteric :weightless => yes, I do ordinary swimming, and it is so much better than other forms of sport activities to people like me who aren't particularly sporty or fit < 1570563037 251237 :int-e!~noone@int-e.eu PART :#esoteric < 1570563057 638925 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I also found it hard to give a shit about my usual upsetting thought loop subjects, even when I tried deliberately as an experiment < 1570563065 882496 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :which was a concern of mine so that's cool < 1570563079 683892 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :being alone with my thoughts is not always very pleasant < 1570563086 450209 :Hooloovo0!Hooloovoo@sorunome.de PRIVMSG #esoteric :yeah < 1570563099 317521 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :anyway it was a cool experience < 1570563104 755450 :Hooloovo0!Hooloovoo@sorunome.de PRIVMSG #esoteric :I find it easy to lose track of time while meditating < 1570563124 79776 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I bought a book on meditation and will start practicing < 1570563130 981004 :Hooloovo0!Hooloovoo@sorunome.de PRIVMSG #esoteric :not sure how I feel about music, I tend to prefer complete silence I think < 1570563137 199281 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :and maybe go back to the tank in a month < 1570563154 895896 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :(I bought a 3 session package deal at deep discount for new customers) < 1570563164 500639 :b_jonas!~x@catv-176-63-25-51.catv.broadband.hu PRIVMSG #esoteric :ouch. I hate complete silence, but luckily never experience complete silence here in the city. < 1570563168 282119 :b_jonas!~x@catv-176-63-25-51.catv.broadband.hu PRIVMSG #esoteric :no music makes sense though < 1570563531 484076 :Hooloovo0!Hooloovoo@sorunome.de PRIVMSG #esoteric :I have very rarely experienced complete silence < 1570563570 486923 :Hooloovo0!Hooloovoo@sorunome.de PRIVMSG #esoteric :there's always crickets chirping, wind, fans, or any number of other things < 1570563603 5643 :Hooloovo0!Hooloovoo@sorunome.de PRIVMSG #esoteric :certain basements can get pretty close, but there's usually at least mains hum from the transformers < 1570563754 456258 :b_jonas!~x@catv-176-63-25-51.catv.broadband.hu PRIVMSG #esoteric :but do you like it when it's so silent? for hours that is, not just a few minutes > 1570564208 892574 PRIVMSG #esoteric :14[[07Deadfish14]]4 10 02https://esolangs.org/w/index.php?diff=66586&oldid=66316 5* 03Joshop 5* (+367) 10Cthulhu < 1570564322 882241 :sprocklem!~sprocklem@unaffiliated/sprocklem QUIT :Ping timeout: 240 seconds < 1570564350 674109 :Hooloovo0!Hooloovoo@sorunome.de PRIVMSG #esoteric :it's not unpleasant to me < 1570564378 400237 :b_jonas!~x@catv-176-63-25-51.catv.broadband.hu PRIVMSG #esoteric :ok < 1570564631 924028 :atslash!~atslash@46.188.0.82 JOIN :#esoteric < 1570564874 887338 :atslash!~atslash@46.188.0.82 QUIT :Ping timeout: 240 seconds < 1570565077 540577 :atslash!~atslash@static.231.107.9.5.clients.your-server.de JOIN :#esoteric < 1570565264 780270 :int-e!~noone@int-e.eu JOIN :#esoteric < 1570566949 968470 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover JOIN :#esoteric < 1570567056 997081 :hppavilion[1]!~omegasome@172.98.86.92 QUIT :Ping timeout: 240 seconds < 1570568763 993970 :tromp!~tromp@2a02:a210:1585:3200:7db5:e327:d7b:89b7 JOIN :#esoteric < 1570569092 959844 :tromp!~tromp@2a02:a210:1585:3200:7db5:e327:d7b:89b7 QUIT :Ping timeout: 246 seconds < 1570569962 599257 :atslash!~atslash@static.231.107.9.5.clients.your-server.de QUIT :Ping timeout: 276 seconds < 1570569987 385192 :atslash!~atslash@46.188.0.82 JOIN :#esoteric < 1570569999 297239 :MDude!AdiIRC@c-174-55-101-236.hsd1.pa.comcast.net JOIN :#esoteric < 1570571354 388375 :imode!~linear@unaffiliated/imode QUIT :Quit: WeeChat 2.6 < 1570571386 4719 :imode!~linear@unaffiliated/imode JOIN :#esoteric < 1570571539 528089 :tromp!~tromp@2a02:a210:1585:3200:7db5:e327:d7b:89b7 JOIN :#esoteric < 1570573569 966444 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover QUIT :Ping timeout: 252 seconds < 1570574296 119602 :imode!~linear@unaffiliated/imode QUIT :Quit: WeeChat 2.6 < 1570574522 961163 :imode!~linear@unaffiliated/imode JOIN :#esoteric < 1570575733 301646 :atslash!~atslash@46.188.0.82 QUIT :Ping timeout: 265 seconds < 1570575767 895730 :atslash!~atslash@static.231.107.9.5.clients.your-server.de JOIN :#esoteric < 1570577255 540549 :arseniiv!~arseniiv@94.41.6.166.dynamic.ufanet.ru QUIT :Ping timeout: 276 seconds < 1570578035 41761 :FreeFull!~freefull@defocus/sausage-lover QUIT :