< 1410480132 118246 :vyv!~vyv@bas1-northbay04-1177802976.dsl.bell.ca JOIN :#esoteric < 1410480292 962996 :paul2520!~pi@104-6-13-61.lightspeed.milwwi.sbcglobal.net QUIT :Ping timeout: 240 seconds < 1410480419 450311 :paul2520!~pi@104-6-13-61.lightspeed.milwwi.sbcglobal.net JOIN :#esoteric < 1410480443 703797 :paul2520!~pi@104-6-13-61.lightspeed.milwwi.sbcglobal.net NICK :Guest72062 < 1410480482 523488 :FreeFull_!~freefull@defocus/sausage-lover JOIN :#esoteric < 1410480646 541840 :augur!~augur@216-164-48-148.c3-0.slvr-ubr1.lnh-slvr.md.cable.rcn.com JOIN :#esoteric < 1410480653 567515 :FreeFull!~freefull@defocus/sausage-lover QUIT :Ping timeout: 276 seconds < 1410481108 28072 :Phantom__Hoover!~phantomho@unaffiliated/phantom-hoover QUIT :Quit: Leaving < 1410481415 938989 :not^v!~notnot^v@2601:4:4500:e15:829:69ed:43b0:a8a2 JOIN :#esoteric < 1410481667 476638 :Guest72062!~pi@104-6-13-61.lightspeed.milwwi.sbcglobal.net NICK :paul2520 < 1410481873 638327 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :Since I am writing Z-machine compiler in C, and a question mark is not a valid identifier in C, instead I used "_Q" in the name of the constants and other things with have do so with such instructions, instead of a question mark. (Simply omitting it entirely won't work because of the "FSET" and "FSET?" instructions; the part other than the question mark is the same name.) < 1410482978 32806 :oerjan!oerjan@sprocket.nvg.ntnu.no QUIT :Quit: leaving < 1410483233 938906 :not^v!~notnot^v@2601:4:4500:e15:829:69ed:43b0:a8a2 QUIT :Ping timeout: 272 seconds < 1410484205 63018 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :zzo38: yes, the ruby core uses a similar convention to name the C functions implementing ruby functions: question mark methods are usually named with a "_q" suffix, exclamation mark methods with a "_x" suffix < 1410484210 460306 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :iirc < 1410484251 857317 :not^v!~notnot^v@2601:4:4500:e15:5ddd:e035:c4b1:d75d JOIN :#esoteric < 1410484293 887797 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :zzo38: does the Z-machine have instructions with digits in their name? just curious. x86 intel assembly syntax does, it has had them since the 8087 days, but has more now; and I think it now even has an instruction with an underscore in its name. < 1410484308 532804 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :b_jonas: No, it doesn't have any instructions with digits in their name. < 1410484326 441996 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :(Nor any with underscores in their name.) < 1410484335 717481 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :that's not the scary part of the intel mnemonics of course. the scary part is how they have two unrelated instructions with identical names, and generally inconsistent names and syntax because of historical cruft. < 1410484363 296080 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :they don't dare changing the assembly syntax, which is why we have instructions and registers with such strange names stuck. < 1410484432 741163 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :and some instructions have strange syntax in intel assembly variant to disambiguate instructions that would otherwise have the same form, especially instructions differing in the operand size they are operating on. < 1410484486 811105 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :gnu as syntax fixes only a small amount of this, because they still derive the names for instructions and operators from the intel names so as not to confuse humans. < 1410484797 425364 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :what are the two unrelated instructions? < 1410484859 475190 :PaulOnProjector!~paul2520@134.48.160.111 JOIN :#esoteric < 1410484922 966479 :PaulOnProjector!~paul2520@134.48.160.111 QUIT :Client Quit < 1410484956 667961 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :elliott: MOVSD. one MOVSD is the case of the old 8086 MOVS (memory-to-memory move with implicit addresses) instruction (for z80 compatibility) on 4-byte operand, < 1410485003 585750 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :the other is an SSE2 instruction for moving one double precison float from/to XMM registers. < 1410485010 367549 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :nice < 1410485053 553131 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :in both case, MOV stands for "move", but SD stands either for "string, doubleword" or for "scalar double-float" < 1410485103 698263 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :that 4-byte words are called "doubleword" in first place is because of the legacy that "word" means a 2-byte words. it gets even worse when they call 16-byte areas a "double quadword" < 1410485131 970706 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :so now we have doublewords, double quadwords, and double floats < 1410485195 772535 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :we could try to adopt Knuth's terminology where he calls a 2-byte area "wyde", a 4-byte area "tetra", and an 8-byte area "octa", but then we need a name for 16-byte, 32-byte, 64-byte, 128 byte too. < 1410485225 264142 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :also, it doesn't mix well with people calling a byte an "octet" < 1410485233 506022 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :(Knuth calls them "byte") < 1410485235 950407 :pikhq!~pikhq@deagol.pikhq.com PRIVMSG #esoteric :I vote we call 16 bytes a "hecka". < 1410485254 213283 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :the "octet" was probably popularized by French people who don't like English-derived words like byte < 1410485309 384521 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :pikhq: how about the larger ones? < 1410485331 710736 :boily!~boily@96.127.201.149 QUIT :Quit: DOUBLEPLUSGOOD CHICKEN < 1410485347 789480 :pikhq!~pikhq@deagol.pikhq.com PRIVMSG #esoteric :"Hella" for 32 bytes, and 64 is... good question. < 1410485468 273975 :pikhq!~pikhq@deagol.pikhq.com PRIVMSG #esoteric :128 is numberwang. < 1410485468 777460 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :then there's some texts and software interfaces that use "short" for 2-byte and "long" to mean either definitely 4-byte or definitely 8-byte. < 1410485482 301275 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :how about 2 bits = biit, 4 bits = biiit, 8 bits = biiiit, and so on. < 1410485507 596218 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :elliott: no, that gets hard to read for larger sizes < 1410485537 544276 :pikhq!~pikhq@deagol.pikhq.com PRIVMSG #esoteric :4 bits = bte, 16 bits = byyte, 32 = byyyte? < 1410485545 585038 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :okay, let's say we use i = 1, u = 0 and notate it in binary < 1410485561 534330 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :1 bit = bit, 2 bits = biut, 3 bits = biit, 4 bits = biuuut, 0 bits = butt < 1410485564 350086 :pikhq!~pikhq@deagol.pikhq.com PRIVMSG #esoteric :Ooh. "Bytye". < 1410485573 742832 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :for 16 bytes, we could revive the old terminology and call it a paragraph? < 1410485590 839823 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :bwhat. < 1410485614 947592 :pikhq!~pikhq@deagol.pikhq.com PRIVMSG #esoteric :Bye, word, sentence, paragraph, page, chapter, book. < 1410485626 138685 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :pikhq: no, not "page", that's already overloaded < 1410485641 524958 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :pikhq: add "clause" and "phrase" in that though < 1410485727 183956 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :encyclopedia < 1410485739 599831 :pikhq!~pikhq@deagol.pikhq.com PRIVMSG #esoteric :Followed by a Wikipedia, of course. < 1410485762 589557 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :oh, add "issue" and "volume" too then < 1410485772 502129 :pikhq!~pikhq@deagol.pikhq.com PRIVMSG #esoteric :Byte, word, clause, phrase, sentence, paragraph, chapter, volume, encyclopedia, wikipedia < 1410485783 683207 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :you need to fit "library of congress" in there < 1410485789 577552 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :just make sure "character" is not in the list < 1410485791 104580 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :this is definitely less cumbersome than using numbers < 1410485796 700889 :pikhq!~pikhq@deagol.pikhq.com PRIVMSG #esoteric :Between encyclopedia and wikipedia, of course. < 1410485804 227307 :pikhq!~pikhq@deagol.pikhq.com PRIVMSG #esoteric :b_jonas: s/byte/character/ happy? < 1410485815 457088 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :I said make sure it's _not_ on the list < 1410485819 651434 :pikhq!~pikhq@deagol.pikhq.com PRIVMSG #esoteric :Ah. < 1410485827 482901 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :and of course "word" can be problematic too < 1410485852 762504 :pikhq!~pikhq@deagol.pikhq.com PRIVMSG #esoteric :Yes, but that problem is hilarious. < 1410485871 923148 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :so that leaves us with byte, morpheme, phrase, clause, sentence, paragraph, chapter, issue, volume, etc < 1410485886 484744 :pikhq!~pikhq@deagol.pikhq.com PRIVMSG #esoteric :Grapheme for "byte" then. < 1410485913 849232 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :we can't use any of these either because they already have meanings: section, line, journal < 1410485923 184935 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :we could perhaps add "article" and "text" though < 1410485931 433756 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :Also sometimes "byte" isn't necessarily 8-bits but is meaning the unit of memory that a single address spans. (And, I think PDP-11 has another different use for "byte".) < 1410485960 324211 :pikhq!~pikhq@deagol.pikhq.com PRIVMSG #esoteric :Yes, but the only people who are concerned about that also say "octet". < 1410485998 333382 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :And for "word" I also usually make it clear if I mean a 16-bit word, 32-bit word, etc by explicitly specifying as such. < 1410486014 454456 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :Yes, but byte sizes other than 8 bits are sort of history now, we no longer deal with them. < 1410486046 387768 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :oh, and "book" too < 1410486049 80861 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :how many do we have? < 1410486089 90417 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :VM360 uses bytes which are 32-bits long (although the documentation never uses the term "byte", a cell of memory is called a "cell" or "32-bit word", and 8-bit is called "octet"). < 1410486095 69470 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :byte, wyde, morpheme, phrase, clause, sentence, paragraph, article, chapter, text, novel, book, issue, volume < 1410486107 28237 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :But, anyways it is a virtual machine and does not correspond to any real hardware. < 1410486122 515451 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :zzo38: aren't those chars? < 1410486184 153780 :not^v!~notnot^v@2601:4:4500:e15:5ddd:e035:c4b1:d75d QUIT :Read error: Connection reset by peer < 1410486215 939307 :not^v!~notnot^v@2601:4:4500:e15:5ddd:e035:c4b1:d75d JOIN :#esoteric < 1410486246 537943 :not^v!~notnot^v@2601:4:4500:e15:5ddd:e035:c4b1:d75d QUIT :Read error: Connection reset by peer < 1410486275 209498 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :b_jonas: I don't know what you are refering to. Can you please be more specific? < 1410486284 225083 :not^v!~notnot^v@2601:4:4500:e15:5ddd:e035:c4b1:d75d JOIN :#esoteric < 1410486293 834096 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :the 32-bit cells in VM360, are those bytes or just chars? < 1410486301 815282 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :of course this is just a terminology question < 1410486315 843536 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :basically I just don't want to use "octet" which is why I insist that bytes are 8-bit < 1410486336 514303 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :I like 8-bit bytes < 1410486360 643956 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :Well, the term "byte" is never used in VM360 documentation so it doesn't matter; usually it is called a "32-bit word". < 1410486422 307508 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :A character code though is 7-bits, although they are packed four characters per word, with 8-bits per character although the high bit is ignored, so only seven bits are used. < 1410486510 840834 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :then there's the columns of various ticker tape and punch cars, which are all sort of char like and have various sizes starting from 5 bit < 1410486517 161139 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :s/cars/cards/ < 1410486569 531013 :Bicyclidine!~Glossina@wl-nat99.it.wsu.edu JOIN :#esoteric < 1410486571 567765 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :Yes, and Baudot is 5-bits, too < 1410486848 825878 :not^v!~notnot^v@2601:4:4500:e15:5ddd:e035:c4b1:d75d QUIT :Read error: Connection reset by peer < 1410486914 726688 :not^v!~notnot^v@2601:4:4500:e15:5ddd:e035:c4b1:d75d JOIN :#esoteric < 1410486950 409771 :not^v!~notnot^v@2601:4:4500:e15:5ddd:e035:c4b1:d75d QUIT :Read error: Connection reset by peer < 1410486968 922388 :not^v!~notnot^v@2601:4:4500:e15:5ddd:e035:c4b1:d75d JOIN :#esoteric < 1410488045 527262 :Sorella!~queen@191.185.197.120 JOIN :#esoteric < 1410488098 162373 :Sorella!~queen@191.185.197.120 QUIT :Changing host < 1410488098 378599 :Sorella!~queen@oftn/member/Sorella JOIN :#esoteric < 1410490286 562014 :Bicyclidine!~Glossina@wl-nat99.it.wsu.edu QUIT :Ping timeout: 276 seconds < 1410491604 64952 :GeekDude!~G33kDude@unaffiliated/g33kdude QUIT :Quit: {{{}}{{{}}{{}}}{{}}} (www.adiirc.com) < 1410496253 879376 :not^v!~notnot^v@2601:4:4500:e15:5ddd:e035:c4b1:d75d QUIT :Ping timeout: 272 seconds < 1410496393 936325 :not^v!~notnot^v@2601:4:4500:e15:9c60:20f1:cb4a:3c83 JOIN :#esoteric < 1410498492 341935 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Clem14]]4 10 02http://esolangs.org/w/index.php?diff=40448&oldid=40447 5* 03173.67.61.149 5* (+19) 10 < 1410498746 489625 :CrazyM4n!~spng453@ip98-177-186-100.ph.ph.cox.net JOIN :#esoteric < 1410500118 137195 :not^v!~notnot^v@2601:4:4500:e15:9c60:20f1:cb4a:3c83 QUIT :Quit: http://i.imgur.com/Akc6r.gif < 1410500444 564775 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :i like the funciton version < 1410500451 44173 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :21 bytes per char < 1410500633 153174 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :bits* < 1410500678 742490 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :I really want to see a 20.087463 bit long unsigned integer type though < 1410500706 854715 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :yeah < 1410500724 739484 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :http://esolangs.org/wiki/Funciton/Quine so awesome < 1410500764 982882 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :also: why does funciton renders bad in most browsers i've tested? < 1410500775 985375 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :blame your font < 1410500788 638979 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :default < 1410500840 82182 :digitalcold!~redacted@unaffiliated/digitalcold JOIN :#esoteric < 1410500840 298812 :J_Arcane2!~j_arcane@dsl-trebrasgw2-54f959-138.dhcp.inet.fi PRIVMSG #esoteric :myname: Most Unicode fonts still suck. also, spacing is inconsistent in general between browsers. < 1410501211 435532 :MoALTz!~no@user-188-33-209-0.play-internet.pl QUIT :Quit: Leaving < 1410501466 323398 :coppro!raedford@taurine.csclub.uwaterloo.ca PRIVMSG #esoteric :LATIN LETTER INVERTED GLOTTAL STOP < 1410501471 614818 :coppro!raedford@taurine.csclub.uwaterloo.ca PRIVMSG #esoteric :yeah, I'm sure that's Latin < 1410501668 273019 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :GLUTTON STOP, from pig latin < 1410502019 179766 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :is there a terminal-session recording program for linux? < 1410502038 640820 :nortti!nortti@nano.smar.fi PRIVMSG #esoteric :script ? < 1410502056 507412 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :of course there is < 1410502083 969840 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :termrec < 1410502151 806171 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :coppro: all IPA letters are considered to be derived from, well, (Latin) alphabets. < 1410502219 842162 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :coppro: http://www.fileformat.info/info/unicode/char/01C1/index.htm even this one is. < 1410502737 150150 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :termrec isn't in the debian repository apparentely < 1410502768 676583 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :i'm not surprised < 1410502781 235273 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :as an arch user, debian repositories look basically empty < 1410502810 212689 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :really? < 1410502826 964161 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :well, a bit better than centos < 1410502833 495709 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :i'll try building it from source < 1410502840 544955 :coppro!raedford@taurine.csclub.uwaterloo.ca PRIVMSG #esoteric :lifthrasiir: whyyyy < 1410502856 795687 :coppro!raedford@taurine.csclub.uwaterloo.ca PRIVMSG #esoteric :ttyrec is the more classic one < 1410502911 156882 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :libtty.so.0 => not found < 1410502912 7096 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :hm < 1410503043 449473 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :make install is probably broken < 1410503048 558528 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :there's a libtty.so in ./libs < 1410503375 994555 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :lifthrasiir: i should add (ǁ) = (||) in my prelude :D < 1410503436 289112 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :hm < 1410503514 368970 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :Is there one that produces .gif or .flv :)? < 1410503541 32788 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :any regular screen recorder? < 1410503590 600572 :coppro!raedford@taurine.csclub.uwaterloo.ca PRIVMSG #esoteric :yes < 1410503628 330949 :coppro!raedford@taurine.csclub.uwaterloo.ca PRIVMSG #esoteric :ttyrecs are specifically aimed at allowing you to watch the recording on a different terminal < 1410503638 66013 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :yeah < 1410503642 425269 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :good old nethack times < 1410503738 948158 :coppro!raedford@taurine.csclub.uwaterloo.ca PRIVMSG #esoteric :old? < 1410503755 16111 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :yeah, i'm more into dwarf fortress now < 1410503782 947050 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :even though i suck at it < 1410503813 381760 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :byzanz is the best I've found so far < 1410503819 987637 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :but it sucks that you can't stop it < 1410503828 725683 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :you have to set --duration in advance < 1410503950 491097 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :2 days should be enough < 1410503968 52976 :coppro!raedford@taurine.csclub.uwaterloo.ca PRIVMSG #esoteric :lol < 1410503986 994732 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :just find a reasonable upper bound and crop the end away < 1410504028 634509 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :you may not want to watch porn these 2 days, though < 1410504049 667695 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :or maybe you want to do it even more, whatever < 1410504179 565236 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :myname: and you should make a click voice when you read it < 1410504229 33054 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :like in the internet porn simulator in south park? < 1410506245 643665 :CrazyM4n!~spng453@ip98-177-186-100.ph.ph.cox.net QUIT :Read error: Connection reset by peer < 1410506952 366299 :conehead!~conehead@unaffiliated/conehead QUIT :Quit: Computer has gone to sleep < 1410506953 195957 :rodgort!~rodgort@192.241.198.49 QUIT :Quit: ERC Version 5.3 (IRC client for Emacs) < 1410507226 643987 :rodgort!~rodgort@192.241.198.49 JOIN :#esoteric < 1410507696 501598 :drdanmaku!uid17782@gateway/web/irccloud.com/x-tmqkbenciflbbdlq QUIT :Quit: Connection closed for inactivity < 1410510124 612390 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :ACTION needs to fix his life < 1410510226 873273 :AnotherTest!~turingcom@94-224-17-144.access.telenet.be JOIN :#esoteric < 1410510286 391410 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :> let life = id in fix life < 1410510290 136552 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : mueval-core: Time limit exceeded < 1410510292 819038 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Sorry, that would take too long. < 1410510533 110192 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :> fix it < 1410510534 450300 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : Not in scope: ‘it’ < 1410510534 628097 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : Perhaps you meant one of these: < 1410510534 628341 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : ‘id’ (imported from Data.Function), < 1410510534 628439 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : ‘C.id’ (imported from Control.Category), < 1410510534 628533 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : ‘i’ (imported from Debug.SimpleReflect) < 1410510539 781804 :myname!~myname@84.200.43.57 PRIVMSG #esoteric ::( < 1410510556 724487 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :lambdabot should have an it < 1410510592 719661 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :@type i < 1410510593 614712 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric :Expr < 1410510642 432602 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Oh, one of those things. < 1410510981 504412 :Patashu!Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au JOIN :#esoteric < 1410510987 575645 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :> i < 1410510989 17014 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : i < 1410510993 81984 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :> i$i < 1410510994 469030 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : Couldn't match expected type ‘Debug.SimpleReflect.Expr.Expr -> t’ < 1410510994 646647 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : with actual type ‘Debug.SimpleReflect.Expr.Expr’ < 1410511003 366996 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :> x / 9 * i < 1410511004 929358 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : x / 9 * i < 1410511024 555822 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :> mconcat [Just x, Just i] < 1410511025 849030 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : Just (x <> i) < 1410511054 485791 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :> mconcat [Just (Sum x), Just (Sum y)] < 1410511055 812499 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : Just (Sum {getSum = x + y}) < 1410511061 167939 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :not bad < 1410511069 84762 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :> sequence [Just x, Nothing, Just y] < 1410511070 515247 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : Nothing < 1410511075 871089 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :> sequence [Just x, Just y] < 1410511077 529640 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : Just [x,y] < 1410511088 33306 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :> show x < 1410511089 472547 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : "x" < 1410511114 852000 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :> (read "x") :: Expr < 1410511117 203107 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : No instance for (GHC.Read.Read Debug.SimpleReflect.Expr.Expr) < 1410511117 380757 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : arising from a use of ‘Text.Read.read’ < 1410511558 619588 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Is there something builtin like Eq a => (a -> a) -> a -> a that'd be kind of like iterate f x except stop as soon as f x == x and yield that x? < 1410511643 448172 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :hm < 1410511649 127295 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :@type until < 1410511649 965020 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric :(a -> Bool) -> (a -> a) -> a -> a < 1410511657 259307 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :^- that? < 1410511679 371133 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :> until (> 100) (*2) 1 < 1410511680 842651 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : 128 < 1410511686 81366 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :> until (== 128) (*2) 1 < 1410511687 530321 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : 128 < 1410511711 434979 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :I'm not sure wheter you can use it for f x == x < 1410511840 836544 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I guess, if you put the same f in the predicate. < 1410511928 941829 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :> let f = min 0 . (+1) in until (ap (==) f) f (-10) < 1410511930 525593 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : 0 < 1410512602 895565 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :> let f y = y*y in until (\x -> x == f x) f 1 < 1410512604 218942 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : 1 < 1410512623 79959 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :> ap (==) x < 1410512624 417354 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : Couldn't match expected type ‘a -> a’ < 1410512624 595025 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : with actual type ‘Debug.SimpleReflect.Expr.Expr’ < 1410512644 227261 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :ah well I can guess what ap does anyway < 1410512910 275305 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :@src ap < 1410512910 453268 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric :ap = liftM2 id < 1410513278 271543 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :what's the Syntax again for a Record < 1410513286 797499 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :where I want to replace the value of foo < 1410513311 753079 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :let Bar {..} = x in Bar {.., foo = new}? < 1410513511 915427 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Um, wouldn't that be more like let x = Bar {..} in x {foo = new} or something. < 1410513625 167045 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :ah < 1410513642 952849 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :it's Bar { .. } = x in Bar { foo = new, .. } < 1410513683 250340 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :> let x = Foo { bar = 42, baz = "ding" } in [x, x { baz = "dong" }] < 1410513684 882347 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : [Foo {bar = 42, baz = "ding"},Foo {bar = 42, baz = "dong"}] < 1410513777 741478 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I mean, ^ that's what I assumed you meant. < 1410513792 106859 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :setLastName new (Person { .. }) = Person { lastName = new, .. } <- works as well < 1410513819 819188 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :for a lense-unaware Person like me < 1410513824 404295 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :setLastName new p = p { lastName = new } is shorter, though. < 1410515246 414704 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :ah < 1410515252 364523 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :is there a map (fmap f)? < 1410515318 967377 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :@hoogle [f a] -> (a -> b) -> [f b] < 1410515321 346940 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric :Prelude fmap :: Functor f => (a -> b) -> f a -> f b < 1410515321 524597 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric :Data.Functor fmap :: Functor f => (a -> b) -> f a -> f b < 1410515321 524752 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric :Control.Monad fmap :: Functor f => (a -> b) -> f a -> f b < 1410515373 55428 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :actually that's fmap (fmap f) < 1410515376 10029 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :probably < 1410517004 698804 :boily!~boily@96.127.201.149 JOIN :#esoteric < 1410517470 306810 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover JOIN :#esoteric < 1410517776 545296 :AnotherTest!~turingcom@94-224-17-144.access.telenet.be QUIT :Read error: Connection reset by peer < 1410517819 699584 :AnotherTest!~turingcom@94-224-17-144.access.telenet.be JOIN :#esoteric < 1410520422 775661 :boily!~boily@96.127.201.149 QUIT :Quit: TRIPHOSPHATE CHICKEN < 1410521007 380769 :oerjan!oerjan@sprocket.nvg.ntnu.no JOIN :#esoteric < 1410522167 885534 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric : setLastName new (Person { .. }) = Person { lastName = new, .. } <- works as well <-- that's an extension, x { lastName = new } is standard Haskell. < 1410523446 847611 :Sgeo!~quassel@ool-44c2aebc.dyn.optonline.net QUIT :Read error: Connection reset by peer < 1410523959 499267 :GeekDude!~G33kDude@unaffiliated/g33kdude JOIN :#esoteric < 1410524248 953901 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :oerjan: Oh, was that with a literal ".."? I thought it was shorthand for "match all other parameters and list them" on the other side. < 1410524288 337473 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :there is an extension that implements that shorthand < 1410524288 793409 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Now how did that second quotation mark end up right there in the middle. < 1410524318 411021 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :what < 1410524346 252851 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i assume mroman_ said it himself < 1410524414 499186 :Melvar!~melvar@dslb-092-072-149-145.092.072.pools.vodafone-ip.de PRIVMSG #esoteric :< myname> also: why does funciton renders bad in most browsers i've tested? – Looks good for me. < 1410524468 315943 :Melvar!~melvar@dslb-092-072-149-145.092.072.pools.vodafone-ip.de PRIVMSG #esoteric :@tell coppro < coppro> LATIN LETTER INVERTED GLOTTAL STOP – It was certainly used mostly together with latin letters. How would you categorize it? < 1410524468 493629 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric :Consider it noted. < 1410524505 321874 :Melvar!~melvar@dslb-092-072-149-145.092.072.pools.vodafone-ip.de PRIVMSG #esoteric :@tell myname < myname> lifthrasiir: i should add (ǁ) = (||) in my prelude :D – Note that it’s a letter, not a symbol. < 1410524505 499640 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric :Consider it noted. < 1410524521 671170 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :oerjan: hm? < 1410524534 967679 :Melvar!~melvar@dslb-092-072-149-145.092.072.pools.vodafone-ip.de PRIVMSG #esoteric :> let ǁ = (||) in ǁ False True < 1410524536 467729 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : True < 1410524579 557456 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :mroman_: .. wildcards are not standard haskell, but x { f = a } is. < 1410524588 173819 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :then what are they for? < 1410524626 262249 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :um they are for precisely what you seemed to be using them for. but they are an extension, not standard. < 1410524645 27647 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :yeah < 1410524650 661432 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :but if they do the same thing that the standard < 1410524655 620141 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :why would you need an extension < 1410524658 930590 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :*than < 1410524662 762093 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :or *as the standard < 1410524707 353928 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :well they can do other things than being a more verbose way of writing x { f = a } < 1410524755 380482 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :> let 1 = 2 in 1 < 1410524756 950812 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : 1 < 1410524769 660522 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :> let 1+1 = 2 in 1 < 1410524771 237702 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : 1 < 1410524773 879022 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :> let 1+1 = 2 in 1+2 < 1410524775 300641 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : *Exception: :3:5-11: Non-exhaustive patterns in function + < 1410524795 457376 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :oh < 1410524802 525860 :Melvar!~melvar@dslb-092-072-149-145.092.072.pools.vodafone-ip.de PRIVMSG #esoteric :Idris has a nested record update syntax. < 1410524804 559636 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :> let 1+1 = 3 in 1+1 < 1410524806 49456 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : 3 < 1410524815 27541 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :I like that feature < 1410524901 443453 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :> otherwise < 1410524903 112009 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : True < 1410524910 46144 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :German Court: Google Must Stop Ignoring Customer E-mails < 1410524911 804214 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :haha < 1410524950 689780 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :> const otherwise id < 1410524952 205092 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : True < 1410524956 657424 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :it's only fair < 1410524981 913893 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :> const False otherwise True < 1410524983 321430 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : Couldn't match expected type ‘GHC.Types.Bool -> t’ < 1410524983 499823 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : with actual type ‘GHC.Types.Bool’ < 1410526135 713601 :Wings1yte!~Miranda@195.112.119.245 JOIN :#esoteric < 1410526678 652236 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :i hate being @told :( < 1410526692 609945 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :hm... < 1410526710 49906 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`run grep myname bin/dontaskdonttelllist < 1410526710 980124 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410526722 734929 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :who is responsible for lambdabot? i have a feature request < 1410526739 443782 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :only annoy @told people if they ever went offline til next message < 1410526777 270286 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :myname, -1. Awkward for people with bouncers < 1410526794 34215 :Wings1yte!~Miranda@195.112.119.245 PART #esoteric :"I'm a happy Miranda NG user! Get it here: http://miranda-ng.org/" < 1410526801 417001 :Melvar!~melvar@dslb-092-072-149-145.092.072.pools.vodafone-ip.de PRIVMSG #esoteric :I never go offline if I can help it. < 1410526804 57875 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :Taneb: people with bouncers should receive highlights from their bouncers < 1410526811 944077 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :that's the only reason to actually use one < 1410526839 200295 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`run echo myname >>bin/dontaskdonttelllist < 1410526840 923340 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410526871 288697 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`dontaskdonttelllist < 1410526872 235301 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :dontaskdonttelllist: q​u​i​n​t​o​p​i​a​ c​o​p​p​r​o​ m​y​n​a​m​e​ < 1410526885 965155 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :that seems nice < 1410526903 809196 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :especially the fact that HackEgo didn't highlight me < 1410526904 758949 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :...is it bad that the mouse pointer feels like an extension of my body? < 1410526919 255078 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :Taneb: it means you don't use the terminal enough < 1410526932 487783 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover QUIT :Ping timeout: 246 seconds < 1410526947 460574 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :myname, terminal isn't great for browsing Facebook < 1410526960 331638 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :Or for playing Civ V < 1410526978 358268 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :you shouldn't browse facebook in the first place < 1410526995 919079 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :Easy for you to say < 1410526997 195371 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :myname: Yeah but... sometimes highlights in the past are so far in the past they exceed buffers < 1410527040 519458 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :mroman_: well, if i'm away, irssi puts them in the status window when i come back < 1410527047 635233 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :also, i get a push notificatio < 1410527203 555233 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :oerjan: i am a bit confused, why does hackego have a list for lambdabot? < 1410527221 653492 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :myname, I think it's a list for oerjan < 1410527225 46007 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :myname: because i made it and i cannot make commands in lambdabot hth < 1410527231 21562 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :also that. < 1410527241 33911 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :although other people are welcome to use it, of course. < 1410527242 43109 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :so, lambdabot just ignores it < 1410527258 265854 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :it's just for me to remember who doesn't want to be @told. < 1410527289 942549 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :that's a bit disappointed, but i do think the most @tells i've received so far are from you, so i'm actually okay with it < 1410527297 986075 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :heh :P < 1410527477 612149 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`help < 1410527477 826688 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Runs arbitrary code in GNU/Linux. Type "`", or "`run " for full shell commands. "`fetch " downloads files. Files saved to $PWD are persistent, and $PWD/bin is in $PATH. $PWD is a mercurial repository, "`revert " can be used to revert to a revision. See http://codu.org/projects/hackbot/fshg/ < 1410527482 797886 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :... < 1410527489 662537 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`find / < 1410527490 416438 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/ \ /sys \ /sys/fs \ /sys/fs/ext4 \ /sys/fs/ext4/features \ /sys/fs/ext4/features/meta_bg_resize \ /sys/fs/ext4/features/batched_discard \ /sys/fs/ext4/features/lazy_itable_init \ /sys/fs/cgroup \ /sys/bus \ /sys/bus/cpu \ /sys/bus/cpu/devices \ /sys/bus/cpu/devices/cpu0 \ /sys/bus/cpu/drivers \ /sys/bus/cpu/uevent \ /sys/bus/cpu/drivers_probe \ < 1410527494 491825 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :huh < 1410527495 413683 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :i am very close to asking how hard it can be to teach lambdabot stuff, but then i remember my time trying to get it into a jabber muc ... < 1410527531 695330 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`find / | grep passwd < 1410527532 198821 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :find: `/ | grep passwd': No such file or directory < 1410527545 78286 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :... < 1410527556 822691 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :aww < 1410527563 872945 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`cowsays moo < 1410527564 318163 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: cowsays: not found < 1410527580 814333 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :GeekDude: you need to use `run to use commands with more than one argument < 1410527594 896857 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :(or shell features) < 1410527624 568538 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`cowsay moo < 1410527625 29315 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: cowsay: not found < 1410527629 115200 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :we need cowsay < 1410527634 363772 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`run apt-get install cowsay < 1410527635 13624 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :W: Unable to read /etc/apt/apt.conf.d/ - DirectoryExists (2: No such file or directory) \ E: Could not open lock file /var/lib/dpkg/lock - open (2: No such file or directory) \ E: Unable to lock the administration directory (/var/lib/dpkg/), are you root? < 1410527637 700919 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric ::( < 1410527638 729823 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :we don't < 1410527646 104569 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :cowsay is horrible < 1410527652 849780 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`cowsay you're wrong < 1410527653 303891 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: cowsay: not found < 1410527653 587935 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :better use toilet or the like < 1410527661 31873 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq_uptime < 1410527661 209597 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric :1d 7h 11m 45s < 1410527699 413135 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`telnet towel.blinkenlights.nl < 1410527699 867445 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: telnet: not found < 1410527710 693385 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run nslookup < 1410527711 194206 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :bash: nslookup: command not found < 1410527716 672081 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run ifconfig < 1410527717 162495 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :bash: ifconfig: command not found < 1410527723 449427 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run sudo ifconfig < 1410527724 193507 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :bash: sudo: command not found < 1410527727 746085 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :this is a very sad shell < 1410527734 678301 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run run < 1410527735 190465 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :bash: run: command not found < 1410527737 221413 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`ls < 1410527737 871354 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​:-( \ 98076 \ a \ app.sh \ bdsmreclist \ bin \ canary \ cat \ complaints \ :-D \ dc \ dog \ etc \ factor \ fb \ fb.c \ head \ hej \ hello \ hello.c \ ibin \ index.html \ index.html.1 \ interps \ lib \ moop.txt \ paste \ pref \ prefs \ quines \ quotes \ share \ src \ test \ unpa \ UNPA \ Wierd \ wisdom \ wisdom.pdf < 1410527740 433822 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run ls < 1410527741 106917 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​:-( \ 98076 \ a \ app.sh \ bdsmreclist \ bin \ canary \ cat \ complaints \ :-D \ dc \ dog \ etc \ factor \ fb \ fb.c \ head \ hej \ hello \ hello.c \ ibin \ index.html \ index.html.1 \ interps \ lib \ moop.txt \ paste \ pref \ prefs \ quines \ quotes \ share \ src \ test \ unpa \ UNPA \ Wierd \ wisdom \ wisdom.pdf < 1410527745 52746 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`touch geek.sh < 1410527746 264367 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410527747 690293 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`:-D < 1410527748 253244 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: :-D: not found < 1410527754 975329 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`cat :-D < 1410527755 225758 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​☺ < 1410527758 796170 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`cat :-( < 1410527759 285278 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​☹ < 1410527762 565277 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`run echo "echo 'wut'" > geek.sh < 1410527764 63295 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410527769 413426 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`bash geek.sh < 1410527769 984548 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :wut < 1410527772 19309 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric ::D < 1410527776 942345 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :outgoing connections are whitelisted, and i'm not sure they're even working. but you can download things with `fetch. < 1410527780 433590 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`geek.sh < 1410527781 29724 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: geek.sh: not found < 1410527784 698072 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`chmod +x geek.sh < 1410527785 139655 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :chmod: missing operand after `+x geek.sh' \ Try `chmod --help' for more information. < 1410527789 170752 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`run chmod +x geek.sh < 1410527790 551890 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410527792 873355 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`geek < 1410527793 227938 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: geek: not found < 1410527793 482662 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`geek.sh < 1410527794 339372 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: geek.sh: not found < 1410527797 595119 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :huh... < 1410527801 795471 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`./geek.sh < 1410527802 289736 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :wut < 1410527804 49956 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :phew < 1410527808 467409 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :gimme a sec < 1410527815 939317 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :I think it has to be in bin? < 1410527816 243404 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`ls < 1410527816 818001 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​:-( \ 98076 \ a \ app.sh \ bdsmreclist \ bin \ canary \ cat \ complaints \ :-D \ dc \ dog \ etc \ factor \ fb \ fb.c \ geek.sh \ head \ hej \ hello \ hello.c \ ibin \ index.html \ index.html.1 \ interps \ lib \ moop.txt \ paste \ pref \ prefs \ quines \ quotes \ share \ src \ test \ unpa \ UNPA \ Wierd \ wisdom \ wisdom.pdf < 1410527825 817655 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run mv geek.sh bin/geek.sh < 1410527827 243565 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410527829 113828 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`geek < 1410527829 638461 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: geek: not found < 1410527832 553030 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`geek.sh < 1410527833 146124 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :wut < 1410527838 254160 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :you did bin instead of /bin? < 1410527842 319683 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run mv bin/geek.sh bin/geek < 1410527843 667571 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410527844 232925 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`geek < 1410527844 704508 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :wut < 1410527848 500436 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :oh cool < 1410527853 843336 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run ls bin/ < 1410527854 21168 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​` \ ^.^ \ ̊ \ ? \ ¿ \ @ \ ؟ \ WELCOME \  \  \ 8ball \ 8-ball \ aaaaaaaaa \ addquote \ addwep \ allquotes \ analogy \ anonlog \ as86 \ aseen \ bienvenido \ botsnack \ bseen \ buttsnack \ calc \ CaT \ catcat \ cats \ cc \ cdecl \ c++decl \ chroot \ coins \ CoInS \ complain \ complaints \ danddreclist \ define \ delquote \ delv < 1410527858 107560 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :ACTION is going to try to get pipes.sh in there  < 1410527863 821910 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`analogy < 1410527867 397518 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :vorat is to desen as prespor is to dormwortaint < 1410527874 200572 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :`analorgy < 1410527875 46534 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: analorgy: not found < 1410527879 901848 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`run which git < 1410527880 487620 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410527930 457851 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`pieps < 1410527930 963003 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: pieps: not found < 1410527933 205749 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`pipes < 1410527933 848302 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: pipes: not found < 1410527951 731095 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :ls < 1410527962 17944 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`fetch --help < 1410527962 931189 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :GNU Wget 1.13.4, a non-interactive network retriever. \ Usage: wget [OPTION]... [URL]... \ \ Mandatory arguments to long options are mandatory for short options too. \ \ Startup: \ -V, --version display the version of Wget and exit. \ -h, --help print this help. \ -b, --background go to background after star < 1410527977 307675 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run fetch http://codepad.org/P1Fhwic3/raw.py bin/quala.py < 1410527978 35248 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :bash: fetch: command not found < 1410527983 973883 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run fetch.sh http://codepad.org/P1Fhwic3/raw.py bin/quala.py < 1410527984 683303 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :bash: fetch.sh: command not found < 1410527987 192765 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :git not found :( < 1410527990 47996 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :i like that sentence about mandatory arguments < 1410527992 433161 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run wget http://codepad.org/P1Fhwic3/raw.py bin/quala.py < 1410527997 847814 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :mroman_: `fetch doesn't work in `run < 1410527998 203416 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`run wget http://github.com < 1410528005 649310 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :it makes me think i'm smarter than the average manual reader < 1410528007 931427 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​--2014-09-12 13:19:30-- http://codepad.org/P1Fhwic3/raw.py \ Connecting to 127.0.0.1:3128... Failed to connect to socket 2. \ connected. \ Proxy request sent, awaiting response... No data received. \ Retrying. \ \ --2014-09-12 13:19:31-- (try: 2) http://codepad.org/P1Fhwic3/raw.py \ Connecting to 127.0.0.1:3128... Failed to connect to socket < 1410528008 132267 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`ls bin/quala.py < 1410528008 545923 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :ls: cannot access bin/quala.py: No such file or directory < 1410528012 781954 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :oh wow O_o < 1410528013 632069 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​--2014-09-12 13:19:36-- http://github.com/ \ Connecting to 127.0.0.1:3128... Failed to connect to socket 2. \ connected. \ Proxy request sent, awaiting response... No data received. \ Retrying. \ \ --2014-09-12 13:19:37-- (try: 2) http://github.com/ \ Connecting to 127.0.0.1:3128... Failed to connect to socket 2. \ connected. \ Proxy request < 1410528014 899633 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :wget works < 1410528019 511666 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :it's an external command that's not subject to the whitelist. < 1410528035 989689 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :hmm... it doesn't actually work < 1410528057 581292 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run python -e "print 9" < 1410528058 184008 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Unknown option: -e \ Unknown option: -e \ usage: python [option] ... [-c cmd | -m mod | file | -] [arg] ... \ Try `python -h' for more information. < 1410528061 294411 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run python -c "print 9" < 1410528062 83509 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :9 < 1410528066 493409 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run python -c "while 1: print 9" < 1410528067 199211 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 \ 9 < 1410528079 144272 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run ps axuw < 1410528079 739939 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND \ 0 1 0.0 0.1 1012 272 ? S 13:20 0:00 /init \ 0 2 0.0 0.0 0 0 ? S 13:20 0:00 [kthreadd] \ 0 3 0.0 0.0 0 0 ? S 13:20 0:00 [ksoftirqd/0] \ 0 4 0.0 0.0 0 0 ? < 1410528120 941068 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run python -c "print '!bf .'" < 1410528121 606863 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​!bf . < 1410528130 168987 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bf . < 1410528135 408614 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :hm < 1410528139 93629 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :egobot isn't here. < 1410528142 481588 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run python -c "print '!blsq ??'" < 1410528143 39625 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​!blsq ?? < 1410528154 465932 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq ?? < 1410528155 802546 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : "Burlesque - 1.7.2c" < 1410528159 798362 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric ::) < 1410528163 614763 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :good < 1410528178 525733 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :also, i thought mroman_ had been here long enough to remember HackEgo's invisible space trick < 1410528188 719490 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :My brain is a mess < 1410528192 836103 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :I can't remember such things. < 1410528251 237910 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run python -c "import os; os.popen('ls');'" < 1410528251 947096 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​ File "", line 1 \ import os; os.popen('ls');' \ ^ \ SyntaxError: EOL while scanning string literal < 1410528256 988156 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run python -c "import os; os.popen('ls');" < 1410528257 702369 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :ls: write error: Broken pipe < 1410528260 940004 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :also since it got a bit intermingled with noise above i should repeat that it's `fetch, not `wget that is the external command circumventing the whitelist. < 1410528275 908993 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :hm < 1410528277 511220 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :(even though the former is a wrapper around wget) < 1410528283 627436 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :I'm writing a program to slowly echo things into a file < 1410528289 417515 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`fetch http://codepad.org/P1Fhwic3/raw.py < 1410528290 662149 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :2014-09-12 13:24:27 URL:http://codepad.org/P1Fhwic3/raw.py [36/36] -> "raw.py" [1] < 1410528294 419618 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :ah < 1410528296 873166 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :i see < 1410528299 510392 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`./raw.py < 1410528300 29859 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: /hackenv/raw.py: Permission denied \ /home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: /hackenv/raw.py: cannot execute: Permission denied < 1410528302 453112 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :wait, fetch works? < 1410528304 672563 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :GeekDude: note that HackEgo commands have a timeout < 1410528307 621451 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run chmod +x raw.py < 1410528308 916817 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410528309 954055 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`./raw.py < 1410528310 492697 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: /hackenv/raw.py: /usr/bin/python^M: bad interpreter: No such file or directory \ /home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: /hackenv/raw.py: Success < 1410528314 592822 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric ::) < 1410528317 537530 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :fucking ^M < 1410528345 815313 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`rm raw.py < 1410528347 98273 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410528374 230022 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :ACTION wonders...  < 1410528376 840387 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`run pipes < 1410528377 452274 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :bash: pipes: command not found < 1410528381 431820 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`pipes < 1410528382 155771 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: pipes: not found < 1410528385 833213 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :aww < 1410528394 235443 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :cowsay wouldn't work anyways < 1410528399 54553 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :multiline is bokr < 1410528402 772309 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :hm < 1410528428 939266 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`fetch http://mroman.ch/blsqirci < 1410528438 837808 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :2014-09-12 13:26:55 URL:http://mroman.ch/blsqirci [8619408/8619408] -> "blsqirci" [1] < 1410528444 936175 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run chmod +x blsqirci < 1410528446 339101 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410528450 936451 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`./blsqirci < 1410528451 359471 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: /hackenv/blsqirci: cannot execute binary file \ /home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: /hackenv/blsqirci: Success < 1410528455 889393 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :pff < 1410528469 572993 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric ::( < 1410528476 425184 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`file blsqirci < 1410528478 44405 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :blsqirci: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.26, BuildID[sha1]=0x82b3ebfc81654fecbacef31f3e2811db51c1403e, stripped < 1410528479 924836 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`run rm -rf / < 1410528480 575872 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :rm: it is dangerous to operate recursively on `/' \ rm: use --no-preserve-root to override this failsafe < 1410528491 151169 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`run rm --no-preserve-root -rf / < 1410528495 657430 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :nooooo < 1410528501 109777 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :fiendish < 1410528506 2440 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`file blsqirci < 1410528517 687686 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :You'd think that was.... disabled < 1410528520 530145 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`help < 1410528520 859722 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Runs arbitrary code in GNU/Linux. Type "`", or "`run " for full shell commands. "`fetch " downloads files. Files saved to $PWD are persistent, and $PWD/bin is in $PATH. $PWD is a mercurial repository, "`revert " can be used to revert to a revision. See http://codu.org/projects/hackbot/fshg/ < 1410528525 993544 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`run ls < 1410528526 895627 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :what have you done! < 1410528532 142058 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :apparently deleted it < 1410528535 148404 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric ::D < 1410528541 785197 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :who runs HackEgo? < 1410528544 918870 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :You're mean < 1410528557 131523 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :I do pen testing on IRC bots < 1410528563 142841 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :this one failed the testing < 1410528574 454698 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :rm: cannot remove `/sys/fs/ext4/features/meta_bg_resize': Permission denied \ rm: cannot remove `/sys/fs/ext4/features/batched_discard': Permission denied \ rm: cannot remove `/sys/fs/ext4/features/lazy_itable_init': Permission denied \ rm: cannot remove `/sys/fs/cgroup': Permission denied \ rm: cannot remove `/sys/bus/cpu/devices/cpu0': Permission < 1410528576 180838 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : You suck GeekDude < 1410528579 177171 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :blsqirci: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.26, BuildID[sha1]=0x82b3ebfc81654fecbacef31f3e2811db51c1403e, stripped < 1410528579 990883 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​:-( \ 98076 \ a \ app.sh \ bdsmreclist \ bin \ binpipes \ blsqirci \ canary \ cat \ complaints \ :-D \ dc \ dog \ etc \ factor \ fb \ fb.c \ head \ hej \ hello \ hello.c \ ibin \ index.html \ index.html.1 \ interps \ lib \ moop.txt \ paste \ pref \ prefs \ quines \ quotes \ share \ src \ test \ test.txt \ unpa \ UNPA \ Wierd \ wisdom \ wisdom.pd < 1410528588 608217 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :GeekDude: nah it's just thrashing a bit < 1410528588 786116 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :sorry, but I didn' tthink that'd actually do anything < 1410528597 730402 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :oh < 1410528602 927158 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run ./blsqirci < 1410528604 173025 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :bash: ./blsqirci: cannot execute binary file < 1410528616 250916 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :I thought it could? < 1410528616 945651 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`ls bin < 1410528618 35352 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​` \ ^.^ \ ̊ \ ? \ ¿ \ @ \ ؟ \ WELCOME \  \  \ 8ball \ 8-ball \ aaaaaaaaa \ addquote \ addwep \ allquotes \ analogy \ anonlog \ as86 \ aseen \ bienvenido \ botsnack \ bseen \ buttsnack \ calc \ CaT \ catcat \ cats \ cc \ cdecl \ c++decl \ chroot \ coins \ CoInS \ complain \ complaints \ danddreclist \ define \ delquote \ delv < 1410528621 212770 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :hmm... < 1410528624 630265 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :things still appear to be there < 1410528629 47263 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`8ball < 1410528629 225030 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Don't count on it. < 1410528633 836516 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :¯\_(ツ)_/¯ < 1410528637 447392 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :Who runs HackEgo? < 1410528646 111474 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`uname -a < 1410528646 673071 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Linux umlbox 3.13.0-umlbox #1 Wed Jan 29 12:56:45 UTC 2014 x86_64 GNU/Linux < 1410528683 972430 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run python -c "import os; print os.popen('ls').read()" < 1410528685 143460 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​:-( \ 98076 \ a \ app.sh \ bdsmreclist \ bin \ binpipes \ blsqirci \ canary \ cat \ complaints \ :-D \ dc \ dog \ etc \ factor \ fb \ fb.c \ head \ hej \ hello \ hello.c \ ibin \ index.html \ index.html.1 \ interps \ lib \ moop.txt \ paste \ pref \ prefs \ quines \ quotes \ share \ src \ test \ test.txt \ unpa \ UNPA \ Wierd \ wisdom \ wisdom.pd < 1410528691 261935 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run python -c "import os; print os.popen('./blsqirci').read()" < 1410528691 880906 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​./blsqirci: 1: ./blsqirci: ~libgmp.so.10_ITM_deregisterTMCloneTable__gmon_start___Jv_RegisterClasses_ITM_registerTMCloneTable__gmpz_tdiv_r_ui__gmpz_tdiv_q_ui__gmpz_export__gmpz_import__gmpz_add__gmp_set_memory_functions__gmpz_sub_ui__gmpz_mul__gmpz_invert__gmpz_fdiv_q_2exp__gmpz_mul_si__gmpz_tdiv_qr__gmpz_divexact__gmpz_fdiv_qr__g < 1410528701 23725 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :woot < 1410528709 949321 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`run python -c "import antigravity" < 1410528710 804919 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​ \ Configuration file "/etc/lynx-cur/lynx.cfg" is not available. \ \ \ Configuration file "/etc/lynx-cur/lynx.cfg" is not available. < 1410528715 381674 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :... < 1410528721 145051 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :aww < 1410528731 453032 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run python -c "import os; print os.exec('./blsqirci').read()" < 1410528731 983954 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​ File "", line 1 \ import os; print os.exec('./blsqirci').read() \ ^ \ SyntaxError: invalid syntax < 1410528760 993246 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :I wonder... < 1410528774 304393 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run python -c "import os; print os.execv('./blsqirci',[])" < 1410528775 9180 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Traceback (most recent call last): \ File "", line 1, in \ ValueError: execv() arg 2 must not be empty < 1410528783 885411 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run python -c "import os; print os.execv('./blsqirci',[''])" < 1410528784 616829 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Traceback (most recent call last): \ File "", line 1, in \ OSError: [Errno 8] Exec format error < 1410528787 637503 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :bleh < 1410528803 777918 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :if I were to get a very small IRC bot on there, would it work? < 1410528817 473271 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run python -c "import os; print os.execv('blsqirci',['--ircbot'])" < 1410528818 39758 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Traceback (most recent call last): \ File "", line 1, in \ OSError: [Errno 8] Exec format error < 1410528823 699550 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :k < 1410528826 443424 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`rm blsqirci < 1410528827 981300 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410528848 994588 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :I could just download the source and build it probably < 1410528851 192819 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :maybe < 1410528861 283543 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run echo "main = print 9" < 1410528861 882293 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :main = print 9 < 1410528862 60320 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :GeekDude: things you put on HackEgo don't run continuously < 1410528865 58261 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run echo "main = print 9" > foo.hs < 1410528866 458348 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410528867 647140 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`runghc foo.hs < 1410528868 197943 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: runghc: not found < 1410528873 287292 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`runhaskell foo.hs < 1410528873 987963 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: runhaskell: not found < 1410528878 641614 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`ghc foo.hs < 1410528879 273819 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: ghc: not found < 1410528893 114756 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :mroman_: HackEgo doesn't have a haskell install any longer. < 1410528907 726708 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :it wasn't included in a server move. < 1410528914 953392 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :I see < 1410528975 473808 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :we could try bootstrapping it < 1410528978 390346 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :if there's a gcc < 1410528982 900320 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`gcc --version < 1410528983 485497 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :gcc (Debian 4.7.2-5) 4.7.2 \ Copyright (C) 2012 Free Software Foundation, Inc. \ This is free software; see the source for copying conditions. There is NO \ warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. < 1410528985 987562 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric ::) < 1410528995 218500 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :that's going to take a while with all the timeouts. < 1410529002 168299 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :yeah :( < 1410529017 14262 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`htop < 1410529017 596910 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: htop: not found < 1410529033 152001 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`cat /proc/meminfo < 1410529033 653868 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :MemTotal: 250592 kB \ MemFree: 243924 kB \ Buffers: 0 kB \ Cached: 3120 kB \ SwapCached: 0 kB \ Active: 1228 kB \ Inactive: 2464 kB \ Active(anon): 576 kB \ Inactive(anon): 0 kB \ Active(file): 652 kB \ Inactive(file): 2464 kB \ Unevictable: < 1410529039 30169 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :anyone have a 0day handy? < 1410529045 166273 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :250MB isn't enough to compile anything with ghc anyway < 1410529052 555440 :idris-bot!~ircslave@dslb-092-072-149-145.092.072.pools.vodafone-ip.de QUIT :Ping timeout: 276 seconds < 1410529069 611328 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :Is it enough for the interpreter? < 1410529072 145704 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :I have a 0day php-injection exploit for php wheathermap 0.97c . < 1410529082 915858 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i've compiled haskell on HackEgo in previous times < 1410529107 45579 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i don't think HackEgo has php either, istr someone trying the other day < 1410529115 897732 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :portabl php runtime? < 1410529136 539361 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :also that sounds like it only breaks php not the os < 1410529140 161799 :Melvar!~melvar@dslb-092-072-149-145.092.072.pools.vodafone-ip.de QUIT :Ping timeout: 255 seconds < 1410529142 562542 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`python --version < 1410529143 173592 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Python 2.7.3 < 1410529154 261267 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`whereis python < 1410529156 90944 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :python: /usr/bin/python2.7 /usr/bin/python /usr/bin/python2.6 /usr/lib/python2.7 /usr/lib/python2.6 /usr/bin/X11/python2.7 /usr/bin/X11/python /usr/bin/X11/python2.6 /usr/local/lib/python2.7 /usr/local/lib/python2.6 /usr/include/python2.7 /usr/include/python2.6 /usr/share/python /usr/share/man/man1/python.1.gz < 1410529160 969462 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :It's Gregor's bot, but I've been doing some minor maintenance on it occasionally. < 1410529173 972993 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`cp /usr/bin/python2.7 /usr/bin/python3 < 1410529174 522923 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :cp: missing destination file operand after `/usr/bin/python2.7 /usr/bin/python3' \ Try `cp --help' for more information. < 1410529184 790770 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run cp /usr/bin/python2.7 /usr/bin/python3 < 1410529185 262539 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :cp: cannot create regular file `/usr/bin/python3': Read-only file system < 1410529212 223877 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :You could make bin/python3 (no slash) a symlink to /usr/bin/python2.7 if you wanted. < 1410529214 558908 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`echo "main(){}" > foo.c < 1410529215 122282 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​"main(){}" > foo.c < 1410529221 432327 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run echo "main(){}" > foo.c < 1410529222 850068 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410529223 842339 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`gcc foo.c < 1410529228 978278 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410529231 530514 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`ls < 1410529232 298914 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​:-( \ 98076 \ a \ a.out \ app.sh \ bdsmreclist \ bin \ binpipes \ canary \ cat \ complaints \ :-D \ dc \ dog \ etc \ factor \ fb \ fb.c \ foo.c \ foo.hs \ head \ hej \ hello \ hello.c \ ibin \ index.html \ index.html.1 \ interps \ lib \ moop.txt \ paste \ pref \ prefs \ quines \ quotes \ share \ src \ test \ test.txt \ unpa \ UNPA \ Wierd \ wisd < 1410529242 168480 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run gcc -C foo.c -o foo < 1410529244 48923 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410529247 614724 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`ls < 1410529248 234282 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​:-( \ 98076 \ a \ a.out \ app.sh \ bdsmreclist \ bin \ binpipes \ canary \ cat \ complaints \ :-D \ dc \ dog \ etc \ factor \ fb \ fb.c \ foo \ foo.c \ foo.hs \ head \ hej \ hello \ hello.c \ ibin \ index.html \ index.html.1 \ interps \ lib \ moop.txt \ paste \ pref \ prefs \ quines \ quotes \ share \ src \ test \ test.txt \ unpa \ UNPA \ Wierd < 1410529255 259287 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run chmod +x foo < 1410529255 854313 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410529257 336027 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`./foo < 1410529257 876986 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410529260 399264 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :hm < 1410529273 214281 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :So much cruft in there. < 1410529273 444918 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`file foo < 1410529273 988674 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :foo: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.26, BuildID[sha1]=0x4ace0d69eb7e9d45d6d5ef24cb12c25f3df1b546, not stripped < 1410529276 547897 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i think gcc chmods automatically, also that your first try ended up in a.out < 1410529323 337464 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`run exec 3<>/dev/tcp/chat.freenode.net/6667 < 1410529324 41921 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :bash: chat.freenode.net: Name or service not known \ bash: /dev/tcp/chat.freenode.net/6667: Invalid argument < 1410529330 343224 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :huh < 1410529333 425358 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run echo "main(int a,char** v){printf(v);}" > foo.c < 1410529335 61173 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410529336 984660 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run gcc -C foo.c -o foo < 1410529339 22884 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :foo.c: In function ‘main’: \ foo.c:1:22: warning: incompatible implicit declaration of built-in function ‘printf’ [enabled by default] \ foo.c:1:1: warning: passing argument 1 of ‘printf’ from incompatible pointer type [enabled by default] \ foo.c:1:1: note: expected ‘const char *’ but argument is of type ‘char **’ < 1410529348 609977 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run echo "main(int a,char** v){printf(v[0]);}" > foo.c < 1410529349 931811 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410529350 499431 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run gcc -C foo.c -o foo < 1410529351 167601 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :GeekDude: No networking. Except through a proxy with a very small whitelist, and even that might be broken at the moment. < 1410529352 445521 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :foo.c: In function ‘main’: \ foo.c:1:22: warning: incompatible implicit declaration of built-in function ‘printf’ [enabled by default] < 1410529357 893928 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :fizzie: awww < 1410529361 710429 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run foo %x%x%x < 1410529362 261060 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :bash: foo: command not found < 1410529365 773636 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run ./foo %x%x%x < 1410529366 381603 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​./foo < 1410529376 494936 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run echo "main(int a,char** v){printf(v[1]);}" > foo.c < 1410529377 723274 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410529378 68812 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :I suck :( < 1410529380 659978 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run gcc -C foo.c -o foo < 1410529382 577692 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :foo.c: In function ‘main’: \ foo.c:1:22: warning: incompatible implicit declaration of built-in function ‘printf’ [enabled by default] < 1410529385 187243 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run ./foo %x%x%x < 1410529385 765542 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :bfcded78bfcded900 < 1410529431 985402 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :`run rm 98076 UNPA a a.out app.sh fb.c fb index.html index.html.1 unpa test.txt # these all seem quite useless < 1410529433 545169 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410529453 737061 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Now if only I could motivate myself to do the same for ~ or ~/tmp at home. < 1410529455 706406 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Talk:Qwerty Reverse Polish Notation14]]4 N10 02http://esolangs.org/w/index.php?oldid=40449 5* 03Imaginer1 5* (+219) 10Created page with "Oh man, I -really- like this. I'll work on a Python interpreter. I think I'll make it command-line instead of by reading files. ~~~~" < 1410529487 985889 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run echo "main(int a,char** v){int i = 0xcafebabe; printf(v[1]); printf("%d",i); return i;}" > foo.c < 1410529489 311127 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410529495 42843 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run gcc -C foo.c -o foo < 1410529495 666050 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :foo.c: In function ‘main’: \ foo.c:1:42: warning: incompatible implicit declaration of built-in function ‘printf’ [enabled by default] \ foo.c:1:63: error: expected expression before ‘%’ token < 1410529506 534717 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run ./foo %x%x%x < 1410529507 86109 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :bffe6d78bffe6d900 < 1410529530 86266 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run mv foo bin/hackme < 1410529531 667769 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410529535 589504 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`hackme %s < 1410529536 245308 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​./ < 1410529565 978217 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :although < 1410529576 195760 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run ./foo %x%x%x%x%x%x < 1410529576 813443 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :bash: ./foo: No such file or directory < 1410529581 356554 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`foo %x%x%x%x%x%x < 1410529581 859201 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: foo: not found < 1410529588 467374 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`hackme %x%x%x%x%x%x < 1410529589 50107 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :bfd9bd78bfd9bd900405a73204000e310bfd9bd78 < 1410529596 157855 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :might have been optimized away < 1410529625 163947 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run echo "main(int a,char** v){volatile unsigned int i = 0xcafebabe; printf(v[1]); printf("%d",i); return (i+1);}" > foo.c < 1410529626 729900 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410529631 672392 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run gcc -C foo.c -o foo -O0 < 1410529632 293767 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :foo.c: In function ‘main’: \ foo.c:1:60: warning: incompatible implicit declaration of built-in function ‘printf’ [enabled by default] \ foo.c:1:81: error: expected expression before ‘%’ token < 1410529643 564064 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run mv -f foo bin/hackme < 1410529644 171944 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :mv: cannot stat `foo': No such file or directory < 1410529649 410281 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run mv -f ./foo bin/hackme < 1410529650 207362 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :mv: cannot stat `./foo': No such file or directory < 1410529653 891299 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :oh < 1410529655 441893 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :ok < 1410529662 217905 :zzo38!~zzo38@24-207-51-179.eastlink.ca QUIT :Remote host closed the connection < 1410529682 471879 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run echo "main(int a,char** v){volatile unsigned int i = 0xcafebabe; printf(v[1]); putc(i); return (i+1);}" > foo.c < 1410529683 791833 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410529687 870518 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run gcc -C foo.c -o foo -O0 < 1410529689 764502 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :foo.c: In function ‘main’: \ foo.c:1:60: warning: incompatible implicit declaration of built-in function ‘printf’ [enabled by default] < 1410529695 98184 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run mv -f ./foo bin/hackme < 1410529696 653831 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410529704 506874 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`hackme %x%x%x%x < 1410529705 144044 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Segmentation fault < 1410529707 799873 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`hackme %x%x%x < 1410529708 321230 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Segmentation fault < 1410529710 90375 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`hackme %x%x < 1410529710 550513 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Rasen14]]4 10 02http://esolangs.org/w/index.php?diff=40450&oldid=40430 5* 03Wolgr 5* (+61) 10Corrections and todo list. < 1410529710 728127 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Segmentation fault < 1410529713 694469 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`hackme %x < 1410529714 303681 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Segmentation fault < 1410529717 361032 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :pff < 1410529720 47812 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :no fun :( < 1410529732 828218 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`hackme < 1410529733 403923 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Segmentation fault < 1410529753 627270 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run echo "main(int a,char** v){volatile unsigned int i = 0xcafebabe; printf(v[1]); return (i+1);}" > foo.c < 1410529755 148234 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410529759 319335 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run gcc -C foo.c -o foo -O0 < 1410529761 192834 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :foo.c: In function ‘main’: \ foo.c:1:60: warning: incompatible implicit declaration of built-in function ‘printf’ [enabled by default] < 1410529764 212052 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run mv -f ./foo bin/hackme < 1410529765 601284 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410529767 895790 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`hackme %x < 1410529768 382967 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :bfd44d78 < 1410529771 775254 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`hackme %x,%x < 1410529772 319881 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :bfbffd78,bfbffd90 < 1410529775 101952 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`hackme %x,%x,%x < 1410529775 529996 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :bfc94d78,bfc94d90,0 < 1410529782 421840 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`hackme %x,%x,%x,%x < 1410529782 983068 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :bff0ed78,bff0ed90,0,405a7320 < 1410529791 103502 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`hackme %x,%x,%x,%x,%x < 1410529791 820108 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :bfdded78,bfdded90,0,405a7320,4000e310 < 1410529797 454271 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :and so on < 1410529810 925628 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :can I do a fork bomb? < 1410529813 527005 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :`uname -a < 1410529814 365204 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Linux umlbox 3.13.0-umlbox #1 Wed Jan 29 12:56:45 UTC 2014 x86_64 GNU/Linux < 1410529831 259060 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`hackme %lx < 1410529831 779746 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :7fbfa74d78 < 1410529835 483512 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`hackme %lx < 1410529835 661162 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :7fbfd4fd78 < 1410529839 300810 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`hackme %lx,%lx < 1410529839 890419 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :7fbfb59d78,7fbfb59d90 < 1410529842 355544 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`hackme %lx,%lx,%lx < 1410529842 812252 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :7fbfe31d78,7fbfe31d90,0 < 1410529851 162284 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`hackme %lx,%lx,%lx,%lx < 1410529851 681574 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :7fbf965d78,7fbf965d90,0,405a7320 < 1410529854 416409 :Melvar!~melvar@dslb-178-006-014-114.178.006.pools.vodafone-ip.de JOIN :#esoteric < 1410529859 43563 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`hackme AAAAAAAA%lx,%lx,%lx < 1410529859 584363 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :AAAAAAAA7fbfde0d68,7fbfde0d80,0 < 1410529860 423434 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :Well, a fork bomb would prevent this spam. < 1410529864 894269 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :Go for it < 1410529865 162234 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric ::D < 1410529866 489482 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :right < 1410529874 466062 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`rm bin/hackme < 1410529875 730617 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410529878 757620 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`rm foo.c < 1410529880 158937 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410529881 327336 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`rm foo < 1410529881 879745 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :rm: cannot remove `foo': No such file or directory < 1410529939 550950 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`ulimit < 1410529940 425611 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: ulimit: not found < 1410529963 479618 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`run :(){ :|:& };: < 1410529964 160390 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410529978 560982 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :aww < 1410529980 869457 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :`run bash -c 'ulimit -a' < 1410529981 494352 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`test < 1410529981 672114 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :core file size (blocks, -c) 0 \ data seg size (kbytes, -d) unlimited \ scheduling priority (-e) 0 \ file size (blocks, -f) 10240 \ pending signals (-i) 1950 \ max locked memory (kbytes, -l) 0 \ max memory size (kbytes, -m) unlimited \ open files (-n) 102 < 1410529982 406358 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410530014 682181 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :`run bash -c 'ulimit -u' < 1410530015 618782 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :128 < 1410530030 581767 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :`run bomb() { bomb | bomb & }; bomb < 1410530031 283646 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410530090 611592 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Rasen14]]4 M10 02http://esolangs.org/w/index.php?diff=40451&oldid=40450 5* 03Wolgr 5* (+0) 10correct versions < 1410530100 844002 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Rasen14]]4 10 02http://esolangs.org/w/index.php?diff=40452&oldid=40451 5* 03Wolgr 5* (+0) 10 < 1410530203 816086 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :`runc $'main() { printf("%p %p %p %p %p %p %p %p\n"); }' < 1410530204 723932 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410530214 432104 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07User:Wolgr14]]4 10 02http://esolangs.org/w/index.php?diff=40453&oldid=39479 5* 03Wolgr 5* (-1) 10 < 1410530241 926714 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :`runc $'main() { printf("%p %p %p %p %p %p %p %p\\n"); }' < 1410530243 51279 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410530276 613405 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :`runc main() { printf("%p %p %p %p %p %p %p %p\\n"); } < 1410530277 976617 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :0x7fbfd81d68 0x7fbfd81d78 (nil) 0x405a7320 0x4000e310 (nil) 0x40240ead (nil) < 1410530282 663220 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Just give it literal text. < 1410530350 921327 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :`run for i in `seq 10`; do runc 'main() { int x; printf("%p\n", &x); }'; done < 1410530353 281349 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410530371 444227 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :`run for i in `seq 10`; do runc 'main() { int x; printf("%p\\n", &x); }'; done < 1410530375 483229 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :0x7fbf831c7c \ 0x7fbfaacc7c \ 0x7fbfe25c7c \ 0x7fbfafcc7c \ 0x7fbfbdcc7c \ 0x7fbfcf4c7c \ 0x7fbfd02c7c \ 0x7fbfa00c7c \ 0x7fbf908c7c \ 0x7fbfdd6c7c < 1410530390 77222 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Ooh, ASLR. < 1410530397 767677 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :I thought more bits were randomized than that < 1410530433 576637 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Might have something to do with the UML stuff, it's not exactly a normal kernel. < 1410530547 442310 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :`run echo 'main() { int x; printf("%p\n", &x); }' | gcc -x c - -o /tmp/t 2>/dev/null; for i in `seq 10`; do /tmp/t; done # let's not recompile it for every round though < 1410530548 591804 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :0x7fbf82dc9c \ 0x7fbffc6c9c \ 0x7fbffcac9c \ 0x7fbfc22c9c \ 0x7fbfbeac9c \ 0x7fbfd51c9c \ 0x7fbfa82c9c \ 0x7fbfb45c9c \ 0x7fbfba7c9c \ 0x7fbf8c0c9c < 1410530577 112433 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :That shouldn't affect how the stack is mapped, though < 1410530584 566184 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :No, it's just INELEGANT. < 1410530592 717909 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :I mean uml < 1410530610 674468 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Oh. Well. It used to have a smaller address space, at least. < 1410530648 26041 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Having to re-split the userland portion to the UML kernel and user²land. < 1410530716 906116 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Unless you had the SKAS patch applied. I know they integrated the main efficiency-related parts of it to the mainline kernel, but I don't remember the details any more. < 1410530750 491206 :`^_^v!~nycs@gw.hq.meetup.com JOIN :#esoteric < 1410530807 959720 :TodPunk!Tod@50-198-177-186-static.hfc.comcastbusiness.net QUIT :Ping timeout: 276 seconds < 1410530858 565078 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run crunchfuck "><<<->[>" 100000000 100 200 < 1410530889 28994 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​ _ \ / `_ _ _ /__/| _ /_ \ /_,//_// //_ / // /_//_ /\ \ \ Result: 171 -> -[>+<+++]> \ Result: 127 -> ++[>+<++]> \ Result: 129 -> ++[>-<++]> < 1410531001 996985 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :http://lwn.net/Articles/142494/ there's the current "skas0" mode < 1410531155 528373 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Seems to be just 11 random bits in those samples. < 1410531230 660264 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :\ >\/| < 1410531541 412731 :Melvar!~melvar@dslb-178-006-014-114.178.006.pools.vodafone-ip.de QUIT :Ping timeout: 260 seconds < 1410531754 537750 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :How many cycles does -[>-<-----]>+ take to complete? < 1410531803 126191 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :Those online interpreters never show how many instructions they've executed < 1410531944 870410 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :mroman_: the number of cycles is not an observable, and the interpreter may well optimize your program < 1410531968 482208 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :mroman_: however, you could try to add a . after each instruction and check how much it prints < 1410532089 337616 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :around 512 < 1410532091 787260 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :*513 < 1410532110 284002 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :`bf >>>+++++++[-<++++++>]<<< -[>-<----- {>>.<< how many times is this cycle executed} ]>+ < 1410532111 107522 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: bf: not found < 1410532117 968910 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :^bf >>>+++++++[-<++++++>]<<< -[>-<----- {>>.<< how many times is this cycle executed} ]>+ < 1410532118 146511 :fungot!fis@eos.zem.fi PRIVMSG #esoteric :*************************************************** < 1410532149 635905 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :well, 255/5 = 51 < 1410532151 418298 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :that's 51 stars < 1410532177 177993 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :or so j-bot claims when I asked it for [ #'***************************************************' < 1410532423 618791 :Melvar!~melvar@dslb-178-006-014-114.178.006.pools.vodafone-ip.de JOIN :#esoteric < 1410532431 939784 :FreeFull_!~freefull@defocus/sausage-lover PRIVMSG #esoteric :What's crunchfuck? < 1410532548 603135 :AnotherTest!~turingcom@94-224-17-144.access.telenet.be QUIT :Ping timeout: 252 seconds < 1410532549 643969 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover JOIN :#esoteric < 1410532633 740921 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`run crunchfuck + 1000 0 10 < 1410532634 306706 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​ _ \ / `_ _ _ /__/| _ /_ \ /_,//_// //_ / // /_//_ /\ \ \ Result: 1 -> + \ Result: 2 -> ++ \ Result: 3 -> +++ \ Result: 4 -> ++++ \ Last program: [<>< < 1410532642 306467 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :It searches for brainfuck constants < 1410532660 567185 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :but I think they have all been calculated by now < 1410532675 902954 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :at least for (runs in less than 5000 cycles) < 1410532808 290184 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :+[-[>+++<<]>-]> (15, 4) wrapping <- this looks unbalanced though < 1410532892 546213 :Melvar!~melvar@dslb-178-006-014-114.178.006.pools.vodafone-ip.de QUIT :Ping timeout: 268 seconds < 1410533095 178617 :TodPunk!Tod@50-198-177-186-static.hfc.comcastbusiness.net JOIN :#esoteric < 1410533256 340253 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :deadfish constants are probably still open . < 1410533269 334864 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :and beam constants < 1410533358 874128 :FreeFull_!~freefull@defocus/sausage-lover NICK :FreeFull < 1410534031 122041 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i don't think deadfish constants are very complicated. < 1410534059 341450 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :once you get above a certain size, you essentially have to go via the closest square < 1410534265 509015 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :well, one of the two neighboring squares < 1410534318 914164 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :because moving between two neighboring squares with i/d is eventually never better than doing i/d before squaring < 1410534361 588173 :Melvar!~melvar@dslb-178-006-014-114.178.006.pools.vodafone-ip.de JOIN :#esoteric < 1410534748 691868 :oerjan!oerjan@sprocket.nvg.ntnu.no QUIT :Quit: leaving < 1410534840 135857 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :`file bin/crunchfuck < 1410534841 19540 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :bin/crunchfuck: ERROR: cannot open `bin/crunchfuck' (No such file or directory) < 1410534850 72445 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :`which crunchfuck < 1410534850 786699 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1410534974 318772 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :I suggest isattying that banner. < 1410535518 472293 :Patashu!Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au QUIT :Ping timeout: 252 seconds < 1410536033 235719 :variable!root@freebsd/developer/variable QUIT :Quit: I found 1 in /dev/zero < 1410536211 473436 :variable!root@freebsd/developer/variable JOIN :#esoteric < 1410536554 73417 :drdanmaku!uid17782@gateway/web/irccloud.com/x-tbazjktbcnjolhbs JOIN :#esoteric < 1410537149 948771 :conehead!~conehead@unaffiliated/conehead JOIN :#esoteric < 1410537289 152129 :AnotherTest!~turingcom@94-224-17-144.access.telenet.be JOIN :#esoteric < 1410537441 427553 :tromp_!~tromp@rtc35-154.rentec.com QUIT :Remote host closed the connection < 1410537576 827924 :tromp_!~tromp@rtc35-154.rentec.com JOIN :#esoteric < 1410537662 541924 :Melvar`!~melvar@dslb-178-006-014-114.178.006.pools.vodafone-ip.de JOIN :#esoteric < 1410537682 753391 :realzies!~pinky@unaffiliated/realazthat JOIN :#esoteric < 1410537788 546232 :Melvar!~melvar@dslb-178-006-014-114.178.006.pools.vodafone-ip.de QUIT :Ping timeout: 276 seconds < 1410537903 70302 :tswett!~tswett@c-107-5-152-253.hsd1.mi.comcast.net JOIN :#esoteric < 1410537905 644460 :tswett!~tswett@c-107-5-152-253.hsd1.mi.comcast.net PRIVMSG #esoteric :Hey everyone. < 1410537914 655900 :tswett!~tswett@c-107-5-152-253.hsd1.mi.comcast.net PRIVMSG #esoteric :So, lemme describe a calculus. < 1410537921 514066 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover PRIVMSG #esoteric :eew < 1410537941 680505 :tswett!~tswett@c-107-5-152-253.hsd1.mi.comcast.net PRIVMSG #esoteric :There are five symbols, each with a type. They are A : (0,2), V : (2,0), N : (2,2), Z : (2,2), and I : (1,1). < 1410537990 967675 :tswett!~tswett@c-107-5-152-253.hsd1.mi.comcast.net PRIVMSG #esoteric :There are two operators. Juxtaposition: if a : (u,d) and b : (t,e), then ab : (u+t,d+e). Concatenation: if a : (u,m) and b : (m,d), then a/b : (u,d). < 1410538008 177696 :tswett!~tswett@c-107-5-152-253.hsd1.mi.comcast.net PRIVMSG #esoteric :Rules: < 1410538075 212427 :tswett!~tswett@c-107-5-152-253.hsd1.mi.comcast.net PRIVMSG #esoteric :Distribution: if a : (u,m), b : (t,n), c : (m,d), and d : (n,e), then ab/cd = (a/c) (b/d). (Juxtaposition binds more tightly than concatenation.) < 1410538085 394851 :tswett!~tswett@c-107-5-152-253.hsd1.mi.comcast.net PRIVMSG #esoteric :Also, both juxtaposition and concatenation are associative. < 1410538116 714760 :tswett!~tswett@c-107-5-152-253.hsd1.mi.comcast.net PRIVMSG #esoteric :Identity: if a : (u,d), then a/III...III = a, where there are d copies of I. < 1410538176 527691 :tswett_!~tswett@c-107-5-152-253.hsd1.mi.comcast.net JOIN :#esoteric < 1410538180 720992 :tswett_!~tswett@c-107-5-152-253.hsd1.mi.comcast.net PRIVMSG #esoteric :Reidemeister 1: A/N = A. Reidemeister 2: N/Z = II. Reidemeister 3: NI/IN/xI = Ix/NI/IN, where x is either N or Z. < 1410538214 217158 :J_Arcane2!~j_arcane@dsl-trebrasgw2-54f959-138.dhcp.inet.fi PRIVMSG #esoteric :http://devnull-as-a-service.com/home/ < 1410538214 587679 :tswett_!~tswett@c-107-5-152-253.hsd1.mi.comcast.net PRIVMSG #esoteric :Pitchfork: ZI/IV = IN/VI. S-bend: IA/VI = I. < 1410538319 187453 :tswett_!~tswett@c-107-5-152-253.hsd1.mi.comcast.net PRIVMSG #esoteric :Denoting vertical reflection by [...], [A] = V, [V] = A, [N] = Z, [Z] = N, [I] = I, [ab] = [a][b], and [a/b] = [b]/[a]. < 1410538339 656543 :paul2520!~pi@104-6-13-61.lightspeed.milwwi.sbcglobal.net PRIVMSG #esoteric :J_Arcane2: that's fantastic < 1410538355 553186 :tswett_!~tswett@c-107-5-152-253.hsd1.mi.comcast.net PRIVMSG #esoteric :Denoting horizontal reflection by {...}, {A} = A, {V} = V, {N} = Z, {Z} = N, {I} = I, {ab} = {b}{a}, and {a/b} = {a}/{b}. < 1410538367 762440 :J_Arcane2!~j_arcane@dsl-trebrasgw2-54f959-138.dhcp.inet.fi PRIVMSG #esoteric :paul2520: Indeed. :D Though this one nails the look better: http://www.supersimplestorageservice.com/ < 1410538378 499735 :tswett!~tswett@c-107-5-152-253.hsd1.mi.comcast.net QUIT :Ping timeout: 252 seconds < 1410538401 519742 :tswett_!~tswett@c-107-5-152-253.hsd1.mi.comcast.net PRIVMSG #esoteric :And then inversion means you swap N and Z. < 1410538424 889161 :tswett_!~tswett@c-107-5-152-253.hsd1.mi.comcast.net PRIVMSG #esoteric :The vertical reflection, horizontal reflection, or inversion of any rule is also a rule. < 1410538450 966005 :tswett_!~tswett@c-107-5-152-253.hsd1.mi.comcast.net PRIVMSG #esoteric :So this is a calculus describing link theory. < 1410538470 311748 :tswett_!~tswett@c-107-5-152-253.hsd1.mi.comcast.net PRIVMSG #esoteric :AA/INI/ZZ/IVI/V is an expression for the trefoil knot. < 1410538492 533473 :paul2520!~pi@104-6-13-61.lightspeed.milwwi.sbcglobal.net PRIVMSG #esoteric :J_Arcane2: "only $1 per TERABYTE per month." < 1410538501 899611 :J_Arcane2!~j_arcane@dsl-trebrasgw2-54f959-138.dhcp.inet.fi PRIVMSG #esoteric ::D < 1410538516 243097 :J_Arcane2!~j_arcane@dsl-trebrasgw2-54f959-138.dhcp.inet.fi PRIVMSG #esoteric :I like the part where it measures storage in abacuses. < 1410538549 486219 :tswett_!~tswett@c-107-5-152-253.hsd1.mi.comcast.net PRIVMSG #esoteric :AA/INI/ZN/IVI/V is like the trefoil knot but with one of the crossings inverted. It's reasonably straightforward to show that this is the unknot, A/V. < 1410538579 295369 :paul2520!~pi@104-6-13-61.lightspeed.milwwi.sbcglobal.net PRIVMSG #esoteric :yes, that's fantastic < 1410538600 717084 :MoALTz!~no@user-188-33-209-0.play-internet.pl JOIN :#esoteric < 1410538624 983195 :idris-bot!~ircslave@dslb-178-006-014-114.178.006.pools.vodafone-ip.de JOIN :#esoteric < 1410538693 319277 :Melvar`!~melvar@dslb-178-006-014-114.178.006.pools.vodafone-ip.de NICK :Melvar < 1410540254 263830 :paul2520!~pi@104-6-13-61.lightspeed.milwwi.sbcglobal.net PRIVMSG #esoteric :J_Arcane2: I'm disappointed that the T-shirt template links on /dev/null as a service are broken < 1410540294 731968 :J_Arcane2!~j_arcane@dsl-trebrasgw2-54f959-138.dhcp.inet.fi PRIVMSG #esoteric ::D I just liked the bitcoin service. :D < 1410540306 815572 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :aww < 1410540325 429160 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :@metar LOWI < 1410540325 727670 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric :LOWI 121620Z 05005KT 020V080 9999 FEW028 SCT035 BKN075 14/10 Q1015 NOSIG < 1410540352 404333 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :not warm < 1410540364 185384 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :@metar EFHK < 1410540364 532023 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric :EFHK 121620Z 32006KT 9999 FEW035 BKN200 18/13 Q1024 NOSIG < 1410540372 713658 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Warmer. < 1410540385 369682 :GeekDude!~G33kDude@unaffiliated/g33kdude PRIVMSG #esoteric :telnet devnull-as-a-service.com 9 < 1410540423 880411 :paul2520!~pi@104-6-13-61.lightspeed.milwwi.sbcglobal.net PRIVMSG #esoteric :and the career page. I'm definitely downloading the Android app. That will come in handy... < 1410540521 671987 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :@metar RJNK < 1410540521 982061 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric :RJNK 121600Z 17004KT 9999 FEW030 18/16 Q1012 < 1410541890 374421 :realzies!~pinky@unaffiliated/realazthat QUIT :Quit: realzies < 1410542009 535331 :tromp!~tromp@rtc35-154.rentec.com JOIN :#esoteric < 1410542122 479303 :FreeFull_!~freefull@defocus/sausage-lover JOIN :#esoteric < 1410542272 889812 :not^v!~notnot^v@2601:4:4500:e15:bddb:8286:f40f:2369 JOIN :#esoteric < 1410542321 549020 :tromp_!~tromp@rtc35-154.rentec.com QUIT :Write error: Broken pipe < 1410542340 81772 :FreeFull!~freefull@defocus/sausage-lover QUIT :Remote host closed the connection < 1410542687 597986 :shikhin!~shikhin@unaffiliated/shikhin JOIN :#esoteric < 1410542828 810677 :augur!~augur@216-164-48-148.c3-0.slvr-ubr1.lnh-slvr.md.cable.rcn.com QUIT :Quit: Leaving... < 1410543301 123093 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover PRIVMSG #esoteric :tswett_, what is the actual motivation for all of that < 1410543741 565118 :realzies!~pinky@unaffiliated/realazthat JOIN :#esoteric < 1410544221 705224 :Sorella!~queen@oftn/member/Sorella QUIT :Ping timeout: 264 seconds < 1410546222 330935 :augur!~augur@216-164-48-148.c3-0.slvr-ubr1.lnh-slvr.md.cable.rcn.com JOIN :#esoteric < 1410546323 615829 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover QUIT :Ping timeout: 268 seconds < 1410546349 505571 :GeekDude!~G33kDude@unaffiliated/g33kdude NICK :tidbit < 1410546356 984771 :tidbit!~G33kDude@unaffiliated/g33kdude NICK :GeekDude < 1410546786 788025 :GeekDude!~G33kDude@unaffiliated/g33kdude QUIT :Quit: {{{}}{{{}}{{}}}{{}}} (www.adiirc.com) < 1410546870 551066 :GeekDude!~G33kDude@unaffiliated/g33kdude JOIN :#esoteric < 1410547104 469659 :GeekDude!~G33kDude@unaffiliated/g33kdude QUIT :Client Quit < 1410547136 995052 :GeekDude!~GeekDude@unaffiliated/g33kdude JOIN :#esoteric < 1410547480 665398 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover JOIN :#esoteric < 1410547678 330529 :GeekDude!~GeekDude@unaffiliated/g33kdude QUIT :Quit: {{{}}{{{}}{{}}}{{}}} (www.adiirc.com) < 1410547801 599659 :GeekDude!~GeekDude@unaffiliated/g33kdude JOIN :#esoteric < 1410547986 417239 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Talk:Qwerty Reverse Polish Notation14]]4 10 02http://esolangs.org/w/index.php?diff=40454&oldid=40449 5* 03Imaginer1 5* (+163) 10 < 1410548052 447865 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Talk:Qwerty Reverse Polish Notation14]]4 10 02http://esolangs.org/w/index.php?diff=40455&oldid=40454 5* 03Imaginer1 5* (-36) 10 < 1410548779 646389 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Talk:Qwerty Reverse Polish Notation14]]4 10 02http://esolangs.org/w/index.php?diff=40456&oldid=40455 5* 03Imaginer1 5* (+34) 10 < 1410549271 597965 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Talk:Qwerty Reverse Polish Notation14]]4 10 02http://esolangs.org/w/index.php?diff=40457&oldid=40456 5* 03Imaginer1 5* (+87) 10 < 1410549686 557780 :AnotherTest!~turingcom@94-224-17-144.access.telenet.be QUIT :Ping timeout: 252 seconds < 1410550018 44832 :ion!ion@heh.fi PRIVMSG #esoteric :https://www.kickstarter.com/projects/160456328/extropy-infinite-file-compression/ < 1410550094 924336 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :ion: You're Finnish, right? Do you remember the Melia Mini thing? < 1410550154 715885 :ion!ion@heh.fi PRIVMSG #esoteric :I don’t, i must have forgotten about it or not seen it in the first place. < 1410550194 444986 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :It was one of those infinite lossless compression things. < 1410550206 603426 :ion!ion@heh.fi PRIVMSG #esoteric :They should have tried crowdfunding. < 1410550220 609050 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :wot < 1410550236 925024 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :did they also promise reasonable runtime and memory usage for that? < 1410550246 10861 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Sure, everything you could want. < 1410550256 348922 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Some Finnish company working on something completely different had this "genius programmer" who had developed this thing accidentally, or something like that. < 1410550269 886097 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :or, like, triple-exponential runtime so you can run it only for data shorter than five bits < 1410550285 221125 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :http://www.digitoday.fi/data/2006/08/04/suomalaisyritys-kypsyttaa-haviotonta-pakkausta/200610168/66 if you read Finnish. < 1410550301 911959 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :I don't < 1410550363 836955 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :these days they do reactionless drives for space instead < 1410550396 620653 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :It was supposed to be able to compress anything "up to the theoretical limit", but they were quite vague about that. I think they did make some unarguably impossible claims, too. < 1410550485 919975 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :(Also they were looking for investors.) < 1410550541 635068 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :investors for what? a month of pizza money for the genius programmer kid? < 1410550586 921377 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :For commercializing the technology. And as I recall it, they had a suite of four almost equally impossible technologies. < 1410550639 600828 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :including reactionless drive? less impossible than that? more impossible? < 1410550678 975956 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :were they claiming that the evil oil corporates want to oppress their freedom and keep the inventions secret forever? < 1410550779 346134 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :was one of them a perpetum mobilay with some cleverly disguised description so it's not so obvious? < 1410550837 145400 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I think one of them was an infinite-bandwidth data transfer over the Internet. I can't really tell; archive.org has made only a really useless copy of their home page. < 1410550902 330612 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :oh, only that? if you have a compressor that can compress everything and do the compression and decompression fast, then you can of course put that in every switch and router to get infinite bandwidth < 1410550976 776003 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Yes. I don't remember the other two. < 1410550980 149252 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :do they have ftl information transfer at least, so I get less latency if I internet from Mars? < 1410550988 249354 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Maybe one of them might've been about physics. < 1410551210 125167 :Sorella!~queen@191.185.197.120 JOIN :#esoteric < 1410551258 681325 :Sorella!~queen@191.185.197.120 QUIT :Changing host < 1410551258 857242 :Sorella!~queen@oftn/member/Sorella JOIN :#esoteric < 1410551279 25623 :shikhout!~shikhin@unaffiliated/shikhin JOIN :#esoteric < 1410551466 560986 :shikhin!~shikhin@unaffiliated/shikhin QUIT :Ping timeout: 268 seconds < 1410552019 573877 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Speaking of the kickstarter, how can you sink $30k to something as mundane as a machine with 64 gigs of RAM and the "fastest commercial processor"? (Well, I mean, I guess that depends on the definition of "commercial processor", but I can't seem to find anything more expensive than maybe $7k from Intel, and 64 gigs is not very much memory.) < 1410552251 27121 :tromp!~tromp@rtc35-154.rentec.com PRIVMSG #esoteric :try 8-way Xeons < 1410552361 246078 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :That was "processor", singular, and the 15-core Xeon E7-4890V2 costs only $6619. And the 6-core Xeon E7-8893V2 is $6841. (Curious.) < 1410552380 697884 :Melvar!~melvar@dslb-178-006-014-114.178.006.pools.vodafone-ip.de PRIVMSG #esoteric :15-core? < 1410552434 92054 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Hrm. The 6-, 10- and 15-core E7-8893V2, E7-8891V2 and E7-8890V2 all have the same recommended customer price. < 1410552477 740472 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I guess it's like a single processor, and the customer gets to make the clock-speed/number-of-cores tradeoff choice. < 1410552484 753623 :Melvar!~melvar@dslb-178-006-014-114.178.006.pools.vodafone-ip.de PRIVMSG #esoteric :Whyy such an unround number? < 1410552558 151708 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I don't know, but I guess there's not really a "why not" reason either, it's not like you'd have to have a power-of-two number of cores. < 1410552581 365620 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :(Apparently it's also natively 15-core, and not one of those "16 cores but we disable one to improve yield" kind of things.) < 1410552638 795611 :Melvar!~melvar@dslb-178-006-014-114.178.006.pools.vodafone-ip.de PRIVMSG #esoteric :Everything should be power-of-two or three-times-power-of-two. Even 10 cores is weird. < 1410552699 74439 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :http://www.anandtech.com/show/7753/intel-readying-15core-xeon-e7-v2 some details < 1410553051 278244 :MoALTz!~no@user-188-33-209-0.play-internet.pl QUIT :Quit: Leaving < 1410553129 171123 :not^v!~notnot^v@2601:4:4500:e15:bddb:8286:f40f:2369 QUIT :Read error: Connection reset by peer < 1410553912 476922 :tswett_!~tswett@c-107-5-152-253.hsd1.mi.comcast.net QUIT :Ping timeout: 245 seconds < 1410554071 909281 :shikhout!~shikhin@unaffiliated/shikhin NICK :shikhin < 1410554109 850813 :FreeFull_!~freefull@defocus/sausage-lover NICK :FreeFull < 1410556263 196047 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Special:Log/newusers14]]4 create10 02 5* 036c1 5* 10New user account < 1410556425 97719 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07.Gertrude14]]4 10 02http://esolangs.org/w/index.php?diff=40458&oldid=38966 5* 036c1 5* (+2821) 10Adding instruction set < 1410556752 442538 :variable!root@freebsd/developer/variable QUIT :Ping timeout: 246 seconds < 1410557177 220943 :variable!root@freebsd/developer/variable JOIN :#esoteric < 1410557602 554747 :Bicyclidine!~Glossina@wl-nat101.it.wsu.edu JOIN :#esoteric < 1410557882 500021 :Phantom__Hoover!~phantomho@unaffiliated/phantom-hoover JOIN :#esoteric < 1410558090 753477 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover QUIT :Ping timeout: 268 seconds < 1410558095 519943 :Melvar`!~melvar@dslb-178-006-014-114.178.006.pools.vodafone-ip.de JOIN :#esoteric < 1410558127 116261 :kcm1700_!~kcm1700@116.37.228.28 JOIN :#esoteric < 1410558129 601111 :kcm1700!~kcm1700@116.37.228.28 QUIT :Remote host closed the connection < 1410558190 809854 :Melvar!~melvar@dslb-178-006-014-114.178.006.pools.vodafone-ip.de QUIT :Ping timeout: 276 seconds < 1410558192 4562 :lambdabot!~lambdabot@silicon.int-e.eu QUIT :Remote host closed the connection < 1410558224 641564 :variable!root@freebsd/developer/variable QUIT :Ping timeout: 276 seconds < 1410558350 895393 :Gregor!dlopen@libdl.so QUIT :Ping timeout: 276 seconds < 1410558483 531620 :lambdabot!~lambdabot@silicon.int-e.eu JOIN :#esoteric < 1410558497 610647 :Gregor!dlopen@libdl.so JOIN :#esoteric < 1410559157 953109 :conehead!~conehead@unaffiliated/conehead QUIT :Ping timeout: 272 seconds < 1410559266 374302 :Bicyclidine!~Glossina@wl-nat101.it.wsu.edu QUIT :Quit: Reconnecting < 1410559279 524229 :Bicyclidine!~Glossina@wl-nat101.it.wsu.edu JOIN :#esoteric < 1410559886 565638 :oerjan!oerjan@sprocket.nvg.ntnu.no JOIN :#esoteric < 1410560008 546553 :Phantom___Hoover!~phantomho@unaffiliated/phantom-hoover JOIN :#esoteric < 1410560067 722324 :vyv_!~vyv@bas1-northbay04-1177802976.dsl.bell.ca JOIN :#esoteric < 1410560078 355907 :qlkzy_!~qlkzy@li559-28.members.linode.com JOIN :#esoteric < 1410560188 588479 :G33kDude!~GeekDude@unaffiliated/g33kdude JOIN :#esoteric < 1410560195 291474 :GeekDude!~GeekDude@unaffiliated/g33kdude QUIT :Disconnected by services < 1410560201 528302 :G33kDude!~GeekDude@unaffiliated/g33kdude NICK :GeekDude < 1410560211 83623 :newsham_!~chat@udp217044uds.hawaiiantel.net JOIN :#esoteric < 1410560253 511059 :perrier_!~cinch@107.170.175.57 JOIN :#esoteric < 1410560296 693138 :Sgeo!~quassel@ool-44c2aebc.dyn.optonline.net JOIN :#esoteric < 1410560331 685464 :blsqbot!~blsqbot@fmnssun.ibone.ch QUIT :*.net *.split < 1410560331 863139 :J_Arcane2!~j_arcane@dsl-trebrasgw2-54f959-138.dhcp.inet.fi QUIT :*.net *.split < 1410560333 91702 :qlkzy!~qlkzy@li559-28.members.linode.com QUIT :*.net *.split < 1410560333 436242 :aloril!~aloril@dsl-tkubrasgw2-54faa3-2.dhcp.inet.fi QUIT :*.net *.split < 1410560437 108808 :aloril!~aloril@dsl-tkubrasgw2-54faa3-2.dhcp.inet.fi JOIN :#esoteric < 1410560446 83845 :Tod-Autojoined!Tod@50-198-177-186-static.hfc.comcastbusiness.net JOIN :#esoteric < 1410560454 830002 :digitalc1ld!~redacted@unaffiliated/digitalcold JOIN :#esoteric < 1410560469 944114 :Bike_!~Glossina@69.166.47.137 JOIN :#esoteric < 1410560517 848828 :nycs!~nycs@gw.hq.meetup.com JOIN :#esoteric < 1410560594 447657 :J_Arcane!~j_arcane@dsl-trebrasgw2-54f959-138.dhcp.inet.fi JOIN :#esoteric < 1410560646 28238 :boily!~boily@96.127.201.149 JOIN :#esoteric < 1410560661 939767 :Vorpal_!~Vorpal@81-224-29-207-no185.bredband.skanova.com JOIN :#esoteric < 1410560662 118023 :Vorpal_!~Vorpal@81-224-29-207-no185.bredband.skanova.com QUIT :Changing host < 1410560662 118157 :Vorpal_!~Vorpal@unaffiliated/vorpal JOIN :#esoteric < 1410560729 383306 :fizzie!fis@unaffiliated/fizzie QUIT :*.net *.split < 1410560729 989064 :Vorpal!~Vorpal@unaffiliated/vorpal QUIT :*.net *.split < 1410560771 517418 :Froox!~Frooxius@cust-101.ktknet.cz JOIN :#esoteric < 1410560818 565757 :kcm1700!~kcm1700@116.37.228.28 JOIN :#esoteric < 1410560838 562000 :HackEgo!~HackEgo@162.248.166.242 QUIT :Ping timeout: 255 seconds > 1410561215 950422 JOIN :#esoteric > 1410561220 76116 JOIN :#esoteric > 1410561220 591993 JOIN :#esoteric > 1410561248 809179 JOIN :#esoteric > 1410561252 934479 JOIN :#esoteric > 1410561253 450186 JOIN :#esoteric > 1410561269 867763 JOIN :#esoteric > 1410561273 991718 JOIN :#esoteric > 1410561274 507843 JOIN :#esoteric > 1410561290 893361 JOIN :#esoteric > 1410561295 17036 JOIN :#esoteric > 1410561295 531782 JOIN :#esoteric > 1410561311 909549 JOIN :#esoteric > 1410561316 36068 JOIN :#esoteric > 1410561316 551530 JOIN :#esoteric > 1410561332 929311 JOIN :#esoteric > 1410561337 53479 JOIN :#esoteric > 1410561337 568758 JOIN :#esoteric > 1410561353 949551 JOIN :#esoteric > 1410561358 71665 JOIN :#esoteric > 1410561358 586812 JOIN :#esoteric > 1410561374 968574 JOIN :#esoteric > 1410561379 88715 JOIN :#esoteric > 1410561379 604047 JOIN :#esoteric > 1410561395 989180 JOIN :#esoteric > 1410561400 117932 JOIN :#esoteric > 1410561400 633956 JOIN :#esoteric > 1410561449 30413 JOIN :#esoteric > 1410561453 155343 JOIN :#esoteric > 1410561453 670924 JOIN :#esoteric > 1410561508 951719 JOIN :#esoteric < 1410561509 105247 :glogbot!dlopen@libdl.so JOIN :#esoteric > 1410561513 70757 JOIN :#esoteric > 1410561513 586499 JOIN :#esoteric < 1410561520 472115 :FireFly!~firefly@oftn/member/FireFly JOIN :#esoteric < 1410561570 548228 :augur_!~augur@216-164-48-148.c3-0.slvr-ubr1.lnh-slvr.md.cable.rcn.com JOIN :#esoteric < 1410561621 500848 :Froo!~Frooxius@cust-101.ktknet.cz JOIN :#esoteric < 1410561654 336182 :Bike!~Glossina@stepheast-v394-wired-gw.net.wsu.edu JOIN :#esoteric < 1410561712 630048 :augur!~augur@216-164-48-148.c3-0.slvr-ubr1.lnh-slvr.md.cable.rcn.com QUIT :Read error: Connection reset by peer < 1410561716 796466 :paul2520!~pi@104-6-13-61.lightspeed.milwwi.sbcglobal.net QUIT :Ping timeout: 246 seconds < 1410561717 661570 :lifthrasiir!~lifthrasi@115.68.131.49 QUIT :Ping timeout: 246 seconds < 1410561723 668111 :paul2520!~pi@104-6-13-61.lightspeed.milwwi.sbcglobal.net JOIN :#esoteric < 1410561729 967251 :perrier__!~cinch@107.170.175.57 QUIT :Ping timeout: 246 seconds < 1410561733 81592 :J_Arcane!~j_arcane@dsl-trebrasgw2-54f959-138.dhcp.inet.fi QUIT :Ping timeout: 246 seconds < 1410561733 81803 :Gracenotes_!~person@192.241.203.42 QUIT :Ping timeout: 246 seconds < 1410561748 206929 :paul2520!~pi@104-6-13-61.lightspeed.milwwi.sbcglobal.net NICK :Guest57564 < 1410561750 836922 :Froox!~Frooxius@cust-101.ktknet.cz QUIT :Ping timeout: 246 seconds < 1410561753 486030 :qlkzy_!~qlkzy@li559-28.members.linode.com QUIT :Ping timeout: 246 seconds < 1410561753 486098 :newsham!~chat@udp217044uds.hawaiiantel.net JOIN :#esoteric < 1410561814 757847 :olsner!~salparot@c83-252-201-82.bredband.comhem.se QUIT :Ping timeout: 246 seconds < 1410561840 339934 :perrier__!~cinch@107.170.175.57 JOIN :#esoteric < 1410561852 655055 :G33kDude!~GeekDude@unaffiliated/g33kdude JOIN :#esoteric < 1410561877 656648 :mroman_!~roman2@fmnssun.ibone.ch QUIT :Ping timeout: 246 seconds < 1410561892 584084 :tromp!~tromp@rtc35-154.rentec.com JOIN :#esoteric < 1410561922 177849 :aloril!~aloril@dsl-tkubrasgw2-54faa3-2.dhcp.inet.fi JOIN :#esoteric < 1410561994 786046 :drdanmaku!uid17782@gateway/web/irccloud.com/session JOIN :#esoteric < 1410562106 557292 :GeekDude!~GeekDude@unaffiliated/g33kdude QUIT :Ping timeout: 276 seconds < 1410562107 280550 :diginet!~diginet@107.170.146.29 QUIT :Ping timeout: 276 seconds < 1410562113 494938 :kcm1700!~kcm1700@116.37.228.28 QUIT :Ping timeout: 276 seconds < 1410562113 495162 :copumpkin!~copumpkin@unaffiliated/copumpkin QUIT :Ping timeout: 276 seconds < 1410562115 273632 :G33kDude!~GeekDude@unaffiliated/g33kdude NICK :GeekDude < 1410562162 725321 :Bicyclidine!~Glossina@wl-nat101.it.wsu.edu QUIT :Ping timeout: 252 seconds < 1410562232 370985 :Froo!~Frooxius@cust-101.ktknet.cz NICK :Frooxius < 1410562417 624875 :GeekDude!~GeekDude@unaffiliated/g33kdude QUIT :Ping timeout: 245 seconds < 1410562445 650744 :Gracenotes!~person@192.241.203.42 JOIN :#esoteric < 1410562455 85248 :copumpkin!~copumpkin@unaffiliated/copumpkin JOIN :#esoteric < 1410562727 514894 :mroman!~roman2@fmnssun.ibone.ch JOIN :#esoteric < 1410562763 973893 :olsner!~salparot@c83-252-201-82.bredband.comhem.se JOIN :#esoteric < 1410562775 479891 :TodPunk!Tod@50-198-177-186-static.hfc.comcastbusiness.net JOIN :#esoteric < 1410562898 537238 :kcm1700!~kcm1700@116.37.228.28 JOIN :#esoteric < 1410563329 359042 :Phantom___Hoover!~phantomho@unaffiliated/phantom-hoover QUIT :Ping timeout: 252 seconds < 1410563422 334415 :skarn!skarn@binary.firrre.com JOIN :#esoteric < 1410563439 271803 :skarn!skarn@binary.firrre.com NICK :Guest49163 < 1410563485 114524 :kcm1700!~kcm1700@116.37.228.28 QUIT :Read error: Connection reset by peer < 1410563569 145890 :Guest57564!~pi@104-6-13-61.lightspeed.milwwi.sbcglobal.net NICK :paul2520 < 1410563605 302415 :Gregor!dlopen@libdl.so QUIT :Ping timeout: 252 seconds < 1410563728 661717 :oerjan!oerjan@sprocket.nvg.ntnu.no QUIT :Ping timeout: 252 seconds < 1410563781 791443 :GeekDude!~GeekDude@unaffiliated/g33kdude JOIN :#esoteric < 1410563814 64418 :tromp!~tromp@rtc35-154.rentec.com QUIT :Read error: Connection reset by peer < 1410563814 64573 :mroman!~roman2@fmnssun.ibone.ch QUIT :Ping timeout: 252 seconds < 1410563828 27242 :AndoDaan!~Daanando@188.188.69.14 JOIN :#esoteric < 1410563972 772584 :GeekDude!~GeekDude@unaffiliated/g33kdude QUIT :Client Quit < 1410564009 487886 :oerjan!oerjan@sprocket.nvg.ntnu.no JOIN :#esoteric < 1410564216 604853 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :splitty today < 1410564239 756804 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :splørjan < 1410564254 58628 :conehead!~conehead@67.10.235.179 JOIN :#esoteric < 1410564336 439946 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :splatchaf < 1410564358 103328 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :xplatchaf < 1410564374 254893 :diginet!~diginet@107.170.146.29 JOIN :#esoteric < 1410564428 503256 :GeekDude!~GeekDude@unaffiliated/g33kdude JOIN :#esoteric < 1410564657 493308 :Bicyclidine!~Glossina@wl-nat106.it.wsu.edu JOIN :#esoteric < 1410564657 683912 :mroman!~roman2@fmnssun.ibone.ch JOIN :#esoteric < 1410564877 441406 :qlkzy!~qlkzy@li559-28.members.linode.com JOIN :#esoteric < 1410564968 148571 :boily!~boily@96.127.201.149 PRIVMSG #esoteric :@metar ENVA < 1410564968 507032 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric :ENVA 122250Z 12005KT CAVOK 08/07 Q1028 RMK WIND 670FT 10007KT < 1410564987 492849 :Gregor!dlopen@libdl.so JOIN :#esoteric < 1410564988 249511 :boily!~boily@96.127.201.149 PRIVMSG #esoteric :hellørjan. I hope you remarked that there is wind. < 1410565034 256844 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i did not, it was not noticable when i was outside last < 1410565059 167002 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i might remark that it was chilly today, though. < 1410565072 985753 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :(technically yesterday, now) < 1410565078 986728 :boily!~boily@96.127.201.149 PRIVMSG #esoteric :right. < 1410565082 391399 :boily!~boily@96.127.201.149 PRIVMSG #esoteric :@metar CYUL < 1410565082 669505 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric :CYUL 122300Z 24009KT 30SM FEW030 FEW045 SCT240 12/06 A3026 RMK CF1SC1CI3 CF TR SLP247 < 1410565087 552639 :boily!~boily@96.127.201.149 PRIVMSG #esoteric :oh, twelve! < 1410565092 537669 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :*+e < 1410565097 979623 :lifthrasiir!~lifthrasi@115.68.131.49 JOIN :#esoteric < 1410565100 896292 :variable!root@gateway/shell/trekweb.org/session JOIN :#esoteric < 1410565102 466345 :kcm1700!~kcm1700@116.37.228.28 JOIN :#esoteric < 1410565106 486103 :6JTAAFW4E!~Daanando@188.188.86.34 JOIN :#esoteric < 1410565127 481014 :AndoDaan!~Daanando@188.188.69.14 QUIT :Ping timeout: 276 seconds < 1410565169 71704 :boily!~boily@96.127.201.149 PRIVMSG #esoteric :ohe, twelve? < 1410565178 977786 :variable!root@gateway/shell/trekweb.org/session NICK :Guest2583 < 1410565179 969586 :Guest2583!root@gateway/shell/trekweb.org/session QUIT :Max SendQ exceeded < 1410565181 369571 :6JTAAFW4E!~Daanando@188.188.86.34 PRIVMSG #esoteric :look at all these people coming back < 1410565181 369742 :conehead!~conehead@67.10.235.179 QUIT :Changing host < 1410565181 369818 :conehead!~conehead@unaffiliated/conehead JOIN :#esoteric < 1410565200 473070 :6JTAAFW4E!~Daanando@188.188.86.34 NICK :AndoDaan < 1410565205 171346 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :hmmm < 1410565225 240925 :boily!~boily@96.127.201.149 PRIVMSG #esoteric :AndelloDaan. < 1410565232 691447 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :hey, Boily < 1410565241 295777 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :what ya working on? < 1410565288 694527 :boily!~boily@96.127.201.149 PRIVMSG #esoteric :lots of things at work. otherwise, I am disappointing quintopia by not releasing a new esolang. < 1410565300 529024 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :boily: no, noticeable < 1410565320 592187 :J_Arcane2!~j_arcane@84.249.89.138 JOIN :#esoteric < 1410565326 168062 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :hey oerjan < 1410565327 376659 :boily!~boily@96.127.201.149 PRIVMSG #esoteric :I didn't even notice there was a missing e there. < 1410565348 25821 :boily!~boily@96.127.201.149 PRIVMSG #esoteric :AndoDaan: with oerjan, it is good form to hey hey hemskt mickerjan him. < 1410565349 529151 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :it's a bit subtle case, which is presumably why i misspelled it to begin with < 1410565360 530295 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :boily: *myck < 1410565367 557498 :boily!~boily@96.127.201.149 PRIVMSG #esoteric :darn :P < 1410565383 279288 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :I'm not entirely sure what that means :) < 1410565386 738286 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :svëdish is hård < 1410565398 631492 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :› < 1410565404 368847 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :dammit altcode < 1410565411 890566 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :AndoDaan: it's from a swedish novelty song which i got into boily's brain < 1410565439 647144 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :ha. an earworm to annoy him...? < 1410565465 85219 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :well i haven't heard much about annoyance < 1410565481 874610 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :listening to the youtube vid now < 1410565495 87811 :mtve!~mtve@10130.x.rootbsd.net JOIN :#esoteric < 1410565498 539291 :digitalcold!~redacted@192.73.232.206 JOIN :#esoteric < 1410565508 565848 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :when it bloody loads < 1410565524 579891 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :after that you can listen to Den Makalöse Manicken, because i wouldn't give him just _one_ earworm, you see. < 1410565544 758008 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :*a < 1410565550 476632 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :Inspector gadget < 1410565559 714459 :olsner!~salparot@c83-252-201-82.bredband.comhem.se PRIVMSG #esoteric :leave it to the norwegians to put swedish songs in people's brains < 1410565565 18637 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :(swädish is hørd, i said!) < 1410565586 717073 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :wow, that translate to swedish is hard < 1410565594 87002 :boily!~boily@96.127.201.149 PRIVMSG #esoteric :there's also http://youtu.be/AfeAhCWaMD0 . when it comes to songs that don't make sense at all (even in the original language), it's quite out there. < 1410565599 311623 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :I can understand SWEDISH! < 1410565604 691889 :nisstyre!~yourstrul@oftn/member/Nisstyre JOIN :#esoteric < 1410565613 506710 :boily!~boily@96.127.201.149 PRIVMSG #esoteric :*gasp* AndoDaan's been assimilated! < 1410565632 889202 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :also means I can understand nowegian and danish < 1410565661 93105 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :hej hej is kinda catchy < 1410565709 419277 :Phantom___Hoover!~phantomho@unaffiliated/phantom-hoover JOIN :#esoteric < 1410565723 731989 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :now den makalosa manicken < 1410565735 682146 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :swedish women man... i swear < 1410565749 954199 :olsner!~salparot@c83-252-201-82.bredband.comhem.se PRIVMSG #esoteric :the makalös manick < 1410565767 301354 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :is swedish good < 1410565773 572163 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :beatboxing < 1410565775 619974 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :i could learn it instead of finnish < 1410565793 453290 :Patashu!~Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au JOIN :#esoteric < 1410565799 303062 :olsner!~salparot@c83-252-201-82.bredband.comhem.se PRIVMSG #esoteric :it's better than finish but not as fun, I think < 1410565840 354871 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :swedish is trist like a bamba < 1410565876 362183 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :okay den makalosa manicken is hard to bear, no la bamba < 1410565883 161418 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :sad la bamba? < 1410565895 214559 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :AndoDaan: the one boily linked above < 1410565900 569451 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :yep < 1410565905 979022 :olsner!~salparot@c83-252-201-82.bredband.comhem.se PRIVMSG #esoteric :bamba is incidentally the gothenburg word for school food dispentionery < 1410565922 990585 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :okej < 1410565950 282372 :olsner!~salparot@c83-252-201-82.bredband.comhem.se PRIVMSG #esoteric :joråsatt < 1410565950 992082 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :the guys is wearing an american sweater, does that have anything to do with the lyrics? < 1410565966 675483 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :to my shame I can't even understand the french subs < 1410566021 871478 :boily!~boily@96.127.201.149 PRIVMSG #esoteric :nothing has to do with the lyrics, not even themselves. < 1410566031 249114 :boily!~boily@96.127.201.149 PRIVMSG #esoteric :they are the lyrics that are. < 1410566032 674764 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :hmm < 1410566055 373558 :tromp!~tromp@rtc35-154.rentec.com JOIN :#esoteric < 1410566062 238041 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :DEFINITIVEMENT < 1410566078 315267 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :s'alright < 1410566095 49401 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :AndoDaan: now you can go to hubba hubba zoot zoot twh < 1410566101 489519 :boily!~boily@96.127.201.149 PRIVMSG #esoteric :AAAAURGH! < 1410566112 860645 :boily!~boily@96.127.201.149 PRIVMSG #esoteric :and then I was naïvely thinking that I had forgot that one. < 1410566120 577514 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i think boily mana... right < 1410566130 166986 :olsner!~salparot@c83-252-201-82.bredband.comhem.se PRIVMSG #esoteric :hubba hubba zoot zoot sounds familiar, but it is not from the makalös manick, is it? < 1410566135 147497 :boily!~boily@96.127.201.149 PRIVMSG #esoteric :no, I'm out of mana. < 1410566153 93022 :olsner!~salparot@c83-252-201-82.bredband.comhem.se PRIVMSG #esoteric :boily: mana mana < 1410566166 239480 :boily!~boily@96.127.201.149 PRIVMSG #esoteric :ACTION woggles around like an orange muppet :D < 1410566168 389432 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :olsner: i don't know that any of the three swedish songs i've mentioned are from the same artist < 1410566208 53442 :olsner!~salparot@c83-252-201-82.bredband.comhem.se PRIVMSG #esoteric :well, I don't know what I'm talking about anyway < 1410566221 815028 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :wow... that's pretty bad < 1410566249 125977 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :is this a thing in Sweden? hubba hubba zoot zoot? < 1410566276 176989 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :AndoDaan: these are all old songs from the 1980s or so < 1410566327 675142 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :hubba hubba zoot zoot was played at the first school party i remember, when i was 11-12 < 1410566342 48943 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :the '80s should be obliterated from the records. < 1410566346 936907 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :NOOOO < 1410566352 58926 :boily!~boily@96.127.201.149 PRIVMSG #esoteric :NOOOOOOOOOOO! < 1410566357 377518 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :c'mon people... < 1410566364 413980 :boily!~boily@96.127.201.149 PRIVMSG #esoteric :ACTION mapoles AndoDaan < 1410566371 101550 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :NOOOO < 1410566377 242348 :boily!~boily@96.127.201.149 PRIVMSG #esoteric :oui. < 1410566377 844523 :drdanmaku!uid17782@gateway/web/irccloud.com/session QUIT :Changing host < 1410566377 995154 :drdanmaku!uid17782@gateway/web/irccloud.com/x-uvvwkfhldpssrlwc JOIN :#esoteric < 1410566396 795007 :AndoDaan!~Daanando@188.188.86.34 PRIVMSG #esoteric :nah, I like uhm total ecplipse of the heart