< 1448323690 707086 :oerjan!~oerjan@hagbart.nvg.ntnu.no JOIN :#esoteric < 1448324172 361540 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :It'd be funny if, in mathematics, we preceeded all exact numbers with "≁" for "not approximately" < 1448324231 578585 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hilarious < 1448324259 300246 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :i think that symbol generally goes the other way, though. < 1448324557 895815 :Taneb!~Taneb@runciman.default.hacksoc.uk0.bigv.io PRIVMSG #esoteric :Approximately not equla to < 1448324579 727470 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :Mathematica prefixes high-precision decimal literals with `. < 1448324703 830713 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover PRIVMSG #esoteric :mathematica does a lot of things < 1448324708 685846 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover PRIVMSG #esoteric :occasionally they make sense < 1448324733 162631 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :Taneb must've invented those. < 1448324748 708910 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :CReal has an approximately-not-equal-to operator. < 1448324767 350004 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :> 1 == (1 + 10^(-1000) :: CReal) < 1448324769 225524 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : *Exception: Negative exponent < 1448324776 155591 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :> 1 == (1 + 10**(-1000) :: CReal) < 1448324778 260174 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : True < 1448324796 346454 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :Er wait < 1448324804 772623 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :Jafet: I totally wasn't planning on implementing that into Kastor < 1448324817 668276 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :(approximately-not-equal-to, that is) < 1448324827 855465 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :Also, I'm sorry, "exception: Negative exponent"!? < 1448324909 134016 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :@src (^) < 1448324909 314388 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :x ^ 0 = 1 < 1448324909 314441 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :x ^ n | n > 0 = f x (n-1) x < 1448324909 314462 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : where f _ 0 y = y < 1448324909 314482 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : f x n y = g x n < 1448324909 314500 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : where g x n | even n = g (x*x) (n `quot` 2) < 1448324911 248105 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : | otherwise = f x (n-1) (x*y) < 1448324913 216044 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :_ ^ _ = error "Prelude.^: negative exponent" < 1448325133 712534 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric ::t (^) < 1448325135 152671 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :(Integral b, Num a) => a -> b -> a < 1448325149 266555 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hppavilion[1]: that type means a doesn't need to have division < 1448325159 182002 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :Ah < 1448325183 944550 :Taneb!~Taneb@runciman.default.hacksoc.uk0.bigv.io PRIVMSG #esoteric :Haskell has at least three exponentiation operators < 1448325187 32108 :Taneb!~Taneb@runciman.default.hacksoc.uk0.bigv.io PRIVMSG #esoteric ::t (^^) < 1448325188 423482 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :(Fractional a, Integral b) => a -> b -> a < 1448325193 886033 :Taneb!~Taneb@runciman.default.hacksoc.uk0.bigv.io PRIVMSG #esoteric ::t (**) < 1448325195 438954 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :Floating a => a -> a -> a < 1448325220 288006 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :whoa whoa whoa < 1448325239 458917 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric : I,I newtype Foo a = Foo { unFoo :: a }; instance Monoid a => Num (Foo a) where Foo x * Foo y = Foo (x <> y); fromInteger 1 = Foo mempty; timesN n = unFoo . (^ n) . Foo < 1448325276 768356 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :Num from the revelation < 1448325355 338244 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :ACTION thinks base should have the Monoid equivalent of (^) :( < 1448325444 339269 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :@typo (mconcat.).replicate < 1448325446 323153 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :Monoid c => Int -> c -> c < 1448325460 444212 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :doesn't count, it doesn't do binary bisection < 1448325497 479979 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :oerjan: it does with just a small Num instance hth < 1448325547 245430 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :ooh you were doing it in that direction < 1448325637 838548 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :ititdh < 1448326117 532118 :\oren\!~oren@TOROON0949W-LP140-02-1242510774.dsl.bell.ca PRIVMSG #esoteric :good eeing < 1448326470 873504 :Sprocklem!~sprocklem@unaffiliated/sprocklem QUIT :Quit: [ < 1448326813 386130 :bb010g!uid21050@gateway/web/irccloud.com/x-ltebafihddnsekpw QUIT :Quit: Connection closed for inactivity < 1448327586 50214 :augur_!~augur@c-73-46-94-9.hsd1.fl.comcast.net QUIT :Ping timeout: 240 seconds < 1448327837 328249 :augur!~augur@c-73-46-94-9.hsd1.fl.comcast.net JOIN :#esoteric < 1448327944 598902 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover QUIT :Read error: Connection reset by peer < 1448328040 298683 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :oerjan: I think I'm going to make a character encoding. A /semantic/ character encoding < 1448328130 474518 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :hppavilion[1]: https://tools.ietf.org/html/rfc5242 ? < 1448328138 647384 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :OKAY < 1448328480 734668 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :lifthrasiir: I know about Unicode (and I assume that that document is related) < 1448328490 354508 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :I just feel like making my own for fun. < 1448328514 760721 :andrew__!~andrew@183.54.14.84 JOIN :#esoteric < 1448328520 558986 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :hppavilion[1]: read it first then retry. < 1448328569 588190 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :lifthrasiir: It looks lnog < 1448328573 384692 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :*long < 1448328599 631508 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :hppavilion[1]: probably you should look at the date first :) < 1448328617 222122 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :Oh xD < 1448328626 483601 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :it's an "alternative" to Unicode that is exclusively described as a series of combining glyphs < 1448328646 495030 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :(similar to Unicode's real system, Ideographic Description Sequence, but extended to *every* letter) < 1448328700 36284 :\oren\!~oren@TOROON0949W-LP140-02-1242510774.dsl.bell.ca PRIVMSG #esoteric :that's not semantic though < 1448328721 838861 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :well, yeah. < 1448328733 366747 :\oren\!~oren@TOROON0949W-LP140-02-1242510774.dsl.bell.ca PRIVMSG #esoteric :semantic would encode "cat" and "猫" to the same code < 1448328754 645212 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :\oren\: but not a program "cat". < 1448328795 157408 :\oren\!~oren@TOROON0949W-LP140-02-1242510774.dsl.bell.ca PRIVMSG #esoteric :right. as well as "gato" and "chat" and "catus" < 1448328796 639678 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :what would it encode "pooch" to? < 1448328805 873474 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :lifthrasiir: What I'm making is a sort of hybrid of character encoding and markup language < 1448328829 79186 :\oren\!~oren@TOROON0949W-LP140-02-1242510774.dsl.bell.ca PRIVMSG #esoteric :shachaf: depends what pooch means < 1448328851 20671 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :Basically, if there were a language that generates documents in this encoding, you could type \(COMB:SUBSET,RING) to get the "open subset" operator < 1448328866 491923 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :What about "dog"? < 1448328876 215605 :\oren\!~oren@TOROON0949W-LP140-02-1242510774.dsl.bell.ca PRIVMSG #esoteric :that's not semantic, it's exactly opposite < 1448328885 337952 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :"chien"? "cabot"? < 1448328885 977793 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :\oren\: Oh. < 1448328888 615198 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :the (fictitious) modernized TeX comes to mind. < 1448328905 390256 :\oren\!~oren@TOROON0949W-LP140-02-1242510774.dsl.bell.ca PRIVMSG #esoteric :you're encoding form, not substance < 1448328908 17463 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :\oren\: What's the word I'm looking for then? < 1448328910 825314 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :Ah < 1448328926 492633 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :The idea would be that character appearance is defined with a process of combining diacritics and variables, instead of just text < 1448328946 371105 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :So you could also do things like declare that characters have arcs between each other < 1448328954 716809 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :The crowning jewel of the idea is arrows < 1448328965 219435 :\oren\!~oren@TOROON0949W-LP140-02-1242510774.dsl.bell.ca PRIVMSG #esoteric :"morphic" < 1448328967 616758 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :Arrow characters actually work: any arrow is possible < 1448328968 312651 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :Ah < 1448329048 411613 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :So you aren't just limited to, for example, dashed arrows only come in up/down/left/right < 1448329177 220682 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :Because you just combine the dashed arrow and diagonal arrow characters in in a COMBINE block, which is delimited by control bracktets and starts with "COMB" then the control separator < 1448329511 40877 :bb010g!uid21050@gateway/web/irccloud.com/x-yvrrcobnhfgbkpbq JOIN :#esoteric < 1448331281 30374 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :2/|\2 < 1448332240 693999 :mauris!~mauris@unaffiliated/nooodl JOIN :#esoteric < 1448333054 338602 :hppavilion[1]!~Devourero@93-231-58-66.gci.net QUIT :Ping timeout: 250 seconds < 1448333131 792869 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :hellauris < 1448333747 440 :MDude!~fyrc@pa-67-235-0-195.dhcp.embarqhsd.net JOIN :#esoteric < 1448333971 318166 :augur!~augur@c-73-46-94-9.hsd1.fl.comcast.net QUIT :Ping timeout: 250 seconds < 1448334407 181970 :augur!~augur@c-73-46-94-9.hsd1.fl.comcast.net JOIN :#esoteric < 1448334657 438775 :hppavilion[1]!~Devourero@93-231-58-66.gci.net JOIN :#esoteric < 1448334850 988777 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :I thought of a hyperoperational version of factorial < 1448334875 692811 :mauris!~mauris@unaffiliated/nooodl QUIT :Ping timeout: 264 seconds < 1448334964 24879 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :functional factorial < 1448334974 427478 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :quintopia: Dammit. < 1448334977 213055 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :or is that just recursion < 1448335016 160032 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :Is functional factorial you asking me to implement factorial into the Arithmetic of the Functia (which is probably actually a calculus)? < 1448335032 352019 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :i'm asking nothing < 1448335034 718936 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :do what you like < 1448335169 879368 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :Basically, n⥉ (where ⥉ is the hyperoperational factorial operator) is equal to H[n](n, H[n-1](n-1, H[n-2](n-2, ...H[1](1, 0)...)) < 1448335179 583388 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :It might just be ackermann xD < 1448335182 764695 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :I can't tell < 1448335196 955617 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :nah not really < 1448335295 56750 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :Great < 1448335313 63993 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :So now I want function factorial < 1448335344 985576 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :To do so, I would need to define a + and - operation such that, if I do f-I enough times, then eventually it is equal to I. Is that possible? < 1448335348 492561 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :For all functions? < 1448335363 717401 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :well < 1448335369 614546 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :Or a large subset of functions which I could reasonably constrain myself to? < 1448335424 571400 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :AND preferably consistent with normal addition and subtraction for the real number subset of functions < 1448335438 754395 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :FireFly: I've updated my font sample to support a realtime sample rendering of any given text < 1448335449 390669 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :(a simple JS hack) < 1448335558 640211 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :quintopia: It might not be possible for non-well-ordered sets, such as the set 𝕗 (which is a set I'm using) < 1448335590 45207 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :(which isn't even partially ordered except for a subset of its arguments) < 1448335597 686952 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :(s/arguments/elements) < 1448335619 720123 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :(ms/s)/s\/) < 1448336507 889019 :Thisbe!~Thisbe@99-148-190-17.lightspeed.renonv.sbcglobal.net JOIN :#esoteric < 1448337539 670206 :hppavilion[1]!~Devourero@93-231-58-66.gci.net QUIT :Ping timeout: 264 seconds < 1448338610 143702 :MDude!~fyrc@pa-67-235-0-195.dhcp.embarqhsd.net NICK :MDream < 1448341213 445437 :bb010g!uid21050@gateway/web/irccloud.com/x-yvrrcobnhfgbkpbq QUIT :Quit: Connection closed for inactivity < 1448341427 72883 :Thisbe!~Thisbe@99-148-190-17.lightspeed.renonv.sbcglobal.net QUIT :Quit: Thisbe < 1448341554 936405 :bb010g!uid21050@gateway/web/irccloud.com/x-ktyceehttmwcaxss JOIN :#esoteric < 1448343388 353944 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07UberGenes14]]4 10 02http://esolangs.org/w/index.php?diff=45612&oldid=45579 5* 03Quintopia 5* (-7) 10/* Python 2 */ furthergolfed < 1448343412 300402 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07UberGenes14]]4 10 02http://esolangs.org/w/index.php?diff=45613&oldid=45612 5* 03Quintopia 5* (+0) 10/* Python 2 */ < 1448343801 907013 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :@tell FreeFull I wonder how much finangling was needed to produce this sentence <-- i guess you could do some kind of estimation, pruning and final search... i wonder if using "&" rather than "and" at the end was necessary. < 1448343802 86421 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :Consider it noted. < 1448344493 518383 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d JOIN :#esoteric < 1448345270 710932 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :as a first step, find some hard limit on no. of letters in english numeral / number represented, for numbers large enough < 1448345299 616884 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :1/27 should be enough for this < 1448345430 543968 :\oren\!~oren@TOROON0949W-LP140-02-1242510774.dsl.bell.ca QUIT :Ping timeout: 240 seconds < 1448345450 521241 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :seven hundred and seventy quadrillions < 1448345457 18033 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :looks pretty solid :P < 1448345477 444383 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :(777 gives the longest prefix) < 1448345487 931615 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :who are you talking too < 1448345505 992808 :\oren\!~oren@65.94.102.164 JOIN :#esoteric < 1448345517 67024 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :myself, about FreeFull's self-describing pangram < 1448345522 300909 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :lol < 1448345527 818729 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric : "This pangram contains four As, one B, two Cs, one D, thirty Es, six Fs, five Gs, seven Hs, eleven Is, one J, one K, two Ls, two Ms, eighteen Ns, fifteen Os, two Ps, one Q, five Rs, twenty-seven Ss, eighteen Ts, two Us, seven Vs, eight Ws, two Xs, three Ys, & one Z." < 1448345534 697572 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :oh I see < 1448345537 486413 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :I wasn't there for that < 1448345545 426576 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :thought I was missing out on something < 1448345546 767207 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :heh < 1448345555 437758 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :actually i was just reading it in the logs < 1448345583 657308 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :o < 1448345584 816845 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :i'm trying to convince myself you can never get numbers above hundred < 1448345592 964059 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :with that template < 1448345607 282231 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :oh ye < 1448345636 67182 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :because the names of numbers are just not long enough. < 1448345672 860582 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :ah < 1448345679 270470 :\oren\!~oren@65.94.102.164 PRIVMSG #esoteric :what if you spell out the letter names like gee bee cee < 1448345682 836523 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> length "sevenhundredandseventythousand" < 1448345684 495949 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 30 < 1448345699 718239 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :\oren\: i do not think that matters. < 1448345705 771045 :\oren\!~oren@65.94.102.164 PRIVMSG #esoteric :you might be able to get 100 e's < 1448345713 906459 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :oh right < 1448345716 701849 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :yes. < 1448345718 141144 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07UberGenes14]]4 10 02http://esolangs.org/w/index.php?diff=45614&oldid=45613 5* 03Quintopia 5* (+244) 10Implementation: bugfix: crash on EOF < 1448345726 806413 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :ok. but definitely not more than a thousand. < 1448345737 801268 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> 30/1000 < 1448345739 388558 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 3.0e-2 < 1448345745 778041 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> 1000/30 < 1448345747 668777 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 33.333333333333336 < 1448345761 665793 :\oren\!~oren@65.94.102.164 PRIVMSG #esoteric :> sqrt 1000 < 1448345764 474489 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 31.622776601683793 < 1448345774 101530 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> 26*6 < 1448345775 936897 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 156 < 1448345786 218446 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :it's not really about sqrt < 1448345798 217069 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :there are 26 letters, so at most 26 numerals < 1448345881 113390 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :a numeral smaller than a million never has more than 30 letters. < 1448345925 319486 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :and for those larger, the length still never gets above a small fraction of the number itself < 1448346048 862921 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :oh wait < 1448346058 287772 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :that's not quite right. forgot a part. < 1448346118 408918 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> length "sevenhundredandseventyseventhousandsevenhundredandseventyseven" < 1448346120 64419 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 62 < 1448346187 918160 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> length "sevenhundredandseventyseventhousand" < 1448346189 336693 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 35 < 1448346215 879174 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :but multiplying by 1000 gets you only 35-40 more letters. < 1448346600 475297 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> length . group $ sort "sevenhundredandseventyseventhousand" < 1448346603 757688 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 12 < 1448346606 521813 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :er < 1448346615 306144 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> map length . group $ sort "sevenhundredandseventyseventhousand" < 1448346618 320451 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : [2,4,7,2,6,1,1,4,2,2,3,1] < 1448346637 20730 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :7 es < 1448346811 592648 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> 1000/62 < 1448346813 111902 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 16.129032258064516 < 1448347068 300831 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07UberGenes14]]4 10 02http://esolangs.org/w/index.php?diff=45615&oldid=45614 5* 03Quintopia 5* (+229) 10new features < and > < 1448347129 708894 :hppavilion[1]!~Devourero@93-231-58-66.gci.net JOIN :#esoteric < 1448347267 439909 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :Unicode pangrams imo < 1448347312 114017 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :O KAY < 1448347354 279716 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> 62*26 < 1448347355 792226 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 1612 < 1448347361 385069 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :2+2 < 1448347365 107962 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :> 2+2 < 1448347366 595712 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 4 < 1448347369 311831 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :yay < 1448347384 294355 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :lambdabot knows its arithmetic < 1448347388 246332 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :@botsnack < 1448347388 388729 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric ::) < 1448347392 821431 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :> 420+69 < 1448347394 369327 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 489 < 1448347422 780639 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :> 9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999*999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999 < 1448347424 457254 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 9999999999999999999999999999999999999999999999999999999999999999999999999999... < 1448347428 180928 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :lol < 1448347449 58171 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :get52: lambdabot is too smart for you < 1448347453 285125 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :tbh yea < 1448347522 695388 :Sprocklem!~sprocklem@unaffiliated/sprocklem JOIN :#esoteric < 1448347549 330424 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :> let xs = 1:xs in xs < 1448347549 676684 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :> 420+1337+69 < 1448347550 989511 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : [1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1... < 1448347551 419324 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 1826 < 1448347557 266657 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> length "seventhousandsevenhundredandseventyseven" < 1448347559 492299 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 40 < 1448347565 709391 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> 26*40 < 1448347567 501768 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 1040 < 1448347574 73876 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :> length "wew lad" < 1448347576 87277 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 7 < 1448347593 284707 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hm just length is not enough to prove it doesn't exceed a thousand < 1448347637 885660 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :what are you trying to do < 1448347694 755464 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :> length "my penis" < 1448347696 378114 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 8 < 1448347700 197079 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :thx fam < 1448347700 897538 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :bounding the length of a pangram < 1448347712 360425 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric : "This pangram contains four As, one B, two Cs, one D, thirty Es, six Fs, five Gs, seven Hs, eleven Is, one J, one K, two Ls, two Ms, eighteen Ns, fifteen Os, two Ps, one Q, five Rs, twenty-seven Ss, eighteen Ts, two Us, seven Vs, eight Ws, two Xs, three Ys, & one Z." < 1448347716 977597 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :> length "my penis" in inches < 1448347718 597496 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : :1:19: parse error on input ‘in’ < 1448347720 863952 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :kek < 1448347735 971869 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :get52: lambdabot is not google hth < 1448347755 540476 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :lel\ < 1448347761 903575 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :get52: Try Wolfram|Alpha, it still might not know. Or better, use a ruler < 1448347773 344848 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :heh < 1448347787 87596 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :(Regardless whether you want the length of the string or of your penis) < 1448347799 957380 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :lmao < 1448347801 741171 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :(Although a length of a string of text in inches would depend on the font, isn't it?) < 1448347813 432894 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :heh yeah < 1448347822 460685 :aretecode!~aretecode@104.156.228.111 JOIN :#esoteric < 1448347856 411413 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :what's with all this < 1448347865 208037 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :shachaf: get52 discovered lambdabot < 1448347889 665007 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :and this channel < 1448347890 56446 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :tbh yes < 1448347896 922494 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :no bully pls < 1448347897 69383 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :The lambdabot is run the Haskell code; you can learn Haskell programming and then you can understand its working. < 1448347919 318701 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :> 20\\\\3 < 1448347919 867479 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :haskell isnt functional tbh fam < 1448347920 760664 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : Not in scope: ‘\\\\’ < 1448347925 976734 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :Aww :( < 1448347934 694137 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :I thought that was added. Does it get deleted automaticalyl? < 1448347970 632517 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :get52: Can you elaborate on that? I do not quite understand. < 1448347993 582488 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :well really it's so far away from common lisp that it's basically object oreiented < 1448347999 788020 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :get52: I assume you've seen the wiki? < 1448348002 152858 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hppavilion[1]: it gets deleted when someone runs the @undefine command. < 1448348004 769333 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :yes < 1448348018 201643 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :@uptime < 1448348018 343946 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :uptime: 10d 1h 1m 8s, longest uptime: 1m 10d 23h 44m 29s < 1448348018 636257 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :get52: Common lisp isn't the definition of "Functional" < 1448348028 411159 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :yes it is smh fam < 1448348039 41591 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :or when it quits i assume, but it hasn't done that < 1448348039 526581 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :get your head out of your ass < 1448348042 798676 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :god damn < 1448348043 601722 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :A language can be entirely unlike common lisp but still functional < 1448348046 821276 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :no < 1448348054 422469 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :e.g. unlambda iirc < 1448348059 533434 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :that's not true tho < 1448348062 241716 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :get52: please be polite < 1448348063 785761 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :I think unlambda is functional < 1448348070 577359 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :it's object oriented < 1448348070 770764 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Haskell is functional and pure, Lisp is functional and impure < 1448348077 168967 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :ur mom is impure < 1448348078 385123 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :smh < 1448348087 501264 :ChanServ!ChanServ@services. MODE #esoteric +o :oerjan > 1448348087 617513 NAMES :#esoteric < 1448348094 9026 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :Your mom**w is impure < 1448348094 476810 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :get52: i said, please be polit. < 1448348097 193224 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :*+e < 1448348114 687407 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :mom**w? < 1448348127 67598 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :get52: Surreal numbers. w is a surrogate little omega < 1448348133 799330 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :It basically means infinity < 1448348135 789205 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :oh I thought you were censoring yourself < 1448348139 310442 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :I think it is not object oriented, although even if it is, it doesn't change it. < 1448348145 478726 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :really i'm just fucking around < 1448348146 377995 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :No xD. I don't self-censor < 1448348150 378955 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :mom**1=mom < 1448348151 284968 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :it's not object orient of course not < 1448348155 878954 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :lol < 1448348157 537903 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :mom**2=grandmom < 1448348161 270446 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :heh < 1448348165 550404 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :mom**3=great-grandmom < 1448348167 530928 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :<3 < 1448348173 610695 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :mom**w=great*-grandmom < 1448348189 670568 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :but yeah i was just playing around lol < 1448348190 389177 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :(Familial arithmetic might be interesting) < 1448348218 931157 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric : I came from the wiki btw < 1448348221 782630 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :It is possible to be object oriented and functional, anyways. < 1448348225 951021 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :Of course. < 1448348246 7139 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :you guys seem quite a bit more knowledgeable then me heh < 1448348250 471205 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :> let (\\\\) a b = a + (1/b) < 1448348251 787008 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : : not an expression: ‘let (\\\\) a b = a + (1/b)’ < 1448348260 655458 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :I don't know haskell xD < 1448348267 571924 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :me either tbh < 1448348269 562043 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :get52: We've been here a while xD. < 1448348277 143035 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric ::^) < 1448348296 928247 :oerjan!~oerjan@hagbart.nvg.ntnu.no MODE #esoteric -o :oerjan > 1448348296 935517 NAMES :#esoteric < 1448348298 641469 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :> (\\\\) a b = a + (1/b) < 1448348300 226607 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : :1:12: parse error on input ‘=’ < 1448348307 943698 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :> a\\\\b = a + (1/b) < 1448348308 419279 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :> fizzbuzz < 1448348309 445536 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : :1:8: parse error on input ‘=’ < 1448348309 960715 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : Not in scope: ‘fizzbuzz’ < 1448348310 998115 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hppavilion[1]: @let < 1448348320 783663 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :Thank you! < 1448348328 48828 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :@let a\\\\b = a + (1/b) < 1448348329 806122 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : Defined. < 1448348334 271286 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :It's the backslash operator < 1448348343 686852 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :haskell is so unlike java, it can't be oop < 1448348355 30900 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :i know < 1448348369 106576 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :java is p gross tbh < 1448348372 752081 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :get52: He was doing what you did earlier. It was funny < 1448348376 796309 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :It is awul < 1448348378 934822 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :*awful < 1448348384 561089 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :lol < 1448348392 883020 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :you can do oop in haskell but you'll get looked at weirdly < 1448348401 728276 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :ma mum**e is awful < 1448348402 953780 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :that sounds hilarious < 1448348417 846322 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :(e=1/w) < 1448348425 186919 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :(e is epsilon here) < 1448348461 726606 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :(so mum**e=root(mum, w) ) < 1448348495 489510 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :> 10**w < 1448348497 552149 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 10**w < 1448348500 203389 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :oh < 1448348502 944831 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :ok < 1448348507 227433 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :get52: Haskell doesn't do surreals < 1448348507 771612 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :> 10 + 1 < 1448348509 871749 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 11 < 1448348519 863497 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :i dont even know what i'm doing tbh < 1448348532 285768 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Do you like TeX? It is also so unlike Java.............. < 1448348548 133189 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :ur mom is unlike java :^) < 1448348555 943872 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :because she's great < 1448348558 480293 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :and kind < 1448348566 404964 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :@let a~:^b = (a+b-b**2)*7/a < 1448348567 737243 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : Defined. < 1448348576 540772 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :13~:^7 < 1448348584 857724 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :> 10 := 11 < 1448348585 645391 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :> 13~:^7 < 1448348587 384397 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : Not in scope: data constructor ‘:=’ < 1448348587 526824 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : Perhaps you meant one of these: < 1448348587 526882 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : ‘:+’ (imported from Data.Complex), < 1448348588 105482 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : -15.615384615384615 < 1448348619 306019 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> (0 :+ 1)^2 == -1 < 1448348621 259154 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : True < 1448348646 787847 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :Wut < 1448348663 374703 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :Oh < 1448348672 452076 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric ::+ is a complex number constructor < 1448348707 937015 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> 26*38 < 1448348709 824725 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 988 < 1448348740 456799 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :> 2^(0:+1) < 1448348742 238140 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : Could not deduce (Integral (Complex a0)) arising from a use of ‘^’ < 1448348742 380517 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : from the context (Num a) < 1448348742 380598 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : bound by the inferred type of it :: Num a => a at :1:1 < 1448348748 612263 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :> 10+20 < 1448348750 925916 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 30 < 1448348752 557183 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :> 2**(0:+1) < 1448348754 180029 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 0.7692389013639721 :+ 0.6389612763136348 < 1448348759 478140 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :> chr(55) < 1448348761 214727 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : '7' < 1448348763 693299 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :Uh... < 1448348764 202299 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :oh neat < 1448348774 620739 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :> chr (69) < 1448348776 152635 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :Htf does that work? < 1448348776 459536 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 'E' < 1448348794 301110 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :because lambdabot is running python < 1448348794 875212 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric ::^) < 1448348796 585496 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :> chr(8601) < 1448348798 305329 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : '\8601' < 1448348804 922679 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :> unichr(8601) < 1448348806 737633 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : Not in scope: ‘unichr’ < 1448348811 925507 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :> ord('l') < 1448348813 849651 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 108 < 1448348816 73886 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :holy < 1448348817 133421 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :> uchr(8601) < 1448348818 792696 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : Not in scope: ‘uchr’ < 1448348818 935217 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : Perhaps you meant ‘chr’ (imported from Data.Char) < 1448348828 159823 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :> ord('p') < 1448348830 112461 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 112 < 1448348832 9337 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :> ord('λ') < 1448348834 425896 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 955 < 1448348836 952845 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :woah < 1448348842 793478 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :> chr(955) < 1448348844 598836 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :nah, haskell just somehow chose the same names (Pascal used those too i think) < 1448348845 184217 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : '\955' < 1448348870 767639 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :i was going to say they're from Pascal but someone who knows Algol is just going to one-up me < 1448348872 52183 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :oerjan: Aren't the python names straight outta C? < 1448348884 498783 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :oh are they? < 1448348908 255802 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :I assumed so, though C probably got them from somewhere else. Like Pascal. < 1448348908 795299 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :ACTION doesn't know C a third as well haskell these days. < 1448348924 884467 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :How do I do unichr? < 1448349004 628605 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :get52: I'm making a morphic character encoding < 1448349018 753840 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric ::D nice < 1448349021 94037 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :what is it < 1448349032 83068 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hppavilion[1]: what's unichr? chr already does unicode. < 1448349041 375280 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :what is morphic character encoding? < 1448349043 482469 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :oerjan: Not in haskell, it appears < 1448349046 424672 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :forgive me i'm new haha < 1448349048 298480 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> var $ chr 955 < 1448349049 961030 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : Couldn't match type ‘Char’ with ‘[Char]’ < 1448349050 104448 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : Expected type: String < 1448349050 246838 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : Actual type: Char < 1448349052 378087 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :oops < 1448349058 662533 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> var [chr 955] < 1448349060 820619 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : λ < 1448349064 769125 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :this what you wanted? < 1448349066 876079 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :get52: It's a character enconing that's more than a lookup table < 1448349071 642429 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :Yes. < 1448349076 195646 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :OH yeah < 1448349077 675535 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :nice < 1448349091 968472 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :i'm making an esoteric lang atm < 1448349094 595182 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :that's why i came here lol < 1448349097 318049 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :Basically, you can do \(COM:SUBSET, RING) to get the open subset operator < 1448349101 712478 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :Naturally xD < 1448349110 515467 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> [chr 955] -- this is shown as an escaped string, therefore only ASCII < 1448349112 387070 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : "\955" < 1448349113 390477 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :it has 3 commands < 1448349122 958204 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :(A marriage between a negative number of people is... UNNATURAL! LULZ!) < 1448349123 100300 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :addition, display, input < 1448349135 927284 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :you don't need subtraction because it resets at 251 < 1448349137 904985 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric ::^) < 1448349140 658650 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric ::) < 1448349150 138772 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :Sounds a bit like Deadfish < 1448349155 135004 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :But not the same < 1448349172 790268 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :lol good < 1448349181 907858 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :was afraid I was doing exactly the same thing < 1448349183 154084 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :for a second < 1448349184 589490 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :haha < 1448349187 162395 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hppavilion[1]: http://www.mezzacotta.net/dinosaur/?comic=252 < 1448349206 287307 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :(from DMM's dinosaur comics fanfic) < 1448349290 656051 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :also the commands are pretty much brainf*cks < 1448349303 921729 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :get52: you'd need at least some kind of jump to be close to interesting < 1448349305 579494 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :also not sure if I'm allowed to say f*ck here that's the only reason I censored myself < 1448349314 803198 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :tbh I understand myname < 1448349328 437563 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :sry for bothering u fam < 1448349328 703045 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :myname: Or a clone commands thing. That works too < 1448349334 199870 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :and ur patrician ways < 1448349340 408809 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :;^( < 1448349347 488434 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :251 is an usual place to reset < 1448349349 53536 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :im not worthy of ur presence :^) < 1448349352 901099 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`factor 251 < 1448349353 284487 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :m'lad < 1448349354 755276 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :251: 251 < 1448349361 303931 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :prime too < 1448349365 736107 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :Weird < 1448349383 790060 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :i guess he meant 250 -> 0 < 1448349394 806611 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :in which case 251 being a prime is actually good < 1448349416 490867 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :get52: we have nothing against saying brainfuck. in fact i've been known to correct the spelling on the wiki. < 1448349416 860671 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :whatever the name of this structure is in english < 1448349428 650011 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :oh < 1448349430 327643 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :okay < 1448349438 146764 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :thx < 1448349455 257179 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :IMHO, "Brainf*ck" is a curse word, but "Brainfuck" is not < 1448349464 242301 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :Brainfiretruck < 1448349467 613386 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :what's the english name for (M,+,*) with (M,+) and (M\{0},*) being groups? < 1448349489 772436 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :I have NO idea. Is it a ring? < 1448349513 48624 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :no, rings don't need two groups < 1448349519 75760 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :Oh < 1448349522 690528 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :Magma? < 1448349527 508825 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :in german it's körper < 1448349534 718005 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :which would translate into bod < 1448349536 802953 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :body < 1448349539 398471 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :myname: a field hth < 1448349544 374515 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :ah! < 1448349547 992990 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :Ah! < 1448349604 376077 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :tdh < 1448349681 461753 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :thank da Hubble [telescope]? < 1448349692 13885 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :`tdh < 1448349692 718274 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: tdh: not found < 1448349698 722527 :myname!~myname@84.200.43.57 PRIVMSG #esoteric ::( < 1448349701 770259 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :`? tdh < 1448349704 333936 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :tdh is the past tense of a successful hth. hth. < 1448349717 377274 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :there you go < 1448349719 291036 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :WHAT IS HTH THOUGH < 1448349722 655992 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :`? hth < 1448349723 751133 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :hth is help received from a hairy toe. It is not at all hambiguitous. < 1448349730 458505 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :THAT WAS NOT HELPFUL < 1448349735 842002 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :"hope that helps" < 1448349736 354134 :myname!~myname@84.200.43.57 PRIVMSG #esoteric ::D < 1448349740 901601 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :THERE WE GO! < 1448349748 322059 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :but then what the hell is tdh < 1448349760 68677 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :one of my first encounters here was me cursing about monads < 1448349766 827139 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :with the following respond < 1448349768 330699 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :THANK THE HUBBLE! < 1448349770 746743 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :`? monads < 1448349771 807787 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Monads are just free monad monad monad algebras. < 1448349775 43598 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :As far as I am concerned it is irrelevant in these cases whether or not "brainfuck" is a curse word, although it seems that to Rosetta Code it is considered as a curse word. < 1448349779 627684 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :HOPE THIS HELPS < 1448349780 676802 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :according to UD, "tall dark and handsome" < 1448349791 937765 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :wtf < 1448349806 109507 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PRIVMSG #esoteric :bye sry if i wasnt interesting enough tbh im new < 1448349808 771966 :get52!~jman@2601:18d:8101:8ada:665a:4ff:fead:bb6d PART #esoteric :"Leaving" < 1448349817 259869 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :`? monad < 1448349818 364180 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Monads are just monoids in the category of endofunctors. < 1448349823 901375 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :that one < 1448349835 689108 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :UD has a (probably correct) definition of "too damn hilarious" at the *last* position < 1448349839 829246 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :He was a very honest ("tbh") person. < 1448349842 236597 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :wtf is wrong with `? monads < 1448349849 530272 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hm we're below 10% bots < 1448349857 866979 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :in fact, below 9% < 1448349869 236607 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :Whoa < 1448349873 510318 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :lifthrasiir: that's not correct < 1448349882 516921 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :itks that did help < 1448349888 378142 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :myname: oh. < 1448349892 68818 :hppavilion[1]!~Devourero@93-231-58-66.gci.net PRIVMSG #esoteric :tdnh < 1448349912 842640 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :myname: but to me that was much more plausible than other entries like teenage dickheads < 1448349924 514966 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :lol < 1448349993 301927 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Special:Log/newusers14]]4 create10 02 5* 03Get52 5* 10New user account < 1448350002 619575 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :myname: i suspect shachaf for `? monads < 1448350017 535736 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :? < 1448350025 30083 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`? monads < 1448350026 77418 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Monads are just free monad monad monad algebras. < 1448350027 186038 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :`? ? < 1448350028 646118 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​? is wisdom < 1448350029 838985 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :shachaf: did you make this ^ < 1448350037 559011 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`culprits wisdom/monad < 1448350039 558146 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :shachaf elliott oerjan elliott Bike FreeFull ais523 ais523 oerjan Gregor shachaf oerjan FreeFull shachaf shachaf nitia < 1448350042 409916 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :(I read that as "WHAT is wisdom") < 1448350047 530429 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :shachaf: no, not that one < 1448350049 302783 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :oerjan: I doubt it? < 1448350053 429241 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`culprits wisdom/monads < 1448350055 739182 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :shachaf elliott oerjan elliott oerjan oerjan shachaf Phantom_Hoover Phantom_Hoover ais523 ais523 oerjan oerjan oerjan oerjan FreeFull shachaf shachaf nitia < 1448350058 607906 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Oh, that one. < 1448350062 185091 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :That's possible. < 1448350077 89151 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Now I made up the other Magic: the Puzzling (puzzle.4) and you should test it please, because I may have done something wrong < 1448350090 945859 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :`? ` < 1448350092 5111 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​` is the prefix to greatness. < 1448350099 564858 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :zzo38: You should include a URL. < 1448350127 556986 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :O, yes, I should include the absolute URL. It is: http://zzo38computer.org/textfile/miscellaneous/magic_card/puzzle.4 < 1448350159 767445 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :(I thought you already knew what it was relative to, but perhaps not, I am a bit crazy) < 1448350168 716135 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :zzo38: also, what kind of magic is possible with your dnd latex commands? < 1448350186 370425 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :zzo38: I didn't know but I could find out, but that would be a lot more work than copying a complete URL. < 1448350207 708465 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :It is used only with Plain TeX, I don't know if it can be used with LaTeX at all (and isn't meant to be) < 1448350221 607815 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :zzo38: Is that a puzzle? It doesn't ask any questions. < 1448350224 657838 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :interesting < 1448350233 296874 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :and what does it do? < 1448350239 546807 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :shachaf: "Win the game" is implied if not otherwise specified. < 1448350309 569548 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :myname: A lot, including sorting the list of skills, keep track of multiple character sheets, calculate ECL, ask the user what printing level, and more < 1448350341 253563 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Look at the file to see what it is doing. < 1448350496 424277 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :ah < 1448350501 152072 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :shachaf: A few other things are also implied if not otherwise specified, such as irrelevant cards in other zones, irrelevant cards in graveyard can't be cast from graveyard, you have priority at the given situation, no unlisted effects are waiting to happen, and various other stuff. < 1448350524 825226 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :imho the world needs more interactive character sheets < 1448350604 394525 :heroux!sandroco@gateway/shell/insomnia247/x-qjpvsvjcwnssemne QUIT :Ping timeout: 250 seconds < 1448350619 454172 :heroux!sandroco@gateway/shell/insomnia247/x-pvwqunfzkelqgdas JOIN :#esoteric < 1448350671 478855 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :myname: It can keep track of inventory and spell lists and money, and can do footnotes and chapter headings and session headings, and so on. You can even see level20.tex to see the use of these macros. < 1448350680 92175 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> 9*26 < 1448350681 798571 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 234 < 1448350707 619522 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :This program isn't an interactive character sheet though; it is just partially automatic. < 1448350715 672817 :hppavilion[1]!~Devourero@93-231-58-66.gci.net QUIT :Ping timeout: 264 seconds < 1448350754 79955 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :shachaf: Do you understand this puzzle at all? < 1448350760 89134 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Did I do it wrong? < 1448350780 450302 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :(And do you understand my first three puzzles?) < 1448350785 66706 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :I looked at it and I didn't know a lot of the cards. < 1448350791 280677 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :ok not more than 400 < 1448350793 740615 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :So I decided it would probably be too much effort to understand. < 1448350868 1225 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :shachaf: Cards in opponent's library can damage you, so don't worry to look up all of them; after all they are in a random order so even if you know Lightning Bolt that's enough. < 1448350891 395393 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :oh wait brain fart < 1448350894 283283 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Other cards can be look up and then make the printout I suppose < 1448350896 624633 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> 10*26 < 1448350898 652302 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 260 < 1448350905 49355 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :still not < 1448350938 305935 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :It is not difficult to look up; make the program to do it automatically if you want to (possibly at some time I might do such thing too) < 1448351159 710030 :heroux!sandroco@gateway/shell/insomnia247/x-pvwqunfzkelqgdas QUIT :Ping timeout: 246 seconds < 1448351170 416725 :heroux!sandroco@gateway/shell/insomnia247/x-ksrdwauexcvroxtb JOIN :#esoteric < 1448351587 106986 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07UberGenes14]]4 10 02http://esolangs.org/w/index.php?diff=45616&oldid=45615 5* 03Quintopia 5* (+130) 10/* Examples */ < 1448351722 371691 :^v!~^v@c-68-41-215-101.hsd1.mi.comcast.net QUIT :Ping timeout: 250 seconds < 1448352125 662540 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07UberGenes14]]4 10 02http://esolangs.org/w/index.php?diff=45617&oldid=45616 5* 03Quintopia 5* (+0) 10/* Python 2 */ wiki don't like '' < 1448352227 608218 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Do you know what kind of tricks can be done with a madness ability? < 1448352879 911064 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> 84+26*10 < 1448352881 421776 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 344 < 1448352892 391525 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hmph < 1448352910 521128 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :oh < 1448352917 785189 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> 84+18*11 < 1448352919 383490 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 282 < 1448353037 580526 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :so not above 300 < 1448354596 723877 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Aubergine/aubergine.py14]]4 10 02http://esolangs.org/w/index.php?diff=45618&oldid=45452 5* 03Quintopia 5* (+0) 10bugfix < 1448355066 686494 :Wallacoloo!~colin@2601:602:8a00:78e3:d044:22bc:bf4b:44f4 JOIN :#esoteric < 1448355888 171573 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Aubergine14]]4 10 02http://esolangs.org/w/index.php?diff=45619&oldid=45591 5* 03Quintopia 5* (+229) 10/* Examples */ < 1448356177 377880 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :ACTION concludes no letter is above 100 < 1448356230 230604 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :which also eliminates the question of whether to use "and" after the hundreds < 1448356388 984293 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :and would fix A and D except for whether to use "and" or "&" before the one Z < 1448356472 26567 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover JOIN :#esoteric < 1448356678 680266 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :mornign < 1448356697 969880 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :mningor < 1448357644 680356 :olsner!~salparot@c83-252-193-184.bredband.comhem.se PRIVMSG #esoteric :oerjan: you're out of order < 1448357699 355330 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :dnar < 1448357755 244886 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :fungot, good morning < 1448357755 460697 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :b_jonas: ( afaiu) course. don't know if that extends to my isdn connection) < 1448357767 588668 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :ISDN CONNECTION? < 1448357774 248700 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :that explains why fungot sometimes reacts so slowly < 1448357774 534513 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :b_jonas: on fnord? wouldn't a box, refrigerator, or at mit? we ( waterloo) beat you at the conference later....' < 1448357800 641559 :olsner!~salparot@c83-252-193-184.bredband.comhem.se PRIVMSG #esoteric :^style < 1448357800 784109 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :Available: agora alice c64 ct darwin discworld enron europarl ff7 fisher fungot homestuck ic irc* iwcs jargon lovecraft nethack oots pa qwantz sms speeches ss wp youtube < 1448361873 863656 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :\oren\: add these https://github.com/highvoltage/shello/blob/master/shello.sh#L57 < 1448362557 337583 :mauris!~mauris@unaffiliated/nooodl JOIN :#esoteric < 1448364588 847152 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :@tell ais523 giving you 9**3 possibilities <-- 3**9 hth < 1448364588 989505 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :Consider it noted. < 1448364702 358334 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :@check \x y -> (x > 0 && y > x) ==> (x ** y > y ** x) < 1448364704 344535 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : *** Failed! Falsifiable (after 5 tests and 10 shrinks): < 1448364704 486764 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 143.8179375507593 7074.224045838542 < 1448364708 817061 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hmph < 1448364743 337305 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :@check \x y -> (x > 0 && y > x && not (isInfinity (x ** y)) ==> (x ** y > y ** x) < 1448364743 479834 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : .hs: 1: 75:Parse error: EOF < 1448364748 703107 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :@check \x y -> (x > 0 && y > x && not (isInfinity (x ** y))) ==> (x ** y > y ** x) < 1448364750 135797 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : Not in scope: ‘isInfinity’ < 1448364750 278279 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : Perhaps you meant one of these: ‘isInfinite’ (imported from Prelude), ‘infin... < 1448364757 529729 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :@check \x y -> (x > 0 && y > x && not (isInfinite (x ** y))) ==> (x ** y > y ** x) < 1448364759 362109 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : *** Failed! Falsifiable (after 1 test and 2149 shrinks): < 1448364759 504638 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 0.4089889678803982 14.274412076418368 < 1448364763 853327 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :bah < 1448364786 467183 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :@check \x y -> (x > 1 && y > x && not (isInfinite (x ** y))) ==> (x ** y > y ** x) < 1448364788 481754 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : *** Failed! Falsifiable (after 18 tests and 23 shrinks): < 1448364788 624254 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 1.1743091876384109 11.511501398312754 < 1448364812 256289 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :@check \x y -> (x > 2 && y > x && not (isInfinite (x ** y))) ==> (x ** y > y ** x) < 1448364813 699888 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : *** Gave up! Passed only 80 tests. < 1448364822 363000 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :ALMOST TRUE < 1448364875 317131 :boily!~alexandre@96.127.201.149 JOIN :#esoteric < 1448364877 231768 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :SNOOOOOOOOOOOOOOOOOOW! < 1448364889 709772 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :@metar ENVA < 1448364889 969333 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :ENVA 241120Z 12008KT CAVOK 02/00 Q0994 NOSIG RMK WIND 670FT 15008KT < 1448364894 783583 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :SNOOOW MELTING < 1448364922 597302 :Wallacoloo!~colin@2601:602:8a00:78e3:d044:22bc:bf4b:44f4 PART :#esoteric < 1448365041 789436 :Taneb!~Taneb@runciman.default.hacksoc.uk0.bigv.io PRIVMSG #esoteric :It's been years since I've seen snow < 1448365112 111951 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :@metar CYUL < 1448365112 520314 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :CYUL 241136Z 08006KT 4SM -SN BKN016 OVC035 M05/M07 A3026 RMK SC6SC2 SLP250 < 1448365123 870164 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :the -SNing has begun. < 1448365133 287215 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :Tanelle. Where are you now? < 1448365184 925614 :Taneb!~Taneb@runciman.default.hacksoc.uk0.bigv.io PRIVMSG #esoteric :Old York < 1448365209 750387 :Taneb!~Taneb@runciman.default.hacksoc.uk0.bigv.io PRIVMSG #esoteric :Apparently it snowed the other night, but I was asleep and it didn't lie < 1448365321 175891 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :hmm < 1448365325 811992 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :I need to < 1448365363 476182 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :do lots of stuff < 1448365819 668789 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :\oren\: ah, I see you added a lot of new kanji to your bitmap font while I wasn't looking < 1448365966 503389 :Patashu!Patashu@27.253.115.204 QUIT :Ping timeout: 272 seconds < 1448366358 636398 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :\oren\: have you done a counting for who many of the grade 1 and 2 Kyōiku kanji you have in the font? < 1448367247 350764 :oerjan!~oerjan@hagbart.nvg.ntnu.no QUIT :Quit: Later < 1448367347 205523 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :the \oren\font has ꙮ ^^ < 1448367406 38431 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :`unidecode ꙮ < 1448367406 993564 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​[U+A66E CYRILLIC LETTER MULTIOCULAR O] < 1448367619 816277 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :boily: yes, it does < 1448367633 623999 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :that was one of the earlier characters he's added, relatively speaking < 1448367740 20221 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :\oren\: ah, I compared, and it seems you only have two characters missing from grade 1 and 2 together: 教 数 < 1448367828 404819 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :\oren\: in that case, I propose that you add those two, to complete the collection < 1448368200 125558 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :there's a sharp cut, because you have less than half of the grade 3 kanji < 1448368257 803051 :boily!~alexandre@96.127.201.149 QUIT :Quit: STICKER CHICKEN < 1448368401 148528 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :(you can find interesting stuff in HTML comments on public webpages) < 1448368695 376039 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :hehe, a CSS file that starts with '