< 1551830501 701138 :copumpkin!~copumpkin@haskell/developer/copumpkin QUIT :Read error: Connection reset by peer < 1551830550 49995 :copumpkin!~copumpkin@haskell/developer/copumpkin JOIN :#esoteric < 1551830952 125551 :sprocklem!~sprocklem@unaffiliated/sprocklem QUIT :Ping timeout: 245 seconds < 1551830967 259325 :sprocklem!~sprocklem@unaffiliated/sprocklem JOIN :#esoteric < 1551830976 110431 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover QUIT :Remote host closed the connection < 1551831390 464986 :FreeFull!~freefull@defocus/sausage-lover QUIT :Quit: Rebooting again.. < 1551831472 51661 :FreeFull!~freefull@defocus/sausage-lover JOIN :#esoteric < 1551831803 464603 :b_jonas!~x@catv-176-63-24-18.catv.broadband.hu QUIT :Quit: leaving < 1551831812 773480 :Lord_of_Life_!~Lord@unaffiliated/lord-of-life/x-0885362 JOIN :#esoteric < 1551831967 292115 :Lord_of_Life!~Lord@unaffiliated/lord-of-life/x-0885362 QUIT :Ping timeout: 240 seconds < 1551831967 793881 :Lord_of_Life_!~Lord@unaffiliated/lord-of-life/x-0885362 NICK :Lord_of_Life < 1551833456 934495 :oerjan!oerjan@sprocket.nvg.ntnu.no JOIN :#esoteric < 1551833506 63486 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Remote host closed the connection < 1551833735 113699 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric : oerjan: re rationals, see https://www.perlmonks.com/?node_id=424519 for example <-- i know, but my function takes care to find the unique best in an open interval (barring floating point errors) < 1551833893 870399 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :istr you can maybe find those from the continued fractions too, except you sometimes need to increment the last number < 1551833931 523005 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :> rationalize (pi-0.01, pi+0.01) < 1551833933 428954 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 22 % 7 < 1551833950 645244 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric ::t rationalize < 1551833951 725624 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :(Double, Double) -> Rational < 1551833956 680909 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :> 22/7 < 1551833958 556035 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 3.142857142857143 < 1551833965 763194 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :> rationalize (pi-0.01, pi+0.001) < 1551833967 773535 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 47 % 15 < 1551833977 532896 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :> rationalize (exp 1 - 0.01, exp 1 + 0.01) < 1551833979 331148 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 19 % 7 < 1551833984 699015 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i don't think that is in the continued fraction < 1551833998 462012 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :@where pi_10 < 1551833998 747709 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :(!!3)<$>transpose[show$foldr(\k a->2*10^2^n+a*k`div`(2*k+1))0[1..2^n]|n<-[0..]] < 1551834003 524955 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :> rationalize (pi-0.001, pi+0.001) < 1551834006 196812 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 201 % 64 < 1551834007 148468 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :> (!!3)<$>transpose[show$foldr(\k a->2*10^2^n+a*k`div`(2*k+1))0[1..2^n]|n<-[0..]] < 1551834010 769153 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : "314159265358979323846264338327950288419716939937510582097494459230781640628... < 1551834025 688514 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :imo that's p. good golfing < 1551834056 649878 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :. o O ( did i really use "barring" instead of "modulo" up there? i may have to hand in my mathematician card ) < 1551834264 791356 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :> let cf x | let f()=fromInteger(floor x) = [f(),f()+1] ++ map((f()+).recip) (cf (1/(x-f()))) :: Rational < 1551834266 540524 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : : error: < 1551834266 540586 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : not an expression: ‘let cf x | let f()=fromInteger(floor x) = [f(),f()+1... < 1551834277 269573 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :@let cf x | let f()=fromInteger(floor x) = [f(),f()+1] ++ map((f()+).recip) (cf (1/(x-f()))) :: Rational < 1551834278 486094 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : .L.hs:161:1: error: < 1551834278 635667 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : • Couldn't match type ‘Ratio Integer’ with ‘[t]’ < 1551834278 635702 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : Expected type: t -> [t] < 1551834287 937980 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :@let cf x | let f()=fromInteger(floor x) = [f(),f()+1] ++ map((f()+).recip) (cf (1/(x-f()))) :: [Rational] < 1551834289 159084 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : Defined. < 1551834292 439777 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :> cf pi < 1551834294 250539 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : error: < 1551834294 340756 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : • No instance for (Floating (Ratio Integer)) < 1551834294 340806 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : arising from a use of ‘pi’ < 1551834302 750440 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :fff < 1551834352 115260 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i though adding () should make it polymorphic enough < 1551834433 13108 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :> let cf x | let f()=fromInteger(floor x) = [f(),f()+1] ++ map((f()+).recip) (cf (1/(x-f()))) :: [Rational] in cf pi < 1551834435 99798 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : error: < 1551834435 182426 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : • No instance for (Floating (Ratio Integer)) < 1551834435 182490 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : arising from a use of ‘pi’ < 1551834468 570809 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :> let cf x | let f::Integral a => ()->a; f()=fromInteger(floor x) = [f(),f()+1] ++ map((f()+).recip) (cf (1/(x-f()))) :: [Rational] in cf pi < 1551834470 472528 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : error: < 1551834470 567511 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : • Could not deduce (Integral Rational) arising from a use of ‘f’ < 1551834470 567560 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : from the context: (RealFrac t, Integral t) < 1551834513 966895 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :> let cf :: Double -> [Rational]; cf x | let f()=fromInteger(floor x) = [f(),f()+1] ++ map((f()+).recip) (cf (1/(x-f()))) :: [Rational] in cf pi < 1551834515 823995 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : error: < 1551834515 905086 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : • Couldn't match type ‘Double’ with ‘Ratio Integer’ < 1551834515 944546 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : Expected type: [Rational] < 1551834642 245428 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :argh it must be MonoLocalBinds because it works in ghci < 1551834703 654170 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :> let cf :: Double -> [Rational]; cf x | let f::a => Num a; f=fromInteger(floor x) = [f,f+1] ++ map((f+).recip) (cf (1/(x-f))) :: [Rational] in cf pi < 1551834705 566461 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : error: < 1551834705 730234 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : • Expected a type, but ‘Num a’ has kind ‘Constraint’ < 1551834705 730282 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : • In the type signature: f :: a => Num a < 1551834731 397880 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :> let cf :: Double -> [Rational]; cf x | let f::Num a => a; f=fromInteger(floor x) = [f,f+1] ++ map((f+).recip) (cf (1/(x-f))) :: [Rational] in cf pi < 1551834733 269487 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : [3 % 1,4 % 1,22 % 7,25 % 8,333 % 106,355 % 113,355 % 113,688 % 219,103993 % ... < 1551834747 444254 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :wut < 1551834778 313705 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :> rationalize (pi-0.001, pi+0.001) < 1551834780 313006 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 201 % 64 < 1551834789 12489 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :definitely not in there < 1551834836 580007 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :> (pi-22/7, pi-25/8, pi-333/106, pi-355/113) < 1551834838 522340 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : (-1.2644892673496777e-3,1.6592653589793116e-2,8.32196275291075e-5,-2.6676418... < 1551834907 113091 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :@where rationalize < 1551834907 387773 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :I know nothing about rationalize. < 1551835050 31325 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :@where+ rationalize @let rationalize :: (Double, Double) -> Rational; rationalize (a,b) | b <= 0 = -rationalize(-b,-a) | a < 0 = 0 | b <= 1 = 1/rationalize(1/b,1/abs a) | let a'::RealFrac x=>x;a'=max 1(fromInteger (floor a))=a' + rationalize (a-a',b-a') < 1551835050 302490 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :Done. < 1551835056 387980 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :@where rationalize < 1551835056 720357 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : @let rationalize :: (Double, Double) -> Rational; rationalize (a,b) | b <= 0 = -rationalize(-b,-a) | a < 0 = 0 | b <= 1 = 1/rationalize(1/b,1/abs a) | let a'::RealFrac x=>x;a'=max 1(fromInteger ( < 1551835056 720398 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :floor a))=a' + rationalize (a-a',b-a') < 1551835505 59470 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1551835775 30595 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Ping timeout: 255 seconds > 1551838865 545360 PRIVMSG #esoteric :14[[07ALLSCII14]]4 10 02https://esolangs.org/w/index.php?diff=60287&oldid=60286 5* 03Cortex 5* (+56) 10 > 1551838928 617936 PRIVMSG #esoteric :14[[07Truth-machine14]]4 10 02https://esolangs.org/w/index.php?diff=60288&oldid=60103 5* 03Cortex 5* (+50) 10 < 1551842022 33248 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1551842282 33267 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Ping timeout: 255 seconds < 1551843279 196872 :adu!~ajr@pool-70-110-26-251.washdc.fios.verizon.net JOIN :#esoteric < 1551844346 529202 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i wonder if next freefall will show sam having severe stomach trouble :P < 1551844445 957207 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :or some other unexpected side effect < 1551845785 436154 :S_Gautam!uid286066@gateway/web/irccloud.com/x-bomvnonoaiyucapb JOIN :#esoteric < 1551845796 346616 :FreeFull!~freefull@defocus/sausage-lover QUIT : < 1551848514 211520 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1551848802 67231 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Ping timeout: 245 seconds < 1551849773 392595 :moony_!~moony@hellomouse/dev/moony QUIT :Read error: Connection reset by peer < 1551849779 223820 :moony__!~moony@hellomouse/dev/moony JOIN :#esoteric < 1551850371 208208 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :in girl genius, thinks get even weirder than i expected. < 1551850626 198058 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :*things < 1551853157 45455 :adu!~ajr@pool-70-110-26-251.washdc.fios.verizon.net QUIT :Quit: adu > 1551854548 760717 PRIVMSG #esoteric :14[[07Truth-machine14]]4 M10 02https://esolangs.org/w/index.php?diff=60289&oldid=60288 5* 03Arcorann 5* (+0) 10/* ALLSCII */ > 1551855507 988862 PRIVMSG #esoteric :14[[07Truth-machine14]]4 M10 02https://esolangs.org/w/index.php?diff=60290&oldid=60289 5* 03Oerjan 5* (+1) 10Dummy edit (aka "what, no one has messed up the sorting?") > 1551856117 580097 PRIVMSG #esoteric :14[[07Programming Language14]]4 M10 02https://esolangs.org/w/index.php?diff=60291&oldid=58391 5* 03Oerjan 5* (-3) 10This page needs manual updating (alas redirects cannot use templates) > 1551856222 54534 PRIVMSG #esoteric :14[[07Special:Log/delete14]]4 delete10 02 5* 03Oerjan 5* 10deleted "[[02A programming language is a formal language, which comprises a set of instructions used to produce various kinds of output.10]]": Renamed again < 1551857198 667422 :hakatashi2!~hakatashi@104.131.49.125 QUIT :Remote host closed the connection < 1551857216 791286 :hakatashi!~hakatashi@104.131.49.125 JOIN :#esoteric < 1551858281 301085 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1551858744 462127 :LKoen!~LKoen@135.238.155.250 JOIN :#esoteric < 1551858772 47986 :LKoen!~LKoen@135.238.155.250 QUIT :Read error: Connection reset by peer < 1551859567 241840 :S_Gautam!uid286066@gateway/web/irccloud.com/x-bomvnonoaiyucapb QUIT :Quit: Connection closed for inactivity < 1551861631 778768 :oerjan!oerjan@sprocket.nvg.ntnu.no QUIT :Quit: Nite < 1551862577 33123 :arseniiv!~arseniiv@136.169.200.33 JOIN :#esoteric < 1551863011 34119 :adu!~ajr@pool-70-110-26-251.washdc.fios.verizon.net JOIN :#esoteric < 1551863315 478592 :orbitaldecay!~Bob@c-68-33-93-38.hsd1.va.comcast.net JOIN :#esoteric < 1551863478 247303 :orbitaldecay__!~Bob@c-68-33-93-134.hsd1.va.comcast.net QUIT :Ping timeout: 252 seconds < 1551864829 339283 :rain1!~My_user_n@unaffiliated/rain1 PRIVMSG #esoteric :https://tools.ietf.org/html/rfc865 < 1551865080 299847 :adu!~ajr@pool-70-110-26-251.washdc.fios.verizon.net PRIVMSG #esoteric :https://tools.ietf.org/html/rfc2324 < 1551865239 254339 :adu!~ajr@pool-70-110-26-251.washdc.fios.verizon.net PART :#esoteric < 1551865257 837923 :Taneb!~Taneb@2001:41c8:51:10d:aaaa:0:aaaa:0 PRIVMSG #esoteric :Outlandish GG theory: this is Violetta < 1551865316 374054 :AnotherTest!~turingcom@natx-145.kulnet.kuleuven.be JOIN :#esoteric > 1551865571 881120 PRIVMSG #esoteric :14[[07Esolang:Featured languages/Candidates14]]4 10 02https://esolangs.org/w/index.php?diff=60292&oldid=60278 5* 03A 5* (-4) 10/* List of candidates */ > 1551865843 512391 PRIVMSG #esoteric :14[[07Esolang:Featured languages/Candidates14]]4 10 02https://esolangs.org/w/index.php?diff=60293&oldid=60292 5* 03A 5* (+46) 10/* List of candidates */ < 1551865906 401715 :Taneb!~Taneb@2001:41c8:51:10d:aaaa:0:aaaa:0 PRIVMSG #esoteric :I think nominating your own language to be featured is rather poor form > 1551865983 144899 PRIVMSG #esoteric :14[[07Bitch14]]4 10 02https://esolangs.org/w/index.php?diff=60294&oldid=60277 5* 03A 5* (-6) 10Remove what I commented < 1551866440 885563 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :I nominate Real Fast Nora's Hair Salon 3: Shear Disaster Download for the best-named esolang < 1551868127 49071 :cochain!~ghostface@user-0c8ghej.cable.mindspring.com JOIN :#esoteric < 1551868134 617924 :cochain!~ghostface@user-0c8ghej.cable.mindspring.com PART :#esoteric < 1551869487 284933 :nfd!~nfd9001@c-73-157-90-101.hsd1.wa.comcast.net QUIT :Read error: Connection reset by peer < 1551869600 210420 :nfd9001!~nfd9001@c-73-157-90-101.hsd1.wa.comcast.net JOIN :#esoteric < 1551871678 22518 :feeb!sid310875@gateway/web/irccloud.com/x-tkkkmpafqclcmtnf NICK :dog_star < 1551875085 314997 :Lord_of_Life_!~Lord@unaffiliated/lord-of-life/x-0885362 JOIN :#esoteric < 1551875218 734167 :Lord_of_Life!~Lord@unaffiliated/lord-of-life/x-0885362 QUIT :Ping timeout: 250 seconds < 1551875219 107100 :Lord_of_Life_!~Lord@unaffiliated/lord-of-life/x-0885362 NICK :Lord_of_Life < 1551875430 744856 :orbitaldecay!~Bob@c-68-33-93-38.hsd1.va.comcast.net PRIVMSG #esoteric :7\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\rgft=v cfvgggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg < 1551875591 206431 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :https://i.redd.it/hc4zvr0obck21.png < 1551876952 217494 :Essadon!~Essadon@81-225-32-185-no249.tbcn.telia.com JOIN :#esoteric < 1551876983 151784 :Essadon!~Essadon@81-225-32-185-no249.tbcn.telia.com QUIT :Max SendQ exceeded < 1551877008 299127 :Essadon!~Essadon@81-225-32-185-no249.tbcn.telia.com JOIN :#esoteric < 1551878083 827610 :int-e!~noone@int-e.eu PRIVMSG #esoteric :orin: child or cat? < 1551879525 771053 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :hmm? < 1551879755 445455 :int-e!~noone@int-e.eu PRIVMSG #esoteric :... tab completion < 1551879763 773916 :int-e!~noone@int-e.eu PRIVMSG #esoteric :orbitaldecay: child or cat? < 1551879769 733426 :int-e!~noone@int-e.eu PRIVMSG #esoteric :orbitaldecay: sorry < 1551879771 297731 :int-e!~noone@int-e.eu PRIVMSG #esoteric :... < 1551879773 644765 :int-e!~noone@int-e.eu PRIVMSG #esoteric :orin: sorry < 1551880515 347527 :dog_star!sid310875@gateway/web/irccloud.com/x-tkkkmpafqclcmtnf NICK :dogstar < 1551880569 769692 :dogstar!sid310875@gateway/web/irccloud.com/x-tkkkmpafqclcmtnf NICK :dog_star > 1551882722 555245 PRIVMSG #esoteric :14[[07Bitch14]]4 10 02https://esolangs.org/w/index.php?diff=60295&oldid=60294 5* 03A 5* (+110) 10/* Continuation on the above by User:Helen (Implementing arithematic operations) */ > 1551883203 84190 PRIVMSG #esoteric :14[[07Bitch14]]4 10 02https://esolangs.org/w/index.php?diff=60296&oldid=60295 5* 03A 5* (-429) 10/* Language Overview */ > 1551883762 892397 PRIVMSG #esoteric :14[[07Bitch14]]4 10 02https://esolangs.org/w/index.php?diff=60297&oldid=60296 5* 03A 5* (+151) 10/* Continuation on the above by User:Helen (Implementing arithematic operations) */ > 1551884269 252186 PRIVMSG #esoteric :14[[07Bitch14]]4 10 02https://esolangs.org/w/index.php?diff=60298&oldid=60297 5* 03A 5* (+173) 10/* Common Algorithms */ > 1551884438 588890 PRIVMSG #esoteric :14[[07Bitch14]]4 10 02https://esolangs.org/w/index.php?diff=60299&oldid=60298 5* 03A 5* (+127) 10/* Continuation on the above by User:Helen (Implementing arithematic operations) */ < 1551884445 234321 :orbitaldecay_!~Bob@c-68-33-93-38.hsd1.va.comcast.net JOIN :#esoteric > 1551884498 819571 PRIVMSG #esoteric :14[[07Bitch14]]4 10 02https://esolangs.org/w/index.php?diff=60300&oldid=60299 5* 03A 5* (+93) 10/* Incrementing */ < 1551884669 400341 :orbitaldecay!~Bob@c-68-33-93-38.hsd1.va.comcast.net QUIT :Ping timeout: 244 seconds < 1551884753 238355 :orbitaldecay_!~Bob@c-68-33-93-38.hsd1.va.comcast.net QUIT :Ping timeout: 245 seconds > 1551885005 402787 PRIVMSG #esoteric :14[[07User talk:Helen14]]4 N10 02https://esolangs.org/w/index.php?oldid=60301 5* 03A 5* (+126) 10Request help from User:Helen > 1551885202 540150 PRIVMSG #esoteric :14[[07Bitch14]]4 10 02https://esolangs.org/w/index.php?diff=60302&oldid=60300 5* 03A 5* (+67) 10/* Continuation on the above by User:Helen (Implementing arithematic operations) */ < 1551885754 852280 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :int-e: lol tabs > 1551885903 865518 PRIVMSG #esoteric :14[[07User talk:A14]]4 10 02https://esolangs.org/w/index.php?diff=60303&oldid=60279 5* 03A 5* (-3) 10 < 1551887582 575886 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :bah we are movig ofices soon and i have to organize < 1551888297 268085 :orbitaldecay!~Bob@c-68-33-93-185.hsd1.va.comcast.net JOIN :#esoteric < 1551888378 265659 :orbitaldecay_!~Bob@c-68-33-93-185.hsd1.va.comcast.net JOIN :#esoteric < 1551888547 273016 :orbitaldecay!~Bob@c-68-33-93-185.hsd1.va.comcast.net QUIT :Ping timeout: 240 seconds < 1551888877 304119 :orbitaldecay!~Bob@c-68-33-93-185.hsd1.va.comcast.net JOIN :#esoteric < 1551888987 374188 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :1,0𝔗𝔥𝔢 𝔑𝔢𝔴 𝔜𝔬𝔯𝔨 𝔗𝔦𝔪𝔢𝔰 doesn't use fraktur, they use a more readable blackletter font, does anyone know which one? < 1551889004 261819 :orbitaldecay__!~Bob@c-68-33-93-185.hsd1.va.comcast.net JOIN :#esoteric < 1551889107 309814 :orbitaldecay_!~Bob@c-68-33-93-185.hsd1.va.comcast.net QUIT :Ping timeout: 240 seconds < 1551889187 323238 :orbitaldecay!~Bob@c-68-33-93-185.hsd1.va.comcast.net QUIT :Ping timeout: 240 seconds < 1551889238 372960 :S_Gautam!uid286066@gateway/web/irccloud.com/x-qjtalnkdperrxphm JOIN :#esoteric < 1551889347 251284 :orbitaldecay_!~Bob@c-68-33-93-185.hsd1.va.comcast.net JOIN :#esoteric < 1551889487 321795 :orbitaldecay__!~Bob@c-68-33-93-185.hsd1.va.comcast.net QUIT :Ping timeout: 240 seconds < 1551889708 212395 :orbitaldecay_!~Bob@c-68-33-93-185.hsd1.va.comcast.net QUIT :Ping timeout: 246 seconds < 1551891936 500790 :AnotherTest!~turingcom@natx-145.kulnet.kuleuven.be QUIT :Ping timeout: 250 seconds < 1551892862 441181 :LKoen!~LKoen@2a01cb0407597a007937f4b7ba87e12e.ipv6.abo.wanadoo.fr JOIN :#esoteric < 1551893723 235535 :AnotherTest!~turingcom@d51A4B8E1.access.telenet.be JOIN :#esoteric < 1551895334 392356 :LKoen!~LKoen@2a01cb0407597a007937f4b7ba87e12e.ipv6.abo.wanadoo.fr QUIT :Remote host closed the connection < 1551895479 661505 :LKoen!~LKoen@lfbn-idf2-1-273-77.w82-123.abo.wanadoo.fr JOIN :#esoteric < 1551896674 886938 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :thing : thing.c < 1551896706 957107 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :perhaps bonghits will fix my makefile < 1551896743 990430 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :kmc: it turned out the make accidentally impossible to succeed < 1551896770 598179 :LKoen!~LKoen@lfbn-idf2-1-273-77.w82-123.abo.wanadoo.fr QUIT :Remote host closed the connection < 1551896791 786112 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :because, the perl script passed it the wrong arguments < 1551896818 947692 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :because, the makefile that calls the perl script, had the wrong variable definitions < 1551896867 317945 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :because, the shell script that calls the makefile was written wrong < 1551896869 329693 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover JOIN :#esoteric < 1551896873 319279 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :and it's my fault < 1551896890 304324 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :d'oh < 1551896899 645545 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :you should add more scripts < 1551896939 998307 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :kmc: i am considering how a makefile can possibly check its arguments < 1551897018 542994 :S_Gautam!uid286066@gateway/web/irccloud.com/x-qjtalnkdperrxphm QUIT :Quit: Connection closed for inactivity < 1551897053 904288 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :AHA < 1551897499 696029 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :i can put a bunch of ifdefs < 1551897638 922141 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :and then set a variable like FAKE_VARIABLE = $(shell touch foo) < 1551897680 330527 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :and then have foo as a prequisite for my rules, making the thing fail immediately instead of after 2 hours < 1551898677 758097 :LKoen!~LKoen@2a01cb0407597a00f1712a5809f7b12e.ipv6.abo.wanadoo.fr JOIN :#esoteric < 1551899352 276767 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :https://www.unicode.org/mail-arch/unicode-ml/y2019-m03/0002.html < 1551899375 707202 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :^ guy seems somewhat pompous < 1551899383 107650 :orbitaldecay_wor!32e0e343@gateway/web/freenode/ip.50.224.227.67 JOIN :#esoteric > 1551899396 630453 PRIVMSG #esoteric :14[[07Zahlen14]]4 N10 02https://esolangs.org/w/index.php?oldid=60304 5* 03Orby 5* (+6997) 10Introducing Zahlen. Documenting binary operators. < 1551899945 253922 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :hmm, how would one extract individual bits from a integer, individual integers from a list or set? < 1551900242 550211 :orbitaldecay_wor!32e0e343@gateway/web/freenode/ip.50.224.227.67 PRIVMSG #esoteric :orin: many operations are yet undocumented. casting a logical to a list will create a bit vector < 1551900261 102468 :orbitaldecay_wor!32e0e343@gateway/web/freenode/ip.50.224.227.67 PRIVMSG #esoteric :and there will be an explode operator for sets and lists < 1551900269 156762 :orbitaldecay_wor!32e0e343@gateway/web/freenode/ip.50.224.227.67 PRIVMSG #esoteric :still working on the unary operators < 1551900357 86739 :orbitaldecay_wor!32e0e343@gateway/web/freenode/ip.50.224.227.67 PRIVMSG #esoteric :I have it written out in a text file, but it's going to take some time to prettify it for the wiki < 1551900361 762167 :orbitaldecay_wor!32e0e343@gateway/web/freenode/ip.50.224.227.67 NICK :orby_work < 1551900388 371829 :orby_work!32e0e343@gateway/web/freenode/ip.50.224.227.67 PRIVMSG #esoteric :wiki tables are cumbersome :( < 1551900412 740714 :FreeFull!~freefull@defocus/sausage-lover JOIN :#esoteric > 1551900579 545179 PRIVMSG #esoteric :14[[07Zahlen14]]4 M10 02https://esolangs.org/w/index.php?diff=60305&oldid=60304 5* 03Orby 5* (+47) 10 > 1551901007 1009 PRIVMSG #esoteric :14[[07Zahlen14]]4 10 02https://esolangs.org/w/index.php?diff=60306&oldid=60305 5* 03Orby 5* (+372) 10Expanding introduction. Adding more subsections. < 1551901228 23446 :orby_work!32e0e343@gateway/web/freenode/ip.50.224.227.67 PRIVMSG #esoteric :It's actually quite interesting to think about the various ways one can usefully cast between a logical, integer, list, and set. A logical most obviously casts to a bit list, but when casting to a set you can think of a logical as an inclusion mask for the set (i.e. if bit i is set, then integer i is in S). < 1551901262 690406 :orby_work!32e0e343@gateway/web/freenode/ip.50.224.227.67 PRIVMSG #esoteric :While an integer might just cast to a singleton set. < 1551901446 679880 :MDude!~MDude@c-73-187-225-46.hsd1.pa.comcast.net QUIT :Read error: Connection reset by peer > 1551901824 824172 PRIVMSG #esoteric :14[[07Works in progress14]]4 10 02https://esolangs.org/w/index.php?diff=60307&oldid=60230 5* 03Orby 5* (+57) 10 < 1551902018 428709 :MDude!~MDude@c-73-187-225-46.hsd1.pa.comcast.net JOIN :#esoteric > 1551902079 740039 PRIVMSG #esoteric :14[[07User:Orby14]]4 M10 02https://esolangs.org/w/index.php?diff=60308&oldid=60171 5* 03Orby 5* (+92) 10Adding Zahlen to my language list < 1551902142 73118 :orby_work!32e0e343@gateway/web/freenode/ip.50.224.227.67 QUIT :Quit: Page closed < 1551902275 228695 :LKoen!~LKoen@2a01cb0407597a00f1712a5809f7b12e.ipv6.abo.wanadoo.fr QUIT :Remote host closed the connection < 1551903148 50943 :int-e!~noone@int-e.eu PRIVMSG #esoteric :heh, oerjan was right in 2012 < 1551905291 271018 :ais523!~ais523@unaffiliated/ais523 JOIN :#esoteric < 1551905323 641642 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :could someone tell me if there's currently an Internet backbone dispute going on? many websites work fine for me, but many connections on port 80 get a "connected", followed by no response from the other end until the connection times out < 1551905335 653361 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :and all the websites I normally check to see if there's an ongoing backbone dispute are in the latter group < 1551905363 513734 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :so either something's gone badly wrong at my ISP, or else there's a rift in the Internet again, and I'm trying to determine which < 1551905575 511831 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :@messages? < 1551905575 694590 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :Sorry, no messages today. < 1551905637 524833 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu JOIN :#esoteric < 1551906042 301954 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :hi b_jonas < 1551906065 650472 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :hi < 1551906112 953424 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :currently struggling with a malfunctioning Internet connection, a sizeable minority of websites are failing (if I connect to them on port 80, the connection is accepted but the website never sends anything), I'm wondering if it's a backbone dispute or whether it's something at my ISP < 1551906152 284590 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :the internet is working fine for me < 1551906172 421204 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :oh, hmm, it just fixed itself < 1551906186 384530 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :maybe a DNS crapout < 1551906188 17987 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :? < 1551906210 755615 :int-e!~noone@int-e.eu PRIVMSG #esoteric :it could be some "transparent" HTTP proxy < 1551906240 944484 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :orin: definitely not DNS, that's the first thing I checked < 1551906253 516447 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :but it'll be hard to diagnose now that it's stopped < 1551906268 294651 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I was busy connecting to sites using telnet to port 80 to see what happened < 1551906361 551931 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :https://www.youtube.com/watch?v=W_EfDSnToKY < 1551906534 716587 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :and the failing sites just sent no response, even though the connection wasn't refused < 1551906647 210054 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :orin: have you managed to implement a check for characters that look identical, or even for ones that look too similar? < 1551907021 993353 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :b_jonas: not yet < 1551907108 915814 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :b_jonas: I did manage to do it by simply dumping the characters and running sort over them < 1551907122 6890 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :but an actual C++ olution would be better < 1551907148 922762 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :orin: you can sort in C++ too, the library has a sort function < 1551907195 7873 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`olist 1158 < 1551907195 762316 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :olist 1158: shachaf oerjan Sgeo FireFly boily nortti b_jonas < 1551907217 634858 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :o < 1551907667 338850 :ais523!~ais523@unaffiliated/ais523 QUIT :Ping timeout: 240 seconds < 1551908778 697372 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :intaanet-tobu shingusu! < 1551910802 273264 :ais523!~ais523@unaffiliated/ais523 JOIN :#esoteric < 1551911453 237769 :AnotherTest!~turingcom@d51A4B8E1.access.telenet.be QUIT :Ping timeout: 245 seconds < 1551912153 573584 :FreeFull!~freefull@defocus/sausage-lover PRIVMSG #esoteric :ais523: Maybe packets were just being dropped hard en-route? < 1551912165 824169 :FreeFull!~freefull@defocus/sausage-lover PRIVMSG #esoteric :And TCP had to keep retrying? < 1551912173 864552 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :FreeFull: yes, it's consistent with the packets being hard-dropped < 1551912184 865383 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :although, would TCP report "connection established" before a single inbound packet was received? < 1551912196 756685 :FreeFull!~freefull@defocus/sausage-lover PRIVMSG #esoteric :ais523: Next time it happens, try pinging some IP and seeing how long the responses take, and how many get dropped < 1551912221 80506 :FreeFull!~freefull@defocus/sausage-lover PRIVMSG #esoteric :A connection definitely requires a bit of back and forth to be established < 1551912230 629819 :FreeFull!~freefull@defocus/sausage-lover PRIVMSG #esoteric :But it's possible the first few packets were always getting through for some reason > 1551912989 721355 PRIVMSG #esoteric :14[[07ALLSCII14]]4 10 02https://esolangs.org/w/index.php?diff=60309&oldid=60287 5* 03Cortex 5* (+763) 10 > 1551913050 317587 PRIVMSG #esoteric :14[[07Truth-machine14]]4 10 02https://esolangs.org/w/index.php?diff=60310&oldid=60290 5* 03Cortex 5* (+63) 10 < 1551913585 142301 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :https://twitter.com/sokane1/status/1103421841505505280 < 1551913600 630701 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :Trump called him "Tim Apple" < 1551913621 895021 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :Tim Apple, and his friends Satya Microsoft and Sundar Google < 1551913666 875735 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :orin: hellorin < 1551913681 549938 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :have you considered putting all your c++ files into one compilation unit to make the build faster hth < 1551913692 513648 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :itim translation unit < 1551913810 690996 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :shachaf: we can't even fit the list of c++ files into a single command line < 1551913840 88423 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :I don't thing even a tenth of it would fit in memory at once < 1551913881 120074 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :imo make your builds fast < 1551913885 620231 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :then you'll be less miserable < 1551914007 91876 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Have all your developers sync to last green of a CI build, then you can cache compilation artifacts. < 1551914050 25451 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :continuous integration is the worst name < 1551914064 232942 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :integration already sounds like the math < 1551914077 266925 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :and the word "continuous" seems to settle the matter unambiguously < 1551914084 901452 :j4cbo!sid186930@gateway/web/irccloud.com/x-bknqqhhxzzlvqpqd PRIVMSG #esoteric :d e v o p s < 1551914912 537253 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :fizzie: lol compilation artefacts < 1551914930 606910 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :fizzie: this thing compiles the same files multiple times for some reason < 1551914968 228293 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :orin's build system is just a disaster, is the background behind all this < 1551914985 561509 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :and orin inc. would rather have builds take 12 hours than fix it < 1551915051 451822 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :On the other hand, "orin inc." sounds pretty snappy. Financial, maybe. < 1551915177 719313 :LKoen_!~LKoen@2a01cb0407597a000cc9db60f4eacd0a.ipv6.abo.wanadoo.fr JOIN :#esoteric < 1551915426 764714 :xkapastel!uid17782@gateway/web/irccloud.com/x-lwoceckcuzvlakmb JOIN :#esoteric < 1551916316 9850 :arseniiv!~arseniiv@136.169.200.33 QUIT :Ping timeout: 255 seconds < 1551916384 571007 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover QUIT :Remote host closed the connection