< 1556755815 374704 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`ping < 1556755815 374844 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :hmph < 1556755816 467006 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :pong < 1556756188 409013 :b_jonas!~x@catv-176-63-24-181.catv.broadband.hu PRIVMSG #esoteric :pong < 1556756194 128498 :shikhin!~shikhin@unaffiliated/shikhin PRIVMSG #esoteric :piong > 1556756289 565542 PRIVMSG #esoteric :14[[07((?)?)?14]]4 10 02https://esolangs.org/w/index.php?diff=61547&oldid=61546 5* 03Mipinggfxgbtftybfhfyhfn 5* (+66) 10/* Hello, World! */ < 1556756854 920301 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :@ping < 1556756855 247382 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :pong < 1556756864 972249 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`ping < 1556756865 584527 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :pong < 1556756870 986367 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :seems to be ok now < 1556757072 879285 :atslash!~atslash@static.231.107.9.5.clients.your-server.de QUIT :Quit: This computer has gone to sleep > 1556757187 274122 PRIVMSG #esoteric :14[[07C()14]]4 10 02https://esolangs.org/w/index.php?diff=61548&oldid=61518 5* 03Rdococ 5* (-1078) 10WIP < 1556757395 367442 :rdococ!rdococ@unaffiliated/rdococ PRIVMSG #esoteric :C() is a cool name for an esoteric language that tries to adapt first-class functions to C's way of doing things, although I'm not sure how I'd do it. < 1556757487 597442 :b_jonas!~x@catv-176-63-24-181.catv.broadband.hu PRIVMSG #esoteric :rdococ: isn't that C++ ? < 1556757499 514246 :rdococ!rdococ@unaffiliated/rdococ PRIVMSG #esoteric :Does C++ have first-class functions? < 1556757513 774073 :b_jonas!~x@catv-176-63-24-181.catv.broadband.hu PRIVMSG #esoteric :yes < 1556757526 455073 :rdococ!rdococ@unaffiliated/rdococ PRIVMSG #esoteric :I know there is a compiler extension for C that adds nested functions, but they can't exit their scope. < 1556757533 294925 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :C also has first-class functions. < 1556757542 879668 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Or first-class function pointers, but that's all you need. < 1556757558 278344 :rdococ!rdococ@unaffiliated/rdococ PRIVMSG #esoteric :How can you create new functions using function pointers? < 1556757566 899142 :b_jonas!~x@catv-176-63-24-181.catv.broadband.hu PRIVMSG #esoteric :C does have function pointers; C++ also has closures < 1556757618 777917 :rdococ!rdococ@unaffiliated/rdococ PRIVMSG #esoteric :I'm officially a dumbass. I remember reading, very recently, that C++ has closures. Looks like it didn't originally, but it does now. < 1556757639 619200 :rdococ!rdococ@unaffiliated/rdococ PRIVMSG #esoteric :(That's not to say it was that recent, it was at least 8 years ago, perhaps more than that.) < 1556757659 691309 :b_jonas!~x@catv-176-63-24-181.catv.broadband.hu PRIVMSG #esoteric :rdococ: allocate executable memory, write macine code in it that runs function according to abi calling conventions (restore callee-saved registers if you modify them), cast pointer to first byte of instruction to the right king of function pointer < 1556757661 232721 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :rdococ: the old way in C++ is to make a class which implements operator() and also has member variables for whatever free variables the closure needs to capture < 1556757683 74122 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :b_jonas: but that's nasty and should never be necessary in well designed code < 1556757694 485892 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :rdococ: this is very cumbersome so C++11 added lambdas < 1556757700 244039 :b_jonas!~x@catv-176-63-24-181.catv.broadband.hu PRIVMSG #esoteric :kmc: I wouldn't say that < 1556757710 829159 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :b_jonas: writable executable memory -- I'm gonna stop you right there < 1556757711 835964 :b_jonas!~x@catv-176-63-24-181.catv.broadband.hu PRIVMSG #esoteric :I'd say that JIT is certainly overused < 1556757722 394868 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :well ok < 1556757730 91304 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :if you are talking about an actual JIT, fine < 1556757739 436704 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :if you're just trying to use bare function pointers as closures, don't < 1556757753 604661 :b_jonas!~x@catv-176-63-24-181.catv.broadband.hu PRIVMSG #esoteric :and some people think it's a silver bullet and call for it as a kind of premature optimization or when it doesn't help at all < 1556757765 541702 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :pass a (function pointer, void*) pair, or a pointer to an object with a virtual method, or any of a bunch of other essentially equivalent solutions < 1556757770 893599 :b_jonas!~x@catv-176-63-24-181.catv.broadband.hu PRIVMSG #esoteric :but it's not true that it's never necessary < 1556757792 398631 :b_jonas!~x@catv-176-63-24-181.catv.broadband.hu PRIVMSG #esoteric :well of course not < 1556757802 71859 :rdococ!rdococ@unaffiliated/rdococ PRIVMSG #esoteric :My original plan for C() supported first-class functions stored only on the stack. The idea was that functions that you send to other functions ("downward funargs") are easier to implement, but parts of the program that need to send functions upward would be converted to continuation passing style. < 1556757803 521522 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Did you know that if you link binary data into your program, with ld --format=binary, it'll automatically make the stack executable+writable? < 1556757807 15125 :b_jonas!~x@catv-176-63-24-181.catv.broadband.hu PRIVMSG #esoteric :you shouldn't usee them instead of just closures < 1556757817 737741 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :C++ lambdas are pretty fancy. they can capture by copy, move, or reference, and (starting in C++14) they can be polymorphic < 1556757825 562550 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :shachaf: no... why... < 1556757917 11495 :rdococ!rdococ@unaffiliated/rdococ PRIVMSG #esoteric :However, I think I want to apply the basic idea of "CPS for upward funargs" to a slightly higher level language instead. < 1556757935 767000 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Because every object you link has to have a special symbol or something to indicate it's OK with not having an executable stack. < 1556757949 800290 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :If anything is missing that symbol, the linker automatically makes your stack executable. < 1556757965 80447 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric ::( < 1556757976 975660 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :thanks linker. thinker < 1556757991 133463 :b_jonas!~x@catv-176-63-24-181.catv.broadband.hu PRIVMSG #esoteric :well sure, that's necessary for backwards compatibility < 1556758010 798964 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :You can pass -z noexecstack if you want to (that's what I'm doing). < 1556758019 42744 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :what are you making? < 1556758075 71611 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :A program with a UI that embeds a font into the executable. < 1556758097 759707 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :And maybe other things. I just wanted to see what it would take to make it standalone. < 1556758178 615475 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :ok < 1556758232 640052 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :rdococ: clang also adds yet another form of first class functions ("blocks") to C and ObjC and ObjC++ and maybe regular C++ < 1556758249 277358 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :those have a fairly complicated ABI which is tied to the ObjC runtime < 1556758261 597028 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :and I think they only have dynamic dispatch < 1556758285 873761 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :whereas C++ lambdas are compatible with the "zero-overhead" static polymorphism style of modern C++ < 1556758306 1512 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :so you can apply a bunch of high-er-order combinators like map, filter, etc. and get code that compiles down to a single flat loop > 1556758337 759316 PRIVMSG #esoteric :14[[07Promo14]]4 10 02https://esolangs.org/w/index.php?diff=61549&oldid=61542 5* 03Structuresend 5* (+31) 10 < 1556758354 869937 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :every C++ lambda has its own, un-nameable type which subclasses an appropriate instantiation of std::function < 1556758369 106776 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :for dynamic polymorphism you upcast a reference-to-lambda into a &std::function < 1556758417 989335 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :for static polymorphism you call a function template, implicitly instantiating one of the template parameters at the specific lambda's type < 1556758432 171278 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :this is also why 'auto' is an essential part of C++11 and not just a convenience < 1556758473 560644 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :it allows you to have local variables whose types are these un-nameable things < 1556758515 644907 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :C++ is scow < 1556758528 22871 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :that's why my program is written in c < 1556758557 348926 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :Rust works much the same way, and also in Rust, every non-lambda function has its own type as well, and that type has zero size (because it has no captures, and because you know which function to call from the type itself) < 1556758597 779309 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I don't recall how C++ handles that but anyway, it allows you to instantiate those same HOFs on a named, non-capturing function without creating a function pointer, which would actually cause more overhead than the lambda way > 1556759057 184205 PRIVMSG #esoteric :14[[07User:Blinry14]]4 M10 02https://esolangs.org/w/index.php?diff=61550&oldid=61522 5* 03Blinry 5* (+18) 10 < 1556759160 516486 :b_jonas!~x@catv-176-63-24-181.catv.broadband.hu QUIT :Quit: leaving < 1556759481 118276 :sebbu!~sebbu@unaffiliated/sebbu QUIT :Read error: Connection reset by peer < 1556759504 801104 :sebbu!~sebbu@unaffiliated/sebbu JOIN :#esoteric > 1556759524 353083 PRIVMSG #esoteric :14[[07Language list14]]4 10 02https://esolangs.org/w/index.php?diff=61551&oldid=61543 5* 03Blinry 5* (+12) 10+legit < 1556759675 117791 :sombrero!bf7e243b@gateway/web/freenode/ip.191.126.36.59 JOIN :#esoteric > 1556759702 428542 PRIVMSG #esoteric :14[[07Legit14]]4 10 02https://esolangs.org/w/index.php?diff=61552&oldid=61528 5* 03Blinry 5* (+145) 10Added categories! < 1556759814 704961 :sombrero!bf7e243b@gateway/web/freenode/ip.191.126.36.59 PRIVMSG #esoteric :Pardon the interruption, what is the computational power of a markup language , adding only a conditional IF ? inthe spirit of https://esolangs.org/wiki/Wiki_Cyclic_Tag < 1556759876 132872 :J_Arcane!sid119274@gateway/web/irccloud.com/x-qjppbzwnmisktibc QUIT :Ping timeout: 258 seconds < 1556760063 989440 :ocharles!sid30093@musicbrainz/user/ocharles QUIT :Ping timeout: 264 seconds < 1556760172 199678 :mich181189!sid268336@gateway/web/irccloud.com/x-kvlktsgdewlciknj QUIT :Ping timeout: 268 seconds < 1556760396 444757 :J_Arcane!sid119274@gateway/web/irccloud.com/x-kwzaxjpqkcbfjkzt JOIN :#esoteric < 1556760435 839111 :S_Gautam!uid286066@gateway/web/irccloud.com/x-ngsgjntkfeszcjls QUIT :Quit: Connection closed for inactivity < 1556760448 559373 :glowcoil!sid3405@gateway/web/irccloud.com/x-fyumcpvmbgrvfpsh QUIT :Ping timeout: 276 seconds < 1556760681 67667 :dingwat!uid70835@gateway/web/irccloud.com/x-vsqwtyrhaadwzkml QUIT :Ping timeout: 258 seconds < 1556760734 442063 :J_Arcane!sid119274@gateway/web/irccloud.com/x-kwzaxjpqkcbfjkzt QUIT :Ping timeout: 255 seconds < 1556761604 267953 :ocharles!sid30093@musicbrainz/user/ocharles JOIN :#esoteric < 1556761650 526382 :mich181189!sid268336@gateway/web/irccloud.com/x-kpmelysidmkbaozm JOIN :#esoteric < 1556761673 76510 :glowcoil!sid3405@gateway/web/irccloud.com/x-pwpfevjsykzkdxim JOIN :#esoteric < 1556761699 249942 :J_Arcane!sid119274@gateway/web/irccloud.com/x-ddtvdjintzbouqxo JOIN :#esoteric < 1556761941 526904 :dingwat!uid70835@gateway/web/irccloud.com/x-bmimifwnajzlztaz JOIN :#esoteric > 1556762830 693795 PRIVMSG #esoteric :14[[07Teg14]]4 M10 02https://esolangs.org/w/index.php?diff=61553&oldid=60986 5* 03A 5* (+64) 10 < 1556762959 512338 :FreeFull!~freefull@defocus/sausage-lover QUIT : < 1556763568 347729 :sombrero!bf7e243b@gateway/web/freenode/ip.191.126.36.59 PRIVMSG #esoteric :cheking... < 1556763751 665908 :sombrero!bf7e243b@gateway/web/freenode/ip.191.126.36.59 PRIVMSG #esoteric ::) < 1556763758 226649 :sombrero!bf7e243b@gateway/web/freenode/ip.191.126.36.59 QUIT :Quit: Page closed > 1556764637 619265 PRIVMSG #esoteric :14[[07Esolang:Sandbox14]]4 10 02https://esolangs.org/w/index.php?diff=61554&oldid=59418 5* 03A 5* (+12301) 10Copy the whole thing here for making my own golfing language > 1556765481 944923 PRIVMSG #esoteric :14[[07Esolang:Sandbox14]]4 10 02https://esolangs.org/w/index.php?diff=61555&oldid=61554 5* 03A 5* (-203) 10 > 1556766154 733465 PRIVMSG #esoteric :14[[07Special:Log/delete14]]4 delete10 02 5* 03Oerjan 5* 10deleted "[[02Err10]]": Author request: content before blanking was: "'''Err''' is an esoteric programming language based on errors. ==Keywords== {| class="wikitable" |- ! Keyword !! Meaning |- | err || Catch an error. |- | throw || Throw an error. |- | inport || Inport a library. |} ==Sint..." > 1556766736 792131 PRIVMSG #esoteric :14[[07Esolang:Sandbox14]]4 10 02https://esolangs.org/w/index.php?diff=61556&oldid=61555 5* 03A 5* (-12098) 10Blanked the page > 1556766958 4216 PRIVMSG #esoteric :14[[07Brianfuck14]]4 10 02https://esolangs.org/w/index.php?diff=61557&oldid=55758 5* 03A 5* (-31) 10 > 1556766980 513532 PRIVMSG #esoteric :14[[07Briefscript14]]4 10 02https://esolangs.org/w/index.php?diff=61558&oldid=55991 5* 03A 5* (-29) 10 > 1556766995 982851 PRIVMSG #esoteric :14[[07Frums14]]4 10 02https://esolangs.org/w/index.php?diff=61559&oldid=56780 5* 03A 5* (-25) 10 > 1556767022 659888 PRIVMSG #esoteric :14[[07Golfuck14]]4 10 02https://esolangs.org/w/index.php?diff=61560&oldid=59707 5* 03A 5* (-30) 10/* Partial implementation in C++ */ > 1556767048 946633 PRIVMSG #esoteric :14[[07Losescript14]]4 10 02https://esolangs.org/w/index.php?diff=61561&oldid=55726 5* 03A 5* (-30) 10 > 1556767149 161550 PRIVMSG #esoteric :14[[07Losescript14]]4 10 02https://esolangs.org/w/index.php?diff=61562&oldid=61561 5* 03A 5* (+30) 10Sorry for accidentally editing this page > 1556767167 193372 PRIVMSG #esoteric :14[[07SimpleScript14]]4 10 02https://esolangs.org/w/index.php?diff=61563&oldid=57041 5* 03A 5* (-30) 10 < 1556767171 287815 :Frater_EST!~adrianbib@wsip-68-15-198-210.ok.ok.cox.net JOIN :#esoteric > 1556767244 420805 PRIVMSG #esoteric :14[[07Frums14]]4 10 02https://esolangs.org/w/index.php?diff=61564&oldid=61559 5* 03A 5* (-30) 10 < 1556767250 740983 :Frater_EST!~adrianbib@wsip-68-15-198-210.ok.ok.cox.net PART :#esoteric < 1556767455 951166 :J_Arcane_!sid119274@gateway/web/irccloud.com/x-iubczusumecrwmgh JOIN :#esoteric < 1556767499 288546 :glowcoil_!sid3405@gateway/web/irccloud.com/x-idexoruyhqjsdqfm JOIN :#esoteric < 1556767502 185322 :J_Arcane!sid119274@gateway/web/irccloud.com/x-ddtvdjintzbouqxo QUIT :Ping timeout: 245 seconds < 1556767502 364248 :J_Arcane_!sid119274@gateway/web/irccloud.com/x-iubczusumecrwmgh NICK :J_Arcane < 1556767508 876042 :glowcoil!sid3405@gateway/web/irccloud.com/x-pwpfevjsykzkdxim QUIT :Ping timeout: 250 seconds < 1556767509 126072 :glowcoil_!sid3405@gateway/web/irccloud.com/x-idexoruyhqjsdqfm NICK :glowcoil < 1556769089 179371 :Hooloovoo!Hooloovoo@hooloovoo.blue QUIT :Ping timeout: 268 seconds < 1556769250 587717 :Hoolootwo!Hooloovoo@hooloovoo.blue JOIN :#esoteric < 1556771855 378141 :Hoolootwo!Hooloovoo@hooloovoo.blue NICK :Hooloovo0 < 1556774123 278750 :oerjan!oerjan@sprocket.nvg.ntnu.no QUIT :Quit: Nite < 1556777452 980916 :S_Gautam!uid286066@gateway/web/irccloud.com/x-dfolwwsdizckyrxl JOIN :#esoteric < 1556777910 716454 :Sgeo__!~Sgeo@ool-18b98dd9.dyn.optonline.net PRIVMSG #esoteric :The Shaders on ShaderToy are 4 dimensional (with time as a dimension). Wonder how difficult it would be to rotate some < 1556779778 413952 :Lord_of_Life!~Lord@unaffiliated/lord-of-life/x-0885362 QUIT :Ping timeout: 245 seconds < 1556779847 260580 :Lord_of_Life!~Lord@unaffiliated/lord-of-life/x-0885362 JOIN :#esoteric < 1556780518 38703 :glowcoil!sid3405@gateway/web/irccloud.com/x-idexoruyhqjsdqfm QUIT : < 1556780541 446024 :glowcoil!sid3405@gateway/web/irccloud.com/x-gvbgvndarxtshjbs JOIN :#esoteric < 1556780822 783578 :J_Arcane!sid119274@gateway/web/irccloud.com/x-iubczusumecrwmgh QUIT : < 1556780839 621133 :J_Arcane!sid119274@gateway/web/irccloud.com/x-bhzchokpswmwgbey JOIN :#esoteric < 1556783541 598599 :AnotherTest!~turingcom@ptr-82l26zdrmfxfijq0ns3.18120a2.ip6.access.telenet.be JOIN :#esoteric < 1556784634 416385 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover JOIN :#esoteric < 1556787737 392579 :user24!~user24@p200300C3AF055D13781D9BE2D2F90D10.dip0.t-ipconnect.de JOIN :#esoteric > 1556791972 56648 PRIVMSG #esoteric :14[[07Minic14]]4 10 02https://esolangs.org/w/index.php?diff=61565&oldid=61350 5* 03A 5* (+1013) 10 > 1556792225 145576 PRIVMSG #esoteric :14[[07Minic14]]4 10 02https://esolangs.org/w/index.php?diff=61566&oldid=61565 5* 03A 5* (+316) 10 > 1556792283 990947 PRIVMSG #esoteric :14[[07Minic14]]4 10 02https://esolangs.org/w/index.php?diff=61567&oldid=61566 5* 03A 5* (+38) 10 > 1556792350 166888 PRIVMSG #esoteric :14[[07Minic14]]4 10 02https://esolangs.org/w/index.php?diff=61568&oldid=61567 5* 03A 5* (+8) 10 < 1556792357 944248 :ProofTechnique_!sid79547@gateway/web/irccloud.com/x-gkgziwmcdagrdsfq JOIN :#esoteric < 1556792365 311504 :Hoolootwo!Hooloovoo@hooloovoo.blue JOIN :#esoteric < 1556792384 586207 :ProofTechnique!sid79547@gateway/web/irccloud.com/x-ygqddjrygpqluieg QUIT :Ping timeout: 252 seconds < 1556792385 454427 :Hooloovo0!Hooloovoo@hooloovoo.blue QUIT :Excess Flood < 1556792389 335133 :ProofTechnique_!sid79547@gateway/web/irccloud.com/x-gkgziwmcdagrdsfq NICK :ProofTechnique < 1556792540 699194 :zzo38!~zzo38@24-207-15-213.eastlink.ca QUIT :Ping timeout: 255 seconds > 1556792554 147539 PRIVMSG #esoteric :14[[07Minic14]]4 M10 02https://esolangs.org/w/index.php?diff=61569&oldid=61568 5* 03A 5* (+84) 10 < 1556793497 285208 :S_Gautam!uid286066@gateway/web/irccloud.com/x-dfolwwsdizckyrxl QUIT :Quit: Connection closed for inactivity < 1556796947 820431 :atslash!~atslash@static.231.107.9.5.clients.your-server.de JOIN :#esoteric < 1556798602 241183 :b_jonas!~x@catv-176-63-25-62.catv.broadband.hu JOIN :#esoteric > 1556799087 708933 PRIVMSG #esoteric :14[[07Talk:Text14]]4 10 02https://esolangs.org/w/index.php?diff=61570&oldid=54002 5* 03A 5* (+199) 10/* txeT */ < 1556799407 299449 :Hoolootwo!Hooloovoo@hooloovoo.blue QUIT :Ping timeout: 240 seconds < 1556799488 700339 :user24!~user24@p200300C3AF055D13781D9BE2D2F90D10.dip0.t-ipconnect.de QUIT :Quit: Leaving < 1556799662 565467 :Hoolootwo!Hooloovoo@hooloovoo.blue JOIN :#esoteric < 1556802859 478164 :S_Gautam!uid286066@gateway/web/irccloud.com/x-wgvuryisksjjuyxr JOIN :#esoteric < 1556802897 596079 :AnotherTest!~turingcom@ptr-82l26zdrmfxfijq0ns3.18120a2.ip6.access.telenet.be QUIT :Ping timeout: 250 seconds < 1556802913 27176 :AnotherTest!~turingcom@ptr-82l26zfnlgwh4k4ewtw.18120a2.ip6.access.telenet.be JOIN :#esoteric < 1556802946 741558 :atslash!~atslash@static.231.107.9.5.clients.your-server.de QUIT :Ping timeout: 250 seconds < 1556803070 455095 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover QUIT :Ping timeout: 255 seconds < 1556803387 851125 :atslash!~atslash@broadband-46-188-0-82.2com.net JOIN :#esoteric < 1556805441 980246 :AnotherTest!~turingcom@ptr-82l26zfnlgwh4k4ewtw.18120a2.ip6.access.telenet.be QUIT :Ping timeout: 252 seconds < 1556806741 666700 :Hoolootwo!Hooloovoo@hooloovoo.blue QUIT :Ping timeout: 276 seconds < 1556806864 551688 :Hoolootwo!Hooloovoo@hooloovoo.blue JOIN :#esoteric < 1556809119 40350 :moei!~moei@softbank221078042071.bbtec.net JOIN :#esoteric < 1556810635 176708 :S_Gautam!uid286066@gateway/web/irccloud.com/x-wgvuryisksjjuyxr QUIT :Quit: Connection closed for inactivity < 1556813525 740594 :AnotherTest!~turingcom@d51A4B8E1.access.telenet.be JOIN :#esoteric < 1556814119 74956 :JRT!~JRT@84.19.39.186 JOIN :#esoteric < 1556814124 575761 :JRT!~JRT@84.19.39.186 PRIVMSG #esoteric :sup my ppls < 1556814242 959779 :MDude!~MDude@c-174-55-125-31.hsd1.pa.comcast.net QUIT :Ping timeout: 246 seconds < 1556815121 96089 :LKoen!~LKoen@crh60-h01-176-151-31-205.dsl.sta.abo.bbox.fr JOIN :#esoteric < 1556815213 195212 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :hello JRT < 1556815816 353439 :JRT!~JRT@84.19.39.186 QUIT :Quit: Lost terminal < 1556816826 43422 :atslash!~atslash@broadband-46-188-0-82.2com.net QUIT :Ping timeout: 246 seconds < 1556816873 172465 :atslash!~atslash@static.231.107.9.5.clients.your-server.de JOIN :#esoteric < 1556817132 40175 :Sgeo_!~Sgeo@ool-18b98dd9.dyn.optonline.net JOIN :#esoteric < 1556817324 860020 :Sgeo__!~Sgeo@ool-18b98dd9.dyn.optonline.net QUIT :Ping timeout: 250 seconds < 1556818301 240999 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover JOIN :#esoteric < 1556820200 848956 :S_Gautam!uid286066@gateway/web/irccloud.com/x-hrcijeajtnnrnens JOIN :#esoteric < 1556820892 238175 :MDude!~MDude@c-174-55-125-31.hsd1.pa.comcast.net JOIN :#esoteric < 1556821090 866547 :Sgeo__!~Sgeo@ool-18b98dd9.dyn.optonline.net JOIN :#esoteric < 1556821108 484389 :MDead!~MDude@c-174-55-125-31.hsd1.pa.comcast.net JOIN :#esoteric < 1556821253 281365 :MDude!~MDude@c-174-55-125-31.hsd1.pa.comcast.net QUIT :Ping timeout: 245 seconds < 1556821254 480193 :MDead!~MDude@c-174-55-125-31.hsd1.pa.comcast.net NICK :MDude < 1556821281 982030 :Sgeo_!~Sgeo@ool-18b98dd9.dyn.optonline.net QUIT :Ping timeout: 252 seconds < 1556821451 38803 :tromp!~tromp@2a02:a210:1585:3200:7444:4456:e070:b214 QUIT :Remote host closed the connection < 1556821485 22704 :tromp!~tromp@2a02:a210:1585:3200:5852:f3a8:7a78:7255 JOIN :#esoteric < 1556821719 3675 :MDude!~MDude@c-174-55-125-31.hsd1.pa.comcast.net QUIT :Ping timeout: 246 seconds < 1556821744 43521 :tromp!~tromp@2a02:a210:1585:3200:5852:f3a8:7a78:7255 QUIT :Ping timeout: 252 seconds < 1556821935 96863 :Sgeo_!~Sgeo@ool-18b98dd9.dyn.optonline.net JOIN :#esoteric < 1556822133 844749 :Sgeo__!~Sgeo@ool-18b98dd9.dyn.optonline.net QUIT :Ping timeout: 258 seconds < 1556822841 123847 :Lord_of_Life_!~Lord@unaffiliated/lord-of-life/x-0885362 JOIN :#esoteric < 1556823028 253979 :Lord_of_Life!~Lord@unaffiliated/lord-of-life/x-0885362 QUIT :Ping timeout: 246 seconds < 1556823029 707554 :Lord_of_Life_!~Lord@unaffiliated/lord-of-life/x-0885362 NICK :Lord_of_Life > 1556824635 125956 PRIVMSG #esoteric :14[[07Esolang:Introduce yourself14]]4 10 02https://esolangs.org/w/index.php?diff=61571&oldid=61521 5* 03Sollyucko 5* (+187) 10Added myself > 1556824816 175779 PRIVMSG #esoteric :14[[07BareMinimum14]]4 10 02https://esolangs.org/w/index.php?diff=61572&oldid=60805 5* 03Sollyucko 5* (-38) 10Fixed typo & formatting > 1556825098 348027 PRIVMSG #esoteric :14[[07((?)?)?14]]4 10 02https://esolangs.org/w/index.php?diff=61573&oldid=61547 5* 03Mipinggfxgbtftybfhfyhfn 5* (-121) 10/* Nor operator */ > 1556825119 318079 PRIVMSG #esoteric :14[[07User:Sollyucko14]]4 N10 02https://esolangs.org/w/index.php?oldid=61574 5* 03Sollyucko 5* (+67) 10Created page with "[https://en.wikipedia.org/wiki/User:Sollyucko wp:en:User:Sollyucko]" > 1556825159 467151 PRIVMSG #esoteric :14[[07Folders14]]4 10 02https://esolangs.org/w/index.php?diff=61575&oldid=47151 5* 03Rottytooth 5* (-149) 10removed dead link > 1556825270 285177 PRIVMSG #esoteric :14[[07((?)?)?14]]4 10 02https://esolangs.org/w/index.php?diff=61576&oldid=61573 5* 03Mipinggfxgbtftybfhfyhfn 5* (+30) 10/* Symbols */ > 1556825436 539808 PRIVMSG #esoteric :14[[07((?)?)?14]]4 10 02https://esolangs.org/w/index.php?diff=61577&oldid=61576 5* 03Mipinggfxgbtftybfhfyhfn 5* (+97) 10/* Groups */ < 1556825474 320893 :Sgeo__!~Sgeo@ool-18b98dd9.dyn.optonline.net JOIN :#esoteric > 1556825532 676208 PRIVMSG #esoteric :14[[07((?)?)?14]]4 10 02https://esolangs.org/w/index.php?diff=61578&oldid=61577 5* 03Mipinggfxgbtftybfhfyhfn 5* (-139) 10/* Examples */ < 1556825652 69390 :Sgeo_!~Sgeo@ool-18b98dd9.dyn.optonline.net QUIT :Ping timeout: 245 seconds > 1556826102 103018 PRIVMSG #esoteric :14[[07((?)?)?14]]4 10 02https://esolangs.org/w/index.php?diff=61579&oldid=61578 5* 03Mipinggfxgbtftybfhfyhfn 5* (+82) 10 < 1556826599 925365 :b_jonas!~x@catv-176-63-25-62.catv.broadband.hu PRIVMSG #esoteric :ais523: have you got any new results on that letter rearrangement problem? < 1556826835 238773 :FreeFull!~freefull@defocus/sausage-lover JOIN :#esoteric < 1556827499 79147 :tromp!~tromp@2a02:a210:1585:3200:5852:f3a8:7a78:7255 JOIN :#esoteric < 1556827772 50000 :tromp!~tromp@2a02:a210:1585:3200:5852:f3a8:7a78:7255 QUIT :Ping timeout: 258 seconds > 1556827803 108121 PRIVMSG #esoteric :14[[07Run On Off14]]4 N10 02https://esolangs.org/w/index.php?oldid=61580 5* 03Mipinggfxgbtftybfhfyhfn 5* (+301) 10Created page with "Run On Off is an [[meta-language]] and [[matrioshka language]] designed so it can be interpreted with just an interruptor that turn on/off a light, the human brain and a paper..." < 1556827980 965209 :S_Gautam!uid286066@gateway/web/irccloud.com/x-hrcijeajtnnrnens QUIT :Quit: Connection closed for inactivity < 1556829232 564130 :atslash!~atslash@static.231.107.9.5.clients.your-server.de QUIT :Quit: This computer has gone to sleep < 1556829256 645976 :AnotherTest!~turingcom@d51A4B8E1.access.telenet.be QUIT :Ping timeout: 268 seconds < 1556829278 301036 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover QUIT :Ping timeout: 245 seconds < 1556830991 725206 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover JOIN :#esoteric < 1556831344 264757 :Lord_of_Life!~Lord@unaffiliated/lord-of-life/x-0885362 QUIT :Ping timeout: 246 seconds < 1556831685 26834 :Lord_of_Life!~Lord@unaffiliated/lord-of-life/x-0885362 JOIN :#esoteric < 1556833533 975527 :tromp!~tromp@2a02:a210:1585:3200:5852:f3a8:7a78:7255 JOIN :#esoteric < 1556833936 275624 :b_jonas!~x@catv-176-63-25-62.catv.broadband.hu PRIVMSG #esoteric :am I the only one to wonder why the ICFP contest for this year is not announced yet? < 1556833946 443187 :b_jonas!~x@catv-176-63-25-62.catv.broadband.hu PRIVMSG #esoteric :has nobody volunteered to organize it? < 1556833953 864841 :atslash!~atslash@static.231.107.9.5.clients.your-server.de JOIN :#esoteric < 1556834482 815619 :tromp!~tromp@2a02:a210:1585:3200:5852:f3a8:7a78:7255 QUIT :Remote host closed the connection < 1556834519 67165 :tromp!~tromp@2a02:a210:1585:3200:5852:f3a8:7a78:7255 JOIN :#esoteric < 1556834787 54169 :tromp!~tromp@2a02:a210:1585:3200:5852:f3a8:7a78:7255 QUIT :Ping timeout: 259 seconds < 1556836391 68101 :tromp!~tromp@2a02:a210:1585:3200:5852:f3a8:7a78:7255 JOIN :#esoteric < 1556836673 59824 :tromp!~tromp@2a02:a210:1585:3200:5852:f3a8:7a78:7255 QUIT :Ping timeout: 259 seconds < 1556837659 971089 :oerjan!oerjan@sprocket.nvg.ntnu.no JOIN :#esoteric < 1556837828 681501 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :. o O ( the contest is dysfunctional ) < 1556838088 875047 :LKoen!~LKoen@crh60-h01-176-151-31-205.dsl.sta.abo.bbox.fr QUIT :Quit: “It’s only logical. First you learn to talk, then you learn to think. Too bad it’s not the other way round.” < 1556838251 321479 :atslash!~atslash@static.231.107.9.5.clients.your-server.de QUIT :Quit: This computer has gone to sleep < 1556838767 804753 :b_jonas!~x@catv-176-63-25-62.catv.broadband.hu PRIVMSG #esoteric :`? icfp < 1556838768 816236 :HackEso!~HackEso@techne.zem.fi PRIVMSG #esoteric :I see functorial people. > 1556839459 496492 PRIVMSG #esoteric :14[[07Run On Off14]]4 10 02https://esolangs.org/w/index.php?diff=61581&oldid=61580 5* 03Mipinggfxgbtftybfhfyhfn 5* (+184) 10/* Syntax */ < 1556839965 935258 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover QUIT :Read error: Connection reset by peer > 1556840285 575355 PRIVMSG #esoteric :14[[07Run On Off14]]4 10 02https://esolangs.org/w/index.php?diff=61582&oldid=61581 5* 03Mipinggfxgbtftybfhfyhfn 5* (+426) 10/* Syntax */ > 1556840389 872752 PRIVMSG #esoteric :14[[07Run On Off14]]4 10 02https://esolangs.org/w/index.php?diff=61583&oldid=61582 5* 03Mipinggfxgbtftybfhfyhfn 5* (+20) 10/* Syntax */