< 1440720001 969258 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric ::t Nu "hi shachaf" (Just . (++"!")) < 1440720009 55392 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :what about that one? < 1440720009 744192 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :Nu Maybe < 1440720060 112453 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Also equal. < 1440720079 569326 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Imagine I give you x :: Nu Maybe < 1440720082 368473 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :What can you do with it? < 1440720095 506532 :coppro!raedford@taurine.csclub.uwaterloo.ca PRIVMSG #esoteric :not this again :P < 1440720112 531072 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :should we take this to ##somewhereelse < 1440720116 86275 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Looj coppro < 1440720125 677051 :coppro!raedford@taurine.csclub.uwaterloo.ca PRIVMSG #esoteric :no, it's incredibly ontopic < 1440720128 309924 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :This is great. < 1440720179 545604 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :okay! your x is (Nu a f), where f :: a -> Maybe a < 1440720246 623815 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :mauris :: Nu Maybe -> String is the same as mauris :: forall x. x -> (x -> Maybe x) -> String < 1440720256 844897 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :This is how you turn exists into forall < 1440720266 754185 :coppro!raedford@taurine.csclub.uwaterloo.ca PRIVMSG #esoteric :maybe if I hear shachaf explain this enough times I'll understand it < 1440720283 432015 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :I'm not explaining it, I'm letting mauris figure it out. < 1440720288 501972 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :When have you heard me explain this? < 1440720307 718542 :coppro!raedford@taurine.csclub.uwaterloo.ca PRIVMSG #esoteric :you did it in #haskell the other day, didn't you? < 1440720345 668391 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :so, re: "What can you do with it?": first of all, trivially, i could take out the a < 1440720371 957822 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :coppro: Only for a few minutes. < 1440720384 614470 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Existential types are so good. < 1440720387 638178 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Duality is the best. < 1440720405 279987 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :or i could run it through f once, and get a `Maybe a`... < 1440720439 186348 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :and then i can fmap f on that to get a `Maybe (Maybe a)`, etc. < 1440720498 685938 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :You can do all of those things. < 1440720507 156146 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :But a :: x isn't very useful to you. < 1440720514 758691 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :You can't do anything with it. < 1440720572 32912 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :yeah, that's the thing < 1440720678 697595 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :i mean, i can write a Nu Maybe -> String that just returns a constant string, but that sounds very boring. so the question is: what meaningful info can i extract from my `a :: x` and `f :: x -> Maybe x` without assuming anything about the type `x`, right? < 1440720774 988641 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :i could >>= my `Just a` through `f` repeatedly, and count how many iterations it takes to get a Nothing < 1440720790 526620 :coppro!raedford@taurine.csclub.uwaterloo.ca PRIVMSG #esoteric :eh wot? < 1440720807 112215 :coppro!raedford@taurine.csclub.uwaterloo.ca PRIVMSG #esoteric :oh, nvm < 1440720928 535453 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :mauris: sgtm < 1440721008 567723 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :(this feels a little like an unfold to me, the way Mu feels like a fold, which i was expecting! but it's a bit frustrating that i can't pin down the exact correspondence) < 1440721010 727994 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric ::t unfoldr < 1440721012 224412 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :(b -> Maybe (a, b)) -> b -> [a] < 1440721024 798013 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Mu Maybe and Nu Maybe are both types of natural numbers. < 1440721040 761571 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :What's the difference between them? < 1440721050 315472 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :i suppose if a = (), then [a] is Nat! < 1440721069 807273 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :You were just talking about ana and cata, right? < 1440721078 710460 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Which in polite company we call unfold and fold. < 1440721087 822609 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :fold :: Fix f -> (f r -> r) -> r < 1440721098 203416 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :unfoldr :: x -> (x -> f x) -> Fix f < 1440721099 307469 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :hth < 1440721100 106427 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :right < 1440721205 110778 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :" What's the difference between them?" <-- well, arrows got flipped, so i suppose they are (waves hands) dual < 1440721223 75779 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :In a sense. < 1440721232 676278 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :What's the difference between these types? Do they have the same inhabitants? < 1440721326 133427 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :i would guess: up to isomorphism, they do? < 1440721375 820838 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :what with Mu Maybe and Nu Maybe both being the naturals, and those signatures of fold and unfold looking like they compose into each other nicely to at least get from Nu to Mu < 1440721397 51478 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :There is a difference. < 1440721432 40464 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :You could write zeroMu, succMu, muToInt, and zeroNu, succNu, nuToInt < 1440721445 809278 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :i guess omegaNu exists, but omegaMu doesn't < 1440721449 786886 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :(You're allowed to use recursion in nuToInt.) < 1440721455 66398 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Right. < 1440721480 659150 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Nu Maybe is the type of conatural numbers (i.e. natural numbers with infinity), defined without any recursion. < 1440721505 191011 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :omegaNu being where `f :: x -> Maybe x` is simply `Just`, and you *never* get a `Nothing` out of it < 1440721517 972556 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Right. < 1440721541 436370 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :You can think of Nu Maybe as a simple state machine thing. < 1440721558 748421 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :It has an internal state, and you can press a button, which might give you a new state. < 1440721565 325546 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :either it "halts" after some amount of steps, or it goes on forever? < 1440721577 19474 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Right. < 1440721588 148820 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :It represents the natural number "how many times does it run before it halts". < 1440721603 58770 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :The state is opaque, which is why all those values you named are equal. < 1440721619 5308 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :i see! < 1440721703 787858 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :maybe this doesn't make a lot of sense at all, but my intuition is saying something like... < 1440721797 179963 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :Mu is a bit like fold, and you fold from some finite number "down" to zero in a number of steps. but Nu is the opposite and can unfold "up" into infinity < 1440721831 948528 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Now write muToNu and nuToMu < 1440721846 674285 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :You can also write muToFix, fixToNu, nuToFix, fixToMu. < 1440721848 709243 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :this is really hard for me to put into words (the darn things are so concrete :<) < 1440721938 516417 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :do i need the fact that `f` is a Functor, for these? < 1440721964 663409 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :like, do i write `mu2nu :: Functor f => Mu f -> Nu f` or just `mu2nu :: Mu f -> Nu f` < 1440721972 152939 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :you tell me hth < 1440722060 94351 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Oh, you can also write inMu :: f (Mu f) -> Mu f, outMu :: Mu f -> f (Mu f), inNu :: f (Nu f) -> Nu f, outNu :: Nu f -> f (Nu f) < 1440722073 800347 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :For all of these things, some directions are easy, and some are hard. < 1440722099 338928 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :I can give you a hint for which you should expect to be easy. < 1440722105 321017 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :alrighty. i'm going to fidget with this locally, unless you really want to see me mess around with ghci and follow my train of thought, in which case i could try lambdabot? < 1440722119 540027 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :imo do whatever you want hth < 1440722146 462373 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :mostly flooding #esoteric with ghc errors sounds scary ;.; < 1440722161 699243 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Use Gobby. < 1440722166 573517 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :That way everyone wins. < 1440722210 778013 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :(looks that up) < 1440722226 108330 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Or maybe try https://coderpad.io/Y4W93H37 < 1440722578 526898 :mihow!~mihow@50-206-98-70-static.hfc.comcastbusiness.net QUIT :Quit: mihow < 1440723212 726841 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :I thought of some a bit unusual idea related to Dungeons&Dragons game, such as, a "Break Numerical Barrier" spell that can change one instance of an effect that normally has a minimum of one or zero to instead have no minimum. < 1440723324 988009 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Other ideas are such thing as magic items that have one effect in the daylight and another effect in the darkness, such as a magic weapon with +2 hit and -1 damage in daylight but +2 damage and -1 hit in darkness. < 1440723747 389226 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric ::t maybe < 1440723748 662884 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :b -> (a -> b) -> Maybe a -> b < 1440723850 968166 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :mauris: hauris < 1440723870 146405 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :hichaf < 1440723996 468042 :boily!~alexandre@96.127.201.149 JOIN :#esoteric < 1440724084 873843 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :boiɥly < 1440724284 651446 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Heverywellone. < 1440724303 831977 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :I have more wisdom from the neural net: < 1440724323 390966 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :19:41:19: (I have no large weird alternate constructors of the comment) < 1440724394 381028 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :and let us all be thankful for that < 1440724395 615400 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :hellœʁjan! < 1440724401 204371 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :dippellorswett! < 1440724405 499685 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :@massages-loud < 1440724405 554193 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :fizzie said 13h 51m 6s ago: päältä 'from on top' (ablative case of päällä 'on top of something', or 'on' as in "the radio is on") < 1440724405 608431 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :fizzie said 13h 51m 2s ago: säänne 'your (pl.) weather' (second-person plural possessive of sää 'weather') < 1440724405 608504 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :fizzie said 13h 50m 55s ago: silleen -- a colloquialism that's rather hard to translate without resorting to just listing a bunch of example uses. < 1440724405 608543 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :fizzie said 13h 50m 47s ago: varpaastasi 'from your toe' (elative case of the second-person singular possessive of varvas 'toe') < 1440724440 10225 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Oh sweet, I get a new groileeting. < 1440724447 28088 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :groil??? < 1440724477 311431 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :aaaaurgh... Finnish has too many cases. < 1440724498 9695 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :from your toe. come on, that should never be a single word! at least in polite company! < 1440724503 190548 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :in case of finnish break glass < 1440724504 541999 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :I'm going to upload a bunch of pictures of some of the maps from my atlas, this time is high-res < 1440724509 695884 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Or is your name pronounced like /bwaly/ or something instead of /boili/. < 1440724526 304848 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :helloren! < 1440724546 526407 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :boily: clearly it must be stallman's favorite finnish word hth < 1440724546 737964 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :ACTION sets the neural net to Insane Mode. < 1440724547 662277 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :dipperswett: more like /bwali/. you can realize the /a/ as [æ] if you prefer. < 1440724547 980830 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :hi < 1440724575 914351 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :oerjan: indeed. stallman's toes are very hambiguitous hth < 1440724611 464634 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :The neural net's behavior in Insane Mode is pretty interesting. < 1440724619 38242 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :damn, not high res enough < 1440724654 692845 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :ham and cheesy < 1440724667 654641 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :I'm gonna clbin it. < 1440724701 423774 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :`? clbin < 1440724703 663045 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :clbin? ¯\(°​_o)/¯ < 1440724735 883848 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`learn clbin is a "command line pastebin" web application: https://clbin.com < 1440724737 709805 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Learned 'clbin': clbin is a "command line pastebin" web application: https://clbin.com < 1440724748 915557 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :The only useful learndb entry ever created. < 1440724774 704335 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :well there have been previous attempts that were squashed < 1440724783 765758 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :os < 1440724784 577388 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :some may even have survived < 1440724792 178242 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`? learndb < 1440724792 995440 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :learndb? ¯\(°​_o)/¯ < 1440724804 426751 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`? wisdom < 1440724805 257236 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :wisdom is always factually accurate, except for this entry, and uh that other one? it started with like, an ø? < 1440724809 716505 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`? ¯\(°​_o)/¯ < 1440724810 566177 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​¯\(°​_o)/¯ is a misspelling of ¯\(°_o)/¯ < 1440724810 883461 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69     | < 1440724810 990199 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69   o/`¯º < 1440724826 453066 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Does that somehow invoke myndzi on purpose? < 1440724858 83274 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`unidecode ¯\(°​_o)/¯ ¯\(°_o)/¯ < 1440724858 439679 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69                    | < 1440724858 545126 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69                  º¯`\o < 1440724858 934553 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​[U+00AF MACRON] [U+005C REVERSE SOLIDUS] [U+0028 LEFT PARENTHESIS] [U+00B0 DEGREE SIGN] [U+200B ZERO WIDTH SPACE] [U+005F LOW LINE] [U+006F LATIN SMALL LETTER O] [U+0029 RIGHT PARENTHESIS] [U+002F SOLIDUS] [U+00AF MACRON] [U+0020 SPACE] [U+00AF MACRON] [U+005C REVERSE SOLIDUS] [U+0028 LEFT PARENTHESIS] [U+00B0 DEGREE SIGN] [U+005F LOW LINE] [U+0 < 1440724861 103036 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :myndzi is part bot, part cyborg. they are a very strange entity. < 1440724876 900705 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :fungot: have you tried communicating with myndzi? < 1440724877 112802 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :boily: was there a train somewhere in the file. < 1440724887 462498 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Aha. < 1440724895 600219 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :I'm gonna unidecode those one at a time. < 1440724901 311624 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`? ¯\(°​_o)/¯ < 1440724902 341220 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​¯\(°​_o)/¯ is a misspelling of ¯\(°_o)/¯ < 1440724902 682701 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69     | < 1440724902 788689 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69   o/`¯º < 1440724903 742505 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`unidecode ¯\(°​_o)/¯ < 1440724904 468701 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​[U+00AF MACRON] [U+005C REVERSE SOLIDUS] [U+0028 LEFT PARENTHESIS] [U+00B0 DEGREE SIGN] [U+200B ZERO WIDTH SPACE] [U+005F LOW LINE] [U+006F LATIN SMALL LETTER O] [U+0029 RIGHT PARENTHESIS] [U+002F SOLIDUS] [U+00AF MACRON] < 1440724913 270795 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`? ¯\(°​_o)/¯ < 1440724914 88792 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​¯\(°​_o)/¯ is a misspelling of ¯\(°_o)/¯ < 1440724914 580485 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69     | < 1440724914 634897 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69   º¯`\o < 1440724920 836746 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`unidecode ¯\(°​_o)/¯ < 1440724921 494421 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​[U+00AF MACRON] [U+005C REVERSE SOLIDUS] [U+0028 LEFT PARENTHESIS] [U+00B0 DEGREE SIGN] [U+200B ZERO WIDTH SPACE] [U+005F LOW LINE] [U+006F LATIN SMALL LETTER O] [U+0029 RIGHT PARENTHESIS] [U+002F SOLIDUS] [U+00AF MACRON] < 1440724929 229321 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`unidecode ¯\(°_o)/¯ < 1440724929 547018 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69                    | < 1440724929 652410 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69                  º¯`\o < 1440724929 758927 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​[U+00AF MACRON] [U+005C REVERSE SOLIDUS] [U+0028 LEFT PARENTHESIS] [U+00B0 DEGREE SIGN] [U+005F LOW LINE] [U+006F LATIN SMALL LETTER O] [U+0029 RIGHT PARENTHESIS] [U+002F SOLIDUS] [U+00AF MACRON] < 1440724956 155203 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`? ¯\(°_o)/¯ < 1440724956 473706 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69            | < 1440724956 579723 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69          o/`¯º < 1440724957 109744 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​¯\(°_o)/¯ `? ¯\(°_o)/¯ < 1440724957 331083 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69     |            | < 1440724957 668940 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69   º¯`\o        o/`¯º < 1440724976 897048 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :¯\(°​_o)/¯ < 1440724982 863031 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric : ¯\(°​_o)/¯ < 1440724993 553014 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :¯\(°_o)/¯ < 1440724993 765122 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69    | < 1440724993 871106 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69  º¯`\o < 1440724995 141163 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :this chännel went full bönkers mode... < 1440725000 979884 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :oh the fungotity... < 1440725001 337071 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :boily: you rule!" joke that was posted on reddit has him going into detail on that < 1440725001 445490 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`? ¯\(°_o)/¯ < 1440725001 907693 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69       | < 1440725002 13637 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69     º¯`\o < 1440725002 331783 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​¯\(°_o)/¯ `? ¯\(°_o)/¯ < 1440725002 649534 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69     |            | < 1440725002 755470 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69   o/`¯º        º¯`\o < 1440725020 65303 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :¯\(°_o)/¯ ¯\(°_o)/¯ ¯\(°_o)/¯ ¯\(°_o)/¯ ¯\(°_o)/¯ ¯\(°_o)/¯ ¯\(°_o)/¯ < 1440725026 379168 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Oh come on. < 1440725040 469757 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :there's a line length limit < 1440725057 244277 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :¯\(°_o)/¯ and ¯\(°_o)/¯ and ¯\(°_o)/¯ and ¯\(°_o)/¯ and ¯\(°_o)/¯ < 1440725057 601682 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69         |             |             |             |             | < 1440725057 965406 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69       º¯`\o         o/`¯º         º¯`\o         º¯`\o         º¯`\o < 1440725065 415866 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Wait a minute. < 1440725082 609758 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :¯\(°​_o)/¯ and ¯\(°_o)/¯ and ¯\(°_o)/¯ and ¯\(°​_o)/¯ < 1440725082 821807 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69         |             | < 1440725082 927835 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69       o/`¯º         º¯`\o < 1440725091 93531 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :I'm confused. < 1440725093 793011 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :me too < 1440725107 321959 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :¯\(°​_o)/¯ and ¯\(°_o)/¯ and ¯\(°_o)/¯ and ¯\(°​_o)/¯ < 1440725107 641178 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69    |             | < 1440725107 746124 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69  o/`¯º         º¯`\o < 1440725109 123573 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :¯\(°​_o)/¯ and ¯\(°_o)/¯ and ¯\(°_o)/¯ and ¯\(°​_o)/¯ < 1440725109 547565 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69    |             | < 1440725109 601766 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69  º¯`\o         º¯`\o < 1440725110 713349 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :¯\(°​_o)/¯ and ¯\(°_o)/¯ and ¯\(°_o)/¯ and ¯\(°​_o)/¯ < 1440725110 925179 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :bonk bonk bonk bonk bonk ♪ < 1440725110 979341 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69    |             | < 1440725111 137125 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69  º¯`\o         º¯`\o < 1440725138 525496 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :¯\(°_o)/¯ and ¯\(°​_o)/¯ but ¯\(°​_o)/¯ and ¯\(°_o)/¯ and < 1440725138 845249 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69         |             | < 1440725138 949369 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69       º¯`\o         º¯`\o < 1440725152 19761 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Nnnnnnnnnnnnnnnnnnnno. < 1440725169 871092 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :¯\(°_o)/¯ and ¯\(°_o)/¯ and ¯\(°_o)/¯ and ¯\(°_o)/¯ and ¯\(°_o)/ < 1440725170 83129 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69    |             |             |             |             | < 1440725170 189287 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69  o/`¯º         o/`¯º         o/`¯º         o/`¯º         º¯`\o < 1440725187 244903 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :¯\(°_o)/¯ and ¯\(°_o)/¯ and ¯\(°_o)/¯ and ¯\(°_o)/¯ and ¯\(°_o)/¯ < 1440725187 562841 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69    |             |             |             |             | < 1440725187 669224 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69  º¯`\o         o/`¯º         o/`¯º         o/`¯º         º¯`\o < 1440725206 111590 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :This is a bit heavy on the bot spam for my taste. < 1440725214 638588 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :i suppose no one person can test this because the nick length affects it a little?? < 1440725216 108838 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :_o_ < 1440725224 314382 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :fffff _o_ < 1440725224 738516 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69     | < 1440725224 843875 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69     >\ < 1440725234 776951 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :fffff _o_ _o_ < 1440725235 134836 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69     |   | < 1440725235 240829 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69     |\  >\ < 1440725238 502176 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :fffff _o_ _o_ < 1440725238 820691 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69     |    | < 1440725238 926367 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69     >\   |\ < 1440725246 585056 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :fffff _o_ _o_ _o_ < 1440725247 9100 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69     |   |   | < 1440725247 63345 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69     |\ /|   |\ < 1440725265 318700 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :fffff _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ < 1440725265 636380 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69     |   |   ¦   |   |   |   |   |   ¦ < 1440725265 742479 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69    /|   >\ ´¸¨  |\ /^\ /|  /|  /|  ´¸¨ < 1440725270 827144 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :hellochaf. bonk ♪ < 1440725322 913976 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i'm sure myndzi's script still has some bugs < 1440725343 617383 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :ps: hichaf, i will probably be busy for a while but maybe i will ping you when i'm ready for more greek letter fun < 1440725344 683342 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :`` perl -e 'print "_o_ " x 15 < 1440725345 1709 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69                  | < 1440725345 213445 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69                 /´\ < 1440725345 319388 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :bash: -c: line 0: unexpected EOF while looking for matching `'' \ bash: -c: line 1: syntax error: unexpected end of file < 1440725351 55311 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :`` perl -e 'print "_o_ " x 15' < 1440725351 797086 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :_o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ < 1440725351 903080 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69                  | < 1440725351 957329 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69                 /< < 1440725352 115388 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69  |   |   |   |   |   |   |   ¦   |   |   |   |   |   |   | < 1440725352 221151 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69  |\ /<   |\  >\  >\ /´\  >\ ´¸¨ /'\ /<  /<   >\  |\  >\ /| < 1440725357 319722 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :shachaf: ^ + does this coderpad.io thing time out < 1440725381 95011 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :oren: nice one < 1440725382 231492 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :`` perl -e 'print "_o_ " x 30' < 1440725382 443761 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69                  | < 1440725382 573336 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69                  >\ < 1440725382 929764 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :_o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ < 1440725389 693677 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :mauris: I have no idea. < 1440725398 821328 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :`` perl -e 'print "_o_ " x 20' < 1440725399 33100 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69                  | < 1440725399 245244 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69                 /´\ < 1440725399 457498 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :_o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ < 1440725404 19771 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :ah. well, i've copied it all into a text editor locally < 1440725411 137611 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :`` perl -e 'print "_o_ " x 17' < 1440725411 508392 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69                  | < 1440725411 615915 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69                 /'\ < 1440725411 827040 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :_o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ < 1440725419 107899 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :`` perl -e 'print "_o_ " x 16' < 1440725419 569806 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69                  | < 1440725419 675944 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69                  |\ < 1440725419 993816 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :_o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ < 1440725426 69966 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :`` perl -e 'print "_o_ " x 15' < 1440725426 388193 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69                  | < 1440725426 531932 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69                  |\ < 1440725426 779815 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :_o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ _o_ < 1440725427 9890 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69  |   |   |   |   |   ¦   |   |   |   |   |   |   |   |   | < 1440725427 115391 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69  |\  >\  |\ /'\ /|  ´¸¨  >\ /^\ /|  /|   |\ /^\ /|  /<  /'\ < 1440725443 76067 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :the population limit is 15 < 1440725450 548954 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :good, good < 1440725472 783545 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i think i cannot in conscience let this go on for much longer < 1440725476 510287 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :*+good < 1440725521 213370 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :All right, here's the insane output: https://db.tt/LvdF6xWG < 1440725529 115669 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Relatively sane line: 15:05:48: -!- Sprocklem_ has joined #esoteric. < 1440725541 282360 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Also relatively sane line: 13:33:12: eventually.tmm:IHv/!*t&v&[u| butzind:;*?}Bhok'-8:΋qÅ¡l+ < 1440725575 357074 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :exactly like the original oerjan! < 1440725580 772378 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Did you catch the 0x0F byte in there? There's a 0x0F byte in there. < 1440725608 673799 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :le/rn butzind/butzind:;*?}Bhok'-8:΋qÅ¡l+ < 1440725620 613157 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :I like this one: 03:42:10: candi raze | "a �# At) ...Too, fan5smKdwat!E < 1440725635 569210 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric : oerjan, I'm USl'nuqÌ ← is that one of Taneb's genders? < 1440725672 731201 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :dipperswett: sadly, there aren't any CHICKENs in it. < 1440725717 641566 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :it seems to know that there are 24 hours in a day and 60 minutes/seconds per hour/minute < 1440725773 863827 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Though in insane mode, it does sometimes generate a timestamp like 16:5P:11. < 1440725804 416258 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :@ask b_jonas But I've met the similar non-qwerty TIs more. I've also seen HPs and Casios, but none of them have I delved so deeply as into that Sharp I own. <-- no balrogs yet? < 1440725804 470679 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :Consider it noted. < 1440725813 171997 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :dipperswett: that's simply fungot AM hth < 1440725813 603832 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :boily: now i'm finally feeling comfortable with the fact that the build system currently works, but i got the same answer, 16. < 1440725817 549845 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Every line begins with something satisfying the regex '^..:..:..: ', with one exception: there's one beginning with '00:48 48: ' instead. < 1440725821 102934 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :(You may nitpick.) < 1440725827 544788 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :boily: fungot who? < 1440725827 650524 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :dipperswett: one needs set-cdr!, and then < 1440725837 921677 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :`? fungot am < 1440725838 133650 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :boily: can you write the code usually it has only two words of the same < 1440725838 557474 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :fungot am? ¯\(°​_o)/¯ < 1440725843 984296 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :... < 1440725848 602464 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :where was it again... < 1440725890 756497 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :ah! < 1440725893 870467 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :`? fnord am < 1440725894 979828 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Fnord AM is the repeated hour that happens when DST resolves. It is customary to celebrate it with a Garou Ping if one is awake during that time. < 1440725899 681016 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :dipperswett: see ↑ < 1440725915 248594 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :O, that's what you call it. Now I can know! < 1440725918 56910 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :os < 1440725933 592579 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :hezzo38! < 1440725962 577976 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :This line is surprisingly ASCII: 17:22:44: -!- dtsacotoo pretestrosee have somotored, mekz, too < 1440726029 189321 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :fnord. < 1440726039 223133 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :oerjan: oots #1000 is coming out tonight hth < 1440726151 217898 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Have you ever try to make up any spell/psionics/feats/class for a Dungeons&Dragons game? Also how many characters did you ever make up in total if you can remember any idea/detail? < 1440726336 75489 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :I've probably made between five and ten D&D characters. < 1440726369 518312 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :I am still playing tsume shogi game today (because I like this kind of game, although other people I have shown it to they do not understand it) < 1440726414 601225 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :dipperswett: Do you remember any detail about class and level and other stuff? < 1440726441 472025 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :I remember them more as fictional characters than game mechanics. Let's see. < 1440726459 539726 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :OK then, what kind of details as fictional characters do you remember? < 1440726495 137332 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Redgroat, cleric. Duvessa Ashling, fighter. Dowan Ashling, sorcerer. < 1440726500 540702 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Brief summary... < 1440726516 429595 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Redgroat was insane but not brave. Duvessa was brave but not insane. Dowan was both brave and insane. < 1440726531 247551 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :For this reason, Redgroat and Duvessa couldn't really handle what was going on in the campaign. < 1440726547 183541 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :shachaf: AAAAAAH < 1440726573 999661 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :dipperswett: what was the inspiration behind the Redgroat name? < 1440726576 832021 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Dowan and Duvessa were pretty much completely inspired by this picture: http://i.imgur.com/bzQwC.png < 1440726600 70419 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :boily: a dessert which I'd call "Danish redgroat" in English. < 1440726612 894210 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :I can't type the slashy O's because I'm currently on STUPID WINDOWS. < 1440726624 383168 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :ah! the Danishibboleth! < 1440726632 769395 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Yup. < 1440726634 459605 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Rødgrød. < 1440726647 387383 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Pronounced [ˈʁœðˀɡʁœðˀ] < 1440726670 794289 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :say, did you ever play DCSS? < 1440726684 666003 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :i can say that but it sounds a bit like i'm choking < 1440726703 708709 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :also yes, good characters lifted directly from dcss >:O < 1440726707 339853 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :And, if they are both name Ashling are they of a same family or is just their name is the same? Also is it human character or something else, do you remember anything else about what kind of spells or personalities or what happened in those campaign, or what level? < 1440726718 608613 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :boily: how did you guess? < 1440726732 205587 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :They're elf twins. Lessee. < 1440726739 550098 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :I think they both reached around level 8. As for personality... < 1440726756 912940 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Duvessa was "the sober one" and Dowan was "the crazy one". < 1440726786 862526 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :You already mention something like that, I think < 1440726792 187029 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Yep. < 1440726795 413589 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :To give you some idea of their personalities, here's something I imagined happening... < 1440726825 110230 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Dowan was killed in battle at the tender young age of 85. About forty-two years later, Duvessa finally managed to get him resurrected. < 1440726850 651981 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :She was, needless to say, ecstatic about this, and so she immediately wrote a letter to her parents. < 1440726853 150286 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :The letter read: < 1440726868 475367 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :"Dear Keean and Ava Ashling. Your son is alive. Sincerely, Duvessa Ashling." < 1440726885 606112 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :She then handed the paper to Dowan, who scribbled a picture of himself grinning. < 1440726901 998101 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :And off they sent it. < 1440726912 384221 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :O, OK that's how it works < 1440726957 982046 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :By the way, you may be misspelling "oh". < 1440727040 726080 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :I seem to have a thing for stories involving fraternal twins of opposite genders. < 1440727118 744522 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :OK. I have never made up the D&D characters which are related, except for his cousin's godmother's roommate or something like that (I do not quite remember). < 1440727143 564020 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Additional wisdom from the neural net: < 1440727149 620118 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i've linked this before https://www.youtube.com/watch?v=qQkvqJJvR9U < 1440727157 213688 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :14:14:11: *structures* < 1440727204 217927 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover QUIT :Read error: Connection reset by peer < 1440727310 212056 :boily!~alexandre@96.127.201.149 QUIT :Quit: SKATEBOARD CHICKEN < 1440727365 692689 :dipperswett!~tswett@192.241.237.138 TOPIC #esoteric :This channel is logically pubbed. | The channel where Sir Fungellot does not [REDACTED]. | https://dl.dropboxusercontent.com/u/2023808/wisdom.pdf http://codu.org/logs/_esoteric/ http://tunes.org/~nef/logs/esoteric/ | http://esolangs.org/ < 1440727501 326564 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :I think I have played characters of levels from 2 all the way to 2 to 27 and now have two characters active (in campaigns that interfere with each other) < 1440728340 831322 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :shachaf: is `inNu . outNu = id` and `inMu . outMu = id`? < 1440728359 56989 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Yep. < 1440728363 30268 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Also the other way around. < 1440728684 525666 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :mauris: Nu f and Mu f are fixed points of f. < 1440728809 986609 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :largest and smallest, no? < 1440729348 133377 :adu!~ajr@c-73-133-129-229.hsd1.md.comcast.net JOIN :#esoteric < 1440729906 577347 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Is there a way to tell aptitude that a package is already installed even though it is not installed? < 1440730138 312383 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :oerjan: To the degree that that makes sense when you have a category rather than an ordering. < 1440730142 492954 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Terminal and initial, at any rate. < 1440730162 752041 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :okay < 1440730247 369149 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :dammit another reboot < 1440730444 950172 :paul2520!~paul2520@unaffiliated/paul2520 QUIT :Ping timeout: 246 seconds < 1440730716 221280 :paul2520!~paul2520@unaffiliated/paul2520 JOIN :#esoteric < 1440731508 366429 :hppavilion[1]!~hppavilio@133-171-58-66.gci.net QUIT :Ping timeout: 264 seconds < 1440731521 915245 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :' "Dear Keean and Ava Ashling. Your son is alive. Sincerely, Duvessa Ashling."' isn't that a weird way for her to address her parents / talk about her twin brother?! < 1440731923 811235 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07€14]]4 10 02http://esolangs.org/w/index.php?diff=43941&oldid=43925 5* 03123.151.64.143 5* (+1) 10 < 1440732244 491034 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`olist 1000 < 1440732245 856336 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :olist 1000: shachaf oerjan Sgeo FireFly boily nortti < 1440732536 704589 :Lymia!~lymia@magical.girl.lyrical.lymia.moe QUIT :Ping timeout: 246 seconds < 1440732760 939633 :Lymia!~lymia@magical.girl.lyrical.lymia.moe JOIN :#esoteric < 1440732823 144884 :adu!~ajr@c-73-133-129-229.hsd1.md.comcast.net QUIT :Quit: adu < 1440733151 202448 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :Damn! stars everywhere, I died < 1440733155 249079 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :unfortunately the Os have yet to be listed < 1440733279 717720 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :I've beaten Imperishable Night but I've yet to get anywhere near beating Double Dealing Character < 1440733998 565288 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Many computer games have a high score list that you can type your name, but I generally don't type my name but instead type in something such as the date or level number < 1440734307 219544 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :shachaf: coming back to this, i have no idea how to do inNu/outNu < 1440734324 311153 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :One of them is easier than the other one. < 1440734333 727117 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :They're pretty much dual to inMu/outMu, if that helps. < 1440734372 442549 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :i haven't done those yet, but i guess it's the same kind of "one of them is easier than the other one" situation there, if they're duals? < 1440734389 882712 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Yep. < 1440734415 757346 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :But you might find a type without existentials easier to think about? < 1440734437 347480 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Really it's the same situation with both, though. You're either producing and consuming a universal, or you're producing and consuming an existential. < 1440734448 852222 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :In both cases, you get to choose the type for one of them and not for the other. < 1440735196 621000 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :shachaf: end of the world slightly postponed hth < 1440735231 845471 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :oerjan: prediction: durkon defeats roy, wrecan defeats veldrina hth < 1440735249 144170 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :ooh < 1440735254 888905 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :sounds rash < 1440735308 923934 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i have an uncertain memory that i may have thought of that honor thing, but i didn't actually expect rich burlew to actually _use_ that aspect of norse mythology... < 1440735349 827031 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :oerjan: hasn't it already come up twice < 1440735360 827674 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :hm i don't remember < 1440735379 887754 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :e.g. http://www.giantitp.com/comics/oots0737.html < 1440735431 452590 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :also, a helpful thought: no one else can help roy _fight_, but there are a lot of priests there and there might not be any rule against them _healing_ him... < 1440735484 587562 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Does that count as to help you to fight? Not really, but maybe it kind of is, I do not know how they would to consider such thing? < 1440735571 536627 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :zzo38: Do you read olist? < 1440735593 512612 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :zzo38: i mean, no one else can directly attack for him < 1440735609 933354 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :it remains to be seen what the actual rules are < 1440735623 229573 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :No < 1440735642 792332 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :But I am just making suggestion, I don't actually know. < 1440735675 198371 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :oerjan: i'm wondering whether to make `olist print a link < 1440735681 895143 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :especially now that it doesn't have to zero-pad < 1440735701 180316 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :what zero-padding < 1440735716 200044 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :olist xyz into oots0xyz.html < 1440735759 381993 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :shachaf: I still think may be better to do it properly by adding the correct amount of zero-padding such as in case it go beyond 999 < 1440735773 414398 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :zzo38: It just went to 1000. < 1440735781 45535 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :And there are no more zeros. < 1440735809 112234 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :OK, I suppose it take much longer if they ever decide to go to 10000 then they would have to change it anyways and it would take a long time. < 1440735855 887775 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :I know that `danddreclist does print a link, but that one is the same URL each time; see other stuff you have too, whether or not it does same or differently links each time based on that. < 1440736276 806781 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :getting to 10000 seems rather unlikely < 1440736320 558496 :Sgeo!~Sgeo@ool-44c0f875.dyn.optonline.net PRIVMSG #esoteric :Does the "Don't kill other god's bodyguards" rule apply to bodyguards or to the priests too? < 1440736323 778154 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :shachaf: ok so it was mentioned, i guess for foreshadowing < 1440736325 647319 :Sgeo!~Sgeo@ool-44c0f875.dyn.optonline.net PRIVMSG #esoteric :er, priests < 1440736333 785643 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :oerjan: it was also mentioned in another case < 1440736410 424498 :Sgeo!~Sgeo@ool-44c0f875.dyn.optonline.net PRIVMSG #esoteric :Also not every priest there agrees with Durkon < 1440736414 732354 :Sgeo!~Sgeo@ool-44c0f875.dyn.optonline.net PRIVMSG #esoteric :erm, agrees with Roy < 1440736423 241379 :Sgeo!~Sgeo@ool-44c0f875.dyn.optonline.net PRIVMSG #esoteric :I assume, some might side with the god that they represent? < 1440736494 46715 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :Sgeo: i think what Hel said is _very_ likely to make most of those Gods change their opinion < 1440736539 467370 :Sgeo!~Sgeo@ool-44c0f875.dyn.optonline.net PRIVMSG #esoteric :Can they even change their vote? I can't believe that Hel is that dumb to say that if the gods can change their minds < 1440736591 462855 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :Sgeo: http://www.giantitp.com/comics/oots0994.html is pretty clear that priests cannot attack other priests < 1440736608 235943 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :Sgeo: i assume she did vote last on purpose, yes < 1440736636 552062 :Sgeo!~Sgeo@ool-44c0f875.dyn.optonline.net PRIVMSG #esoteric :Oh, but they might instruct their priests to act in a way contrary to their prior opinion < 1440736643 554207 :Sgeo!~Sgeo@ool-44c0f875.dyn.optonline.net PRIVMSG #esoteric :Can priests hurt bodyguards? < 1440736684 575213 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :that may not have been explicitly mentioned yet < 1440736777 227435 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i recommend assuming some narrative causality hth < 1440736782 540824 :Wright!~Wright@c-98-225-44-92.hsd1.wa.comcast.net QUIT :Ping timeout: 272 seconds < 1440738684 563793 :J_Arcane!~chatzilla@37-219-104-224.nat.bb.dnainternet.fi JOIN :#esoteric < 1440738784 483614 :J_Arcane!~chatzilla@37-219-104-224.nat.bb.dnainternet.fi QUIT :Client Quit < 1440739247 75432 :J_Arcane!~chatzilla@37-219-79-242.nat.bb.dnainternet.fi JOIN :#esoteric < 1440739383 151248 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :In this tsume shogi game sometimes there is multiple possibilities for the computer-controlled pieces to be played out, although only one is played. Sometimes the others are obvious, but sometimes it isn't so it might help to also have one mode to move the pieces by yourself in case you want to examine such possibilities. < 1440739886 460473 :Sgeo!~Sgeo@ool-44c0f875.dyn.optonline.net PRIVMSG #esoteric :"Acting against your god's wishes is probably hazardous to your eternal afterlife." < 1440739921 21823 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Yes, although you might not necessarily care about an afterlife < 1440739985 309816 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :mauris is learning all sorts of jams < 1440740482 916530 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :At least my opinion (and that of some other people) is: the biggest Greed is wanting an afterlife. < 1440740917 313874 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :http://www.orenwatson.be/fontdemo.htm new characters in green < 1440741108 445430 :hppavilion[1]!~hppavilio@133-171-58-66.gci.net JOIN :#esoteric < 1440741213 125363 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :Now you can spell the band ℃-ute properly < 1440741643 597580 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :or you can state in three characters that ℚ⊂ℝ < 1440741766 871679 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :wow, a rotated page! < 1440741807 947645 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :(in OotS that is) < 1440742052 124296 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :NICE < 1440742613 119770 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :zzo38: do you think something like Tajuru Preserver that protects you from _discard_ effects would be possible to work in the rules? < 1440742657 55781 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :of course it might be strange with draw-and-discard effects < 1440742666 327835 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :(or discard-and-draw effects of red) < 1440742692 7766 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :so it might be abusable if you also donate something < 1440742707 839845 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :but there are probably easier ways that that to draw a ton of cards < 1440742723 125943 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :I am not quite sure? I do not see the reason why it should not work < 1440742881 873049 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :I'm gonna go ahead and draw the kelvin sign as °K < 1440743314 617034 :gonad!~gnomebad@unaffiliated/lleu JOIN :#esoteric < 1440743490 639254 :llue!~gnomebad@unaffiliated/lleu QUIT :Ping timeout: 240 seconds < 1440743979 68981 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :mauris has disappeauris < 1440744600 626796 :gonad!~gnomebad@unaffiliated/lleu QUIT :Ping timeout: 245 seconds < 1440744639 266844 :lleu!~gnomebad@88.202.254.4 JOIN :#esoteric < 1440744639 321126 :lleu!~gnomebad@88.202.254.4 QUIT :Changing host < 1440744639 321179 :lleu!~gnomebad@unaffiliated/lleu JOIN :#esoteric < 1440745010 162436 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :ACTION hits oren with the saucepan ===\__/ < 1440745018 523504 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :THAT'S UNSCIENTIFIC < 1440745239 791239 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :°erjan < 1440745251 281998 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :what does it take to get the saucepan, huh? < 1440745277 430064 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :pure villainy hth < 1440745323 409537 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Since when is mauris on this continent? < 1440745329 16516 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :@time mauris < 1440745329 559421 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :Local time for mauris is Fri Aug 28 03:02:01 < 1440745457 113483 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :oerjan: who's the person who knows the name thundershield twh < 1440745502 950159 :AnotherTest!~turingcom@2a02:2c40:400::1:6e46 JOIN :#esoteric < 1440745518 28941 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :oh, high priest of thor < 1440745563 834294 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :iirc she gave him that permission to return that never got back to him < 1440745597 900722 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Wouldn't that be a dwarf? < 1440745614 106061 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Oh, I guess not. < 1440745617 169129 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :isn't she a dwarf? < 1440745632 956769 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :she certainly looked short < 1440745648 573666 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Wait, I was looking at the wrong person. < 1440746873 441518 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :oh she may not have been shown before http://www.giantitp.com/comics/oots0375.html < 1440747365 974429 :Froox!~Frooxius@ip-78-102-58-167.net.upcbroadband.cz QUIT :Quit: *bubbles away* < 1440748987 904259 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :hellachaf < 1440749004 620313 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :hauris < 1440749010 859601 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :shachaf: yes somehow i am in florida! < 1440749037 68376 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :oh < 1440749040 420402 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :en route to california, right? < 1440749124 842092 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :that would be cool but sadly i'm staying within this state until like, mid-september, and then going back home :( < 1440750010 593987 :APic!apic@apic.name JOIN :#esoteric < 1440750610 913525 :AnotherTest!~turingcom@2a02:2c40:400::1:6e46 QUIT :Ping timeout: 244 seconds < 1440750679 347778 :AnotherTest!~turingcom@193.190.253.145 JOIN :#esoteric < 1440750749 199945 :Patashu!Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au JOIN :#esoteric < 1440751200 440978 :Patashu!Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au QUIT :Ping timeout: 264 seconds < 1440751268 129984 :Patashu!Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au JOIN :#esoteric < 1440751740 757984 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :`coins < 1440751750 308714 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​09celiccoin 02rimcoin 06tbarbaz,ohmy!coin 13iectcoin 04omagecoin 07agecoin 08subrientcoin 09rezcoin 02braincantcoin 06picoiicoin 13heformacoin 04beathcoin 07consurplandcoin 08ignercoin 09briggcoin 02abcdefencoin 06c-coin 13gizattecoin 045-longcoin 07brakcoin < 1440751763 717880 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :um what? "tbarbaz,ohmy!coin" ? < 1440751771 710043 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :what language is this using? < 1440751796 786029 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :`coins < 1440751798 864504 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​04partratrecoin 07liqcoin 08bfmcoin 09ypecoin 02vcoin 06cowrchemicasmitcoin 13azararicoin 04bflipcoin 07brbcoin 08bogurcoin 09egiambdarcoin 02noilancoin 06obbecoin 13tratcoin 04compalcoin 07bigcoin 08nonozcoin 09kimcoin 02dourcoin 06brecoin < 1440751825 454096 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :`coins < 1440751827 280257 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​07rumecoin 08maridgemacoin 09pietcoin 02womensiblecoin 06dd/ddcoin 13venandcoin 04anyngnedcoin 07slasscoin 08sbeezcoin 09easyecoin 02hatcoin 06orovskicoin 13linimcoin 04iikerefiftinuarelecomcoin 07bullycoin 08factcoin 09mechecoin 02facecoin 06rdwoncoin 13salcoin < 1440751847 622314 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :womensiblecoin! hah < 1440751855 310116 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :pietcoin < 1440751869 362081 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :and factcoin < 1440751874 198145 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :also facecoin < 1440751940 181418 :hppavilion[1]!~hppavilio@133-171-58-66.gci.net PRIVMSG #esoteric :Now someone just needs to make a chart of unit conversions < 1440752273 695076 :rdococ!561c7e2e@gateway/web/freenode/ip.86.28.126.46 JOIN :#esoteric < 1440752365 896039 :adu!~ajr@c-73-133-129-229.hsd1.md.comcast.net JOIN :#esoteric < 1440752519 33127 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :b_jonas: English and esolangs. < 1440752526 3431 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :With a 1:1 mix. < 1440752572 780906 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :what is the esolang part based on? < 1440752584 581413 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :myname: esolangs.org "Language list" article, if I remember right. < 1440752611 859669 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :`words --esolangs 20 < 1440752613 129944 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :furscript dzzz reverseme kipple glypho flog .gertrelnokoff kelxquoia rflct superl when tg brainfche goto++ unreall torylambda tworb liquish catch mouse < 1440752662 280276 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :It's sometimes a bit too plagiaristic, but not all of those are actually real. < 1440752815 312658 :rdococ!561c7e2e@gateway/web/freenode/ip.86.28.126.46 PRIVMSG #esoteric :hey guys < 1440752850 581748 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :https://esolangs.org/wiki/Foobar_and_Foobaz_and_Barbaz,_oh_my! hth < 1440752946 408134 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :torylambda, the conservative functional language < 1440752973 776283 :rdococ!561c7e2e@gateway/web/freenode/ip.86.28.126.46 PRIVMSG #esoteric :sometimes I feel like every programming language has already been made < 1440752982 120504 :rdococ!561c7e2e@gateway/web/freenode/ip.86.28.126.46 PRIVMSG #esoteric :or at least its idea < 1440753017 96367 :oerjan!oerjan@sprocket.nvg.ntnu.no QUIT :Quit: ZZZ < 1440753198 47577 :b_jonas!~x@russell2.math.bme.hu QUIT :Remote host closed the connection < 1440754071 476018 :TodPunk!Tod@50-198-177-186-static.hfc.comcastbusiness.net QUIT :Read error: Connection reset by peer < 1440754092 392401 :TodPunk!~Tod@50-198-177-186-static.hfc.comcastbusiness.net JOIN :#esoteric < 1440754378 732931 :lleu!~gnomebad@unaffiliated/lleu QUIT :Quit: That's what she said < 1440754405 624913 :LewisMCYoutube!42f95dd2@gateway/web/freenode/ip.66.249.93.210 JOIN :#esoteric < 1440754413 931022 :lleu!~gnomebad@88.202.254.4 JOIN :#esoteric < 1440754425 322052 :lleu!~gnomebad@88.202.254.4 QUIT :Changing host < 1440754425 376280 :lleu!~gnomebad@unaffiliated/lleu JOIN :#esoteric < 1440754440 995583 :LewisMCYoutube!42f95dd2@gateway/web/freenode/ip.66.249.93.210 PRIVMSG #esoteric :Hi, I heard this channel is weird in that wisdom thing. < 1440754476 424376 :LewisMCYoutube!42f95dd2@gateway/web/freenode/ip.66.249.93.210 PRIVMSG #esoteric :'quotes kmc < 1440754625 338101 :APic!apic@apic.name PRIVMSG #esoteric :Huh? < 1440754628 189087 :LewisMCYoutube!42f95dd2@gateway/web/freenode/ip.66.249.93.210 QUIT :Client Quit < 1440754639 154826 :APic!apic@apic.name PRIVMSG #esoteric :Uh huh… < 1440754658 642264 :LewisMCYoutube!42f95dca@gateway/web/freenode/ip.66.249.93.202 JOIN :#esoteric < 1440754662 846536 :LewisMCYoutube!42f95dca@gateway/web/freenode/ip.66.249.93.202 PRIVMSG #esoteric :Yeah < 1440754730 73685 :LewisMCYoutube!42f95dca@gateway/web/freenode/ip.66.249.93.202 PRIVMSG #esoteric :'pastequotes kmc < 1440755004 653273 :LewisMCYoutube!42f95dca@gateway/web/freenode/ip.66.249.93.202 QUIT :Ping timeout: 246 seconds < 1440755056 281956 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :' vs. ` 0:1. < 1440755405 23453 :J_Arcane!~chatzilla@37-219-79-242.nat.bb.dnainternet.fi QUIT :Ping timeout: 246 seconds < 1440755741 679083 :rdococ!561c7e2e@gateway/web/freenode/ip.86.28.126.46 PRIVMSG #esoteric :is there a programming language based on the stanley parable? < 1440755745 299317 :x10A94!~x10A94@178.252.73.97 JOIN :#esoteric < 1440755787 665139 :LewisMCYoutube!42f95dca@gateway/web/freenode/ip.66.249.93.202 JOIN :#esoteric < 1440755819 2587 :TodPunk!~Tod@50-198-177-186-static.hfc.comcastbusiness.net QUIT :Ping timeout: 244 seconds < 1440755909 86566 :Slereah!~Slereah@APuteaux-653-1-83-93.w90-61.abo.wanadoo.fr PRIVMSG #esoteric :that's a pretty broad question < 1440755919 867241 :LewisMCYoutube!42f95dca@gateway/web/freenode/ip.66.249.93.202 PRIVMSG #esoteric :What is? < 1440755928 680071 :Slereah!~Slereah@APuteaux-653-1-83-93.w90-61.abo.wanadoo.fr PRIVMSG #esoteric : is there a programming language based on the stanley parable? < 1440755945 900586 :LewisMCYoutube!42f95dca@gateway/web/freenode/ip.66.249.93.202 PRIVMSG #esoteric :Em... yep. < 1440755963 424752 :rdococ!561c7e2e@gateway/web/freenode/ip.86.28.126.46 PRIVMSG #esoteric :really? < 1440755969 589520 :rdococ!561c7e2e@gateway/web/freenode/ip.86.28.126.46 PRIVMSG #esoteric :tell me, what language < 1440755974 261342 :LewisMCYoutube!42f95dca@gateway/web/freenode/ip.66.249.93.202 PRIVMSG #esoteric :Jk < 1440755985 246382 :rdococ!561c7e2e@gateway/web/freenode/ip.86.28.126.46 PRIVMSG #esoteric :oh < 1440756027 338937 :LewisMCYoutube!42f95dca@gateway/web/freenode/ip.66.249.93.202 PRIVMSG #esoteric :lol < 1440756084 361435 :Slereah!~Slereah@APuteaux-653-1-83-93.w90-61.abo.wanadoo.fr PRIVMSG #esoteric :Also what would being based on the Stanley Parable entail < 1440756113 87936 :LewisMCYoutube!42f95dca@gateway/web/freenode/ip.66.249.93.202 PRIVMSG #esoteric :being in a pair of two. < 1440756126 960794 :rdococ!561c7e2e@gateway/web/freenode/ip.86.28.126.46 PRIVMSG #esoteric :well... < 1440756163 629183 :Slereah!~Slereah@APuteaux-653-1-83-93.w90-61.abo.wanadoo.fr PRIVMSG #esoteric :The Stanley Parable is basically just a choose your own adventure thing < 1440756168 948037 :rdococ!561c7e2e@gateway/web/freenode/ip.86.28.126.46 PRIVMSG #esoteric :maybe programs made with the language are games like the stanley parable with a lot of endings? < 1440756170 15283 :Slereah!~Slereah@APuteaux-653-1-83-93.w90-61.abo.wanadoo.fr PRIVMSG #esoteric :It's just a bunch of branching choices < 1440756171 737130 :rdococ!561c7e2e@gateway/web/freenode/ip.86.28.126.46 PRIVMSG #esoteric :yeah Slereah is right < 1440756183 471823 :rdococ!561c7e2e@gateway/web/freenode/ip.86.28.126.46 PRIVMSG #esoteric :sort of like my Folder really < 1440756184 705932 :Slereah!~Slereah@APuteaux-653-1-83-93.w90-61.abo.wanadoo.fr PRIVMSG #esoteric :It's not very specific to it < 1440756191 870966 :LewisMCYoutube!42f95dca@gateway/web/freenode/ip.66.249.93.202 PRIVMSG #esoteric :In that case, it would entail: < 1440756212 768399 :rdococ!561c7e2e@gateway/web/freenode/ip.86.28.126.46 PRIVMSG #esoteric :you could even remake the stanley parable in Folder, and even have all the audio and stuff, and it won't be that hard < 1440756227 614389 :LewisMCYoutube!42f95dca@gateway/web/freenode/ip.66.249.93.202 PRIVMSG #esoteric :has quit (nothing) < 1440756288 795828 :LewisMCYoutube!42f95dca@gateway/web/freenode/ip.66.249.93.202 PRIVMSG #esoteric :Er... ror? < 1440756300 560950 :LewisMCYoutube!42f95dca@gateway/web/freenode/ip.66.249.93.202 PRIVMSG #esoteric :Hell World! < 1440756366 897393 :LewisMCYoutube!42f95dca@gateway/web/freenode/ip.66.249.93.202 PRIVMSG #esoteric :https://dl.dropboxusercontent.com/u/2023808/wisdom.pdf < 1440756488 644769 :LewisMCYoutube!42f95dca@gateway/web/freenode/ip.66.249.93.202 PRIVMSG #esoteric :Hi < 1440756513 779210 :LewisMCYoutube!42f95dca@gateway/web/freenode/ip.66.249.93.202 QUIT : < 1440756705 638295 :LewisMCYoutube!42f95dca@gateway/web/freenode/ip.66.249.93.202 JOIN :#esoteric < 1440756755 637338 :LewisMCYoutube!42f95dca@gateway/web/freenode/ip.66.249.93.202 QUIT :Client Quit < 1440757428 362890 :AnotherTest!~turingcom@193.190.253.145 QUIT :Ping timeout: 264 seconds < 1440757590 633283 :mauris!~mauris@unaffiliated/nooodl QUIT :Ping timeout: 240 seconds < 1440757621 211890 :villasukka!villasukka@aulis.sange.fi QUIT :*.net *.split < 1440757622 646576 :heroux!sandroco@gateway/shell/insomnia247/x-hphfffjzaknejeqd QUIT :*.net *.split < 1440757622 755249 :olsner!~salparot@c83-252-193-184.bredband.comhem.se QUIT :*.net *.split < 1440757622 809553 :FreeFull!~freefull@defocus/sausage-lover QUIT :*.net *.split < 1440757623 40410 :skarn!skarn@unaffiliated/skarn QUIT :*.net *.split < 1440757623 305738 :atehwa!atehwa@aulis.sange.fi QUIT :*.net *.split < 1440757623 891573 :PinealGlandOptic!~PinealGla@vps2.conus.info QUIT :*.net *.split < 1440757624 82436 :int-e!~noone@static.88-198-179-137.clients.your-server.de QUIT :*.net *.split < 1440757624 382739 :Patashu!Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au QUIT :*.net *.split < 1440757624 830417 :FireFly!~firefly@firefly.xen.prgmr.com QUIT :*.net *.split < 1440757625 589727 :erdic!~erdic@unaffiliated/motley QUIT :*.net *.split < 1440757625 698932 :haavard!freebsd@haavard.me QUIT :*.net *.split < 1440757780 978902 :villasukka!villasukka@aulis.sange.fi JOIN :#esoteric < 1440757785 919570 :Patashu!Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au JOIN :#esoteric < 1440757785 973937 :FireFly!~firefly@firefly.xen.prgmr.com JOIN :#esoteric < 1440757785 973977 :erdic!~erdic@unaffiliated/motley JOIN :#esoteric < 1440757785 973993 :haavard!freebsd@haavard.me JOIN :#esoteric < 1440757803 103032 :heroux!sandroco@gateway/shell/insomnia247/x-hphfffjzaknejeqd JOIN :#esoteric < 1440757803 157354 :olsner!~salparot@c83-252-193-184.bredband.comhem.se JOIN :#esoteric < 1440757803 157432 :FreeFull!~freefull@defocus/sausage-lover JOIN :#esoteric < 1440757803 157454 :skarn!skarn@unaffiliated/skarn JOIN :#esoteric < 1440757803 157471 :atehwa!atehwa@aulis.sange.fi JOIN :#esoteric < 1440757803 157488 :PinealGlandOptic!~PinealGla@vps2.conus.info JOIN :#esoteric < 1440757803 157504 :int-e!~noone@static.88-198-179-137.clients.your-server.de JOIN :#esoteric < 1440757842 770113 :heroux!sandroco@gateway/shell/insomnia247/x-hphfffjzaknejeqd QUIT :*.net *.split < 1440757842 887386 :olsner!~salparot@c83-252-193-184.bredband.comhem.se QUIT :*.net *.split < 1440757842 941680 :FreeFull!~freefull@defocus/sausage-lover QUIT :*.net *.split < 1440757843 331642 :skarn!skarn@unaffiliated/skarn QUIT :*.net *.split < 1440757844 47711 :atehwa!atehwa@aulis.sange.fi QUIT :*.net *.split < 1440757845 418999 :PinealGlandOptic!~PinealGla@vps2.conus.info QUIT :*.net *.split < 1440757845 708877 :int-e!~noone@static.88-198-179-137.clients.your-server.de QUIT :*.net *.split < 1440757883 98170 :FireFly!~firefly@firefly.xen.prgmr.com QUIT :Ping timeout: 246 seconds < 1440757888 564988 :boily!~alexandre@96.127.201.149 JOIN :#esoteric < 1440757976 71938 :hppavilion[1]!~hppavilio@133-171-58-66.gci.net QUIT :Ping timeout: 264 seconds < 1440757979 535550 :heroux!sandroco@gateway/shell/insomnia247/x-hphfffjzaknejeqd JOIN :#esoteric < 1440757979 589827 :olsner!~salparot@c83-252-193-184.bredband.comhem.se JOIN :#esoteric < 1440757979 589893 :FreeFull!~freefull@defocus/sausage-lover JOIN :#esoteric < 1440757979 589915 :skarn!skarn@unaffiliated/skarn JOIN :#esoteric < 1440757979 589933 :atehwa!atehwa@aulis.sange.fi JOIN :#esoteric < 1440757979 589952 :PinealGlandOptic!~PinealGla@vps2.conus.info JOIN :#esoteric < 1440757979 589970 :int-e!~noone@static.88-198-179-137.clients.your-server.de JOIN :#esoteric < 1440758477 963998 :MDude!~fyrc@pa-67-235-0-195.dhcp.embarqhsd.net JOIN :#esoteric < 1440758793 626715 :b_jonas!~x@russell2.math.bme.hu JOIN :#esoteric < 1440758859 775712 :adu!~ajr@c-73-133-129-229.hsd1.md.comcast.net QUIT :Quit: adu < 1440759195 51103 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :@ask oerjan you now wield a saucepan? < 1440759195 142804 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :Consider it noted. < 1440760388 90694 :AnotherTest!~turingcom@193.190.253.145 JOIN :#esoteric < 1440761026 272271 :MDude!~fyrc@pa-67-235-0-195.dhcp.embarqhsd.net PRIVMSG #esoteric :I would think that one use for unit tests would be as a form of search query that lets you search libraries to see if there's already a function that passes. < 1440761425 607851 :boily!~alexandre@96.127.201.149 QUIT :Quit: UNBOUND CHICKEN < 1440761441 63910 :FireFly!~firefly@firefly.xen.prgmr.com JOIN :#esoteric < 1440762746 833450 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover JOIN :#esoteric < 1440763133 89884 :AnotherTest!~turingcom@193.190.253.145 QUIT :Ping timeout: 244 seconds < 1440763170 953633 :TieSoul_!~quassel@86.89.119.147 JOIN :#esoteric < 1440763172 244152 :TieSoul!~quassel@86.89.119.147 JOIN :#esoteric < 1440763282 27007 :TieSoul!~quassel@86.89.119.147 QUIT :Read error: Connection reset by peer < 1440763396 390909 :TieSoul!~quassel@86.89.119.147 JOIN :#esoteric < 1440763396 926965 :llue!~gnomebad@unaffiliated/lleu JOIN :#esoteric < 1440763430 923461 :TieSoul_!~quassel@86.89.119.147 QUIT :Ping timeout: 260 seconds < 1440763435 969467 :lleu!~gnomebad@unaffiliated/lleu QUIT :Ping timeout: 246 seconds < 1440765127 949613 :Lymia!~lymia@magical.girl.lyrical.lymia.moe QUIT :Ping timeout: 252 seconds < 1440765455 662395 :Lymia!~lymia@magical.girl.lyrical.lymia.moe JOIN :#esoteric < 1440765525 889333 :AnotherTest!~turingcom@2a02:2c40:400::1:6e46 JOIN :#esoteric < 1440765801 44326 :AnotherTest!~turingcom@2a02:2c40:400::1:6e46 QUIT :Ping timeout: 244 seconds < 1440765892 436162 :Lymia!~lymia@magical.girl.lyrical.lymia.moe QUIT :Max SendQ exceeded < 1440765978 293320 :Lymia!~lymia@magical.girl.lyrical.lymia.moe JOIN :#esoteric < 1440766001 321397 :FireFly!~firefly@firefly.xen.prgmr.com QUIT :Changing host < 1440766001 375688 :FireFly!~firefly@oftn/member/FireFly JOIN :#esoteric < 1440766367 616355 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 JOIN :#esoteric < 1440766619 113681 :Patashu!Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au QUIT :Ping timeout: 246 seconds < 1440766631 459131 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Stuck14]]4 10 02http://esolangs.org/w/index.php?diff=43942&oldid=43831 5* 03Vioz- 5* (+2) 10 < 1440766634 863931 :AnotherTest!~turingcom@2a02:2c40:400::1:6e46 JOIN :#esoteric < 1440766665 337611 :TodPunk!~Tod@50-198-177-186-static.hfc.comcastbusiness.net JOIN :#esoteric < 1440766719 378638 :adu!~ajr@static-108-48-76-162.washdc.fios.verizon.net JOIN :#esoteric < 1440766741 625054 :adu!~ajr@static-108-48-76-162.washdc.fios.verizon.net QUIT :Client Quit < 1440766788 562616 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :I am wroking on a new unix utility < 1440766804 970760 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :how will you call it? < 1440766834 721021 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :not sure < 1440766841 7173 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :it's important < 1440766852 509112 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :right now it's called ./a.out, happy? < 1440766859 78351 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :not really < 1440766868 116307 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :anyway < 1440766876 338339 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :it'd be better to call it MEGATRON2773.d21 < 1440766903 273951 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :memorable names help a lot < 1440766931 319478 :TodPunk!~Tod@50-198-177-186-static.hfc.comcastbusiness.net QUIT :Ping timeout: 250 seconds < 1440766963 704386 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :ok what does it do? <.< < 1440766982 750159 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :./a.out '%i%i' '%i{a+b}' < 1440766987 981881 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :ooh < 1440767001 906182 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :no i don't get it < 1440767017 244123 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :reads records of two integers at a time (32-bit) and writed out their sums < 1440767037 218630 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :...you're writing a calculator? < 1440767053 767400 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :a streaming calculatore < 1440767073 197453 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :you define a function from input records to output records < 1440767110 664500 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :while (scanf(argv[1],something)) printf(argv[2],something); ? < 1440767148 972078 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :yeah it is sort of like that but dynamic < 1440767170 543514 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :awk '{ print $1 + $2 }' < 1440767191 298947 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :awk is easy < 1440767205 488650 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :awk works on plaintext. my utility is for binary < 1440767219 775775 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :this wasn't clear < 1440767267 699448 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :./a.out '%F' '%F{F^0.5}' < 1440767274 550173 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :./a.out '%F' '%F{a^0.5}' < 1440767277 454374 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :whoops < 1440767295 151649 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :the variables are numbered in base 26 like in excel < 1440767441 335397 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :so you can have an input record like '%i%F%20s%i', then a is an int, b is a double, c is a 20 character long string, and d is an int < 1440767490 738761 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :you can also have delimited records like '%i%{a}s' < 1440767661 972565 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :I might also make equivalents to grep and sort < 1440767811 891838 :AnotherTest!~turingcom@2a02:2c40:400::1:6e46 QUIT :Ping timeout: 252 seconds < 1440768225 82625 :AnotherTest!~turingcom@193.190.253.145 JOIN :#esoteric < 1440769029 556365 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :@tell mauris Re talking about her twin brother: yes, it certainly is. < 1440769029 662044 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :Consider it noted. < 1440769060 315697 :TodPunk!~Tod@50-198-177-186-static.hfc.comcastbusiness.net JOIN :#esoteric < 1440769282 471465 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`run echo -e '\x034,9S\x039,4T' < 1440769293 349400 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​4,9S9,4T < 1440769326 117683 :AnotherTest!~turingcom@193.190.253.145 QUIT :Ping timeout: 240 seconds < 1440769340 31623 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :uhoh < 1440769363 689300 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Uh oh is right. < 1440769368 10368 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`run echo -e '\x034,9S\x039,4T\x034,9O\x039,4P\x034,9 \x039,4T\x034,9H\x039,4E\x034,9 \x039,4M\x034,9A\x039,4D\x034,9N\x039,4E\x034,9S\x039,4S' > madness < 1440769369 924135 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1440769808 657834 :FreeFull!~freefull@defocus/sausage-lover PRIVMSG #esoteric :`run cat madness < 1440769809 331830 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​4,9S9,4T4,9O9,4P4,9 9,4T4,9H9,4E4,9 9,4M4,9A9,4D4,9N9,4E4,9S9,4S < 1440769813 960278 :FreeFull!~freefull@defocus/sausage-lover PRIVMSG #esoteric :Ouch < 1440770219 454048 :TodPunk!~Tod@50-198-177-186-static.hfc.comcastbusiness.net QUIT :Read error: Connection reset by peer < 1440770267 899519 :TodPunk!Tod@50-198-177-186-static.hfc.comcastbusiness.net JOIN :#esoteric < 1440770299 259602 :mroman!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :haha < 1440770304 170357 :mroman!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :I found my python image script again! < 1440770374 520709 :mroman!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :now I just need a camera that produces bad images < 1440770395 242054 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :you can borrow my phone < 1440770406 533211 :mroman!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :sure < 1440770409 957572 :mroman!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :want my home address? < 1440770421 951557 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :come and get it <.< < 1440770447 749901 :mroman!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :coincidentally I'm on vacation! < 1440770448 473724 :TodPunk!Tod@50-198-177-186-static.hfc.comcastbusiness.net QUIT :Read error: Connection reset by peer < 1440770449 705990 :mroman!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :or am i? < 1440770480 314908 :TodPunk!Tod@50-198-177-186-static.hfc.comcastbusiness.net JOIN :#esoteric < 1440770533 420634 :ProofTechnique!~Ptech@65-183-137-193-dhcp.burlingtontelecom.net JOIN :#esoteric < 1440770579 705856 :mroman!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :izabera: where do you live? < 1440770582 985085 :mroman!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :UK? < 1440770584 874927 :mroman!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :US? < 1440770587 51658 :mroman!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :Or worse < 1440770588 942215 :mroman!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :Finland? < 1440770599 796583 :mroman!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :Finland, the land of fins. < 1440770612 214037 :mroman!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :Sounds kinda gross. < 1440770627 842631 :mroman!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :Every now and then you'll step into some fishy parts. < 1440770642 40094 :J_Arcane!~chatzilla@37-219-114-156.nat.bb.dnainternet.fi JOIN :#esoteric < 1440770685 655023 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :italy D: < 1440770691 188959 :mroman!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :oh < 1440770696 686293 :mroman!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :that's not too far away < 1440770702 323665 :mroman!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :depending on *where* in italy exactly < 1440770717 78294 :mroman!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :like... rich italy or poor italy? < 1440770727 728201 :mroman!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :or super-rich italy < 1440770734 146515 :mroman!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :(super-rich italy obviously means vatican) < 1440770741 372726 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :then not-so-rich italy < 1440770743 894067 :mroman!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`? vatican < 1440770745 722398 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :vatican? ¯\(°​_o)/¯ < 1440770747 460242 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :north of it < 1440770754 440997 :TodPunk!Tod@50-198-177-186-static.hfc.comcastbusiness.net QUIT :Read error: Connection reset by peer < 1440770764 219519 :mroman!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`learn vatican is the super-rich part of italy. < 1440770766 567368 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Learned 'vatican': vatican is the super-rich part of italy. < 1440770791 391479 :mroman!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`learn vatican is the super-rich part of italy. Sadly, it has a huge crime rate. < 1440770793 97163 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Learned 'vatican': vatican is the super-rich part of italy. Sadly, it has a huge crime rate. < 1440770804 320695 :mroman!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :hm < 1440770808 172058 :mroman!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`learn vatican is the super-rich part of italy. Sadly, it has a huge crime rate. You will be robbed. < 1440770810 757355 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Learned 'vatican': vatican is the super-rich part of italy. Sadly, it has a huge crime rate. You will be robbed. < 1440771559 951012 :AnotherTest!~turingcom@193.190.253.145 JOIN :#esoteric < 1440774283 993920 :J_Arcane!~chatzilla@37-219-114-156.nat.bb.dnainternet.fi QUIT :Ping timeout: 246 seconds < 1440774694 38568 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`cat HackEgo!!!!! Are you still alive??? < 1440774738 76360 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`cat Requiescat in pace. < 1440774742 769780 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :did you mean `echo < 1440774813 874555 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :cat: Requiescat in pace.: No such file or directory < 1440774813 977365 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :cat: HackEgo!!!!! Are you still alive???: No such file or directory < 1440774823 564996 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :I did. < 1440775257 96979 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :All right, I don't know why my "loudly" utility isn't working. < 1440775259 269135 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`cat bin/loudly < 1440775259 785549 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​#!/usr/bin/env python \ import itertools \ inp = raw_input() \ cyc = itertools.cycle(["\00304,09","\00309,04"]) \ print "".join(cyc.next() + c for c in inp) < 1440775289 683729 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`loudly It doesn't do anything; it just hangs for 30 seconds and then says "No output". Why is that? < 1440775320 165489 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1440775322 655031 :puckipedia!puck@irc.puckipedia.com PRIVMSG #esoteric :dipperswett: I would guess the stuff you put after the `loudly is arguments, not raw_input? < 1440775336 288898 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Doink. I think you are correct. < 1440775357 438033 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`run Let\'s try that again. | loudly < 1440775358 132784 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :bash: Let's: command not found \ Traceback (most recent call last): \ File "/hackenv/bin/loudly", line 3, in \ inp = raw_input() \ EOFError: EOF when reading a line < 1440775370 471335 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`run echo Let\'s try that again again. | loudly < 1440775371 294931 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​04,09L09,04e04,09t09,04'04,09s09,04 04,09t09,04r04,09y09,04 04,09t09,04h04,09a09,04t04,09 09,04a04,09g09,04a04,09i09,04n04,09 09,04a04,09g09,04a04,09i09,04n04,09. < 1440775374 607542 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :\o/ < 1440775374 914706 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69      | < 1440775375 17362 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69     /| < 1440776257 340018 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`run welcome | loudly < 1440776260 826285 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​04,09W09,04e04,09l09,04c04,09o09,04m04,09e09,04 04,09t09,04o04,09 09,04t04,09h09,04e04,09 09,04i04,09n09,04t04,09e09,04r04,09n09,04a04,09t09,04i04,09o09,04n04,09a09,04l04,09 09,04h04,09u09,04b04,09 09,04f04,09o09,04r04,09 09,04e04,09s09,04o04,09t09,04e04,09r09,04i04,09c09,04 04,09p09,04r04,09o09, < 1440776282 876316 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :The color codes take up a lot of space. < 1440776297 159809 :Frooxius!~Frooxius@cust-101.ktknet.cz JOIN :#esoteric < 1440776309 742574 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`run echo Hi Frooxius. | loudly < 1440776310 370620 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​04,09H09,04i04,09 09,04F04,09r09,04o04,09o09,04x04,09i09,04u04,09s09,04. < 1440776327 199800 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`run echo "I'm going to stop now." | loudly < 1440776327 980533 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​04,09I09,04'04,09m09,04 04,09g09,04o04,09i09,04n04,09g09,04 04,09t09,04o04,09 09,04s04,09t09,04o04,09p09,04 04,09n09,04o04,09w09,04. < 1440776335 800185 :Frooxius!~Frooxius@cust-101.ktknet.cz PRIVMSG #esoteric :Hello O.O < 1440776350 982967 :AnotherTest!~turingcom@193.190.253.145 QUIT :Ping timeout: 246 seconds < 1440776400 904399 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :ACTION twitches < 1440776407 648551 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :''.join(chain.from_iterable(izip(cycle(["\00304,09","\00309,04"]), inp))) < 1440776444 592471 :J_Arcane!~chatzilla@37-219-114-156.nat.bb.dnainternet.fi JOIN :#esoteric < 1440776457 827864 :Frooxius!~Frooxius@cust-101.ktknet.cz PRIVMSG #esoteric :That looks awful. < 1440776527 98482 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :at least it has no weird side-effects in a generator expression! < 1440776567 793568 :Frooxius!~Frooxius@cust-101.ktknet.cz PRIVMSG #esoteric :I mean the greeting! The color combination hurts! D: But that too :P < 1440776747 335043 :Wright!~Wright@c-98-225-44-92.hsd1.wa.comcast.net JOIN :#esoteric < 1440776952 411992 :ProofTechnique!~Ptech@65-183-137-193-dhcp.burlingtontelecom.net QUIT :Quit: My Mac has gone to sleep. ZZZzzz… < 1440776984 588087 :ProofTechnique!~Ptech@65-183-137-193-dhcp.burlingtontelecom.net JOIN :#esoteric < 1440777389 59570 :ProofTechnique!~Ptech@65-183-137-193-dhcp.burlingtontelecom.net QUIT :Quit: My Mac has gone to sleep. ZZZzzz… < 1440777516 740135 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :`run echo "''.join(chain.from_iterable(izip(cycle([\"\\00304,09\",\"\\00309,04\"]), inp)))" | loudly < 1440777517 539267 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​04,09'09,04'04,09.09,04j04,09o09,04i04,09n09,04(04,09c09,04h04,09a09,04i04,09n09,04.04,09f09,04r04,09o09,04m04,09_09,04i04,09t09,04e04,09r09,04a04,09b09,04l04,09e09,04(04,09i09,04z04,09i09,04p04,09(09,04c04,09y09,04c04,09l09,04e04,09(09,04[04,09"09,04\04,09009,04004,09309,04004,09409,04,04,09009, < 1440777520 926180 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :bwahaha < 1440777552 527311 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :why did i bother quoting that myself < 1440777558 884858 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :`run loudly < loudly < 1440777559 453555 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :bash: loudly: No such file or directory < 1440777565 527007 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :`run loudly < $(which loudly) < 1440777566 269862 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​04,09#09,04!04,09/09,04u04,09s09,04r04,09/09,04b04,09i09,04n04,09/09,04e04,09n09,04v04,09 09,04p04,09y09,04t04,09h09,04o04,09n < 1440777569 800620 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :bah. < 1440777582 163031 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :lol < 1440777742 772856 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :`run echo 12345678901234567890123456789012345678901234567890 | loudly < 1440777743 468509 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​04,09109,04204,09309,04404,09509,04604,09709,04804,09909,04004,09109,04204,09309,04404,09509,04604,09709,04804,09909,04004,09109,04204,09309,04404,09509,04604,09709,04804,09909,04004,09109,04204,09309,04404,09509,04604,09709,04804,09909,04004,09109,04204,09309,04404,09509,04604,09709,04804,09909, < 1440777769 517894 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :why does it cut at 49 chars? < 1440777792 228130 :hppavilion[1]!~Lordofthe@133-171-58-66.gci.net JOIN :#esoteric < 1440777805 633664 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :`run echo 12 | loudly | wc -c < 1440777806 734580 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :15 < 1440777837 695853 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :`run echo 7 49 \* p | bc < 1440777838 409619 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​(standard_in) 1: syntax error < 1440777845 532733 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :huh < 1440777849 635415 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :`run echo 7 49 \* p | dc < 1440777850 271748 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :343 < 1440777851 474873 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :oh < 1440777863 104959 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :what's the length limit on IRC messages < 1440777905 530276 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :ah < 1440777936 283 :adu!~ajr@static-108-48-76-162.washdc.fios.verizon.net JOIN :#esoteric < 1440778107 906512 :hppavilion[1]!~Lordofthe@133-171-58-66.gci.net QUIT :Ping timeout: 244 seconds < 1440778605 869340 :AnotherTest!~turingcom@94-224-64-77.access.telenet.be JOIN :#esoteric < 1440779933 859334 :AnotherTest!~turingcom@94-224-64-77.access.telenet.be QUIT :Ping timeout: 252 seconds < 1440780014 883040 :AnotherTest!~turingcom@94-224-64-77.access.telenet.be JOIN :#esoteric < 1440780279 437617 :hppavilion[1]!~Lordofthe@74-114-87-64.dynamic.asdk12.org JOIN :#esoteric < 1440780280 859055 :ProofTechnique!~Ptech@65-183-137-193-dhcp.burlingtontelecom.net JOIN :#esoteric < 1440780329 444298 :copumpkin!~copumpkin@unaffiliated/copumpkin QUIT :Quit: My MacBook Pro has gone to sleep. ZZZzzz… < 1440781080 363487 :hppavilion[1]!~Lordofthe@74-114-87-64.dynamic.asdk12.org QUIT :Ping timeout: 264 seconds < 1440781170 409284 :hppavilion[1]!~Lordofthe@74-114-87-64.dynamic.asdk12.org JOIN :#esoteric < 1440781179 882455 :copumpkin!~copumpkin@unaffiliated/copumpkin JOIN :#esoteric < 1440781337 50509 :copumpkin!~copumpkin@unaffiliated/copumpkin QUIT :Client Quit < 1440781476 17127 :mauris!~mauris@2601:58a:100:1dbb:c095:e98d:7a0f:49f2 JOIN :#esoteric < 1440781476 110791 :mauris!~mauris@2601:58a:100:1dbb:c095:e98d:7a0f:49f2 QUIT :Changing host < 1440781476 110870 :mauris!~mauris@unaffiliated/nooodl JOIN :#esoteric < 1440781872 375516 :hppavilion[1]!~Lordofthe@74-114-87-64.dynamic.asdk12.org QUIT :Ping timeout: 264 seconds < 1440782124 814987 :tompar!~tompar@188.120.151.135 JOIN :#esoteric < 1440782436 656059 :TodPunk!Tod@50-198-177-186-static.hfc.comcastbusiness.net JOIN :#esoteric < 1440782763 602637 :tompar!~tompar@188.120.151.135 PART #esoteric :"Leaving" < 1440782973 578238 :TodPunk!Tod@50-198-177-186-static.hfc.comcastbusiness.net QUIT :Read error: Connection reset by peer < 1440782996 21252 :TodPunk!Tod@50-198-177-186-static.hfc.comcastbusiness.net JOIN :#esoteric < 1440783293 429642 :mauris_!~mauris@unaffiliated/nooodl JOIN :#esoteric < 1440783477 372246 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :ashl: I think the length limit is 512, but that's including metadata. < 1440783501 957788 :mauris!~mauris@unaffiliated/nooodl QUIT :Ping timeout: 244 seconds < 1440783538 824647 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :In HackEgo's case, each message is prefixed with ":HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :" < 1440783543 996833 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :> length ":HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :" < 1440783545 529447 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 53 < 1440783632 21289 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Also each message must end with CRLF does that count too or not? < 1440783635 749216 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :That counts. < 1440783642 411553 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :So the maximum body size for HackEgo is... < 1440783644 419140 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :> 512 - 53 - 2 < 1440783645 773920 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 457 < 1440783652 463278 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :457, eh? < 1440783682 384750 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :wait, I have the computation for that in my notes < 1440783728 786790 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :see http://dpaste.com/0EBGH2K < 1440783731 739853 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :gives the numbers < 1440783732 307110 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Each mIRC color code is six bytes (though I could use five instead), so each one-byte character ends up at 7 bytes, so the limit ends up being... < 1440783737 272977 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :> 457 `div` 7 < 1440783739 108790 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 65 < 1440783748 777449 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :65? < 1440783750 682037 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :you can get more if you use the name of the actual target channel/user. < 1440783767 67446 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :and your username and host (it's worth to choose a short username) < 1440783772 11682 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :> 356 `div` 7 < 1440783773 467651 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 50 < 1440783778 570336 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Yes, I thought that too, shorten your username < 1440783794 498719 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :(b_jonas has just "~x") < 1440783797 24406 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :but you can't depend on your nick completely because the server may change it asynchronously on a colision < 1440783798 640093 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :So HackEgo must be chopping at about 356. < 1440783800 484841 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :zzo38: yep. < 1440783814 205225 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :dipperswett: no, do count the channel name at least < 1440783824 348857 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :dipperswett: 50 char long channel names rarely come up < 1440783837 672443 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :dipperswett: so use the name of the actual target channel or nick (which you _do_ know) for the computation < 1440783859 189184 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :also, you get one more byte from a NOTICE than from a PRIVMSG :-) < 1440783866 964975 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :b_jonas: so... the maximum body size for HackEgo sending to #esoteric is 457 bytes, then? < 1440783910 914114 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`run echo 鋼の錬金術師 | loudly < 1440783911 730932 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​04,0909,0404,0909,0404,0909,0404,0909,0404,0909,0404,0909,0404,0909,0404,0909,0404,0909,04 < 1440783922 37622 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Yes you would (and a reply which is not itself meant to be auto-replied to should be NOTICE anyways) < 1440784013 854455 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :You could also change the IP-address/domain-name, if I was allowed to have "zzo38computer.org" instead of "24-207-56-9.eastlink.ca" then it would be shorter. < 1440784030 840832 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Whelp, it doesn't handle multi-byte characters correctly. < 1440784043 993206 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :But they won't do it even though I would said so < 1440784052 634158 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :dipperswett: dunno, I can't do additions now. you figure it out. < 1440784105 336210 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :dipperswett: basically, you have to have ":nick!user@host PRIVMSG target :-message\r\n" to fit in 512 bytes < 1440784156 904296 :TieSoul_!~quassel@2a02:a448:4a62:0:548d:2bb6:e105:b48e JOIN :#esoteric < 1440784402 937722 :TieSoul!~quassel@86.89.119.147 QUIT :Ping timeout: 260 seconds < 1440785003 904921 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Why do I often get this error: Warning: Cannot convert string "-*-helvetica-medium-r-*-*-12-*-*-*-*-*-*" to type FontStruct < 1440785013 874482 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :It is not the font I am trying to use < 1440785043 718682 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Is it trying to use Helvetica instead of Fixed and if so, why? < 1440785051 396903 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :zzo38: that error from running what program? I don't get the context < 1440785108 94980 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Many programs give that error, although the program still runs. < 1440785108 414423 :coppro!raedford@taurine.csclub.uwaterloo.ca PRIVMSG #esoteric :it is incorrect to think of it as you "get"ing an error < 1440785115 686377 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :And I get no problems with the program < 1440785117 57083 :coppro!raedford@taurine.csclub.uwaterloo.ca PRIVMSG #esoteric :all that is occurring is that your program is printing that string < 1440785304 749777 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Yes, although it seems many programs do < 1440785355 93966 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Xterm also shows a similar message the first time you display a menu (although many of the * are changed to other things) < 1440785445 362545 :TodPunk!Tod@50-198-177-186-static.hfc.comcastbusiness.net QUIT :Read error: Connection reset by peer < 1440785468 137946 :TodPunk!~Tod@50-198-177-186-static.hfc.comcastbusiness.net JOIN :#esoteric < 1440785666 892161 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Some things for my new Dungeons&Dragons character I did not fill in yet, such as: eye, height, weight, age, alphabet. < 1440785732 69826 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :How can you do with aptitude to check what commands are installed by a package? < 1440785883 95836 :mauris_!~mauris@unaffiliated/nooodl NICK :mauris < 1440786375 585549 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :zzo38: "alphabet"? what does that maen in this context? < 1440786391 560712 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :did you fill in the blood type yet? < 1440786477 932420 :AnotherTest!~turingcom@94-224-64-77.access.telenet.be QUIT :Ping timeout: 244 seconds < 1440786588 595920 :hppavilion[1]!~Lordofthe@74-114-87-64.dynamic.asdk12.org JOIN :#esoteric < 1440786615 790527 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Blood type isn't one of the stuff that would be important here. (If it ever does become important then I suppose we can decide at random at that point) < 1440786675 939799 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Alphabet means what kind of alphabets to use for writing; they list the alphabets of the languages in the Dungeons&Dragons book but they didn't list this one (it says they have their own language, but not any details such as alphabet) < 1440786697 376669 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :I see < 1440786707 164504 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :zzo38 fontstruct eh? nice, could i have a look at your work? < 1440786709 485459 :mihow!~mihow@50-206-98-70-static.hfc.comcastbusiness.net JOIN :#esoteric < 1440786752 593122 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :I do not use fontstruct < 1440786786 698971 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :oh i thought so seeing as it was included in your error message < 1440786804 223068 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :but i geuss you got a font from there? < 1440786841 883448 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :No, that is something to do with the X window protocol < 1440786857 74774 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :"FontStruct" is the data type used for font data < 1440787130 620425 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :fair enough haha i had no idea < 1440787269 705824 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :For designing printer fonts I prefer METAFONT < 1440787312 984852 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :(For screen fonts, tile editor editing by pixels work best in my opinion, though) < 1440787390 813780 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :hm, curious you should say, because fontstruct.com is just that; font design mosaic style. truetype instead of bitmaps, but still works great for pixel fonts < 1440787483 812620 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :but as i'm not experienced in font creation, metafont and tile editor are prob far better editor < 1440787484 808103 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :*s < 1440787523 307299 :Wright!~Wright@c-98-225-44-92.hsd1.wa.comcast.net QUIT :Ping timeout: 250 seconds < 1440787557 992636 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :Help I'm teaching someone monads < 1440787582 300276 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :The Computer Modern fonts used with TeX are made with METAFONT. I also made a set of chess icons with METAFONT < 1440787591 368507 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Taneb: why are you teaching someone monads? < 1440787606 352972 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :He asked < 1440787620 337542 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Does he know Haskell? Does he already understand how to do I/O? < 1440787631 298212 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :He knows a bit of Haskell but not much < 1440787639 10930 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Taneb: When using with Haskell programming (or possibly some other computer programming) I believe it seem best to explain in terms of list comprehensions if you know that already < 1440787646 773991 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :Also I cannot get into my salsa < 1440787650 620845 :hppavilion[1]!~Lordofthe@74-114-87-64.dynamic.asdk12.org QUIT :Ping timeout: 245 seconds < 1440787665 601441 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Generally, one should understand I/O before learning monads. < 1440787669 82635 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Because you can see how the monad operations are corresponding to list comprehension stuff, and then you can see it is generalized. < 1440787698 301924 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :dipperswett: Some people believe that, some don't. My own opinion is not; it can be learn at same time < 1440787713 567013 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :You *can*, yeah. < 1440787726 267848 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :dipperswett, I'm avoiding talking about IO < 1440787729 811208 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Lemme say this. < 1440787745 536476 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :It's a monad, sure, but it leads people to the red herring that "Monads are about IO" < 1440787752 737302 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :One shouldn't learn monads *in order to* understand IO. < 1440787765 785422 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :That's like learning ring theory in order to understand arithmetic. < 1440787769 453243 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Yes that is true you should avoid that it is aboit I/O < 1440787787 560455 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Nevertheless it seem one example of it. < 1440787813 925953 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :So I am showing him Maybe and [] < 1440787820 942987 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :Not sure where to go after that... maybe Writer? < 1440787822 42687 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Whether or not you know how to make I/O in Haskell, you can understand its working also by monad (same you can also understand lists working by monad, even if you already know lists working) < 1440787858 222832 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :I would probably start with lists and list comprehensions, since if you already know list comprehension even from other programming languages, you may see how it is generalized. < 1440787915 938572 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :(And then you can easily see what return, fmap, and join for lists mean and then also what bind means, since you can see this bind also related to list comprehensions) < 1440788396 990156 :AnotherTest!~turingcom@94-224-64-77.access.telenet.be JOIN :#esoteric < 1440790431 87481 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :wtf you must be kidding me < 1440790446 471496 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :sorry, I'm trying to see what this linker error means < 1440790505 134635 :TieSoul_!~quassel@2a02:a448:4a62:0:548d:2bb6:e105:b48e NICK :TieSoul < 1440790595 106084 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :I think it's a bug < 1440790655 61366 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :What error and what circumstance? If it is the bug then you should try to figure out and possibly to report. What linker is it? < 1440790666 533666 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :not a linker bug < 1440790668 271553 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :a bug in a library < 1440790672 476056 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :that fails to define this template function < 1440790676 949074 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :only declares it < 1440790689 629791 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Ah, but what library is it? < 1440790700 274802 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :wait, I'm still looking at it < 1440790706 655664 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :but it's opencv 2.4.11 < 1440790717 310624 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Which is a library for doing what? < 1440790771 40729 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :hmm wait < 1440790773 927164 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :there is a definition here < 1440790778 481657 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :no wait < 1440790781 60601 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :that's a different overload < 1440790796 945415 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :this constructor has like twelve overloads < 1440790841 341495 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :hmm, it doesn't seem to be defined < 1440790847 875268 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :opencv is a library for image processing < 1440790876 411891 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Taneb: did I ever tell you my "it's impossible to understand monads" idea? < 1440790897 686617 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :People often try to come up with some summary of what a monad is, which is both accurate and easy to understand. < 1440790909 346196 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :Oh no, that is absolutely true < 1440790922 95783 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Along the lines of "monads are a certain type of container", or "a monad is a context in which a computation can execute", or something like that. < 1440790937 273483 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :the definition missing is that of template cv::Mat_::Mat_(int ndims, const int *sizes, T *data, const size_t *steps); < 1440790955 680823 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :I think that it's really not possible to come up with a "good" summary. < 1440790978 809485 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :dipperswett: is that like the "monad tutorial fallacy"? < 1440790988 965191 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :So the upshot is... < 1440791003 665728 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :You don't understand monads by realizing that monads are really just some simple underlying thing. < 1440791026 969641 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :You understand monads by knowing the definition of a monad, and enough examples that you can see how they're related to each other and how other things relate to the examples. < 1440791051 546767 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :dipperswett: definitely sounds like the monad tutorial fallacy < 1440791058 253421 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :b_jonas: is that the same as the "I've figured out the secret" fallacy? < 1440791060 464844 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Which is to say... < 1440791083 171463 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :dunno < 1440791089 71722 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :You struggle for a long time to understand something, and then after learning some fact, you finally understand the concept. < 1440791101 155086 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :You conclude that "the secret" to understanding the concept is whatever the last fact you learned was. < 1440791122 668988 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :And so you go out and write a blog post that's supposed to make it easy for everyone by telling them "the secret". < 1440791130 415441 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :dipperswett: https://byorgey.wordpress.com/2009/01/12/abstraction-intuition-and-the-monad-tutorial-fallacy/ < 1440791136 773042 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :dipperswett: yes, sounds like that < 1440791162 785169 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :It doesn't work, because "the secret" is merely one of the crucial components. People need to know all of them, not just the one. < 1440791197 911585 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover QUIT :Ping timeout: 252 seconds < 1440791240 14837 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover JOIN :#esoteric < 1440791251 650915 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :I did suggest to do by example and also by definition < 1440791386 984967 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :I figure that if I wanted to teach people mathematics, I'd try to explain everything. < 1440791427 96455 :dipperswett!~tswett@192.241.237.138 PRIVMSG #esoteric :The definition. The intuition. Examples. How the intuition describes the examples. How the examples motivate the definition. How the definition satisfies the intuition. And so forth. < 1440792950 963395 :adu!~ajr@static-108-48-76-162.washdc.fios.verizon.net QUIT :Quit: adu < 1440792960 542702 :J_Arcane!~chatzilla@37-219-114-156.nat.bb.dnainternet.fi QUIT :Ping timeout: 255 seconds < 1440793359 931997 :AnotherTest!~turingcom@94-224-64-77.access.telenet.be QUIT :Ping timeout: 244 seconds < 1440793442 433005 :AnotherTest!~turingcom@94-224-64-77.access.telenet.be JOIN :#esoteric < 1440793512 490997 :x10A94!~x10A94@178.252.73.97 QUIT :Read error: Connection reset by peer < 1440793582 414296 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Even the first Dungeons&Dragons character I played which was a level 2 human wizard, I was able to defeat a level 11 human wizard who for some reason was able to use ten magical rings at once, and even had a magic rod in his belt, several spellbooks, etc. I was able to defeat him by stealing the wand (while he thought he had me paralyzed) and breaking it in half, this destroyed all of his rings as well as a necklace he was wearing; his spellbooks we < 1440793678 437707 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Earlier, our group of three characters managed to escape detection by disguising ourself as statues and standing next to similarly shaped statues (which the DM says were actually put there to work against us), and writing numbers above them < 1440794770 718498 :sebbu!~sebbu@unaffiliated/sebbu QUIT :Ping timeout: 240 seconds < 1440794828 530946 :AnotherTest!~turingcom@94-224-64-77.access.telenet.be QUIT :Ping timeout: 260 seconds < 1440794890 45796 :AnotherTest!~turingcom@94-224-64-77.access.telenet.be JOIN :#esoteric < 1440795035 347319 :olsner!~salparot@c83-252-193-184.bredband.comhem.se NICK :olsmer < 1440795091 322529 :olsmer!~salparot@c83-252-193-184.bredband.comhem.se NICK :olsner < 1440795138 660439 :TieSoul!~quassel@2a02:a448:4a62:0:548d:2bb6:e105:b48e QUIT :Remote host closed the connection < 1440795522 934961 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :The GNU "units" program is using old exchange rates, what program can be use to do currency conversion which can automatically download current exchange rates if configured? < 1440795591 82009 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :why not write one yourself? < 1440795598 329979 :ProofTechnique!~Ptech@65-183-137-193-dhcp.burlingtontelecom.net QUIT :Quit: My Mac has gone to sleep. ZZZzzz… < 1440795601 747584 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :otherwise, google does it afaik < 1440795640 15271 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :so i guess a simple script or something to do a google search on the currency conversion, grep the result and print? < 1440796436 211538 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Mice in a maze14]]4 10 02http://esolangs.org/w/index.php?diff=43943&oldid=41879 5* 0363.232.95.4 5* (+1) 10/* Mice */ < 1440796490 977923 :sebbu!~sebbu@ADijon-152-1-38-201.w83-194.abo.wanadoo.fr JOIN :#esoteric < 1440796526 890549 :sebbu!~sebbu@ADijon-152-1-38-201.w83-194.abo.wanadoo.fr QUIT :Changing host < 1440796526 944694 :sebbu!~sebbu@unaffiliated/sebbu JOIN :#esoteric < 1440797146 951479 :fowl!fowl@gateway/shell/elitebnc/x-dkpkwnkylxsqgvpz PRIVMSG #esoteric :Google is the best calculator < 1440797170 153153 :fowl!fowl@gateway/shell/elitebnc/x-dkpkwnkylxsqgvpz PRIVMSG #esoteric :It even understands math like 1+2)*3 < 1440797426 489665 :hppavilion[1]!~Lordofthe@74-114-87-64.dynamic.asdk12.org JOIN :#esoteric < 1440797429 382121 :hppavilion[1]!~Lordofthe@74-114-87-64.dynamic.asdk12.org PRIVMSG #esoteric :I'm here < 1440797531 248804 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :ok < 1440797823 969600 :hppavilion[1]!~Lordofthe@74-114-87-64.dynamic.asdk12.org QUIT :Ping timeout: 244 seconds < 1440797948 107207 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :anyone fancy with regex? i've been stuck with a problematic pattern for the last hour now < 1440797969 707197 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :it should be trivial so i must be doing something horribly wrong < 1440798130 748847 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :nvm i solved it < 1440798222 638350 :rdococ!561c7e2e@gateway/web/freenode/ip.86.28.126.46 QUIT :Ping timeout: 246 seconds < 1440798226 878377 :sebbu!~sebbu@unaffiliated/sebbu QUIT :Ping timeout: 244 seconds < 1440798268 367045 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :hm no closer but not quite there. the pattern ^[\w\d\{\} ]+(/[\w\d\{\} ]*)+[^\/]$ captures n/n/) but not n/(n)/) < 1440798277 798516 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :while it should capture neither of those < 1440798436 490967 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :by capture do you mean match < 1440798492 582751 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :yes < 1440798517 394830 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :i sometimes switch places with match and capture groups < 1440798528 859383 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :their definitions that is < 1440798534 355840 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Why do you think it shouldn't match those? < 1440798536 367860 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :why shouldn't it match those < 1440798578 628080 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :n/n/) matches with "n" in the first part, "/n" in first repeat of the paren block, "/" in the other repeat, and ")" matching the [^\/]. < 1440798614 382699 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :i guess the [^\/] pattern is wrong then. looking at my pattern i noticed im not even consistent in escaping my slashes < 1440798636 733643 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Do you have a simple description of what you want to be matching? < 1440798657 299878 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :i'm writing it right now ;) < 1440798698 673104 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :(Incidentally, [\w\d] is redundant and the same as [\w], because \w is alpha-and-numeric.) < 1440798751 754671 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :a pattern that matches one or more words, numbers, {, } or spaces, followed by one or more groups consisting of a single forward slash and one or more words, numbers, {, } or spaces < 1440798777 910176 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :should not end in a slash. i e 2/x/{2} is valid while 2//2/ is not < 1440798783 785487 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :thanks for the tip btw! < 1440798819 127104 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :i guess i should read up on regex a bit, i'm feelin a bit rusty now < 1440798836 92144 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Is "2//2/" also not valid because of the // in the middle? Because that doesn't fit in your description. < 1440798873 473904 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :"consisting of a _single_ forward slash" i thought i did, but yes, no double slashes < 1440798891 370538 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Turning the description directly into a regex would give [\w{} ]+(?:/[\w{} ]+)+ < 1440798904 461742 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Where the (?:...) can be a (...) but a non-capturing group seems more reasonable. < 1440798946 959950 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :seems to be working wonders! < 1440798954 363734 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :ACTION bows before fizzie < 1440798961 15046 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :many thanks \o/ < 1440798961 427433 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69             | < 1440798961 530280 :myndzi!myndzi@tetrisguide.com PRIVMSG #esoteric :69            /| < 1440798987 973228 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :You're welcome, but I think you did the hard work in writing that description, because I just wrote a mechanical translation of it. < 1440799010 689830 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :why does myndzi do that < 1440799015 525473 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :nah mate, i call it teamwork! < 1440799022 830634 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :badly formatted stick figures < 1440799050 911523 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :fizzie: tho i was thrown off by the [^\/] matching a paren. why would it do that? < 1440799072 455876 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :You asked for "anything that's not a slash", and a paren is not a slash. < 1440799082 157969 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :I can just use dc when I can calculate arbitrary precision stuff, I can make such calculation by command-line, it is working OK. < 1440799102 272113 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :of course! now i feel stupider than before hah < 1440799400 623770 :ProofTechnique!~Ptech@c-24-147-92-185.hsd1.vt.comcast.net JOIN :#esoteric < 1440799483 191715 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Re earlier discussion, Google used to have a "Finance API", but it was removed in a "spring cleaning". Our esteemed competitor Yahoo! still has a "yahoo.finance.xchange" data source in their "YQL" API. < 1440799530 556706 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :ACTION frowns at the idea that yahoo is a competitor to google < 1440799534 93844 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :hm i guess datamining the raw html isn't an option? < 1440799536 757667 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :is that true? < 1440799612 686114 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :It's always an option, I just think it's generally inelegant. < 1440799688 874157 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :i agree, but as a last resort it's worth something, i know of some sites that provides daily stock market dumps, but not an api for exchange prices < 1440799692 615613 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :not free anyway < 1440799732 172247 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :ashl: Well, I mean, in some areas at least. Gmail vs. Yahoo Mail, and so on. < 1440799768 466801 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :yahoo has a mail service? < 1440799832 697406 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :has had for as long as i can remember < 1440799840 466935 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :oh well < 1440799844 633685 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :@yahoo.com? < 1440799844 688005 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :Unknown command, try @list < 1440799855 431967 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :shush lambda < 1440799859 751938 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :i assume their business model is the same as google's, namely churning out ads? < 1440799963 978184 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :come to think of it, i actually have no idea what yahoo's main business interests are since google took over the search engine market < 1440799995 755065 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :i don't even really think of google as a search engine company any more ;) < 1440799999 47388 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :how times have changed < 1440800003 974433 :AnotherTest!~turingcom@94-224-64-77.access.telenet.be QUIT :Quit: ZNC - http://znc.in < 1440800014 634826 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :"According to third-party web analytics providers, Alexa and SimilarWeb, Yahoo! is the highest-read news and media website, with over 7 billion readers per month, being the fourth most visited website globally, as of June 2015." < 1440800025 77265 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Not exactly defunct yet. < 1440800028 455537 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :interesting < 1440800043 864264 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :ashl: ah yes remember landline phones? those where the days < 1440800067 56591 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :that is interesting. i guess it must be highly localized cos i never see any yahoo news or media here in the nords < 1440800090 653350 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :stalem: yes, i even had one until a couple of months ago! < 1440800094 949659 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :They tried to get to social networking, but I think it went about as well as G+. < 1440800101 572453 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :If even that. < 1440800115 561476 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :7 billion readers per month are highly localized? < 1440800124 91172 :Patashu!Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au JOIN :#esoteric < 1440800130 564812 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :well, obviously it's not unique readers :P < 1440800150 632694 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :dunno, my grandma goes on yahoo pretty often < 1440800155 711039 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :ashl: nice! why did you have to get rid of it? < 1440800168 904618 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :stalem: i didn't have to, per se, i just moved house < 1440800178 353555 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Here (UK) it's pretty hard to get a DSL thing without a bundled landline. I have one, but I don't have a machine plugged in it. < 1440800186 710530 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :izabera: exactly. i think mostly older generations read yahoo, and they are highly localized geographically < 1440800195 560986 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :fizzie: i thought it was impossible unless you were in london < 1440800205 730138 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :...i was jk, my grandma doesn't know how to use a computer < 1440800214 809233 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Maybe? I'm in London. < 1440800229 363894 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :ashl; then i would get a new one! before they're completely lost. i know the newer generations have NO idea what a phone is and are dumbfounded when confronted with one < 1440800237 134549 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :londoners don't tend to have a good idea what things are like outside london :P < 1440800260 398057 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :I have a landline telephone too < 1440800262 283131 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I saw some providers with a "no telephone" option, but it generally didn't seem to save any money really. < 1440800271 37752 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :maybe your grandma has you fooled? but i stand by that i think older generations tend towards yaoo < 1440800277 505438 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :(Although not with the internet; the internet is with the television service) < 1440800300 873822 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :im more content now that i know people still use landlines at home < 1440800351 446701 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :In the university campus back home (Finland), you could call local university numbers for free, and they had a dialup modem bank, so the landline was a handy backup internet service if something happened to the campus network. < 1440800361 766221 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :zzo38: interesting, where i come from all three are usually in one package. tv, phone and internet for one price. pick n mix < 1440800365 355917 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :(They were entirely separate systems.) < 1440800418 425564 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :nice brother of coast! how many finns are on here anyway? or scandinavians in general < 1440800424 810180 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :i get a feeling they're overrepresented < 1440800532 256352 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :There's been quite a few Finns. < 1440800590 99014 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :been? what have you done with them? :P < 1440800603 22726 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I count 5 in the current list of nicks, and one Finnish word that might be. < 1440800623 372797 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :not bad. then we have the icelandic augur < 1440800636 565552 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :the icelandic augur? < 1440800639 903863 :augur!~augur@c-73-46-94-9.hsd1.fl.comcast.net PRIVMSG #esoteric :i will never be icelandic! < 1440800641 759415 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Also there was someone with a non-Finnish background, who had moved to Finland, but I forget who that was. < 1440800652 931189 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :you are now! EYE OF ICELAND! < 1440800658 503016 :augur!~augur@c-73-46-94-9.hsd1.fl.comcast.net PRIVMSG #esoteric :O_O < 1440800664 713631 :augur!~augur@c-73-46-94-9.hsd1.fl.comcast.net PRIVMSG #esoteric :!_! < 1440800665 792144 :augur!~augur@c-73-46-94-9.hsd1.fl.comcast.net PRIVMSG #esoteric :@_@ < 1440800666 682989 :augur!~augur@c-73-46-94-9.hsd1.fl.comcast.net PRIVMSG #esoteric :#_# < 1440800668 484838 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :`? Finland < 1440800669 334339 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Finland is a European country. There are two people in Finland, and at least nine of them are in this channel. Corun drives the bus. < 1440800676 527322 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :hahahah < 1440800678 642088 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :heh < 1440800704 434643 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :learn is the command for new entries right? < 1440800782 60425 :augur!~augur@c-73-46-94-9.hsd1.fl.comcast.net PRIVMSG #esoteric :to be icelanding, my nick needs more diacritics and shit. aúgurðùrr < 1440800815 801930 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :iceland (v) to add diacritics and shit < 1440800835 559240 :augur!~augur@c-73-46-94-9.hsd1.fl.comcast.net PRIVMSG #esoteric :exactly < 1440801017 759124 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :I have made up the back story of my new Dungeons&Dragons character and also wrote one for my other character (I lost the previous one if I ever had one); if the other player also write their character back story then I can put those ones into the computer too. < 1440801051 494177 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :`? Sweden < 1440801052 658483 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Sweden is the suburb capital of Norway. It's where all the Nobel prizes are announced, except the Math Prize. < 1440801063 628955 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :heh < 1440801070 883003 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :unfortunately i've never played d&d < 1440801177 615866 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :You have not? I have made recording of story of stuff that we do in Dungeons&Dragons game < 1440801219 133566 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :nope. every 'friend' i've ever had never had an interest in it or didn't know what it is < 1440801225 736091 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :i bet it's a ton of fun < 1440801436 232710 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :It is the 3.5 edition that I play. Some people prefer newer or older versions < 1440801439 537149 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :`words --gaelic < 1440801440 640992 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :làn < 1440801443 539306 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :`words --gaelic 20 < 1440801444 532149 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :bhrach éifeag formaidh sail t-iar faich smùc ridheana bhean dha garra léig bhear fig dhuidh prìne cnàmh phanach leóghaich h-ait < 1440801457 688841 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :We didn't have Icelandic, so I went with an approximation. < 1440801531 578310 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :funny thing, i'm actually designing a scripting language for generating fake (spoken) languages < 1440801539 494929 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :hence my regex issues < 1440801553 432882 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :so are those true gaelic words? < 1440801585 785826 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :See if you think these background story are OK, or if there is a mistake, but, when available I will also show to the referee and then possibly we will have to get past him too. < 1440801636 147026 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :i'm a complete noob on this but sure < 1440801641 118578 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :I want to connect a HP Laserjet 4 printer to my computer but this new computer does not have a parallel port < 1440801663 475961 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :do you have a parallel>usb connector? < 1440801668 495537 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :No I do not have. < 1440801685 398126 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :then that might turn out to be a problem < 1440801686 960832 :hppavilion[1]!~Lordofthe@133-171-58-66.gci.net JOIN :#esoteric < 1440801701 322272 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :This computer has far more USB ports than I should ever need but no parallel port < 1440801752 571317 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :who uses parallel ports nowadays anyways? < 1440801761 693104 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :i recommend a converter or a new printer! < 1440801861 197002 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :USB isn't very good though. Also a HP Laserjet 4 printer is a pretty good printer; I don't have another PCL laser printer but even if I had I would want to use PCL and laser printer < 1440801876 807465 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :There are also things you can do conveniently with a parallel port that require extra hardware for USB. < 1440801888 317779 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Like a X1541 cable. < 1440801890 573547 :Hoolootwo!~Hooloovoo@d1g1t4l.be PRIVMSG #esoteric :USB is very high-latency, so parallel ports are good for really low-latency stuff < 1440801912 664796 :Hoolootwo!~Hooloovoo@d1g1t4l.be PRIVMSG #esoteric :like any machine tools and stuff < 1440801971 99791 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :i guess that's true. never having to use parallel ports puts me out of perspective < 1440801978 290227 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :This computer does at least have PS/2 for keyboard and mouse though, and I want to disable support for USB keyboard/mouse for security purposes (but still support filesystem device); how can I do that with Linux? < 1440802038 840546 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :(I don't like USB automount filesystems either but I have already avoided that I think) < 1440802079 693991 :ashl!~ash@185.83.217.70 PRIVMSG #esoteric :what's the security issue < 1440802141 243686 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :zzo38: One way might be to add "blacklist X" lines in the modprobe configuration for USB input drivers, so they're not loaded at all. < 1440802164 150637 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Possibly "blacklist usbhid" would be enough. < 1440802165 637722 :oerjan!oerjan@sprocket.nvg.ntnu.no JOIN :#esoteric < 1440802302 122940 :Hoolootwo!~Hooloovoo@d1g1t4l.be PRIVMSG #esoteric :that wouldn't work for non-HID input devices though < 1440802331 612241 :Hoolootwo!~Hooloovoo@d1g1t4l.be PRIVMSG #esoteric :I think < 1440802357 595097 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :As long as it is not a primary input device (i.e. the keyboard and mouse) I am fine if they can still work with USB < 1440802394 186204 :Hoolootwo!~Hooloovoo@d1g1t4l.be PRIVMSG #esoteric :ah okay < 1440802413 273039 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :@tell oren i found this http://arin.ga/BaYiFD/raw < 1440802413 379056 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :Consider it noted. < 1440802964 255893 :Frooxius!~Frooxius@cust-101.ktknet.cz QUIT :Read error: Connection reset by peer < 1440802964 256012 :Patashu!Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au QUIT :Ping timeout: 244 seconds < 1440802968 150907 :gde33!kvirc@546A0B75.cm-12-3a.dynamic.ziggo.nl QUIT :Ping timeout: 244 seconds < 1440802990 446771 :gde33|2!kvirc@546A0B75.cm-12-3a.dynamic.ziggo.nl JOIN :#esoteric < 1440802990 792535 :Froox!~Frooxius@cust-101.ktknet.cz JOIN :#esoteric < 1440802990 907862 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :@botsnack < 1440802990 962163 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric ::) < 1440802991 780265 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :no disconnect in 11 days < 1440803033 14797 :Patashu!Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au JOIN :#esoteric < 1440803147 940941 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :any suggestions about this font being used as a programming font? http://fontstruct.com/fontstructions/show/1179104 < 1440803226 843812 :sebbu!~sebbu@ADijon-152-1-38-201.w83-194.abo.wanadoo.fr JOIN :#esoteric < 1440803237 421363 :oerjan!oerjan@sprocket.nvg.ntnu.no TOPIC #esoteric :The font of all knowledge | The channel where Sir Fungellot does not [REDACTED]. | https://dl.dropboxusercontent.com/u/2023808/wisdom.pdf http://codu.org/logs/_esoteric/ http://tunes.org/~nef/logs/esoteric/ | http://esolangs.org/ < 1440803268 891927 :sebbu!~sebbu@ADijon-152-1-38-201.w83-194.abo.wanadoo.fr QUIT :Changing host < 1440803268 982961 :sebbu!~sebbu@unaffiliated/sebbu JOIN :#esoteric < 1440803291 797806 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :stalem: very nice < 1440803294 808242 :llue!~gnomebad@unaffiliated/lleu QUIT :Quit: That's what she said < 1440803317 215296 :lleu!~gnomebad@88.202.254.4 JOIN :#esoteric < 1440803317 269563 :lleu!~gnomebad@88.202.254.4 QUIT :Changing host < 1440803317 269620 :lleu!~gnomebad@unaffiliated/lleu JOIN :#esoteric < 1440803357 193884 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :oren: thank you! i am a bit concerned it's too fancy for being useful. < 1440803375 183683 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :The #$%& sequence looks a bit crowded. But to be fair, it does on this font too. < 1440803393 65371 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :fizzie: whoa whoa whoa, no need to get rude about it < 1440803455 533965 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :haha yeah it's a tight squeeze < 1440803485 627310 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :I used to use Sanafon Obi, so yours doesn't look swishy by comparison < 1440803494 806926 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :i guess it's a real issue with monospaced fonts; i and j provide lots of spacing while the chars you mentioned are toghtly packed < 1440803496 559334 :boily!~alexandre@96.127.201.149 JOIN :#esoteric < 1440803551 520566 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :can't seem to be able to find that font, but good thing i'm not overdoing it then < 1440803626 787093 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :http://sana.s12.xrea.com/2_sanafonmaru.html < 1440803634 331365 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :oh, it was maru < 1440803652 545076 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :Maybe the Obi font was from a different website < 1440803670 575017 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :you didn't program in japanese did you? < 1440803706 426877 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :No, but I can read and write it. < 1440803707 65167 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :you did didn't you? :D i found the page http://sana.s12.xrea.com/2_sanafonobi.html < 1440803717 328474 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :Oh there it is < 1440803720 799585 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :yeah < 1440803724 157770 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :stalellom! helloren! < 1440803753 553939 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :not bad mate, i'm impressed by ppl reading/writing japanese < 1440803758 839487 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :boilhey! < 1440803760 575126 :oren!~oren@65.94.102.49 PRIVMSG #esoteric :afk getting buffalo wings, back in 15 min... < 1440803787 410827 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :afk getting a haircut. be back in amodné. < 1440803797 423227 :boily!~alexandre@96.127.201.149 QUIT :Quit: OTHERWORLDLY CHICKEN < 1440803842 723633 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :@messages- < 1440803842 778231 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :boily asked 12h 24m 7s ago: you now wield a saucepan? < 1440803842 832593 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :stalem said 10h 21m 23s ago: hey. i realized i reacted over the top back when and i know it's not an excuse, but i'm a bit of a fuck-up. i guess my lesson is to do my research before attempting stupid shit < 1440803850 52464 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :oops < 1440803857 994991 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :o/ < 1440803864 178839 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :stalem: sorry, i assumed boily's message was the only one < 1440803872 306661 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :nah that's ok i dont mind really < 1440803876 311182 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :otherwise i'd have checked that in private < 1440803888 218509 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :i guess the whole channel might as well get the apology, i did write everything in here so < 1440803902 493883 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :@tell boily The saucepan is also ancient hth < 1440803902 548185 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :Consider it noted. < 1440803910 355420 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :it's mostly that we spoke primarily so i thought it would be appropriate to /msg it < 1440804096 350568 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :stalem: btw the interesting part of what you did was showing that those are the _only_ solutions. although i think you went a bit fast on excluding the extra 0s case (it's still true, i checked) < 1440804198 429113 :bb010g!uid21050@gateway/web/irccloud.com/x-encdtjkryuqbwhur QUIT :Quit: Connection closed for inactivity < 1440804379 90974 :myndzi!myndzi@tetrisguide.com QUIT :Quit: . < 1440804453 967869 :variable!~variable@freebsd/developer/variable JOIN :#esoteric < 1440804490 548925 :Froox!~Frooxius@cust-101.ktknet.cz QUIT :Quit: *bubbles away* < 1440804537 203368 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :oerjan: well what do you know, i made a small contribution after all. too bad the page is blasted into cyblivion now haha < 1440804573 121901 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :oerjan: btw what do you mean the extra 0s case? the 0 \/ part? < 1440804584 587053 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :yeah < 1440804591 127756 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :iirc < 1440804601 918633 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :ACTION didn't save the page either, although he considered it < 1440804702 996892 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :it's a bit subtle because it can preserve the length for a little while. e.g. 2 2 -> 0 0 < 1440804779 284989 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :4 1 4 1 -> 4 1 0 0 -> 0 0 0 0 < 1440804783 943449 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :well, if it's worth it maybe i could take some time to rewrite it i dunno < 1440804820 637610 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :it is, that's true. pretty much like shifting the sequence to the left slowly, before 0 0 becomes the instruction and it dies < 1440804892 264088 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :i'm a bit bummed now i didn't pipe my experiment sequences to a file < 1440805160 735437 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :stalem: btw there is an elegant way to see why that equation has only the solutions 2,2 and 1,3 < 1440805209 654647 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :hm if i could remember what the equation was... < 1440805244 124148 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :2 + x = x * y < 1440805249 591177 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :oerjan: is the saucepan more ancient than you twh < 1440805256 285834 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :you can rewrite that as x * (y - 1) = 2 < 1440805264 565537 :variable!~variable@freebsd/developer/variable NICK :function < 1440805272 253338 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :ok that might've come across as ruder than i intended < 1440805303 886071 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :shachaf: possibly not hth < 1440805306 233100 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :hmm, pan... ---(##) < 1440805315 377964 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :How many solutions are there of w^3 + x^3 + y^3 = z^3 for natural w,x,y,z? < 1440805317 77541 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :mmm, bacon < 1440805341 500071 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :Are there infinite? < 1440805341 924610 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :Taneb: i dunno but i'm pretty sure i've seen that discussed somewhere < 1440805396 430473 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :oerjan: that's neat! i'm noting it for when i rewrite the article < 1440805471 577689 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :also why does hth and twh mean in this realm? i'd like to be enlightened, cos i'm pretty sure hth doesnt mean hope this helps < 1440805478 444311 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :> 3^3 + 4^3 + 5^3 < 1440805480 198984 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 216 < 1440805484 269935 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :> 6^3 < 1440805486 272287 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 216 < 1440805495 125243 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`? twh < 1440805495 976836 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :twh would help, but is an hth derivative. hth. twh. hand. < 1440805528 667985 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`? hth < 1440805531 289801 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :hth is help received from a hairy toe. It is not at all hambiguitous. < 1440805535 178988 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :oerjan, the answer seems to be "some" < 1440805542 643003 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :stalem: that should clear it up hth < 1440805558 999585 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :`? hand < 1440805559 779918 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :A hand in the bush is better than a stoned bird. < 1440805562 669076 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :\o/ < 1440805572 255421 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :esoteric in its essence < 1440805574 16481 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :`? everything < 1440805574 797178 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :everything? ¯\(°​_o)/¯ < 1440805588 568676 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :everything is nothing? < 1440805589 840559 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :hackego does not know everything < 1440805606 304586 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :`? anything < 1440805607 47064 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :anything? ¯\(°​_o)/¯ < 1440805607 470986 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :ergo hackego knows nothing < 1440805623 622771 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :`? nothing < 1440805624 317146 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :nothing? ¯\(°​_o)/¯ < 1440805626 804685 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :No it doesn't < 1440805639 30877 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :`? something < 1440805639 773904 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :something? ¯\(°​_o)/¯ < 1440805646 746820 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :no *thing at all < 1440805664 266405 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :`? HackEgo < 1440805666 42973 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :HackEgo, also known as HackBot, is a bot that runs arbitrary commands on Unix. See `help for info on using it. You should totally try to hax0r it! Make sure you imagine it's running as root with no sandboxing. < 1440805693 969638 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :i think i sort of derived the meaning of hth twh twnh tdnh etc. through osmosis :( < 1440805701 135582 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :`? fomething < 1440805701 948705 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :fomething denotes the obsolescence of clinical insanity. < 1440805727 989942 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :`? something-that-isn't-in-hackego's-wisdom < 1440805728 822068 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :It is now. < 1440805734 207885 :mauris!~mauris@unaffiliated/nooodl PRIVMSG #esoteric :yesterday shachaf typed "tmnhh" and i understood it and it was worrying < 1440805757 361977 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :`? things boily likes < 1440805758 178117 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Fire is good. I like fire. Also chicken. And phở. < 1440805762 568640 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :i understood an oerjan acronym which i think even oerjan was surprised i understood < 1440805767 226054 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :i don't remember what it was, though < 1440805768 647016 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :oerjan? < 1440805770 555244 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :I think that's all the things in HackEgo's wisdom. < 1440805783 680699 :ProofTec_!~Ptech@c-24-147-92-185.hsd1.vt.comcast.net JOIN :#esoteric < 1440805784 317876 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :shachaf: a year or so here and i'm there with you < 1440805800 122884 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :`? Wisdom < 1440805800 973753 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :wisdom is always factually accurate, except for this entry, and uh that other one? it started with like, an ø? < 1440805824 327328 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :is "tdms" taken? < 1440805837 798620 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :shachaf sorry that was meant for mauris eeh < 1440805861 411035 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :`? tdms < 1440805862 210940 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :tdms? ¯\(°​_o)/¯ < 1440805870 604569 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I was about to say that that's the DVI/HDMI thing, but that's TMDS. < 1440805874 569671 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :that doesn't make sense ;-) < 1440805878 12488 :ProofTechnique!~Ptech@c-24-147-92-185.hsd1.vt.comcast.net QUIT :Read error: Connection reset by peer < 1440805900 273041 :ProofTec_!~Ptech@c-24-147-92-185.hsd1.vt.comcast.net NICK :ProofTechnique < 1440805906 160416 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Transition-diminished minusfrential signaling. < 1440805912 857231 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :tdmsaa < 1440805936 333173 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :oerjan: what was that acronym i figured out recently twh < 1440805944 145864 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :all i can think of is the dance must stay alive always < 1440805962 772013 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :The ambiguity of does/doesn't dh in understanding these acronyms. < 1440805968 440101 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :stalem: not bad, but "that doesn't make sense at all" was the intended reading. < 1440805972 831142 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :fizzie: it dnh hth < 1440805993 289083 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :int-e: please remain consistent with tdh/tdnh twh hand < 1440806003 20223 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :tdnms it was just established.. oh, okay. < 1440806028 202812 :stalem!54dbf5f4@gateway/web/freenode/ip.84.219.245.244 PRIVMSG #esoteric :int-e: ah finally some clarity hah! < 1440806059 21658 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :shachaf: I'm consistently inconsistent. You may recall that I've been complaining about tdh a lot. < 1440806073 180876 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :shachaf: i also don't remember. i'm wondering if my deteriorating memory is karma for making y'all remembering all the acronyms tdnh < 1440806098 68533 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :int-e: i'd ask you to change the meaning of tdms, but the definition must stand < 1440806117 796306 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :iswydt < 1440806139 48079 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :int-e: my mind revulses at letting d mean "doesn't" < 1440806224 718457 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :I remember seeing, possibly in a dream, that you need to sum at least n nth powers to get an nth power < 1440806246 684273 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :oerjan: that doesn't bother me (almost resisting the temptation to abbreviate it to "tdbm") < 1440806255 805590 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric : that doesn't make sense ;-) <-- on the contrary, that makes double sense hth < 1440806302 795453 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :aww, "iswydt" even has an urban dictionary entry < 1440806358 811079 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :int-e: is it about sex < 1440806368 853070 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :... < 1440806370 549333 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :I suppose a proof of that would have Fermat's Last Theorem has a trivial whatdoyoucallit < 1440806376 463178 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :Might begin with c < 1440806377 504728 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :that's actually a good question, it could be. < 1440806380 609268 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :What's that word < 1440806396 350115 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :oerjan: but not really