< 1318982507 736084 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :!perl %t = ('a','b','c','d'); print map {/[ab]/?($_, $t{$_}):()} keys %t < 1318982519 554199 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric ::( < 1318982538 317972 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :EgoBot: WHYYYYYY < 1318982550 140158 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :`run perl -e '%t = ('a','b','c','d'); print map {/[ab]/?($_, $t{$_}):()} keys %t' < 1318982554 320922 :HackEgo!foobar@codu.org PRIVMSG #esoteric :ab < 1318982581 331007 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :`run perl -e '%t = (a=>1,b=>2,c=>3,d=>4); print map {/[ab]/?($_, $t{$_}):()} keys %t' < 1318982583 548990 :HackEgo!foobar@codu.org PRIVMSG #esoteric :a1b2 < 1318982906 863826 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :Perl: rocking concatMap since 1994. < 1318983024 791017 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I'm guessing concatMap was around back in Haskell 1.0 though, right? < 1318983143 243243 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :definitely before 98 < 1318983191 108722 :pikhq_!~pikhq@174-22-150-115.clsp.qwest.net JOIN :#esoteric < 1318983195 333195 :pikhq!~pikhq@174-22-150-30.clsp.qwest.net QUIT :Ping timeout: 256 seconds < 1318983209 469721 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric ::t concatMap < 1318983210 353882 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :forall a b. (a -> [b]) -> [a] -> [b] < 1318983225 365317 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric ::t flatten . map < 1318983226 249749 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : Couldn't match expected type `Tree a' < 1318983226 552021 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : against inferred type `[a1] -> [b]' < 1318983226 698883 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : Probable cause: `map' is applied to too few arguments < 1318983230 957152 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric ::s < 1318983234 616619 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :@hoogle [a] -> [a] < 1318983235 20945 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Prelude cycle :: [a] -> [a] < 1318983235 207489 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Prelude init :: [a] -> [a] < 1318983235 354187 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Prelude reverse :: [a] -> [a] < 1318983246 341845 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :@hoogle [[a]] -> [a] < 1318983246 659911 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Prelude concat :: [[a]] -> [a] < 1318983246 946667 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Data.List concat :: [[a]] -> [a] < 1318983247 93313 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Data.List intercalate :: [a] -> [[a]] -> [a] < 1318983252 132128 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric ::t concat . map < 1318983253 2655 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : Couldn't match expected type `[[a]]' < 1318983253 298676 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : against inferred type `[a1] -> [b]' < 1318983253 445453 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : Probable cause: `map' is applied to too few arguments < 1318983260 820678 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :Madoka-Kaname: note that concatMap is >>= for the list monad. (if you didn't already know...) < 1318983276 717370 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :Well, I know it's flatMap in Scala, but... < 1318983291 554438 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :@pl (\f l -> concat . map f l) < 1318983291 880323 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :((join .) .) . map < 1318983318 214262 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :Madoka-Kaname: that's not how precedence works. < 1318983338 870624 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :@pl (\f -> concat . map f) < 1318983339 135991 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :(=<<) < 1318983343 154355 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :uh < 1318983345 458469 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :oh < 1318983347 722424 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :@pl (\f l -> (concat . map f) l) < 1318983348 43960 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :(=<<) < 1318983360 226719 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :> (`replicateM` "abc") =<< [0..] < 1318983361 142862 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : ["","a","b","c","aa","ab","ac","ba","bb","bc","ca","cb","cc","aaa","aab","a... < 1318983373 58227 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :one of my favorites. < 1318983385 685501 :shachaf!~shachaf@204.109.63.130 PRIVMSG #esoteric :More than filterM (const [True,False])? < 1318983396 113933 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :yes, though that's another good one. < 1318983400 214272 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric ::t replaceM < 1318983401 131676 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Not in scope: `replaceM' < 1318983405 316569 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric ::t replicaeM < 1318983406 298549 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Not in scope: `replicaeM' < 1318983408 438448 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric ::t replicateM < 1318983409 375099 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :forall (m :: * -> *) a. (Monad m) => Int -> m a -> m [a] < 1318983416 887113 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :@src replicateM < 1318983417 164364 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :replicateM n x = sequence (replicate n x) < 1318983465 481130 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :> sequence "abc" < 1318983466 286138 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : Couldn't match expected type `m a' < 1318983466 617670 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : against inferred type `GHC.Types... < 1318983467 872127 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :er < 1318983471 700181 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :> sequence ["abc"] < 1318983474 521210 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : ["a","b","c"] < 1318983476 950360 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :> sequence ["abc","abc"] < 1318983477 824926 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : ["aa","ab","ac","ba","bb","bc","ca","cb","cc"] < 1318983481 507540 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :> sequence ["abc","abc","abc"] < 1318983482 372370 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : ["aaa","aab","aac","aba","abb","abc","aca","acb","acc","baa","bab","bac","b... < 1318983485 482547 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :and so on. < 1318983494 712534 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :> sequence [1..] < 1318983495 554774 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : No instance for (GHC.Show.Show (m [a])) < 1318983495 784613 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : arising from a use of `M69561570... < 1318983498 169239 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :> sequence [[1..]] < 1318983498 955070 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : [[1],[2],[3],[4],[5],[6],[7],[8],[9],[10],[11],[12],[13],[14],[15],[16],[17... < 1318983511 895670 :shachaf!~shachaf@204.109.63.130 PRIVMSG #esoteric :> head $ replicateM 1000000 [0..] < 1318983513 263499 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : *Exception: stack overflow < 1318983513 887641 :shachaf!~shachaf@204.109.63.130 PRIVMSG #esoteric ::-( < 1318983539 434947 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :> replicateM 10 [0..] < 1318983540 313152 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : [[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,1],[0,0,0,0,0,0,0,0,0,2],[0,0,0,0... < 1318983544 972334 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :Madoka-Kaname: do you know what replicate does? < 1318983551 271637 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric ::t replicate < 1318983552 201126 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :forall a. Int -> a -> [a] < 1318983553 212673 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :> replicate 3 4 < 1318983554 78493 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :Yep. < 1318983554 225154 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : [4,4,4] < 1318983593 354145 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :> sequence [[1,2,3],[4,5,6]] < 1318983594 150639 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : [[1,4],[1,5],[1,6],[2,4],[2,5],[2,6],[3,4],[3,5],[3,6]] < 1318983606 112787 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :> sequence [[1,2,3],[4,5,6,7]] < 1318983606 924686 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : [[1,4],[1,5],[1,6],[1,7],[2,4],[2,5],[2,6],[2,7],[3,4],[3,5],[3,6],[3,7]] < 1318983654 735155 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I can't tell which part of (`replicateM` "abc") =<< [0..] is the most clever < 1318983657 863471 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I guess the replicateM... < 1318983701 63488 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :it's a tie between the sequence and replicate... they are both used cleverly < 1318983838 747372 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :Madoka-Kaname: some fun things I've done with that bit of code: http://sprunge.us/gSSO < 1318983873 755514 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :.. < 1318983875 234144 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :=p < 1318984115 310598 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :er unbalance paren on the end of balancedBrackets < 1318984135 388582 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :er, no < 1318984136 747680 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :nevermind :P < 1318984467 708228 :SgeoN1!~AndChat@137.125.152.153 QUIT :Quit: Bye < 1318984929 261682 :ive!~nn@189.179.247.113 QUIT :Ping timeout: 256 seconds < 1318984983 952322 :zzo38!~zzo38@h24-207-49-17.dlt.dccnet.com PRIVMSG #esoteric :Inappropriate Keys Sold Here < 1318986453 203577 :zzo38!~zzo38@h24-207-49-17.dlt.dccnet.com PRIVMSG #esoteric :Don't ever think for one moment that you have won. < 1318986485 609046 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric ::( < 1318987096 41589 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I kind of wish where could be used in expressions < 1318987120 639151 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :with the lowest possible "precedence" < 1318987162 532707 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :but that breaks the translation of where to a let around all of the cases/guards of a function < 1318987224 492865 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :or at least complicates the rules for that < 1318987241 43247 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :as you'd have to distinguish between a "function-level where" as well as an "expression where" < 1318987310 63223 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :and I would really only want that kind of where because it makes lets look nicer when using lambdabot... < 1318987319 443717 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :in any other context there are plenty of functions to append wheres to. < 1318987449 785843 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :maybe lambdabot Haskell could have its own special where. :) < 1318987671 838851 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :CakeProphet: there are also case block wheres < 1318987674 779461 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Bluh, I'm currently wrestling with Haskell... < 1318987688 221114 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :evincar: don't do it. Haskell always wins. < 1318987699 24200 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Static typing isn't really my friend. < 1318987719 768144 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :incidentally hugs does allow such an expression where in interactive expressions < 1318987760 603386 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :evincar: what's wrong? < 1318987807 285442 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :obvious guess 1: needs a fromIntegral < 1318987877 194932 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :possibly needs an explicit type signature somewhere as well. < 1318987891 127582 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :If I knew what was wrong, I would have fixed it. < 1318987892 494627 :zzo38!~zzo38@h24-207-49-17.dlt.dccnet.com PRIVMSG #esoteric :In the penultimate level for Super ASCII MZX Town Part II, some guy gives you 100 torches, 100 points of health, 100 points of ammunition, and a multimeter; none of which will help you in the least bit. Actually, if you are not careful, these items are what causes you to lose < 1318987930 25841 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :evincar: what is GHC complaining about? < 1318987932 997449 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :evincar: well what is the error message :P < 1318987947 398923 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :(last step before asking for full code paste) < 1318987961 102900 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Heh, well first this: http://hpaste.org/52832 is how it was the last time I pasted it. < 1318987978 881531 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :And I get "couldn't match IO Bool against Maybe Bool". < 1318988097 641862 :shachaf!~shachaf@204.109.63.130 PRIVMSG #esoteric :evincar: Static typing absolutely is your friend! < 1318988101 24179 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :what's the type of editorJustResized? < 1318988113 481250 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :EditorState -> Bool < 1318988115 272370 :shachaf!~shachaf@204.109.63.130 PRIVMSG #esoteric :evincar: You have an actual type error in your program; it's being caught at compile-time instead of at runtime, but it's still there. < 1318988128 312509 :shachaf!~shachaf@204.109.63.130 PRIVMSG #esoteric :(In other cases it's not your friend, of course. But IO foo is very different from foo.) < 1318988129 440957 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :evincar: I don't think you need to pattern match currentState then < 1318988145 929957 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :er, maybe you do... < 1318988154 89792 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Yeah, I do. It's a Maybe IO EditorState. < 1318988155 785526 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :in any case justResized is not a Bool. < 1318988160 654475 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Right. < 1318988163 711412 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :That's my problem. < 1318988177 368945 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :evincar: oh. you have Maybe and IO _nested_ there. < 1318988177 904936 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :what's your problem < 1318988190 612953 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :also ahahah what oerjan said < 1318988196 546475 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :the fmap applies only to the Maybe part < 1318988200 930304 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :The problem is that I need a Bool and I have an IO Bool. < 1318988212 686784 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :evincar: sounds like a job for a bind or fmap. < 1318988218 299999 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :But isn't currentState an IO EditorState? < 1318988221 575002 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :oh wait no. < 1318988224 795454 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Because I matched on (Just currentState). < 1318988238 641654 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :sorry i misread < 1318988249 339944 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :evincar: yes you want to either use fmap or >>= or some higher-order construction to access the bool for the second part. < 1318988264 567289 :shachaf!~shachaf@204.109.63.130 PRIVMSG #esoteric :evincar: Here's a Bool: < 1318988265 437901 :shachaf!~shachaf@204.109.63.130 PRIVMSG #esoteric :True < 1318988269 737687 :shachaf!~shachaf@204.109.63.130 PRIVMSG #esoteric :ACTION solves problem. < 1318988278 833173 :shachaf!~shachaf@204.109.63.130 PRIVMSG #esoteric :Here's another one: False < 1318988280 382932 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :shachaf: Thanks, it's my favourite Bool. :) < 1318988280 850671 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :evincar: if currentState is an IO EditorState, Lift the Justs out before the do < 1318988288 150057 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Fuck, I don't want your False. < 1318988295 438468 :shachaf!~shachaf@204.109.63.130 PRIVMSG #esoteric :evincar: That's Pretty Much(*) all the Bools there are. < 1318988304 790641 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Except for FileNotFound. < 1318988315 427 :shachaf!~shachaf@204.109.63.130 PRIVMSG #esoteric :I was thinking of _|_, but that works. < 1318988334 682689 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :evincar: hm i think justResized definitely should be a Bool, there... < 1318988335 259997 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :evincar: oh.... duh < 1318988339 306878 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :evincar: since that do is within the Maybe monad, and you want it within the IO monad?? but it's within the maybe monad?????? because you're doing it wrong. because you didn't do it right. < 1318988353 642135 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :evincar: remove the maybe from the return type, and get rid of the Just? < 1318988357 130798 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Yes, I'm not doing it right and I'm trying to learn how to do it right. < 1318988364 223733 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :it's already partial anyways, no point in propagating the Maybe < 1318988365 541659 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :monqy: ooh that's it! < 1318988387 118621 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :It needs to be a Maybe because processEvent can fail for other kinds of events... < 1318988388 700758 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :man why is this even Maybe (IO ...) < 1318988392 60430 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :oh < 1318988392 560679 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :evincar: start with = Just $ do and remove the Justs on the results :P < 1318988400 675189 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :er < 1318988401 378377 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :oerjan: that's what I suggested earlier!!! < 1318988401 569808 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :evincar: so do you catch the Nothing case? < 1318988409 682533 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Yes, elsewhere. < 1318988411 231495 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :or is that where you got the idea..... < 1318988412 119166 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :ah < 1318988412 504372 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :Just `fmap` do < 1318988419 5988 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :because I got my idea from your idea < 1318988423 182311 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :that it was Maybe (IO ...) < 1318988426 564431 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :(good ideas) < 1318988428 988231 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :lol < 1318988430 324769 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :evincar: * Just `fmap` do < 1318988440 80253 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I don't think that's what he wants. < 1318988440 473905 :shachaf!~shachaf@204.109.63.130 PRIVMSG #esoteric :Just <$> do < 1318988443 186889 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :wait < 1318988449 181586 :shachaf!~shachaf@204.109.63.130 PRIVMSG #esoteric :fmap fmap fmap fmap fmap < 1318988456 290775 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :won't Just <$> do make a IO (Maybe ...) < 1318988459 685038 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :yep < 1318988460 610214 :shachaf!~shachaf@204.109.63.130 PRIVMSG #esoteric :Yes. < 1318988472 471545 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :maybe this is what he really wants and he doesn't know what's good for him < 1318988478 815721 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :maybe. < 1318988488 445825 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric := Just $ do should type, at least, i think < 1318988500 740110 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :Just $ do ... will type yes. < 1318988527 522254 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Okay, so factoring out the Just is a good thing at least. < 1318988555 332697 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I'm sure there's a better way to handle the Maybe stuff though. < 1318988560 247171 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :probably with something from Data.Maybe < 1318988576 242165 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Alright, works. < 1318988596 53014 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :evincar: you're not only factoring out the Just but making it type correctly. :P < 1318988600 83588 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Yeah, I was gonna change it to MaybeT when I figured out some stuff. < 1318988613 411292 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :@hoogle MaybeT < 1318988613 778701 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Data.Maybe maybeToList :: Maybe a -> [a] < 1318988634 464479 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I don't think MaybeT is standard actually. < 1318988638 915463 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :but is in hackage < 1318988649 183348 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :It's in Control.Monad.Maybe. And yeah, not standard. < 1318988650 650646 :shachaf!~shachaf@204.109.63.130 PRIVMSG #esoteric :MaybeT IO a ~ IO (Maybe a) < 1318988661 57287 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :shachaf, so observant. < 1318988675 638585 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Oh. Then that's probably not what I'm actually going for. I dunno. < 1318988676 723005 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :most observant, observantest < 1318988687 581848 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :for what are you going < 1318988728 646038 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :evincar: MaybeT is like Maybe except it's the transformer... so probably is what you want < 1318988731 808359 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :if you want a transformer. < 1318988738 651478 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :don't like shachaf confuse you. :P < 1318988741 273482 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Well, Maybe (IO EditorState) is "maybe you have an editor state IO, and maybe you don't". < 1318988748 976683 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :evincar: i'd say it's pretty likely you want something closer to -> IO (Maybe EditorState) than -> Maybe (IO EditorState) < 1318988750 973795 :shachaf!~shachaf@204.109.63.130 PRIVMSG #esoteric :CakeProphet: Huh? I wasn't bein' confusin', was I? < 1318988754 783857 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Whereas IO (Maybe EditorState) is "you have an IO maybe editorstate maybe not". < 1318988765 194468 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :shachaf: well, for some interpretations of "~" :P < 1318988769 95241 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :I guess it doesn't really matter. < 1318988784 224056 :shachaf!~shachaf@204.109.63.130 PRIVMSG #esoteric :CakeProphet: Oh, I didn't mean Haskell ~. I meant "isomorphic". < 1318988797 675354 :shachaf!~shachaf@204.109.63.130 PRIVMSG #esoteric :Except for the implementation of Monad, I guess. < 1318988798 76337 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :shachaf: IO (Maybe ...) might be a little more convenient to deal with actually. < 1318988811 194920 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :er < 1318988813 463719 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :evincar: ^^^ < 1318988822 926032 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :stop having equal-length names. < 1318988869 46797 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :evincar: if you want the question of whether you have Nothing or Just ... to depend on IO results, then you probably need IO (Maybe ...) < 1318988870 385904 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :evincar: anyway you don't need maybe in that function at all < 1318988895 385519 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :you're only matching the Just case, and you're always returning Just ... < 1318988901 337441 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :No, there are other cases. < 1318988911 615851 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :oh < 1318988911 762417 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :That's just one event. < 1318988916 450067 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :event? < 1318988921 355101 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :and also if you want the actually result IO to be performed in there... < 1318988926 480855 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :right that too < 1318988934 363295 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :"Nothing" means "end the application", while "Just someState" means "move on to someState". < 1318988961 540410 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :there are better ways to do that < 1318988964 638346 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :without using maybe < 1318988967 90680 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :hint: use io < 1318988991 908333 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :error is good if you don't mind killing everything. :P < 1318989000 563751 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :don't use error....... < 1318989001 794968 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :I mind. :P < 1318989004 37571 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :otherwise IO is good. < 1318989038 849011 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :exceptions are good. < 1318989082 934748 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Right now I have run (Just currentState) = do ...; events <- ...; let newState = processEvents events (Just currentState); run newState < 1318989092 274962 :shachaf!~shachaf@204.109.63.130 PRIVMSG #esoteric :monqy: No, Maybe is great for that? < 1318989096 190156 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :never < 1318989098 374847 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :And run Nothing = return () < 1318989102 330630 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :depends on what you want. < 1318989115 680726 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :shachaf: i meant relative to the way evincar was doing it < 1318989122 494327 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :imo it'd be better to use IO (Maybe ...) < 1318989128 206910 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :This just seemed like a straightforward way of going about it. < 1318989133 578347 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :note you could also do something like when (isJust maybeState) ... < 1318989138 840527 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :instead of the case. < 1318989149 520120 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :@src when < 1318989149 880376 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :when p s = if p then s else return () < 1318989158 765485 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :or wait < 1318989159 769600 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :uhhh < 1318989167 797976 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :yeah?? depends on what you're doing elsewhere < 1318989183 415549 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :you could be doing something really whack!! < 1318989186 307775 :shachaf!~shachaf@204.109.63.130 PRIVMSG #esoteric :IO is evil. < 1318989193 108770 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :IO is essential. < 1318989193 655352 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :So anyway, this isn't a super-important program. < 1318989216 223330 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :I'm mainly writing it to learn how the SDL bindings differ in Haskell from C. < 1318989223 849497 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :shachaf: yeah but he's using it anyway so unless he refactors that too... < 1318989232 474677 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :evincar: you should check out the stuff in Data.Maybe, also Control.Monad has some good conditional if-statement-like things. < 1318989243 766375 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :CakeProphet: I'll look into it. < 1318989253 980224 :shachaf!~shachaf@204.109.63.130 PRIVMSG #esoteric :Control.Monad.Loops < 1318989259 202649 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :fromMaybe in particular is good. < 1318989260 701253 :shachaf!~shachaf@204.109.63.130 PRIVMSG #esoteric :Control.Monad.Cont < 1318989270 901859 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :> fromMaybe 3 Nothing < 1318989271 888772 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : 3 < 1318989275 308167 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :> fromMaybe 3 (Just 4) < 1318989276 125205 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : 4 < 1318989283 521358 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :maybe is good too < 1318989285 677318 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric ::t maybe < 1318989286 654555 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :forall b a. b -> (a -> b) -> Maybe a -> b < 1318989287 903327 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :yes more general. < 1318989292 317717 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :One program that's given me no trouble, and has been a lot of fun, is writing a symphony using Data.WAVE. < 1318989331 651018 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Just generating some samples, writing them to a file, and seeing what I can do. < 1318989339 163720 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :I'd love to write a mixer in Haskell. < 1318989344 461251 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :It seems like the perfect language for it. < 1318989347 146698 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :combined with things like when/unless in IO and you've got pretty sane error-checking. < 1318989349 868885 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :evincar: oh? < 1318989361 684583 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :but you'd want the type IO (Maybe a) < 1318989396 669596 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :I'll see what restructuring I can do... < 1318989406 140608 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :don't restructure in bad ways < 1318989407 838397 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :that would be bad < 1318989418 910617 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :That's what git is for. < 1318989433 329111 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :thanks git < 1318989440 106174 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :monqy: would MonadIO be a good idea? < 1318989447 578437 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :if he did Maybe (IO ...)? < 1318989452 726646 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :really he should flip them... < 1318989468 397725 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :I'll keep you folk posted. :P < 1318989468 996600 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :who knows < 1318989479 652511 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :actually there's no MonadIO instance for Maybe by default apparently. < 1318989492 830306 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :we don't know because we don't know his stuff < 1318989503 507519 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :you.... don't know about MonadIO? < 1318989505 536634 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :So I was thinking today about writing a concatenative language with dependent typing. < 1318989512 588372 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :It seems like a bad idea. < 1318989525 594771 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :CakeProphet: i know monadio but not if it would be a good idea for him to use it < 1318989533 605285 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :CakeProphet: and i have a feeling he doesn't know either < 1318989546 872033 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :evincar: hmmmmm? < 1318989549 797191 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :evincar: i am somewhat worried about whether your current design ever actually _runs_ currentState. it seems from what you've said so far that you are only building up a bigger IO action, never to run it, and then maybe even discarding it when hitting run Nothing. < 1318989551 367395 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Yep, pretty new to Haskell. < 1318989562 59439 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :evincar: iss that that old language of yours? < 1318989589 524562 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :or is that the other one < 1318989590 195268 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :oerjan: The program seems to be working...well, not for resizing, actually. But for all of the non-IO events. Ugh. < 1318989590 537039 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :or both < 1318989593 998548 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :oerjan: oh right. good point. < 1318989597 612053 :shachaf!~shachaf@204.109.63.130 PRIVMSG #esoteric :CakeProphet: How would there be an instance Maybe MonadIO? < 1318989601 300684 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :monqy: I have lots of language ideas... < 1318989605 244571 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :shachaf: er.... magic. < 1318989606 771483 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Most of them I don't even work on. < 1318989615 853647 :shachaf!~shachaf@204.109.63.130 PRIVMSG #esoteric :CakeProphet: (Other than the flipped arguments.) < 1318989630 279183 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :evincar: well you talked a bunch about concatenative and dependent typing < 1318989633 242221 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :shachaf: I didn't think about that. :P < 1318989662 560625 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :oerjan: it depends on whether or not he uses >>= with Maybe. < 1318989667 324982 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :monqy: Oh, those were two separate projects. I'm doing research involving dependent typing, and my most recent hobby language is concatenative. < 1318989669 488913 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :in the paste we saw he isn't. < 1318989695 469611 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :but any m >>= returnsNothingFunction < 1318989698 399154 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :discards everything. < 1318989703 787093 :tiffany!~kawaii@fl-76-3-21-30.dhcp.embarqhsd.net QUIT :Quit: Leaving < 1318989746 745797 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :evincar: yeah IO (Maybe a) is a good idea you should switch to that immediately. < 1318989817 874977 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Alright, will do. < 1318989929 758892 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :evincar: i think as a general rule your argument shouldn't be of type IO EditorState if you want it to already have run by that point. < 1318990029 229505 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Makes sense. < 1318990048 603769 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :also, it seems to me that when run calls processEvent, you already know it's a Just, so you don't really need processEvent's argument to be a Maybe either. < 1318990096 769233 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :oerjan: i brought this up but then he said there are more cases so < 1318990152 755489 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :There's a function "processEvents" that calls processEvent for each event in the queue. < 1318990170 402020 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :It passes the state returned by the last call to processEvent. < 1318990174 293347 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :oh. < 1318990188 21546 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :So...yeah. < 1318990194 31884 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Context is important. < 1318990203 756283 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :i missed the s :P < 1318990215 891298 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :argument should be of type Maybe whatever not Maybe (IO whatever) i think?? that would be better?? help < 1318990226 375173 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :monqy: i think so < 1318990292 767585 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Okay. But to call setVideoMode in response to a VideoResize event, I need the IO. Somewhere. < 1318990296 763412 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Presumably outside the Maybe. < 1318990299 610023 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :evincar: although does processEvent _ Nothing do anything other than return () ? < 1318990309 510199 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :oerjan: Nope. < 1318990316 243187 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :So I could catch that earlier. < 1318990318 222549 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Good call. < 1318990364 452858 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :hm... < 1318990375 460055 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :evincar: yeah always remove Maybes as soon as they're no longer needed. < 1318990391 585691 :cheater_!~cheater@ip-2-205-225-248.web.vodafone.de QUIT :Remote host closed the connection < 1318990406 117880 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :evincar: typically the monad-wrapped thingy goes only on the final return value of a functiony thingy < 1318990413 731028 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :@hoogle [a -> m (Maybe a)] -> a -> m (Maybe a) < 1318990414 162037 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :No results found < 1318990420 152016 :cheater_!~cheater@ip-2-205-225-248.web.vodafone.de JOIN :#esoteric < 1318990432 288091 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :is there some function which does that? < 1318990441 806876 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :if it's in one of the arguments (and not as the return of a function which is an argument) it's likely you're doing something wrong < 1318990446 627100 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :hm < 1318990489 315015 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :oerjan: how does it determine which function in the list to call? < 1318990500 791747 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :by whether or not the inner Maybe is Just/Nothing? < 1318990515 383205 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :CakeProphet: it does them in order, as long as none return Nothing... < 1318990523 560533 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :ah < 1318990529 521853 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :that's like...... < 1318990541 550228 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :an fmap and a sequence... in some kind of combination. < 1318990548 88478 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :sort of. < 1318990560 262473 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :or like msum < 1318990564 411049 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :... < 1318990582 802348 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :fmap and sequence? you mean like mapM? < 1318990602 679020 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :blah ls a = msum $ fmap ($a) ls < 1318990604 53437 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :or something < 1318990604 241794 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :(or traverse if you want that) < 1318990612 693239 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric ::t msum < 1318990613 685998 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :forall (m :: * -> *) a. (MonadPlus m) => [m a] -> m a < 1318990617 784162 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :er no < 1318990618 947406 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :well it's essentially sequence with the right Monad wrapping < 1318990622 345345 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :it's all nested and stuff. < 1318990634 337803 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :StateT a (MaybeT m) < 1318990657 873390 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric ::t sequence < 1318990658 781443 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :forall (m :: * -> *) a. (Monad m) => [m a] -> m [a] < 1318990662 740349 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :hm oh... < 1318990667 604129 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric ::t unfoldrM < 1318990668 468983 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Not in scope: `unfoldrM' < 1318990676 196584 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :@hoogle unfoldr < 1318990676 471425 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Data.ByteString unfoldr :: (a -> Maybe (Word8, a)) -> a -> ByteString < 1318990676 816660 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Data.List unfoldr :: (b -> Maybe (a, b)) -> b -> [a] < 1318990676 816853 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Data.ByteString.Char8 unfoldr :: (a -> Maybe (Char, a)) -> a -> ByteString < 1318990684 739118 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :bah < 1318990822 834242 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :it's also nearly foldM, i think < 1318990956 951500 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric ::t foldM < 1318990957 873958 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :forall a b (m :: * -> *). (Monad m) => (a -> b -> m a) -> a -> [b] -> m a < 1318990990 636021 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :if we had processEvent :: EditorState -> SDL.Event -> MaybeT IO EditorState < 1318991015 898706 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :then we could simply have processEvents = foldM processEvent < 1318991100 797015 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :processEvents :: EditorState -> [SDL.Event] -> MaybeT IO EditorState < 1318991106 671204 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Currently it's just processEvents (e:es) currentState = do newState ← processEvent e currentState; processEvents es (Just newState) < 1318991114 987879 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Plus the cases for Nothing and []. < 1318991125 141202 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Could definitely be cleaned up. :P < 1318991136 324024 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :well that won't type for one thing < 1318991165 505577 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Eh? < 1318991168 873805 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :It's [SDL.Event] -> Maybe (IO EditorState) -> Maybe (IO EditorState) < 1318991192 401326 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :well in that case you'd want (Just currentState) in the argument < 1318991238 191342 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Well, when I change it, yeah, I'll fix up where the Maybes go. < 1318991697 784546 :cheater_!~cheater@ip-2-205-225-248.web.vodafone.de QUIT :Read error: Connection reset by peer < 1318991770 226223 :cheater_!~cheater@ip-2-205-225-248.web.vodafone.de JOIN :#esoteric < 1318992204 246954 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :So the fire alarm went off at 2:30 last night. < 1318992232 277186 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :I was in such a deep sleep that I was mentally wrong till midday. < 1318992240 546701 :pikhq_!~pikhq@174-22-150-115.clsp.qwest.net PRIVMSG #esoteric :Malaria vaccine! Praise be to science. < 1318992251 597482 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Like, waking up so suddenly was...oh, great. < 1318992274 29319 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :What hath science wrought? A goddamn malaria vaccine, that's what, and you're welcome. < 1318992301 759972 :pikhq_!~pikhq@174-22-150-115.clsp.qwest.net PRIVMSG #esoteric :Unfortunately, it appears to only have 50% efficacy. But hey, it's a goddamn malaria vaccine that's done with clinical trials. < 1318992303 983051 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Anyway, long story short, for a while I couldn't see or remember faces. < 1318992324 139004 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Like, I looked at my friend, and her face was just not there. < 1318992329 378139 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :And I couldn't remember anybody's face. < 1318992355 335960 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Just some weird perceptual issues...it wore off. < 1318994170 687902 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :Apparently one of my YouTube subscribers saw me the other day and didn't say anything. < 1318994175 547638 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :She didn't want to be creepy... < 1318994185 797477 :evincar!~jon@acd41302879.wireless.rit.edu PRIVMSG #esoteric :...and yet somehow managed it. < 1318994292 200573 :evincar!~jon@acd41302879.wireless.rit.edu QUIT :Quit: Food and sleep. < 1318994299 750181 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :help the only good desktop environment is doing things I'm not entirely comfortable with. < 1318994383 567152 :pikhq_!~pikhq@174-22-150-115.clsp.qwest.net PRIVMSG #esoteric :Which one is that? < 1318994455 493480 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :@, of course. he is not comfortable with it not existing. < 1318994455 780182 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Maybe you meant: . ? @ v < 1318994486 193327 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :pikhq_: Gnome. Specifically the transition from 2 to 3. the only desktop environment I know about that is good, and now they're CHANGING THINGS. < 1318994491 584364 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :ACTION is scared. < 1318994514 513294 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :the best desktop environment is no desktop environment < 1318994519 334290 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :monqy wisdom courtesy of monqy < 1318994531 264840 :pikhq_!~pikhq@174-22-150-115.clsp.qwest.net PRIVMSG #esoteric :CakeProphet: I suggest XFCE. < 1318994537 175353 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :tautological monqy is tautological < 1318994549 453113 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :pikhq_: not as configurable, but similar interface I guess. < 1318994552 260067 :pikhq_!~pikhq@174-22-150-115.clsp.qwest.net PRIVMSG #esoteric :It ain't shitting rainbows, but it exhibits suck in limited ways. < 1318994558 173728 :oerjan!oerjan@tyrell.nvg.ntnu.no PRIVMSG #esoteric :wait, should that be paradoxical < 1318994571 59473 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :tautological monqy is paradoxical < 1318994571 206677 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :oerjan: yes it's paradoxical sort of. < 1318994572 823639 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :what now < 1318994587 965942 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :but definitely not tautological. < 1318994592 59253 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :tautological is tautological. < 1318994597 3539 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :whereas paradoxical is not paradoxical. < 1318994795 305202 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :perhaps during Christmas break < 1318994798 212854 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :when I have time to do such things < 1318994800 905677 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I'll switch to xmonad? < 1318994809 329942 :oerjan!oerjan@tyrell.nvg.ntnu.no QUIT :Quit: Sleepological < 1318994898 668405 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :oh my god, what has happened to me < 1318994903 227381 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I'm reading a Gnome 3 vs Unity flamewar < 1318994904 367742 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :WHYYYY < 1318994957 265619 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :is it good < 1318995057 819853 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :..no < 1318995076 438342 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :aww < 1318995086 300466 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :is openSUSE good? < 1318995095 19566 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :who knows < 1318995113 433614 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I need someone to formulate opinions for me. I don't have time for this crap. < 1318995113 580259 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :& why do you ask < 1318995120 970519 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I am considering switching distros < 1318995127 412013 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :but I guess Ubuntu + xmonad would be fine. < 1318995181 229769 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :but maybe Debian is a better distro when going with non-standard options? I really don't know. < 1318995223 428977 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :xmonad works for me (good stuff). i don't care so much about distros so long as they don't get in my way or impose things I don't like < 1318995239 487098 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :also I'm pretty annoyed that a lot of Ubuntu packages are out of date. Though I doubt Debian fixes this. < 1318995262 364870 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :there's a rolling debian right < 1318995264 239777 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :would that fix it < 1318995281 551284 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I have no idea. < 1318995358 132634 :ive!~nn@189.179.247.113 JOIN :#esoteric < 1318995463 745800 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :monqy: what do you use? < 1318995525 89944 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :im a bad person to ask about that < 1318995538 137617 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :because i didn't really bother comparing things < 1318995542 139317 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :or anything < 1318995615 453229 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :went archlinux. it works well enough but sometimes i feel maybe i should have tried more things. might not work for other people? who knows. < 1318995746 426130 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :i'd probably be fine with debian testing or something. probably not so fine with ubuntu. ubuntu seems like one of those things i wouldn't like. < 1318995826 633437 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :monqy: how often do you have to manually install things? < 1318995859 183350 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :maybe once or twice ever < 1318995898 424910 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :oh and of course for things that aren't wellknown at all and wouldn't be on any package managers at all or anything really tiny things < 1318995936 141186 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :but usuaully they're either int he normal packagerepositorys or aur but aur kind of makes me feel bad too but less than doing things manually < 1318995945 224849 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :well to give you some examples neither perl nor GHC are up-to-date in Ubuntu repos < 1318995952 827310 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :ahh < 1318995957 511925 :Gregor!foobar@codu.org PRIVMSG #esoteric :Anybody have recommendations in the area of custom-built (but not DIY) PCs w/ no OS (or a free OS)? < 1318995985 202065 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :archlinux is usually pretty good about up to date packages i think? but recently it's been kind of bad about ghc. haven't checked in a while though. < 1318996107 863657 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :yeah it's still 7.0.3 :( been flagged out of date for months now < 1318996130 172645 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :nearly four months is that < 1318996132 536223 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :im bad at months < 1318996136 752064 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :and numbers < 1318996613 194736 :SimonRC!~sc@fof.durge.org QUIT :Ping timeout: 252 seconds < 1318997361 732393 :SimonRC!~sc@fof.durge.org JOIN :#esoteric < 1318998797 466946 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :monqy: I'm bad at time < 1318999459 965689 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :me too < 1319001076 831630 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :maybe..... < 1319001080 501758 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :maybe I should try KDE? < 1319001962 148178 :ive!~nn@189.179.247.113 QUIT :Ping timeout: 245 seconds < 1319002183 285791 :pikhq_!~pikhq@174-22-150-115.clsp.qwest.net PRIVMSG #esoteric :Gregor: DIY is easy. :P < 1319002207 172205 :sebbu!~sebbu@unaffiliated/sebbu QUIT :Read error: Connection reset by peer < 1319002262 631812 :ser163!~root@218.201.113.18 JOIN :#esoteric < 1319002408 411616 :ser163!~root@218.201.113.18 PART :#esoteric < 1319002436 19729 :sebbu!~sebbu@unaffiliated/sebbu JOIN :#esoteric < 1319002876 178481 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :monqy: can you make xmonad look fancy? < 1319002901 653473 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I'm a sucker for fancy things (that don't have shitty interfaces. see: most fancy looking desktop environments) < 1319002923 815729 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :fancy? what's taht < 1319002950 10797 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I suppose it doesn't matter. < 1319002953 42533 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :you probably can make it fancy but < 1319002955 349177 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :why would you < 1319003007 369516 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :because oooooh aaaaaah < 1319003020 418653 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :???? < 1319003023 409831 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :what does fancy even mean < 1319003036 704850 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :monqy is funny confused by such simple words. < 1319003063 524064 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :what do you want < 1319003067 223005 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :and why < 1319003073 509189 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :hmmm < 1319003081 653212 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I guess something similar to gnome-panel < 1319003090 840330 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :as that is what I like about gnome. < 1319003109 943633 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :specifically being able to have cpu usage / memory / network / disk usage meters < 1319003123 904520 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :and notifications for some programs are nice but not necessary < 1319003128 741654 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :like IM and Skype and stuff. < 1319003142 331756 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :you can do panely things if you get something external to do them < 1319003156 812893 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :such as.... gnome-panel? < 1319003161 490163 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :monqy: can you make my life look fancy? < 1319003163 746407 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :monqy: halp < 1319003166 908566 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :help < 1319003265 693867 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :CakeProphet: i don't know if you can get gnome panel to work!! but you can use xmonad as a window manager within destkop environments if you want desktop environments but why do you want desktop enviornments < 1319003286 163680 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I don't < 1319003313 837650 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I'll try xmonad out during Christmas break when I'm tinkering with my system and if I find it easy to use I might start using it. < 1319003347 908727 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I doubt I'll want many features from gnome if I do switch. I do like having CPU, memory, network, and disk meters < 1319003350 946149 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :very handy. < 1319003385 17020 :SimonRC!~sc@fof.durge.org QUIT :Ping timeout: 260 seconds < 1319003391 741662 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :well you wouldn't be getting those from xmonad you'd be getting those from something else you'd hook up to xmonad < 1319003423 578945 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I understand that much. < 1319003451 717973 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :do you use a mouse, at all? < 1319003584 278326 :nooga!~nooga@maverick.aircity.pl JOIN :#esoteric < 1319003585 456528 :Ngevd!~Taneb@2.99.90.255 JOIN :#esoteric < 1319003746 20525 :SimonRC!~sc@fof.durge.org JOIN :#esoteric < 1319004149 384085 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :You can have a gnome-panel running too; that's what I do. < 1319004157 210593 :ive!~nn@189.179.247.113 JOIN :#esoteric < 1319004158 605237 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :Hello! < 1319004163 352039 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Though mostly to hold the indicator-applet thingies. < 1319004229 304478 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Quite a lot of people use xmobar or dzen2 to stuff their screens full of all kinds of custom gadgets. (I have a set of dzen2 panels as workspace-listers.) < 1319004766 105338 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :(Set of == one per screen; because of getting used to Awesome before XMonad, I do the IndependentScreens thing to give each screen a separate set of workspaces. (The XMonad default is to have a shared set of workspaces, with each screen showing one; and then if you try to switch to the one visible on another screen, it swaps those two instead.)) < 1319004959 986708 :SimonRC!~sc@fof.durge.org QUIT :Ping timeout: 260 seconds < 1319004984 370188 :SimonRC!~sc@fof.durge.org JOIN :#esoteric < 1319004989 162135 :ive!~nn@189.179.247.113 QUIT :Ping timeout: 256 seconds < 1319005209 457370 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :What is happening in the world of esoteric programming? < 1319005274 316254 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :i dunno < 1319005279 53893 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :check the recent changes on the wiki < 1319005322 550692 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Today's piece of trivia: Commodore wanted their 1660 model modem to be able to do tone dialing (in addition to pulse), but didn't want to bother building that in; so they took the previous model (1650), added a cable from the C64/C128 audio output to the modem, and made it generate the DTMF tones using the SID sound chip. < 1319005554 78218 :pikhq_!~pikhq@174-22-150-115.clsp.qwest.net PRIVMSG #esoteric :How Commodore-like of them. < 1319005740 129481 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Best article: http://en.wikipedia.org/wiki/Creative_Micro_Designs "In July of that year, production and sale of several of their products was taken over by Click Here Software Co. which as of 2008 is no longer fulfilling orders, due to an expired distribution license and his shop roof has a major leak." < 1319005926 410789 :ive!~nn@189.179.247.113 JOIN :#esoteric < 1319007187 497329 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I'm still using one workspace all the time. < 1319007197 144782 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :haven't gotten into the habit of using the four that I have set. < 1319007208 199558 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :same here < 1319007212 118448 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :i used to use them all < 1319007217 312894 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :and then i lost the habit < 1319007316 260020 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :oh look I just found the tiling options in gnome < 1319007322 228547 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :ctrl+alt+numpadkey < 1319008464 301825 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net QUIT :Quit: hello < 1319008745 336991 :GreaseMonkey!~gm@unaffiliated/greasemonkey QUIT :Read error: Connection reset by peer < 1319008826 656953 :GreaseMonkey!~gm@121-74-65-236.telstraclear.net JOIN :#esoteric < 1319008827 383688 :GreaseMonkey!~gm@121-74-65-236.telstraclear.net QUIT :Changing host < 1319008827 530445 :GreaseMonkey!~gm@unaffiliated/greasemonkey JOIN :#esoteric < 1319010914 411316 :cheater_!~cheater@ip-2-205-225-248.web.vodafone.de QUIT :Ping timeout: 260 seconds < 1319010936 467937 :Sgeo|web!ad034d00@gateway/web/freenode/ip.173.3.77.0 JOIN :#esoteric < 1319010941 380328 :Sgeo|web!ad034d00@gateway/web/freenode/ip.173.3.77.0 PRIVMSG #esoteric :> succ `id` 5 < 1319010942 337851 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : 6 < 1319011080 28219 :cheater_!~cheater@ip-2-205-225-248.web.vodafone.de JOIN :#esoteric < 1319011897 248722 :ive!~nn@189.179.247.113 QUIT :Quit: leaving < 1319013444 616727 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :Sgeo|web: -gasp- < 1319013494 483209 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :> (+) `id` 2 `id` 2 < 1319013495 310492 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : 4 < 1319013605 384645 :Sgeo|web!ad034d00@gateway/web/freenode/ip.173.3.77.0 PRIVMSG #esoteric :Is there a more ... conventional... infixl apply operator? < 1319013725 219485 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :yes, spaces. < 1319013828 948821 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :or make your own. < 1319014275 277833 :myndzi!myndzi@c-67-168-184-168.hsd1.wa.comcast.net QUIT :Ping timeout: 240 seconds < 1319015753 536003 :myndzi!myndzi@c-67-168-184-168.hsd1.wa.comcast.net JOIN :#esoteric < 1319018796 67390 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :`log Stephen Colbert < 1319018800 195625 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :`log Stephen Colbert < 1319018801 81613 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :`log Stephen Colbert < 1319018801 738461 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :`log Stephen Colbert < 1319018833 472981 :HackEgo!foobar@codu.org PRIVMSG #esoteric :No output. < 1319018833 692547 :HackEgo!foobar@codu.org PRIVMSG #esoteric :No output. < 1319018833 839281 :HackEgo!foobar@codu.org PRIVMSG #esoteric :No output. < 1319018844 330630 :HackEgo!foobar@codu.org PRIVMSG #esoteric :2011-10-19.txt:10:06:36: `log Stephen Colbert < 1319018897 137354 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :`log (?i)stephen colbert < 1319018902 872143 :HackEgo!foobar@codu.org PRIVMSG #esoteric :No output. < 1319018907 436110 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :nonsense < 1319019565 507074 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :there should be a way to apply poisons to weapons/ammo in df < 1319020820 140984 :derdon!~derdon@p5DE8AF49.dip.t-dialin.net JOIN :#esoteric < 1319020987 469635 :Gregor!foobar@codu.org PRIVMSG #esoteric : Gregor: DIY is easy. :P < 1319020994 735513 :Gregor!foobar@codu.org PRIVMSG #esoteric :I have built every computer I've used since I was 12. < 1319021001 10348 :Gregor!foobar@codu.org PRIVMSG #esoteric :My policy is now "fuck DIY" < 1319021139 408308 :GreaseMonkey!~gm@unaffiliated/greasemonkey QUIT :Quit: The Other Game < 1319021275 302888 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :CakeProphet: `log is already case-insensitive (it's egrep -i -- "$1") by default, and probably doesn't do (?i). < 1319023973 493718 :derdon!~derdon@p5DE8AF49.dip.t-dialin.net QUIT :Remote host closed the connection < 1319023987 603655 :Slereah_!~butt@ANantes-259-1-154-148.w90-49.abo.wanadoo.fr QUIT :Ping timeout: 245 seconds < 1319024231 96610 :zzo38!~zzo38@h24-207-49-17.dlt.dccnet.com QUIT :Remote host closed the connection < 1319024815 397944 :Patashu!~Patashu@c122-106-155-219.carlnfd1.nsw.optusnet.com.au QUIT :Quit: MSN: Patashu@hotmail.com , Gmail: Patashu0@gmail.com , AIM: Patashu0 , YIM: patashu2 , Skype: patashu0 . < 1319025027 993226 :Slereah_!~butt@ANantes-259-1-154-148.w90-49.abo.wanadoo.fr JOIN :#esoteric < 1319025484 41183 :oerjan!oerjan@tyrell.nvg.ntnu.no JOIN :#esoteric < 1319025816 866038 :hagb4rd!~perdito@koln-4d0b7ec5.pool.mediaWays.net JOIN :#esoteric < 1319025820 744854 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :http://whotookspaz.org/~anmaster/tmp/emu10k1.png <-- crazy mixer controls for my sound card. < 1319025837 409231 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :(stitched multiple screenshots, because this is too wide for my monitor...) < 1319026018 883568 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake QUIT :Quit: Changing server < 1319026214 853165 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake JOIN :#esoteric < 1319026646 867088 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Quite a lot of identical-looking names there. < 1319026817 270992 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Vorpal: Compare: http://users.ics.tkk.fi/htkallas/bt878.png < 1319026882 582478 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :(Okay, in "All" mode it's got a total of five.) < 1319027709 336768 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :fizzie: heh < 1319027726 353827 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :fizzie: anyway that is playback. Why does it have capture boost in playback? < 1319027737 294353 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :and why nothing playback related!? < 1319027798 463022 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :fizzie: anyway I think ALSA cut some names short in my mixer screenshot. And there is one Wave for playback and one for capture. Both named Wave < 1319027840 438911 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :amixer | grep '^[^ ]' gives slightly longer names. < 1319027872 861031 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :It's an old analog TV card, which is why it doesn't have any playback controls. Not sure what capture boost is doing there, though. < 1319027952 224116 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :The capture side has a 0-100 "Capture" volume control, and three sources ("FM", "Mic/Line", "TV Tuner") with no actual controls, but of which you can pick one. < 1319027963 531452 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :that amixer command just list one of the Wave controls < 1319028130 599980 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Yeah, I think it groups them. < 1319028135 324817 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :fizzie: anyway this is what I get for each card: http://sprunge.us/MFID < 1319028138 93552 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :wow there are a lot of broken links on Wikipedia < 1319028209 592042 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I bet if you took out all of the unsources material on Wikipedia it would be at least 3/4 the size. < 1319028213 253310 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :*unsourced < 1319028236 460027 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :fizzie: card 0 is some on board intel HD audio thingy, card 1 is the sb live, and card 2 is some sort of hdmi audio thingy my GPU provides < 1319028377 638386 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Yeah, it groups; if you don't grep, there's stuff like < 1319028380 110063 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Simple mixer control 'IEC958',0 < 1319028380 257557 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric : Capabilities: pswitch pswitch-joined cswitch cswitch-joined penum < 1319028388 928763 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :That's p-as-in-playback and c-as-in-capture both. < 1319028466 697045 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :I have an almost identical list on the motherboard-integrated thing, except I don't have "Auto-Mute Mode" or "Rear Mic"/"Rear Mic Boost", but I do have a "Channel Mode" selector that can be switched between "6ch" and "8ch". < 1319028495 284130 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :("Card: HDA ATI SB, chip: Realtek ALC888".) < 1319028520 400703 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Weird, the HDMI output has disappeared. < 1319028551 464907 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Oh, right, I've disabled the motherboard-integrated graphics thing, and the GF7600 only has 2*DVI. < 1319028661 298034 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :I seem to recall that the USB audio stick I have had all kinds of outputs as far as the mixer saw, which is interesting since it only has two holes in it, physically. (One does combined 3.5mm headphone/line out / optical S/PDIF out, and the other is a mic in.) < 1319028904 401555 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :fizzie: imy GPU has one digital-only DVI and one digital-and-analogue DVI. And then it also has one HDMI and one DisplayPort < 1319028910 694254 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :my* < 1319028977 2979 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :IIRC, the motherboard-integrated chip has the whole triplet of VGA, DVI and HDMI, and of those only one can be active at a time. < 1319029156 832570 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :I don't suppose your card can do triplehead-on-DVI+DVI+HDMI either? I think ATI's EyeFinity is strictly limited so that in triplehead configurations, one of the three monitors must be DisplayPort, and specifically active DisplayPort, not just using a passive adapter. < 1319029176 778370 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :At least officially, anyway. < 1319029384 307285 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :(The hardware can only generate two TMDS (i.e. DVI/HDMI) signals simultaneously, so the third connection must be a real DP link, not the "Dual mode" push-TMDS-through-the-pins thing.) < 1319029440 830923 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :I was almost considering swapping a new GPU to the old desktop box for proper third-monitor support, but none of my monitors do DisplayPort, and active DP adapter cost absurdly much. < 1319029879 224165 :oerjan!oerjan@tyrell.nvg.ntnu.no QUIT :Quit: leaving < 1319030763 931341 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :"Meyer's supporters continue to claim that he was assassinated by 'Big Oil', Arab death squads, Belgian assassins, or the US Government in order to suppress his inventions." < 1319030768 766243 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Maybe even "all of the above". < 1319030942 152678 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I'm addicted to caffeine. < 1319030944 621757 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :officially. < 1319030966 219477 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I blame my technical writing class and my perpetual writer's block. < 1319031033 538920 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :but actually once I get into this paper it moves pretty quickly. < 1319031050 810826 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :the assignment was to write a letter report recommending a product/service/whatever. < 1319031062 981506 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :so, I'm convincing a hypothetical company to switch from hard disk drives to solid state. < 1319031072 595666 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :easy enough, and something I can of enjoy researching. < 1319031077 580768 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :s/can/kind of/ < 1319031089 23792 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :fizzie: I know my card can do EyeFinity at least < 1319031101 583448 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :(note to self: thoroughly proofread paper for sleep deprivation artifacts) < 1319031114 46332 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :(note to self: drink more caffeine) < 1319031123 253346 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :CakeProphet: You should recommend #esoteric, the international hub for exoteric voodoo programming design and deployment, to some company. < 1319031137 334871 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :wat no < 1319031139 355062 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :that's a terrible idea < 1319031146 669786 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I need like... sources... and convincing evidence. < 1319031154 184179 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :and a graphic of some kind, that I create. < 1319031158 640756 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :http://codu.org/logs/_esoteric/ <- convincing evidence. < 1319031170 553272 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :ACTION used a table for this one because tables are easy and relevant to doing things like comparisons. < 1319031226 110116 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :fungot: What would you say if you had to pitch yourself as a business proposal to a company? < 1319031226 458540 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :fizzie: but actually, the printed version and the unstripped version, aside from the great axioms there.... < 1319031262 381759 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :fungot: Yeah, focusing on your great axioms is a good idea. I'm not sure I'd go with a printout though. < 1319031262 591426 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :fizzie: maybe if i just stop feeding it < 1319031310 566859 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :fungot: Uh... then it'll go hungry? Excuse me, did we just switch the topic or something? IDGI. < 1319031310 904979 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :fizzie: the vm doesn't absolutely needs continuations. gambit limits you to 20 channels. < 1319031324 336672 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :NURR SO CONFUSED NURR < 1319031324 967779 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :oh god somebody kill me. < 1319031335 231209 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I have two tests to study for, and a paper to finish in.... < 1319031337 222064 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :1:30 hours < 1319031360 121537 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :well... I get like maybe another hour at the most if I cram/finish-paper in my other class < 1319031423 734846 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :ACTION is master of procrastination. < 1319031430 885574 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :get started < 1319031433 755024 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I am < 1319031436 38841 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :already < 1319031437 695311 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :started < 1319031442 17966 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :get working < 1319031446 177896 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :and stop talking on irc instead < 1319031446 622096 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I'm... taking a break. < 1319031451 600489 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :to clear my mind < 1319031454 118613 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :no time to take a break < 1319031462 322550 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I AM A MASTER OKAY. < 1319031468 373676 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I KNOW WHAT I'M DOING CLEARING YOUR MIND IS GOOD < 1319031477 145476 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :NO TIME NO TIME HUP HUP HUP GIT R DONE GO GO GO < 1319031490 545280 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Fly, you fool. < 1319031493 366326 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :(s). < 1319031532 793827 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :you just want me to stop talking don't you < 1319031534 992996 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :asshole. < 1319031584 633607 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :dude this table is such an effective means of comparison < 1319031589 816323 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :she would be crazy not to give me mad points. < 1319031595 161085 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :so good. < 1319031651 749532 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Maybe you should FILL IT WITH CREAM. < 1319031672 543675 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I.... I'm trying to < 1319031677 746435 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :connect that to something I said < 1319031679 723795 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :in a logical way < 1319031680 403303 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :but < 1319031684 170989 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :am having trouble doing that. < 1319031693 800608 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :A table. It has holes. A hole. You fill it. With cream. < 1319031712 832977 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :tables have holes? < 1319031736 679114 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :You know, cells. < 1319031752 91880 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :oh, no. < 1319031753 894583 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :white < 1319031761 330803 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :the header row is gray. < 1319031765 590064 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :NICE AND SIMPLE. < 1319031776 729099 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :You should add some CHARTJUNK. Everything's better with some. < 1319031800 649692 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :http://en.wikipedia.org/wiki/File:Chartjunk-example.svg <- BEST CHART < 1319031809 268888 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :no distracting colors to distraact you from that raw information mind virus being sexually transmitted to your brain < 1319031855 837743 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :oh god what is this. < 1319031861 765252 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :man I must be a master of charts < 1319031864 633718 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :because mine are so simple. < 1319031901 229455 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :dude I would love for my kidney to like fail right now. < 1319031907 648687 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :it would give me SOOOOO MUUUUCH TIIIIIME < 1319031910 182647 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :to finish everything. < 1319031932 468477 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :maybe if I drink more soda < 1319031932 652992 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Possibly you can poke a kidney-related I/O memory bit. < 1319031974 750718 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :and I still need to scrounge up enough money so that I can buy a car tomorrow. < 1319032016 486765 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :and then I have like a week and 3 days or so to make a website with Django. < 1319032017 897636 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :IT NEVER ENDS < 1319032036 694614 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I WILL NEVER SLEEP EVER AGAIN. < 1319032096 470883 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :this writing class isn't too bad aside from the large amounts of work. < 1319032112 89712 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :it's way better than the english composition classes and high school lit classes and shit. < 1319032137 549809 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :lists, graphics, tables, headings, etc are completely valid and take up so much of the requirement space. < 1319032145 169240 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :*required < 1319032153 886817 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :lists just fucking eat pages. < 1319032156 61730 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :it's great. < 1319032169 543467 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :in fact I should have just written the entire thing as headings with lists < 1319032177 310627 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :and a single table because I need one of those < 1319032180 534813 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :and then my MLA junk at the bottom < 1319032200 811036 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :It takes dva to Django. < 1319032222 997597 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :I have to say, NixOS is *really* really nice. A bit buggy or incomplete in places, but then it is very much work in progress. < 1319032251 798047 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :uh, am I supposed to know what dva means? < 1319032264 239003 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :Deflecting Vane Anemometer? < 1319032268 817350 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :CakeProphet: Does it make more sense if I say "it takes два to Django"? < 1319032276 573629 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :uh, no. < 1319032303 944348 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Two, in Russian. It coinkydinky starts with d, like Django. < 1319032313 722016 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :ha < 1319032314 63630 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :ha < 1319032314 640012 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :ha < 1319032364 776025 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :Russian is fucking lame. English is the best. < 1319032366 413368 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :you know why? < 1319032374 565580 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :because we pronounce use two different ways < 1319032382 365323 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :depending on whether or not it's a verb or a noun. < 1319032407 659007 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :er, well, in American English anyway. < 1319032411 52030 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :it may be the same thing elsewhere. < 1319032432 299955 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :and I guess phonetically it's the same sounds but maybe with slightly different stressing? < 1319032460 76140 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :oh wait no one is z and one is s, in American English. < 1319032474 726626 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric : because we pronounce use two different ways <-- ? < 1319032478 908372 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :which word? "two"? < 1319032487 267700 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :no, use < 1319032489 344743 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :oh < 1319032493 203882 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :two different ways. < 1319032500 203274 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :CakeProphet: when is "use" a noun?? < 1319032523 98019 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Vorpal: Does it have any use as a noun? < 1319032526 6735 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :a definite use of the word "use" is that it can be used as a noun. < 1319032529 449723 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :oh right < 1319032533 848930 :iamcal!u1110@gateway/web/irccloud.com/x-lrbtyupceqmgvciu QUIT :Remote host closed the connection < 1319032551 165829 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :CakeProphet: you pronounce it differently as a verb and noun? wtf < 1319032553 946600 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :yep < 1319032566 875426 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :"use, n. Pronunciation: Brit. /juːs/ , U.S. /jus/ -- use, v. Pronunciation: Brit. /juːz/ , U.S. /juz/" OED says it's different also for them Hexhammers. < 1319032569 994752 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :the verb one is more z-ish and the noun is softer with an s sound < 1319032577 589503 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :the noun one is also a bit faster I think. < 1319032645 869461 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :Merriam-Webster doesn't list the distinction < 1319032652 299583 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :but dictionary.com does. < 1319032657 139802 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :http://dictionary.reference.com/browse/use < 1319032683 168359 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Anyhow, Russian "two" is два if you're counting masculine/neuter words, but две if you're counting feminine words. You don't even have much of a gender there in English-land, so THERE. (A-hem, not that Finnish does either.) < 1319032710 886357 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :wow you're right < 1319032720 110816 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I wish english had all of those unecessary cases. < 1319032779 498982 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Russian is quite good at "unnecessary". < 1319032782 174060 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :" In the nominative case, any noun becomes genitive singular. In the accusative case, only animate nouns become genitive singular. < 1319032782 320916 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric : Две собаки, два кота, две книги и два журнала свалились со стола — Two dogs, two cats, two books and two journals fell from the table (all nouns here in genitive singular). < 1319032782 321095 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric : Я вижу двух собак, двух котов, две книги и два журнала — I see two dogs, two cats, two books and two journals (all nouns here in accusative case, which is why dogs and cats are in genitive plural)." < 1319032788 305555 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Much sense. < 1319032809 396887 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :(I've had a total of one (1) course of it.) < 1319032825 161431 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :so, uh, does no one else pronounce use differently in those two cases? < 1319032829 952378 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :maybe it's an American thing. < 1319032850 13894 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :CakeProphet: As mentioned, OED says it's a UK thing too. < 1319032854 701551 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :oh < 1319032857 976784 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :okay cool. < 1319032866 11052 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :because pronouncing it only one way for every usage would be weird. < 1319032870 232440 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :what about AU < 1319032885 261655 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :or NZ < 1319032894 525416 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Vorpal: OED doesn't have en-au pronunciation examples, sadly. < 1319032899 217292 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :ah < 1319032914 985142 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :ah shit.. < 1319032929 444055 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I can't remember if my make-up quiz was schedule at 12:15 or 1:15 < 1319032931 494174 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :fuuuuuuuuck < 1319032955 805966 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I think it was 12 < 1319033138 389292 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Finnish would just have different inflections there. "to use" = "käyttää" (first infinitive), "a use" = "käyttö" (singular nominative). < 1319033496 138455 :copumpkin!~pumpkin@unaffiliated/pumpkingod QUIT :Quit: Computer has gone to sleep. < 1319033584 670633 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :fizzie: I'm not sure there is a direct single translation of "a use" to Swedish. It would differ by context. "ett användningsområde" maybe in some cases. < 1319033594 419289 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :or "ett sätt att använda" < 1319033606 332275 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :(which would literally be "a way to use") < 1319033654 931982 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :the literal translation of "en användning" sounds kind of awkward in several (but not all) the places where "a use" would be used in English < 1319033697 857300 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :a way to use also literally doesn't make much sense. < 1319033702 558058 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :it's more an idiom based on a metaphor. < 1319033727 548203 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :"a way" in this case being a metaphorical path. < 1319033766 822096 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :but I guess many languages also treat "a way" and "a path" to mean similar things in a metaphorical sense? < 1319033771 882670 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :well okay not literally, but very close to literally. In fact I'm not sure how to translate "ett sätt" < 1319033786 150391 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :it doesn't mean "a way" literally < 1319033795 813520 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :it just happens to mean that specific sense of "a way" < 1319033819 825875 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :you would not travel along it, that would be "en väg" or such < 1319033826 875691 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :right < 1319033838 540183 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :see, English is awesome. < 1319033848 763081 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :literally INSPIRING AWE < 1319033849 551442 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :CakeProphet: no it proves that Swedish is better < 1319033857 742625 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :for not using the same word for botjh < 1319033859 209941 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :both* < 1319033885 558893 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I think using one word for a billion different things makes the language more interesting < 1319033897 589919 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :specifically when writing literature or poetry. < 1319033919 631427 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :the ambiguity can provide multiple interpretations. < 1319033931 852087 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :though clarity is nice too. < 1319033974 104074 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :CakeProphet: also English is unsymmetric, you have more but fewer/less. There is a lack of symmetry there < 1319034001 423097 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :Swedish has proper symmetry for that case. mer/mindre for the more/less case and fler/färre for the more/fewer case < 1319034025 887833 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :English is the most best at being very less not great < 1319034038 440306 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :parse error? < 1319034047 547843 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :not for this interpreter. :P < 1319034051 70597 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :"very less not great"? < 1319034055 809905 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :what? < 1319034061 20848 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :don't worry about it. < 1319034063 569310 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :... < 1319034108 788230 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :perhaps if s/very/much/ it would make more sense. < 1319034113 821391 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :yeah < 1319034131 22159 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :but it parses the same way < 1319034145 506146 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :they're both the same part of speech with pretty much the same meaning. < 1319034178 314183 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :YEAH THAT'S RIGHT. FUCK YEAAAAAH ENGLIIIIISH. < 1319034180 736081 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :CakeProphet: anyway if you want multiple interpretations you should try Swedish. We have some words that are written the same but depending on meaning are pronounced VERY slightly different. "anden" can mean "the duck" or "the genie". I think the difference is basically in which part gets emphasis. < 1319034198 114204 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :ah. < 1319034207 909576 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I will write a poem called anden < 1319034212 886552 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :that will be about both a duck and a genie. < 1319034222 486742 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :once I learn Swedish < 1319034229 826030 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :which should be easy to my monolingual brain. < 1319034309 424225 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :CakeProphet: there are a few more: "tomten" could mean either "the plot [of land]" or "the father christmas" (actually "tomte" is somewhat wider than that, I think father xmas basically got imported from US/UK culture and melded into local folklore concepts) < 1319034316 80002 :iamcal!u1110@gateway/web/irccloud.com/x-npxnpprzzqsofpcm JOIN :#esoteric < 1319034337 312761 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :CakeProphet: note that these are not similar at all in non-definite form. "en and" (a duck) "en ande" (a genie) < 1319034351 285244 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :it is just they end up the same in definite form. < 1319034359 790610 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :(which Swedish does by suffixes) < 1319034408 242986 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :pues, conozco un poco de espanol < 1319034426 256481 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :I guess that is Spanish based on the word "espanol" < 1319034431 319622 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :I have no idea what it means though < 1319034435 581401 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :pero solo un poco < 1319034448 785521 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :I took French not Spanish in high school. < 1319034453 27332 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :should translate to "well, I know a little spanish" < 1319034457 647504 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :not that I remember any of it < 1319034458 468440 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :then "but only a little" < 1319034462 348849 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :but I'm not sure if that's correct usage. < 1319034471 869007 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :I know pues is how they say "well" in that sense... as a kind of filler word. < 1319034479 215125 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :and then conocer is to know a subject. < 1319034482 251622 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :un poco is a little < 1319034486 575072 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :so yeah. < 1319034505 746804 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :that doesn't mean you got the grammar right < 1319034526 562155 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :pretty sure that's how it works in spanish.. < 1319034535 825377 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :okay < 1319034612 125427 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :indirect object may be wrong though < 1319034617 525447 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :er, wait there is none :P < 1319034620 837716 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :heh < 1319034660 217140 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :"un poco espanol" wouldn't make sense. but "un poco de espanol" does < 1319034767 320736 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake PRIVMSG #esoteric :yo lo conozco! < 1319034995 121871 :copumpkin!~pumpkin@unaffiliated/pumpkingod JOIN :#esoteric < 1319035050 624678 :ais523!~ais523@unaffiliated/ais523 JOIN :#esoteric < 1319036029 50379 :hagb4rd!~perdito@koln-4d0b7ec5.pool.mediaWays.net QUIT :Ping timeout: 258 seconds < 1319036198 819542 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake QUIT :Ping timeout: 240 seconds < 1319036221 749803 :Vorpal!~AnMaster@unaffiliated/anmaster QUIT :Quit: ZNC - http://znc.sourceforge.net < 1319036259 812355 :Vorpal!~AnMaster@unaffiliated/anmaster JOIN :#esoteric < 1319037029 793193 :elliott!~elliott@unaffiliated/elliott JOIN :#esoteric < 1319037384 612063 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :20:31:49: Vorpal: I also have a hg checkout of the logs apparently < 1319037391 335986 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :variable: that's obsolete, there's rsync now < 1319037399 30780 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :20:33:06: variable: ask fizzie for some useful scripts. Pulls from the old clog archive rather than Gregor's archive though < 1319037407 347250 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Vorpal: and therefore only downloads less than a year of logs < 1319037553 625084 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :20:51:53: http://smuggle.intercal.org.uk/manual/input_output.html#binary < 1319037559 279749 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: binary IO that can't input 0? < 1319037566 129845 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oh < 1319037567 232269 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :padding < 1319037568 533911 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :n/m < 1319037579 446636 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :yep, padding < 1319037653 207181 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: what /are/ preload names? I'm not Vorpal, so you should have an easier time explaining to me :P < 1319037688 464219 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :21:05:30: I have a question: does anyone know why it was implemented like that? It seems a fairly stupid way to do it. Over-complicated. Is that perhaps the reason? < 1319037698 596747 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Vorpal: if it was implemented sensibly, it would be C-INTERCAL < 1319037698 777937 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: they're basically bits of .io code (the bytecode that IACC/INTERCAL compile to) that get compiled/run before the program does < 1319037707 460722 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: heh < 1319037723 524191 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I don't really want to draw a distinction between compiling and running in CLC-INTERCAL, it's too hard < 1319037731 99601 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: and there's a built-in snippet named -X which is used to make C-INTERCAL emulate CLC? < 1319037737 292996 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :if you tell sick to "compile", all it really does is bundle everything together into a .io object < 1319037767 537096 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: -X is a command-line option that causes it to take the CLC-INTERCAL versions of some things rather than the C-INTERCAL versions, where they conflict < 1319037802 45260 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: erm, Vorpal asked whether it was an option and you said no, preload name < 1319037809 774354 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :"ick" is the preload name < 1319037814 698355 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :that makes CLC-INTERCAL act like C-INTERCAL < 1319037822 621544 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :"-X" is the option name that makes C-INTERCAL act like CLC-INTERCAL < 1319037837 933200 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :actually, "-xX", there are two different sets of things that can be changed between C- and CLC- mode < 1319037839 197227 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :21:21:23: (I'm not sure if even C was around in 1972, incidentally) < 1319037841 786660 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: not publicly < 1319037862 128454 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: what does -x do? < 1319037918 433585 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :let me get the exact definitions < 1319037935 753262 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :22:06:21: Well, I am not the DM of the anyways, however. < 1319037935 900027 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I'm not the DM of the anyways, however, either. < 1319037970 547526 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :ah, -X favours CLC-INTERCAL interpretations of ambiguous characters in the input < 1319037976 756468 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :and -x gives CLC-INTERCAL semantics < 1319037989 817005 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :so they affect the parser and degenerator respectively < 1319038016 423447 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :heh < 1319038051 244606 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :(the parts of C-INTERCAL have rather weird names sometimes) < 1319038107 693391 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :http://beefymiracle.org/ < 1319038109 12932 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Fedora, < 1319038112 107234 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :explain yourself < 1319038379 374757 :Gregor!foobar@codu.org PRIVMSG #esoteric :Uhh < 1319038382 185651 :Gregor!foobar@codu.org PRIVMSG #esoteric :Do I want to click that? < 1319038385 79526 :Gregor!foobar@codu.org PRIVMSG #esoteric :Is that SFW? < 1319038467 171350 :Gregor!foobar@codu.org PRIVMSG #esoteric :I just can't imagine anything being on the other end of that link other than gay porn. < 1319038495 781950 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :It's worse. < 1319038536 489511 :Gregor!foobar@codu.org PRIVMSG #esoteric :Well, virtually everything is worse than gay porn. < 1319038540 442769 :Gregor!foobar@codu.org PRIVMSG #esoteric :So that's not much of a statement. < 1319038599 536387 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Gregor: It is SFW, though. < 1319038601 95758 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :00:43:03: Inappropriate Keys Sold Here < 1319038601 242506 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :01:07:33: Don't ever think for one moment that you have won. < 1319038601 242661 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :01:08:05: :( < 1319038601 242766 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric ::( < 1319038620 913166 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :01:24:09: maybe lambdabot Haskell could have its own special where. :) < 1319038623 288335 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :caleskell < 1319038629 452174 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :At least for most values of W. I guess at some places that could count as "offensive content". < 1319038666 671860 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :01:32:58: And I get "couldn't match IO Bool against Maybe Bool". < 1319038666 818611 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :If only static typing didn't exist; you'd get a runtime error rather than a compile-time one. < 1319038670 363037 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :And that's why it is your enemy. < 1319038683 236457 :Gregor!foobar@codu.org PRIVMSG #esoteric :lol, I didn't realize that Ubuntu's naming convention had actually turned into a challenge to find the worst possible name for a distro. < 1319038693 629577 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Votes :: Name < 1319038693 777338 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :------------------------------- < 1319038693 777523 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric : 1182 :: Beefy Miracle < 1319038693 777629 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric : 1035 :: Liege < 1319038693 777732 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric : 881 :: Never < 1319038694 74322 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric : 791 :: Gernsback < 1319038696 67993 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric : 641 :: Rocky Ripple < 1319038698 56025 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric : 628 :: Alpharabius < 1319038700 53224 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric : 550 :: Panguipulli < 1319038702 88757 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric : 505 :: Tubeteika < 1319038704 82259 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Literally any of those is better than Beefy Miracle, guys. < 1319038722 643721 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Beefy Miracle and Rocky Ripple are both gay porn titles, though. < 1319038788 350165 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :01:35:15: evincar: You have an actual type error in your program; it's being caught at compile-time instead of at runtime, but it's still there. < 1319038788 496785 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :01:35:28: (In other cases it's not your friend, of course. But IO foo is very different from foo.) < 1319038800 989852 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :shachaf: IO foo is even more different from Maybe foo. < 1319038812 751494 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :01:36:40: The problem is that I need a Bool and I have an IO Bool. < 1319038825 167593 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :No you don't/can't/whatever. Gah, why am I even wasting my time. < 1319038833 270413 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Gregor: When's codu.org/logs gonna support ignores :P < 1319038856 740855 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Wait, I could do that with a bookmarklet. < 1319038879 391992 :Gregor!foobar@codu.org PRIVMSG #esoteric :NEVAR is the answar. < 1319038938 640251 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :NEVAR is almost the distro codename, too. < 1319038940 605339 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :you are all wrong; MaybeT _is_ standard < 1319038967 381258 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :01:45:54: Whereas IO (Maybe EditorState) is "you have an IO maybe editorstate maybe not". < 1319038983 795540 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I like the part where you just describe IO as "IO" because you (presumably) don't understand the value-action distinction. < 1319038992 502939 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :That's the best part. < 1319039005 859980 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :01:46:38: shachaf: IO (Maybe ...) might be a little more convenient to deal with actually. < 1319039006 6797 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :01:46:51: er < 1319039006 6962 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :01:46:53: evincar: ^^^ < 1319039006 7132 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :01:47:02: stop having equal-length names. < 1319039007 885005 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Length-based nick completion? < 1319039009 863715 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Sign me up. < 1319039149 241483 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Vorpal: So does Arch not support non-udev any more < 1319039485 88316 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :no clue < 1319039521 120175 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :02:13:33: @hoogle [a -> m (Maybe a)] -> a -> m (Maybe a) < 1319039530 998496 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :elliott, btw tried NixOS in qemu. Quite nice. Not quite yet at the point where I would use it for my main desktop. But close. < 1319039540 90195 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :?hoogle [a -> m a] -> a -> m a < 1319039540 577388 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Data.Generics.Aliases extMp :: (MonadPlus m, Typeable a, Typeable b) => (a -> m a) -> (b -> m b) -> a -> m a < 1319039540 912387 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Data.Generics.Aliases extM :: (Monad m, Typeable a, Typeable b) => (a -> m a) -> (b -> m b) -> a -> m a < 1319039541 59023 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Data.Data gfoldl :: Data a => (c (d -> b) -> d -> c b) -> (g -> c g) -> a -> c a < 1319039543 763274 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :grr < 1319039547 724165 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :it's a trivial construction, anyway < 1319039554 48399 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :hmm well < 1319039555 706316 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oh < 1319039561 695500 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I was assuming t Maybe a < 1319039563 84219 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :as in a transformer < 1319039565 463224 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oh well < 1319039801 678228 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :03:22:11: CakeProphet: I suggest XFCE. < 1319039801 865072 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :03:22:29: pikhq_: not as configurable, but similar interface I guess. < 1319039808 819334 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Xfce is definitely more configurable than Gnome. < 1319039839 370675 :Gregor!foobar@codu.org PRIVMSG #esoteric :Also, it doesn't have a similar interface. < 1319039842 663539 :Gregor!foobar@codu.org PRIVMSG #esoteric :So wrong on both counts :P < 1319039884 951150 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Gregor: I'm using an Xfce that's almost pixel-for-pixel identical to gnome two < 1319039887 230199 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :s/g/G/ < 1319039912 79303 :Gregor!foobar@codu.org PRIVMSG #esoteric :Thanks to its awesome configurability :P < 1319039930 619341 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Gregor: No, I just configured the panels, which is exactly as flexible as Gnome :P < 1319039946 376238 :Gregor!foobar@codu.org PRIVMSG #esoteric :Pff < 1319040252 134734 :TeruFSX!~quassel@71-210-153-125.mpls.qwest.net QUIT :Quit: No Ping reply in 180 seconds. < 1319040273 735112 :TeruFSX!~quassel@71-210-153-125.mpls.qwest.net JOIN :#esoteric < 1319040449 627798 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Seriously though, what is the point of all these distros like Arch and Gentoo if they only support one base configuration. < 1319040490 139705 :sllide!~jari@ip565eb113.direct-adsl.nl JOIN :#esoteric < 1319040644 646856 :Gregor!foobar@codu.org PRIVMSG #esoteric :They're all just distractions from Debian, the one True distro. < 1319040694 276740 :tiffany!~kawaii@fl-76-3-21-30.dhcp.embarqhsd.net JOIN :#esoteric < 1319040715 842631 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Gregor: Which also only supports one base configuration :P < 1319040760 611503 :Gregor!foobar@codu.org PRIVMSG #esoteric :Then supporting one base configuration must be the right option (even if that base configuration happens to be terrible ...) < 1319040815 547346 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Which it is :P < 1319040825 163399 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :SUFFERING IS CORRECT < 1319040904 749068 :Gregor!foobar@codu.org PRIVMSG #esoteric :Though since I usually install via Aptosid, thereby violating my own sacred pact with Debian, I actually have options X-P < 1319040972 908161 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Gregor: Maybe we have different definitions of base config -- what does aptosid let you change past things like DE? < 1319041000 472078 :Gregor!foobar@codu.org PRIVMSG #esoteric :Just DE + WM, what things do you want to change? < 1319041041 280239 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Gregor: The /base/ configuration. Things like the init :P (Debian offers Xfce as an official install options nowadays, btw...) < 1319041056 893415 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Obviously it's not so reasonable to expect this of Debian but, like, Gentoo doesn't support changing a damn thing nowadays. < 1319041063 496784 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Except optimisation flags :P < 1319041091 397634 :Gregor!foobar@codu.org PRIVMSG #esoteric :Well, obviously LFS is the distro for you. < 1319041105 140141 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Gregor: What do you think Kitten is (apart from vaporous) < 1319041106 557045 :Gregor!foobar@codu.org PRIVMSG #esoteric :Although even it has only one base configuration :) < 1319041120 920146 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Gregor: The point of things like Debian is to basically automate LFS for you :P < 1319041122 680252 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :... < 1319041123 721356 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Gentoo < 1319041136 222055 :Gregor!foobar@codu.org PRIVMSG #esoteric :ALFS is better. < 1319041157 656989 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Wow :P < 1319041161 727659 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :"After having gone through the LFS and BLFS books more than 2 or 3 times, you will quickly appreciate the ability to automate the task of compiling the software you want for your systems." < 1319041174 739666 :Gregor!foobar@codu.org PRIVMSG #esoteric :Isn't ALFS delightfully retarded? < 1319041177 469849 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :"jhalfs is a Bash shell script that makes use of Subversion and xsltproc to first download the XML sources of the Linux From Scratch book and then extract any necessary commands, placing them into executable shell scripts." < 1319041181 661275 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I'm gobsmacked. < 1319041192 253298 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Gregor: I can't wait until LFS ships with < 1319041198 428926 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Don't ever run the following! < 1319041200 261809 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric : rm -rf / < 1319041204 907796 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Now that you know not to run that, [...] < 1319041219 739377 :Gregor!foobar@codu.org PRIVMSG #esoteric :That doesn't work on modern coreutils anyway ;) < 1319041220 225486 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :jhalfs users will get a wonderful surprise :P < 1319041300 845874 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I can't believe this nilfs system actually works. < 1319041309 390061 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :It feels like it should be breaking constantly. < 1319041319 174968 :augur!~augur@208.58.5.87 QUIT :Remote host closed the connection < 1319041332 655591 :Gregor!foobar@codu.org PRIVMSG #esoteric :OK, anything named "nilfs" shouldn't do anything. < 1319041336 119325 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net JOIN :#esoteric < 1319041338 594423 :Gregor!foobar@codu.org PRIVMSG #esoteric :That is a poor name for an OS that exposes any files. < 1319041343 465791 :Gregor!foobar@codu.org PRIVMSG #esoteric :s/OS/FS/ < 1319041382 465328 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :"New Implementation of a Log-structured File System" :P < 1319041386 241252 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :It does things like instantaneous snapshotting. < 1319042056 432331 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :"Xpra is 'screen for X': it allows you to run X programs, usually on a remote host, direct their display to your local machine, and then to disconnect from these programs and reconnect from the same or another machine, without losing any state. " < 1319042059 769312 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :isn't X meant to handle this itself? < 1319042062 650859 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I guess not < 1319042123 424333 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :Not the disconnect/reconnect bit < 1319042136 479373 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :right < 1319042176 744761 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Wow, Gnome doesn't support screensavers any more :P < 1319042186 630170 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :At all. < 1319043194 218771 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I wonder why there aren't any golf esoteric CPUs. < 1319043198 763482 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :IT IS THE OBVIOUS NEXT STEP < 1319043221 933048 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: use them to power golfcarts! < 1319043239 25340 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric ::D < 1319043254 14117 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :but like... you can pack two registers and an instruction into a single byte < 1319043261 2685 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :that's four registers, eight instructions < 1319043284 70793 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :so you can have an instruction, two registers, and a memory address in two bytes < 1319043312 274283 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :that has to count for something < 1319043353 401937 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: what are the best eight instructions < 1319043368 247773 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :BF's? < 1319043433 968992 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: no, assembly-style :P < 1319043485 51311 :augur!~augur@129.2.129.33 JOIN :#esoteric < 1319043760 728731 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :hmm, it's hard to think of ways to allow really short screen writing with those restrictions < 1319043997 501381 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :elliott, btw the NixOS install cd lacks tools for nilfs2 < 1319044011 841610 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :NOOOOOOOOOOOOOOooooooOOOoooOoooOooOOooOooOooooooo < 1319044016 26785 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I was just going to try it, too. < 1319044019 108227 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Can't you install shit onto it though? < 1319044060 767704 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :One of the things I don't like about NixOS is that it's tied to upstart < 1319044075 248690 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :s/upstart/upstart./ < 1319044505 725303 :Ngevd!~Taneb@2.99.90.255 QUIT :Ping timeout: 260 seconds < 1319045159 499091 :derrik!~xix@194.150.65.81 JOIN :#esoteric < 1319045198 203611 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :And now pikhq_ is going to tell me that musl works with libc++ and therefore I can finally build things with it. < 1319045205 644673 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ACTION controls the future. < 1319045439 442118 :derrik!~xix@194.150.65.81 PRIVMSG #esoteric :cool < 1319045841 293715 :derrik!~xix@194.150.65.81 PRIVMSG #esoteric :that java thing is totally pointless these days < 1319045841 477167 :derrik!~xix@194.150.65.81 PRIVMSG #esoteric :i will throw it out now < 1319045897 541763 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :what java thing < 1319046015 50063 :sebbu!~sebbu@unaffiliated/sebbu QUIT :Read error: Connection reset by peer < 1319046045 608149 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric : Can't you install shit onto it though? <-- possibly < 1319046159 944969 :sebbu!~sebbu@ADijon-152-1-63-203.w83-194.abo.wanadoo.fr JOIN :#esoteric < 1319046160 241632 :sebbu!~sebbu@ADijon-152-1-63-203.w83-194.abo.wanadoo.fr QUIT :Changing host < 1319046160 388735 :sebbu!~sebbu@unaffiliated/sebbu JOIN :#esoteric < 1319046355 296995 :Ngevd!~Taneb@2.99.90.255 JOIN :#esoteric < 1319046371 617338 :lambdabot!~lambdabot@li85-105.members.linode.com QUIT :Ping timeout: 252 seconds < 1319046392 230903 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :Hello! < 1319046402 111472 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :hi < 1319046404 580410 :derrik!~xix@194.150.65.81 QUIT :Ping timeout: 252 seconds < 1319046479 822755 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :Can I suggest something for the wiki? < 1319046486 964378 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :"Programming language of the week" < 1319046507 746076 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :possible to set up with template wizardry, assuming there's some way to figure out the date < 1319046547 670144 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :updating it manually would be annoying and tedious < 1319046599 834915 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :Hang on, pie time < 1319046600 824355 :Ngevd!~Taneb@2.99.90.255 QUIT :Client Quit < 1319046657 935712 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :why does ngevd even join < 1319046661 891666 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :when he knows he's going to leave in like < 1319046663 411531 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ten seconds < 1319046681 652775 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :Five minutes < 1319046704 101029 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ten seconds < 1319046711 657269 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ok he's definitely been here for like two minutes before < 1319046749 177259 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Also how could you predict beforehand when it will be pie time? < 1319046807 713446 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Pie time strikes us all when we least expect it. < 1319046857 181193 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :because when you're trillions of deep in the decimal expansion of pie, and don't know exactly where, it's impractical to figure out what the pie will do next < 1319047001 733727 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :I don't suppose they(tm) still know whether πe is irrational or not? < 1319047043 776893 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Maan, why can't we just decide. < 1319047048 666280 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Collectively. < 1319047051 544216 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I say it's rational. < 1319047055 89496 :derrik!~xix@194.150.65.81 JOIN :#esoteric < 1319047090 663187 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :http://webonastick.com/pi/ < 1319047094 635090 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :"I was just wondering if you're really serious about your proof of the rationality of pi or whether you did it just so people like me would write to you to ask if you were really serious about your proof of the rationality of pi. < 1319047094 781669 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :-- " < 1319047335 5366 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 JOIN :#esoteric < 1319047347 784622 :Ngevd!~Taneb@2.99.90.255 JOIN :#esoteric < 1319047350 323163 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :Hello! < 1319047440 419203 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :Hello. < 1319047448 992178 :shachaf!~shachaf@204.109.63.130 PRIVMSG #esoteric :elliott: ? < 1319047451 817831 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :Oh, lambdabot's gone. < 1319047453 267597 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :shachaf: ? < 1319047484 451631 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :fungot: Quick, pretend to be lambdabot. It's just Haskell, you can do it. < 1319047484 722292 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :fizzie: it skips differently. it is < 1319047498 625547 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :That's a big problem < 1319047502 865418 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Ah, sadly he can't, because it skips differently. < 1319047544 815630 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :!haskell 'h':"test" < 1319047589 242915 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :"htest" < 1319047601 543724 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :Deewiant can pretend to be lambdabot < 1319047962 933097 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Time for a link-tip; when you need a prime, http://alpha61.com/primenumbershittingbear/ helps. (Don't have a clue what brought that to mind.) < 1319047987 184176 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Aww, I'm not using one of the desgined versions. < 1319047990 332798 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :designéd. < 1319048283 960465 :lambdabot!~lambdabot@li85-105.members.linode.com JOIN :#esoteric < 1319048344 310404 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :yaaaayayyayayaya < 1319048346 563172 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ylaamamnnjkfbdabobot < 1319048357 319360 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :@bot < 1319048357 531536 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric ::) < 1319048367 129804 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :Good bot < 1319048369 183730 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :Best friend < 1319048414 296198 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :fizzie: view-source:http://alpha61.com/primenumbershittingbear/ I like the comments. < 1319048420 181942 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric : // Shakes the butt < 1319048420 329003 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric : // moves next number to butt < 1319048445 804299 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Aww, it must have been updated; it uses some fancy "2005-2006" Flash-using library to play the sound. < 1319048487 637558 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :http://bignum.sourceforge.net/primebear.html soundless version < 1319048564 8793 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Deewiant: Well that's no fun. < 1319048575 814382 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Deewiant: Is that the original(tm)? < 1319048578 826380 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :It's the one I remember :-P < 1319048582 681801 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :bignum / BigFloat < 1319048582 828627 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :An infinite-precision floating-point function library for Miranda and type for Haskell < 1319048592 827690 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :That's... something. < 1319048676 563758 :shachaf!~shachaf@204.109.63.130 PRIVMSG #esoteric :elliott: Did you just quote me randomly above? < 1319048680 99744 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :http://web.archive.org/web/20011106194849/http://members.surfeu.fi/kklaine/primebear.html an old hall of fame < 1319048683 723360 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :shachaf: Apparently? < 1319048693 819009 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Deewiant: Good old Allan Scott. < 1319048712 196517 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :"Notice: this version leaves number 1 out. It's not a bug fix, but an abandoned feature in order to achieve better, cleaner, faster code. I still think 1 is a prime number but this is tosatisfy mathematics of the world. I decided they'd propably shut up if I pleased them. Now get of my case." < 1319048767 941562 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :The faster code is probably due to starting from 2 and doing +=2 < 1319048771 837520 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :Er, 3* < 1319048790 127858 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :Instead of 1 and +=1 < 1319048984 534489 :shachaf!~shachaf@204.109.63.130 PRIVMSG #esoteric :elliott: Anyway, evincar has a point. Static typing is not your friend. < 1319048998 94437 :shachaf!~shachaf@204.109.63.130 PRIVMSG #esoteric :Stupid types, constraining and constricting. < 1319049004 498032 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :No it is I am pals with Hindley-Milner. < 1319049047 874055 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :^ < 1319050124 550041 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :By all your type theorists combined I am Hindley-Milner. < 1319050124 703422 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Phantom_Hoover: You have 3 new messages. '/msg lambdabot @messages' to read them. < 1319050294 707663 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`addquote oh god oh god what if I become attracted to birds < 1319050299 596686 :HackEgo!foobar@codu.org PRIVMSG #esoteric :704) oh god oh god what if I become attracted to birds < 1319050343 148895 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :Wait what, r/AskScience got made a default subreddit. < 1319050356 777192 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :r/TrueAskScience in 10... 9... < 1319050375 836891 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :AskScience is so heavily modded that it doesn't need a True version < 1319050395 827496 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :Sure, but it can be more insidious than that. < 1319050445 361196 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :http://i.imgur.com/yKHJv.png < 1319050455 547089 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :See? < 1319050519 585344 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :What's insidious about that < 1319050569 265432 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :"If we're in a car crash, I'll be decapitated from the neck down." < 1319050581 668907 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Phantom_Hoover: ? < 1319050625 225299 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :OK, that was a pretty terrible example. < 1319050661 578176 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :`quote < 1319050663 743952 :HackEgo!foobar@codu.org PRIVMSG #esoteric :649) Can you build the ... why wouldn't you be able to, just and all the computables < 1319050670 232200 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: can I delete that one? < 1319050690 3205 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: I don't know, I think that might be the apex of Sgeo's constant confusion < 1319050696 380305 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: anyway, you have to follow procedure < 1319050698 221955 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319050698 847151 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319050699 73137 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319050701 360663 :HackEgo!foobar@codu.org PRIVMSG #esoteric :228) OK, let's reduce the human genome to 4 chromosomes, in 2 homologous pairs. < 1319050701 813139 :HackEgo!foobar@codu.org PRIVMSG #esoteric :572) software patents strike again that's got to be at least three times, now are they out yet? < 1319050704 778394 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319050706 619462 :HackEgo!foobar@codu.org PRIVMSG #esoteric :473) btw i saw my first prostitute about a week ago < 1319050707 739309 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :there, that makes five in total < 1319050714 343510 :HackEgo!foobar@codu.org PRIVMSG #esoteric :353) I use LiGNUXFCE+apps That's pronounced by saying "Linux" and then vomiting, btw. < 1319050733 365504 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ACTION thinks 473 is worse than 649 < 1319050739 357961 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :let's delete both of them < 1319050744 881921 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :Ah, like the French word for mist? < 1319050748 468202 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :Or was it fog? < 1319050754 812185 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: that is not Procedure < 1319050769 300678 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I don't care, the number will never reduce if we don't delete /all/ the bad ones we find < 1319050778 190866 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: you delete it next time it comes up < 1319050784 332438 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 473 < 1319050784 999780 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :`quite < 1319050786 246179 :HackEgo!foobar@codu.org PRIVMSG #esoteric :​*poof* < 1319050786 470901 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :here, I'll do another: < 1319050788 799160 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319050789 13547 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :`quote < 1319050789 193019 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319050789 535815 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319050789 931413 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319050797 100052 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :(that's five in total, I noticed Phantom_Hoover's quick enough) < 1319050799 866914 :HackEgo!foobar@codu.org PRIVMSG #esoteric :481) #%%:]__t�# do you see that that is great progress taking place < 1319050800 734453 :HackEgo!foobar@codu.org PRIVMSG #esoteric :272) ooh I want to see ehird pole dancing I think that would be illegal. oh you are right damn :/ < 1319050810 873459 :HackEgo!foobar@codu.org PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: quite: not found < 1319050813 383588 :HackEgo!foobar@codu.org PRIVMSG #esoteric :114) theory: some amused deity is making the laws of physics up as they go along < 1319050813 580412 :HackEgo!foobar@codu.org PRIVMSG #esoteric :680) I prefer the N64 controller, it's the only one that has place for my third hand. < 1319050813 728879 :HackEgo!foobar@codu.org PRIVMSG #esoteric :353) I use LiGNUXFCE+apps That's pronounced by saying "Linux" and then vomiting, btw. < 1319050833 130898 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :hmm, Madk's is the worst there, but it's not that bad < 1319050835 356001 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :Those... are all good. < 1319050838 91760 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :`quote < 1319050838 309174 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :`quote < 1319050838 606537 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :`quote < 1319050838 818628 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :`quote < 1319050839 38267 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :`quote < 1319050844 825688 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :agreed, restart < 1319050850 320462 :HackEgo!foobar@codu.org PRIVMSG #esoteric :621) elliott_: it's a machine that looks like you! < 1319050861 514999 :HackEgo!foobar@codu.org PRIVMSG #esoteric :302) Some people is atheist and some agnostic, and some more religious people. Even some scientists are religious, which is OK, but you still have to remember, assuming God exists is not how you are supposed to do science! < 1319050862 86794 :HackEgo!foobar@codu.org PRIVMSG #esoteric :347) [After a long monologue] i think i have to escape this heated discussion before it becomes a flamewar < 1319050862 590866 :HackEgo!foobar@codu.org PRIVMSG #esoteric :155) anmaster gonna give him a birthday bj? IF ONLY I COULD FIND MY PHONE < 1319050862 935640 :HackEgo!foobar@codu.org PRIVMSG #esoteric :86) I used to have salt licks for my horses. They would make cool abstract sculptures with them. < 1319050869 783227 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :302. < 1319050881 253128 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Yeah, zzo has better quotes than that. < 1319050882 808609 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 302 < 1319050885 154195 :HackEgo!foobar@codu.org PRIVMSG #esoteric :​*poof* < 1319050886 306584 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :`quote < 1319050886 592868 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :`quote < 1319050886 850209 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :`quote < 1319050887 199701 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :`quote < 1319050887 397035 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :`quote < 1319050895 436604 :HackEgo!foobar@codu.org PRIVMSG #esoteric :490) The zipWith Camel, a famous World War 1 era airplane. < 1319050898 176848 :HackEgo!foobar@codu.org PRIVMSG #esoteric :536) Tomorrow's computer viruses will extend robotic arms from your computer to fiddle with the SD card to infect it!! < 1319050906 858002 :HackEgo!foobar@codu.org PRIVMSG #esoteric :666) The moon is a much better target for colonisation because it would be IRCable. < 1319050907 4641 :HackEgo!foobar@codu.org PRIVMSG #esoteric :656) :D :D oh man.. i wonder if they ever made chess variants based off of animes < 1319050908 74346 :HackEgo!foobar@codu.org PRIVMSG #esoteric :402) I can trust elliott_ to have an opinion on anything and everything Yes. And the best thing is: it is the correct opinion. < 1319050924 178488 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Gregor: Are you there < 1319050924 422881 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :656 is the weakest, I think. < 1319050933 818134 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Phantom_Hoover: 666 isn't that good. < 1319050948 853570 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Neither is 536 but the mental image is amusing, < 1319050950 163018 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :. < 1319050961 611619 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I don't like 490 either < 1319050967 480365 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I do < 1319050970 121741 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :That's a good one. < 1319050978 11858 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Phantom_Hoover: Which one should we delete, 666 or 656 < 1319050984 914435 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :656, I think. < 1319050987 952818 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Alright < 1319050990 204189 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 656 < 1319050992 81960 :HackEgo!foobar@codu.org PRIVMSG #esoteric :​*poof* < 1319050994 465836 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Let's do one more to please ais523 < 1319050995 289693 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319050995 755760 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319050996 80058 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319050996 417797 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319050996 672113 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051002 170806 :HackEgo!foobar@codu.org PRIVMSG #esoteric :183) Why do you use random acronyms you know we don't know the expansions of? alise: TLAAW < 1319051004 146475 :HackEgo!foobar@codu.org PRIVMSG #esoteric :288) !bfjoust test (++-)*1000000 probably will suck Score for Vorpal_test: 30.4 what < 1319051014 947908 :HackEgo!foobar@codu.org PRIVMSG #esoteric :247) nobody link to goatse elliott, that is an awesome MC idea. < 1319051015 566462 :HackEgo!foobar@codu.org PRIVMSG #esoteric :570) software patents strike again that's got to be at least three times, now are they out yet? < 1319051015 849348 :HackEgo!foobar@codu.org PRIVMSG #esoteric :182) "Europe is the national anthem of the Republic of Kosovo." alise: I I was going to say something then your last line floored me < 1319051023 731007 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :247 is bad < 1319051029 972053 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :The first two are boring, but the third is awkward enough to not really work as humour at all. < 1319051031 810969 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :288 is boring < 1319051033 413226 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 247 < 1319051035 725498 :HackEgo!foobar@codu.org PRIVMSG #esoteric :​*poof* < 1319051038 615802 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051038 964712 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051039 315420 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051039 537842 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051039 811430 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051041 36147 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :183 is at least vaguely funny < 1319051047 915431 :HackEgo!foobar@codu.org PRIVMSG #esoteric :602) OK so firstly you should eliminate electrons. < 1319051048 728562 :HackEgo!foobar@codu.org PRIVMSG #esoteric :648) You know how the arrow pierces your skin, rearranging and randomizing vital internal structure? Monads are like that, only worse. < 1319051051 78194 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: I think thirty might have been a decent score back then < 1319051056 536577 :HackEgo!foobar@codu.org PRIVMSG #esoteric :494) to assume that someone can be described by a rule without exception... is to assume they are omnipotent for instance stones are omnipotent, as they don't do anything, without exception < 1319051058 902782 :HackEgo!foobar@codu.org PRIVMSG #esoteric :30) after all, what are DVD players for? < 1319051059 330935 :HackEgo!foobar@codu.org PRIVMSG #esoteric :54) no Deewiant No?! I've been living a lie yep. Excuse me while I jump out of the window -> < 1319051061 610863 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: it's not bottom-of-the-leaderboard < 1319051068 752572 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :hmm, those are all pretty good < 1319051068 899307 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it's about two-thirds of the way down, typically < 1319051071 447230 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523 will say thirty is the worst < 1319051077 587479 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :I'll say 54 < 1319051082 485680 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :no, 30's decent IMO < 1319051083 824613 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :No, that one's a classic. < 1319051087 533276 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :out of context < 1319051101 36795 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :494 and 648 are the best < 1319051102 895705 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :Guys, I have just remembered news < 1319051105 633912 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :602 is probably the least funny < 1319051111 334408 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I'd say 602 too < 1319051115 21568 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 602 < 1319051116 417002 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :Ngevd: ham news? < 1319051116 909442 :HackEgo!foobar@codu.org PRIVMSG #esoteric :​*poof* < 1319051117 397252 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :"Facekicker" Hird is a member of the Hird family < 1319051124 200431 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Ahahaha < 1319051128 744477 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :OK one more until I stop laughing < 1319051129 701426 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051130 68022 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051130 376216 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051130 599403 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051130 829262 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051134 574220 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :Spelt that way < 1319051138 905633 :HackEgo!foobar@codu.org PRIVMSG #esoteric :46) The thing is just to exist < 1319051139 122305 :HackEgo!foobar@codu.org PRIVMSG #esoteric :341) django is named after a person? thought it would be a giraffe or something < 1319051146 936481 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :Ngevd, world-renowned detective. < 1319051148 941388 :HackEgo!foobar@codu.org PRIVMSG #esoteric :315) Why do you want to have sex in everything? I don't want. < 1319051150 298203 :HackEgo!foobar@codu.org PRIVMSG #esoteric :329) Phantom_Hoover: mutation is often considerably harder for both humans and compilers can analyze it much more difficult' part that induces bloody vomit... huh....intriguing < 1319051150 878012 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :I like 341 < 1319051151 24920 :HackEgo!foobar@codu.org PRIVMSG #esoteric :74) Warrigal: what do you mean by 21? < 1319051163 403705 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :46 is bad. < 1319051167 332260 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :so is 74 < 1319051167 950041 :hagb4rd!~perdito@koln-4db421c2.pool.mediaWays.net JOIN :#esoteric < 1319051174 391364 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: it's funnier coming from oklopol < 1319051174 538046 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :unless it's funny in context < 1319051183 640015 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :since he wouldn't ask something like that without actually meaning something < 1319051185 1238 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :I have this feeling all of my DF quotes are going to go. < 1319051194 140471 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Phantom_Hoover: No, those are all great. < 1319051198 139394 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :46 doesn't make much sense < 1319051198 305938 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 46 < 1319051200 841753 :HackEgo!foobar@codu.org PRIVMSG #esoteric :​*poof* < 1319051201 467490 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :the worst thing about 46 is, it's truncated < 1319051202 994017 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :without any mark < 1319051211 406296 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`log \d The thing is just to exist < 1319051224 50931 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :`addquote "Facekicker" Hird is a member of the Hird family Ngevd, world-renowned detective. < 1319051225 538203 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: \d? < 1319051226 200225 :HackEgo!foobar@codu.org PRIVMSG #esoteric :699) "Facekicker" Hird is a member of the Hird family Ngevd, world-renowned detective. < 1319051229 949176 :HackEgo!foobar@codu.org PRIVMSG #esoteric :2011-10-19.txt:19:06:51: `log \d The thing is just to exist < 1319051231 9883 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: last digit of the time < 1319051237 53872 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :HackEgo... < 1319051238 542937 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :ah, don't you need a colon too? < 1319051239 310411 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :that wasn't even a digit < 1319051242 855138 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`log \d: The thing is just to exist < 1319051243 746220 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: ah yes < 1319051248 402576 :HackEgo!foobar@codu.org PRIVMSG #esoteric :2011-10-19.txt:19:07:22: `log \d: The thing is just to exist < 1319051249 961880 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: but,e rr, did \d even work there? < 1319051254 439402 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`log [[:digit:]]: The thing is just to exist < 1319051259 750568 :HackEgo!foobar@codu.org PRIVMSG #esoteric :2009-08-06.txt:18:25:48: The thing is just to exist; those competitions are then, I don't know, some sort of sub-things. < 1319051266 438995 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Right. < 1319051270 397256 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051270 719728 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051271 199290 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051271 490337 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051271 732689 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051272 751602 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :that's a better quote in the entirety than the deleted one < 1319051274 189013 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :While we're on a roll. < 1319051276 887542 :HackEgo!foobar@codu.org PRIVMSG #esoteric :583) this reminds me of a time where this guy made up a pretend language that was in his fantasy world and then roleplayed as someone from his fantasy world who used the language and then tried to talk to me about the language < 1319051280 352228 :HackEgo!foobar@codu.org PRIVMSG #esoteric :50) Gregor is often a scandalous imposter. It's all the hats, I tell you. < 1319051287 345204 :HackEgo!foobar@codu.org PRIVMSG #esoteric :32) I am not on the moon. < 1319051290 621922 :HackEgo!foobar@codu.org PRIVMSG #esoteric :658) `pastelogs really makes me hate being alive < 1319051291 465152 :HackEgo!foobar@codu.org PRIVMSG #esoteric :173) You people. You people are so stupid. I'm making a SOCIOLOGICAL statement here. < 1319051302 534386 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :658 is bad but 32 is worse < 1319051306 975374 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :658 isn't good; 32 is only funny because it's zzo38 < 1319051310 159305 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :I like 32 < 1319051318 914237 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :It's 2^5 < 1319051321 680027 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 658 < 1319051324 32963 :HackEgo!foobar@codu.org PRIVMSG #esoteric :​*poof* < 1319051328 502067 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :the zzo humour adds a bit to it, I think < 1319051328 909871 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :Ngevd, if it's deleted then 33 will replace it. < 1319051331 773514 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :`quote 33 < 1319051333 750335 :HackEgo!foobar@codu.org PRIVMSG #esoteric :33) Or the brutal rape of the English language! That wasn't rape. English is always willing. < 1319051339 532766 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`run wc -l logs < 1319051340 764154 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :erm < 1319051341 308512 :HackEgo!foobar@codu.org PRIVMSG #esoteric :wc: logs: No such file or directory < 1319051343 55958 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :logs is quotes < 1319051344 133222 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :32 < 33 < 1319051344 625634 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`run wc -l quotes < 1319051345 633889 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :http://www.reddit.com/r/askscience/comments/lhe8y/is_it_possible_to_tie_a_knot_in_a_piece_of_string/c2spk1t < 1319051346 438557 :HackEgo!foobar@codu.org PRIVMSG #esoteric :698 quotes < 1319051353 304518 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Ngevd: They get renumbered upon deletion. < 1319051360 165008 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :I know < 1319051366 25611 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :I was making mathematical comments < 1319051369 653536 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :I just googled one version, no idea where I first saw it and/or the real original. < 1319051379 755423 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :Phantom_Hoover: the URL there is hilarious < 1319051380 686559 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :That are really uneneded in this channel < 1319051383 200046 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :*unneeded < 1319051390 307032 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :because it's cut off at just the right point < 1319051392 669212 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051393 36816 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051393 423234 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051393 660738 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051393 969121 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051397 908067 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :ais523, hey, it was a long-standing open problem! < 1319051398 54902 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :WHY NOT ANOTHER. < 1319051398 689133 :HackEgo!foobar@codu.org PRIVMSG #esoteric :71) i am sad ( of course by analogy) :) smileys) < 1319051402 3113 :HackEgo!foobar@codu.org PRIVMSG #esoteric :508) So... God has jizzed on everything? have you even READ the bible? < 1319051409 794271 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :I do remember there was a version that s/Shitting/Pooping/, and correspondingly in the Finnish. < 1319051412 603119 :HackEgo!foobar@codu.org PRIVMSG #esoteric :678) Dammit, Gregor, this is not the time to fall in love < 1319051413 40008 :HackEgo!foobar@codu.org PRIVMSG #esoteric :187) Gregor: You should never have got her pregnant. what whaaaaaaaaaaaat < 1319051414 206407 :HackEgo!foobar@codu.org PRIVMSG #esoteric :359) I think she either likes me, is neutral towards me, or dislikes me < 1319051434 800105 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :I'm amazed Taneb was able to bring himself to say 'jizzed'. < 1319051434 980690 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :187 is the worst there, IMO < 1319051439 89470 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :678 and 187 go well together < 1319051443 905925 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :they do < 1319051450 339651 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :508 and 359 are the best there < 1319051451 884128 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I think we should merge them into one quote, then delete them both < 1319051452 207363 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :Phantom_Hoover, I do say "jizzed" occasionally < 1319051460 253714 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: that would be _misrepresentation_ < 1319051465 86479 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :`addquote 678) Dammit, Gregor, this is not the time to fall in love 187) Gregor: You should never have got her pregnant. what whaaaaaaaaaaaat < 1319051465 654054 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :Mainly after someone else has said it < 1319051466 737003 :HackEgo!foobar@codu.org PRIVMSG #esoteric :699) 678) Dammit, Gregor, this is not the time to fall in love 187) Gregor: You should never have got her pregnant. what whaaaaaaaaaaaat < 1319051467 536096 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: at least without a really huge ellipsis < 1319051469 445962 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :no misrepresentation there at all < 1319051469 706174 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: I... < 1319051472 308763 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :No, I can't allow this. < 1319051476 50705 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :Ngevd, but I thought you were, like, negative Sgeo? < 1319051477 864363 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :IT IS JUST NOT RIGHT < 1319051482 685884 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :`quote SEXY < 1319051484 661220 :HackEgo!foobar@codu.org PRIVMSG #esoteric :81) What do you call the husband of my first cousin once removed? Warrigal: "Hey, Sexy." \ 210) HOT SEXY SEX BITS < 1319051485 783941 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :Almost < 1319051490 300665 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: but it's HackEgo's juxtaposition that's funny < 1319051499 958966 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :elliott: what's wrong with misrepresentation? < 1319051500 812063 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: OK fine but we can only delete one it's the rule. < 1319051501 55974 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :we quote fungot when /it's/ funny < 1319051501 483864 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :ais523: they are included by another file for each class < 1319051506 733590 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :I'm asexual, doesn't mean I don't pick up the lingo < 1319051507 185819 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 187 < 1319051509 407051 :HackEgo!foobar@codu.org PRIVMSG #esoteric :​*poof* < 1319051514 120973 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Ngevd: The LINGO of the STREETS. < 1319051521 439392 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: Let's do another one and hope we get the other one. < 1319051522 393805 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051522 722507 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051523 104795 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051523 251429 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :The LINGO of the BED, really < 1319051523 416574 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051523 583232 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051526 636468 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :Well, the laptop < 1319051532 128865 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :I'd like to learn the lingo of her streets, if you know what I mean. < 1319051532 721489 :HackEgo!foobar@codu.org PRIVMSG #esoteric :237) oklofok: I don't watch House, no. oklofok: I prefer knowing how medicine actually works. < 1319051533 205736 :HackEgo!foobar@codu.org PRIVMSG #esoteric :422) Fiddle. It makes a big difference, you know. < 1319051536 428636 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :OK, now I'm laughing < 1319051537 845754 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it took a while < 1319051544 100214 :HackEgo!foobar@codu.org PRIVMSG #esoteric :678) but i guess (x + y)^n = (x^2 + 2xy + y^2)(x^2 + 2xy + y^2)...(x^2 + 2xy + y^2) if n is even, (x + y)^n = (x^2 + 2xy + y^2)(x^2 + 2xy + y^2)...(x^2 + 2xy + y^2)(x + y) is as good a fundamental theorem as any < 1319051544 262339 :HackEgo!foobar@codu.org PRIVMSG #esoteric :46) I spent the last minute or so killing myself repeatedly < 1319051544 435306 :HackEgo!foobar@codu.org PRIVMSG #esoteric :294) !bfjoust sm3 < Score for Deewiant_sm3: 43.4 < 1319051544 594682 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :is 442 a GEB misquote? < 1319051548 27678 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :*422 < 1319051552 880969 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: it's zzo; so probably < 1319051557 778925 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :that's what I thought < 1319051562 14267 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it might even be a GEB literal quote < 1319051563 236388 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :237 isn't funny < 1319051573 828920 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: it's vaguely funny, but in an xkcd sort of way < 1319051582 384523 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :so probably isn't worth being there < 1319051584 523 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 237 < 1319051586 171155 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :294 is hilarious < 1319051586 317979 :HackEgo!foobar@codu.org PRIVMSG #esoteric :​*poof* < 1319051589 562182 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :Pre- or post-xkcdecay? < 1319051594 17015 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :is that from when the scoreboard was upside-down? < 1319051596 54204 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :Phantom_Hoover: post- < 1319051596 819418 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: yeah, I have no idea how it did /that/ well < 1319051601 919787 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: isn't that even an insta-death? < 1319051605 449613 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I mean < 1319051606 429830 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :as bad as ] < 1319051610 715269 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :hmm, no, ] is always 0 < 1319051611 330990 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: yes, I think it must have been from the upside-down scoreboard era < 1319051616 182823 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: how did /that/ work? < 1319051620 920892 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :`quote < 1319051621 67484 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :`quote < 1319051621 289434 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :`quote < 1319051621 525817 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :`quote < 1319051621 793460 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :`quote < 1319051624 350910 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it was a reversed test in the scoring function < 1319051631 351221 :HackEgo!foobar@codu.org PRIVMSG #esoteric :192) dc -e '[a=]P?[b=]P?[dSarLa%d0 A priori one cannot say that post hoc ergo propter hoc the diminishing returns would give; yet under quid pro quo one can agglutinate fabula and sujet into vagrancies untold. See? I'm intellectual. < 1319051634 933308 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :the hill was smaller back then < 1319051639 894654 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :so 43.4 was probably a top score < 1319051641 527677 :HackEgo!foobar@codu.org PRIVMSG #esoteric :159) Why shouldn't I just do everything in non-Microsoft-specific C#? it's like trying to write non-IE-specific JavaScript with only Microsoft documentation and only IE to test on < 1319051641 771325 :HackEgo!foobar@codu.org PRIVMSG #esoteric :316) enjoy being locked in your matrix of solidity < 1319051641 934509 :HackEgo!foobar@codu.org PRIVMSG #esoteric :154) anmaster gonna give him a birthday bj? IF ONLY I COULD FIND MY PHONE < 1319051657 560356 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :316 is the best there, obviously < 1319051660 357967 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :agreed < 1319051665 129824 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :192 or 356 are probably the worst < 1319051667 653550 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :It is the best anything ever. < 1319051671 369123 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :actually, 356 would be better without the second message < 1319051673 158706 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I don't get 154 < 1319051693 827905 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :192's pretty good, unless Vorpal actually meant for it to be funny. < 1319051703 595778 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I've been ignoring it on the grounds that I have no idea why it's there < 1319051704 552250 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :but oh well < 1319051705 146961 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I like 192, and suspect it wasn't intentional < 1319051707 996559 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 154 < 1319051710 71240 :HackEgo!foobar@codu.org PRIVMSG #esoteric :​*poof* < 1319051712 227300 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: it wasn't, I've read that log < 1319051714 443570 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :also, it's /actually on-topic/ < 1319051720 524094 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :(The Vorpalising occurred before we hit 200?) < 1319051722 578985 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :I like 159 < 1319051738 932211 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :http://www.reddit.com/r/askscience/comments/lgvn8/can_someone_explain_intuitively_the_connection/ < 1319051740 411597 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :I... < 1319051742 131635 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric : (The Vorpalising occurred before we hit 200?) < 1319051743 646789 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Phantom_Hoover: Renumbering. < 1319051747 615167 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :`quote 159 < 1319051748 401144 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :A /lot/ of early quotes have been deleted. < 1319051749 828313 :HackEgo!foobar@codu.org PRIVMSG #esoteric :159) (in #irp) Flonk, ask on #esoteric? Sgeo: yeah well its C++, so not that esoteric :P < 1319051763 663743 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: hmm, should I add persistent numbering? < 1319051768 393272 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :it'd make multiple deletions easier, for one thing < 1319051773 855380 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :How do you get to using Euler's identity in a maths class without deriving it? < 1319051786 713773 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: seems like it could go wrong easily < 1319051792 631967 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: err, howso? < 1319051794 568499 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :that was the original system < 1319051800 237891 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :`quote not actually true < 1319051802 601474 :HackEgo!foobar@codu.org PRIVMSG #esoteric :92) Note that quote number 124 is not actually true. < 1319051804 740689 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :and that's the other reason not to < 1319051813 51578 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :`quote 124 < 1319051815 240513 :HackEgo!foobar@codu.org PRIVMSG #esoteric :124) * augur rubs alise's bum [...] what? she said square ped :| < 1319051816 372707 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: that still wouldn't work because it'd start numbering based on current numbers < 1319051821 759620 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051822 791640 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051823 197775 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051823 362022 :HackEgo!foobar@codu.org PRIVMSG #esoteric :257) Vorpal: I'M NOT CLEVER OKAY < 1319051823 544717 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051823 856669 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051829 171260 :HackEgo!foobar@codu.org PRIVMSG #esoteric :109) it can be a good fursuit, but the good thing is that nobody can complain a fox doesn't have the right skin tone < 1319051829 891353 :HackEgo!foobar@codu.org PRIVMSG #esoteric :445) The wickedest man of all. Surpassed only in wickedness by the wicked witches of the west and east. you talking about me again? Yes. k < 1319051837 152738 :HackEgo!foobar@codu.org PRIVMSG #esoteric :13) "You're at that stage in your life where you're going to want to do some things in private." --my mom < 1319051840 212181 :HackEgo!foobar@codu.org PRIVMSG #esoteric :332) it is from 2002 though, I was younger then < 1319051846 301100 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :those were /all/ pretty bad < 1319051848 20644 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 257 < 1319051850 383994 :HackEgo!foobar@codu.org PRIVMSG #esoteric :​*poof* < 1319051851 904207 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :I've forgotten who I was actually talking about in 445. < 1319051859 18445 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: yep, I haven't figured which was worst yet < 1319051863 733433 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Phantom_Hoover: that one was really recent < 1319051878 489472 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Phantom_Hoover: I don't know how we've added like two hundred quotes since it, but I suspect it involves DF < 1319051893 842135 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :`quote 600 < 1319051895 801054 :HackEgo!foobar@codu.org PRIVMSG #esoteric :600) FFS, building a perpetual motion machine should not be this hard. < 1319051903 181581 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :`quote 700 < 1319051905 341315 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :Hypothesis confirmed. < 1319051905 661125 :HackEgo!foobar@codu.org PRIVMSG #esoteric :No output. < 1319051915 848595 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051916 353034 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051916 907388 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051917 54139 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051917 268464 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319051924 541645 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :today is the day the quotes died < 1319051925 603859 :HackEgo!foobar@codu.org PRIVMSG #esoteric :3) Hmmm... My fingers and tongue seem to be as quick as ever, but my lips have definitely weakened... More practice is in order. < 1319051928 224871 :HackEgo!foobar@codu.org PRIVMSG #esoteric :449) i never meta turing. he died before i was born. < 1319051935 3569 :HackEgo!foobar@codu.org PRIVMSG #esoteric :465) oklopol: Why do you have so much experience with hoop-and-stick? :P Gregor: my fetish: learning pointless skills < 1319051936 790609 :HackEgo!foobar@codu.org PRIVMSG #esoteric :506) This staircase is very good for correcting people's opininons about communism < 1319051937 79453 :HackEgo!foobar@codu.org PRIVMSG #esoteric :583) mmm these music samples are still so tasteful < 1319051948 964939 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :I like 449 < 1319051952 641212 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :506 is good, as is 583, as is 449; 465 is also pretty good < 1319051959 749782 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :3 isn't very good, but... it was one of the first quotes < 1319051965 86976 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I don't know if ... I can... delete it....... < 1319051966 743140 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :`quote ` < 1319051968 660319 :HackEgo!foobar@codu.org PRIVMSG #esoteric :9) Lil`Cube: you had cavity searches? not yet trying to thou, just so I can check it off on my list of things to expirence \ 41) `translatefromto hu en Hogy hogy hogy ami kemeny How hard is that \ 91) [Warrigal] `addquote hahaha, Lawlabee is running windows < 1319051968 911374 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :`quote 1 < 1319051971 198044 :HackEgo!foobar@codu.org PRIVMSG #esoteric :1) I used computational linguistics to kill her. < 1319051972 523243 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :`pastequotes < 1319051974 912261 :HackEgo!foobar@codu.org PRIVMSG #esoteric :http://codu.org/projects/hackbot/fshg/index.cgi/raw-file/tip/paste/paste.24524 < 1319051975 725446 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I think it's actually the original third quote. < 1319051995 333769 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :Gregor, FIX THAT ALREADY < 1319051999 99270 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :`quote 2 < 1319052001 193976 :HackEgo!foobar@codu.org PRIVMSG #esoteric :2) EgoBot just opened a chat session with me to say "bork bork bork" < 1319052010 849210 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oh well, let's do another, it is bringing the community Together < 1319052012 471659 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319052013 21761 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319052013 429046 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319052013 690826 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319052013 931447 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319052015 538257 :HackEgo!foobar@codu.org PRIVMSG #esoteric :505) Vorpal: Won't be slower than Python ;-) elliott_, yeah but that is like saying a T-Ford going down a hill won't be slower than a bicycle uphill on a bumpy road :P < 1319052018 901698 :HackEgo!foobar@codu.org PRIVMSG #esoteric :104) let's put that in the HackEgo quotes files, just to completely mystify anyone who looks back along them in the future < 1319052021 206069 :HackEgo!foobar@codu.org PRIVMSG #esoteric :110) I don't know that I've ever heard apocalypi described in terms of depth ... < 1319052027 37832 :HackEgo!foobar@codu.org PRIVMSG #esoteric :111) (still, whatever possessed anyone to invent the N-Gage?) < 1319052027 721806 :HackEgo!foobar@codu.org PRIVMSG #esoteric :290) OK, I give up, logging into Wikia is harder than writing a Firefox extension < 1319052033 883918 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :gah, those were all good < 1319052034 767078 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :104 was nice and meta < 1319052042 270085 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :apart from 104 but it provides required context to its proceeding quote < 1319052044 19610 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :104 explains the entire purpose if this excersize < 1319052045 471737 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :preceding < 1319052062 736610 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :`quote 103 < 1319052065 17464 :HackEgo!foobar@codu.org PRIVMSG #esoteric :103) so a.b.c.d.e.f.g.h.i.j.k.com might be self-relative, but a.b.c.d.e.f.g.h.i.j.k.l.com always means a.b.c.d.e.f.g.h.i.j.k.l.com.? < 1319052084 511156 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: you don't have to delete one… < 1319052107 974916 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: yeah, I'll just retry like usual < 1319052109 155637 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319052109 701589 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319052110 173715 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319052110 659931 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319052111 189753 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319052111 459494 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: I never did finish that Firefox extension, btw < 1319052111 643084 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :ok, I am appropriately mystified now < 1319052116 157522 :HackEgo!foobar@codu.org PRIVMSG #esoteric :559) toasters tend to get hot every time they're used < 1319052117 583227 :HackEgo!foobar@codu.org PRIVMSG #esoteric :161) GOODBAD! Your watered down brand of evil conflicts with my botched attempts at dogoodery! < 1319052118 664452 :HackEgo!foobar@codu.org PRIVMSG #esoteric :385) [on Sgeo's karaoke] That is the thing that made me into a gay vampire. < 1319052124 556909 :HackEgo!foobar@codu.org PRIVMSG #esoteric :129) you move on the tape and shit < 1319052125 761792 :HackEgo!foobar@codu.org PRIVMSG #esoteric :95) I can do everything a Turing machine can do, except love < 1319052125 908464 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I'm using an existing one that sort-of works, but I still have to press enter in the address bar < 1319052142 893894 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :559 isn't very good < 1319052149 928696 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :95 is good < 1319052166 724083 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 559 < 1319052168 610350 :HackEgo!foobar@codu.org PRIVMSG #esoteric :​*poof* < 1319052192 840038 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319052193 498616 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319052193 727136 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319052194 37055 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319052194 280324 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319052200 895117 :HackEgo!foobar@codu.org PRIVMSG #esoteric :596) Deewiant: How do you go through life without seeing at least one gaping anus, that's what I want to know < 1319052202 511713 :HackEgo!foobar@codu.org PRIVMSG #esoteric :406) Lymia, I don't know what that is but I want to hit you for it on principle. < 1319052212 10188 :HackEgo!foobar@codu.org PRIVMSG #esoteric :77) I'm 100% of what sort of magic was involved in it < 1319052212 698382 :HackEgo!foobar@codu.org PRIVMSG #esoteric :683) When my registrar is emailing me that codu.xxx is available, that's a problem. < 1319052213 509602 :HackEgo!foobar@codu.org PRIVMSG #esoteric :175) alise: so parrot was based around gcc? < 1319052221 160858 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :haha, 175 is good < 1319052228 348850 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :175 /is/ good < 1319052232 871669 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :684 is good < 1319052234 430492 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :77 has to stay because it resulted in Vorpal spending about ten hours trying to remove it < 1319052235 117137 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :*3 < 1319052244 319596 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: ah, OK; it isn't good, but if that's the context than that's good < 1319052247 620338 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :`quote 683 < 1319052248 277011 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :took a while to notice the nick in 175 :) < 1319052249 630721 :HackEgo!foobar@codu.org PRIVMSG #esoteric :683) When my registrar is emailing me that codu.xxx is available, that's a problem. < 1319052251 29719 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :`quote 684 < 1319052252 954820 :HackEgo!foobar@codu.org PRIVMSG #esoteric :684) Also you steal Berwick from us and then say you don't want it? You stole it from us first! < 1319052282 269522 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`run wc -l quotes < 1319052284 9484 :HackEgo!foobar@codu.org PRIVMSG #esoteric :694 quotes < 1319052307 144119 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :wow, that reply actually makes sense as a sentence < 1319052313 238920 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :what reply? < 1319052317 209212 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oh < 1319052317 411845 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :"694 quotes" < 1319052317 700553 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :heh < 1319052351 871835 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`run echo '#!/bin/sh' >bin/qc; echo 'wc -l quotes' >>bin/qc; chmod +x bin/qc < 1319052353 749814 :HackEgo!foobar@codu.org PRIVMSG #esoteric :No output. < 1319052354 121783 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :(qc for quote count) < 1319052355 99072 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`qc < 1319052357 17819 :HackEgo!foobar@codu.org PRIVMSG #esoteric :694 quotes < 1319052374 459214 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :Now we just need to add "how_many" as a euphemism for "run wx -l" < 1319052378 106429 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :*wc < 1319052401 240211 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oh well, let's do another, this is fun < 1319052401 546353 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :Would `run wx -l do anything? < 1319052403 305756 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319052403 964964 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319052404 537496 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319052404 761544 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :`run wx -l < 1319052405 31439 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319052405 409840 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319052408 615977 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :Ngevd: easy enough to find out < 1319052409 950856 :HackEgo!foobar@codu.org PRIVMSG #esoteric :556) What is it with Cardassians, they're all really nice and then they hit you with a rock. < 1319052414 318885 :HackEgo!foobar@codu.org PRIVMSG #esoteric :102) Clearly we should be like Mumbai and get of vehicle dors. Get of vehicle dors? I think Aftran had a French phrase there. Les vehicles d'or < 1319052416 168900 :HackEgo!foobar@codu.org PRIVMSG #esoteric :57) What is there to talk about besides gay slang? < 1319052425 253331 :HackEgo!foobar@codu.org PRIVMSG #esoteric :404) `addquote two quotes about quotes about django I guess the worst part is that I appear in all three hackego quotes about django elliott_: another quote? you're not helping :/ < 1319052425 399738 :HackEgo!foobar@codu.org PRIVMSG #esoteric :169) I love logic, especially the part where it makes no sense. < 1319052425 574752 :HackEgo!foobar@codu.org PRIVMSG #esoteric :sh: wx: not found < 1319052427 39090 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :57 is bad < 1319052437 586845 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :494 is good < 1319052440 223256 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :*404 < 1319052442 591983 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :169 is good < 1319052443 479690 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :404 is from the Night of Django Quotes < 1319052446 606658 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :It is 13^2 < 1319052448 737238 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :102 isn't good < 1319052458 843317 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I'm OK with 169 < 1319052462 683407 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :169 is boring, but 57 is boringer < 1319052464 215996 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 57 < 1319052464 685484 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I'm OK with 169 < 1319052466 136618 :HackEgo!foobar@codu.org PRIVMSG #esoteric :​*poof* < 1319052469 578318 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I'm OK with 169 < 1319052502 519186 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319052502 997030 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319052503 494794 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319052504 12673 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319052504 443858 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319052506 768976 :HackEgo!foobar@codu.org PRIVMSG #esoteric :378) i know it's unusual, but i agree with you both to some extent < 1319052511 309019 :HackEgo!foobar@codu.org PRIVMSG #esoteric :394) sgeo do you actually know what sex looks like i am just checking here I think so < 1319052511 942588 :HackEgo!foobar@codu.org PRIVMSG #esoteric :666) Vorpal: "still it's a flower in the sense that it's more experienced the nanny" < 1319052517 855315 :HackEgo!foobar@codu.org PRIVMSG #esoteric :520) My memory passed rest in peace sgeos memory < 1319052518 953649 :HackEgo!foobar@codu.org PRIVMSG #esoteric :523) [2008] i'm testing Haiku and it appears that it is a major shit 5+7+5, not 5+11, nooga < 1319052526 715169 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :666 makes no sense < 1319052532 730712 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`log \d: Vorpal: "still it's a flower in the sense that it's more experienced the nanny" < 1319052533 489234 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: indeed < 1319052545 281937 :HackEgo!foobar@codu.org PRIVMSG #esoteric :2011-10-19.txt:19:28:52: `log \d: Vorpal: "still it's a flower in the sense that it's more experienced the nanny" < 1319052550 324036 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :osdjfdlkjsd;lfgsdg < 1319052551 461398 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :523 is one of my favourites < 1319052551 607988 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :523 is good < 1319052559 626977 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`log [[:digit:]]: Vorpal: "still it's a flower in the sense that it's more experienced the nanny" < 1319052565 80153 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: omg 523 < 1319052565 865813 :HackEgo!foobar@codu.org PRIVMSG #esoteric :2011-09-30.txt:19:50:16: Vorpal: "still it's a flower in the sense that it's more experienced the nanny" < 1319052571 480967 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`logurl 2011-09-30.txt:19:50:16: < 1319052573 580138 :HackEgo!foobar@codu.org PRIVMSG #esoteric :http://codu.org/logs/log/_esoteric/2011-09-30 < 1319052576 146603 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :523 is pretty amazing. < 1319052593 955770 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Oh, it's a perl-fungot thing. < 1319052594 301365 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :elliott: my lame solution was just a silly little knowledge databse < 1319052597 759103 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 666 < 1319052599 926180 :HackEgo!foobar@codu.org PRIVMSG #esoteric :​*poof* < 1319052603 256829 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :fungot: Hey, I wrote that thing. < 1319052603 582817 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :elliott: your system, you mean? you want to < 1319052609 830332 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :fungot: Yes, my system. Apologise please. < 1319052610 317648 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :elliott: define innovation. it's not because you're the one who was asking about your example. < 1319052619 943309 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :fungot: I wasn't trying to be innovative! < 1319052620 456893 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :elliott: hey now, its called ' the report on scheme, the innermost parentheses fire first and the second is the creation of egobot < 1319052622 971897 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :fungot is getting better < 1319052623 463400 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :Ngevd: it takes a list of elements and need to take a moment's rest arguments unless it absolutely has to, via a trivial isomorphism of bf. < 1319052629 584162 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Ngevd: the fungot style is the best, really < 1319052629 834139 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :elliott: i'd prefer clog < 1319052637 534830 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :^style clog < 1319052637 724358 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :Not found. < 1319052644 13041 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :silly fungot < 1319052644 159817 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :since it's a mix of all the sets, weighted by how much we liked them < 1319052644 400807 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :Ngevd: i grew up they started smoking at the age of 8? < 1319052646 7789 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :(= picked them) < 1319052654 883348 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :ACTION → crappy part of Ireland < 1319052658 557626 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :19:50:53: elliott, WHAT IF IT'S JUST REALLY HARD CLOTH < 1319052664 114790 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :Catholic Belfast? < 1319052664 431899 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Phantom_Hoover: I thought you were already there. < 1319052674 490793 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :ACTION → even crappier part of Ireland < 1319052676 625809 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Ah. < 1319052682 538209 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Phantom_Hoover: So, Scotland? < 1319052695 391965 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :ACTION → shut up elliott  < 1319052701 126485 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Phantom_Hoover: Wales??? < 1319052712 850596 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :Isle of Man? < 1319052718 338839 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :Iceland? < 1319052720 248657 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :South Ireland? < 1319052720 748464 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319052721 239527 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319052721 641567 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319052722 101098 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319052722 533593 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319052725 860537 :HackEgo!foobar@codu.org PRIVMSG #esoteric :493) Taneb: See, it's Obama's fault the guy's apartment is now worth less than their mortgage and something something something that translates to not being able to look for a proper fix. Someone with that sort of grasp of logic shouldn't be allowed anything more computationally powerful than a plastic spoon < 1319052729 154951 :HackEgo!foobar@codu.org PRIVMSG #esoteric :151) ais523: elf corpses are not considered expensive health food. but the most expensive. < 1319052731 38720 :HackEgo!foobar@codu.org PRIVMSG #esoteric :195) comex: what? *vorpal comex: hi, tab-complete completed c to comex instead of Vorpal, dunno why < 1319052736 232649 :HackEgo!foobar@codu.org PRIVMSG #esoteric :562) software patents strike again that's got to be at least three times, now are they out yet? < 1319052736 768074 :HackEgo!foobar@codu.org PRIVMSG #esoteric :413) The system I kind of have in mind makes a flying train a natural consequence. < 1319052748 157125 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :195 isn't that good < 1319052759 461148 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :493's a bit meh < 1319052770 230769 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :493's would be better with just the taneb line < 1319052770 447331 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I like the other three < 1319052777 829149 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: right, it would < 1319052781 726576 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :but it isn't that < 1319052782 407491 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :and so < 1319052783 605623 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 493 < 1319052785 341095 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover/x-3377486 QUIT :Quit: Leaving < 1319052785 575107 :HackEgo!foobar@codu.org PRIVMSG #esoteric :​*poof* < 1319052789 391257 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ACTION likes 195, personally < 1319052800 856452 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :weird taste in quotes < 1319052801 606623 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :Shall we add the Taneb line back in? < 1319052812 565209 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :hmm < 1319052817 187345 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :only if we can splice it in the right place < 1319052821 619882 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :Tricky < 1319052822 418657 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :^style europarl < 1319052822 565410 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :Selected style: europarl (European Parliament speeches during approx. 1996-2006) < 1319052823 149290 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :anyone know sed? :P < 1319052832 423897 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :Gregor, can it be done? < 1319052833 169058 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: I do, sort-of < 1319052844 767704 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it'd have been easier to sed before the deletion, by quite a way, though < 1319052851 244682 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: copy all lines but N verbatim < 1319052852 926750 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :obviously, everyone knows sed here < 1319052856 118556 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: on N, do {print; print another line} < 1319052862 639014 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oh, probably olsner will be able to do that < 1319052877 632138 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :N=492 here, if you start numbering from one < 1319052888 486811 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :although we can still do "195i\\\nline to add" < 1319052895 852540 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :wait, 492, not 195 < 1319052905 655114 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :elliott: what ais523 just said :) < 1319052910 110534 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :You don't need the \\\n, surely? < 1319052919 667803 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :Deewiant: no as a GNU extension < 1319052924 178548 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :Deewiant: it's escaped, you need backslash newline < 1319052931 930304 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :you need backslash-newline in actual sed < 1319052934 216042 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :olsner: Evidently I'm GNU < 1319052944 473345 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :but there's a GNU extension that lets you omit it for adding a single line < 1319052957 337484 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`run sed -i '492i Someone with that sort of grasp of logic shouldn't be allowed anything more computationally powerful than a plastic spoon' quotes < 1319052957 752751 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :wait, is it i or a < 1319052959 242688 :HackEgo!foobar@codu.org PRIVMSG #esoteric :sh: Syntax error: Unterminated quoted string < 1319052964 205085 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :waht < 1319052965 707099 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: "shouldn't" < 1319052968 356900 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :contains a ' < 1319052969 649812 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :"3i\\\nfoo" --> line 3 is now foo < 1319052972 219327 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`run sed -i "492i Someone with that sort of grasp of logic shouldn't be allowed anything more computationally powerful than a plastic spoon" quotes < 1319052974 88188 :HackEgo!foobar@codu.org PRIVMSG #esoteric :No output. < 1319052975 795068 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Deewiant: argh < 1319052976 867284 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`help < 1319052977 975427 :HackEgo!foobar@codu.org PRIVMSG #esoteric :Runs arbitrary code in GNU/Linux. Type "`", or "`run " for full shell commands. "`fetch " downloads files. Files saved to $PWD are persistent, and $PWD/bin is in $PATH. $PWD is a mercurial repository, "`revert " can be used to revert to a revision. See http://codu.org/projects/hackbot/fshg/ < 1319052986 511956 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :http://codu.org/projects/hackbot/fshg/index.cgi/rev/e40069cec137 < 1319052986 688560 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :`quote 492 < 1319052987 861428 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :nope < 1319052988 943065 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :that was right < 1319052989 89832 :HackEgo!foobar@codu.org PRIVMSG #esoteric :492) Someone with that sort of grasp of logic shouldn't be allowed anything more computationally powerful than a plastic spoon < 1319052990 47123 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :Deewiant: no, that's not i, that's c < 1319052991 203354 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oh < 1319052991 662270 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :damn < 1319052996 283465 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 492 < 1319052998 655978 :HackEgo!foobar@codu.org PRIVMSG #esoteric :​*poof* < 1319053003 609328 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ten, nine < 1319053004 806968 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :eight, seven < 1319053005 586612 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :six, five < 1319053006 45860 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`run sed -i "493i Someone with that sort of grasp of logic shouldn't be allowed anything more computationally powerful than a plastic spoon" quotes < 1319053008 97518 :HackEgo!foobar@codu.org PRIVMSG #esoteric :No output. < 1319053015 85542 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :$ echo "x\ny\nz" | sed 2ifoo < 1319053015 232123 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :x < 1319053015 232209 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :foo < 1319053015 232253 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :y < 1319053015 232296 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :z < 1319053017 822458 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: i adds before the line, a adds afterwards < 1319053017 969260 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :`quote 493 < 1319053019 965157 :HackEgo!foobar@codu.org PRIVMSG #esoteric :493) Someone with that sort of grasp of logic shouldn't be allowed anything more computationally powerful than a plastic spoon < 1319053024 489777 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :looks like it worked < 1319053029 730370 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :ais523: Maybe I'm confused, is that not line 2 < 1319053032 795688 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :http://codu.org/projects/hackbot/fshg/index.cgi/shortlog/e40069cec137 < 1319053034 399039 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :wtf? < 1319053042 352722 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :how come my newer sed sin't there < 1319053046 541124 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :and my delquote < 1319053049 655605 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :Deewiant: elliott: i adds before the line, a adds afterwards < 1319053059 595538 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :ais523: That's what I meant < 1319053060 752258 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: no, it's now correct < 1319053063 387744 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric : `quote 493 < 1319053063 534433 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric : 493) Someone with that sort of grasp of logic shouldn't be allowed anything more computationally powerful than a plastic spoon < 1319053068 564549 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :why isn't it in the fshg??? < 1319053073 295706 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oh < 1319053073 548520 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :http://codu.org/projects/hackbot/fshg/ < 1319053074 722418 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :there it is < 1319053081 227873 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319053081 596543 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319053082 122703 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319053082 501394 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319053082 867925 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319053090 497899 :HackEgo!foobar@codu.org PRIVMSG #esoteric :83) if you watch jaws backwards it's a movie about a giant shark that throws up so many people they have to open a beach < 1319053092 351273 :HackEgo!foobar@codu.org PRIVMSG #esoteric :462) [...] only the hamster's nervous system was tortured. although probably torturing a large logical gate constitutes a horrible thing to do if it comes in a cute container. < 1319053093 268897 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: yes, because you went "add before 493"; "add after 492" would have worked just as well < 1319053097 908957 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :83 is plagiarised < 1319053102 139956 :HackEgo!foobar@codu.org PRIVMSG #esoteric :437) I'm not even going to try and understand what you're proposing. i understand it perfectly. it's completely nuts. < 1319053102 323460 :HackEgo!foobar@codu.org PRIVMSG #esoteric :395) I can trust elliott_ to have an opinion on anything and everything Yes. And the best thing is: it is the correct opinion. < 1319053103 925325 :HackEgo!foobar@codu.org PRIVMSG #esoteric :21) IN AN ALTERNATE UNIVERSE: there is plenty of room to get head twice at once < 1319053119 224565 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I don't like the ALTERNATE UNIVERSE quotes < 1319053122 75447 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`log [[:digit:]]: I'm not even going to try and understand what you're proposing. < 1319053123 651398 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I love 395 < 1319053126 755780 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I think it was me who added it < 1319053128 67492 :HackEgo!foobar@codu.org PRIVMSG #esoteric :2011-06-14.txt:05:01:02: I'm not even going to try and understand what you're proposing. < 1319053128 214317 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: 83 is the worst by definition < 1319053130 415533 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 83 < 1319053132 560745 :HackEgo!foobar@codu.org PRIVMSG #esoteric :​*poof* < 1319053134 273962 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`logurl 2011-06-14.txt:05:01:02: < 1319053136 526984 :HackEgo!foobar@codu.org PRIVMSG #esoteric :http://codu.org/logs/log/_esoteric/2011-06-14 < 1319053137 881204 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: indeed, if plagiarised < 1319053140 978145 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: http://www.reddit.com/r/reddit.com/comments/7yxud/if_you_watch_the_movie_jaws_backwards_its_a_movie/ < 1319053142 987684 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :they even sell shirts of it < 1319053146 527962 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :elliott, I think we should work together to get more Hexhamites into esoteric programming < 1319053146 768710 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :ah, OK < 1319053151 160182 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Ngevd: oh no < 1319053166 922602 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I'm tempted to addquote that < 1319053176 831208 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :I wonder if slaughterhouse five is the first one of movies-backwards-thingies (it's, you know, a famous book and all) < 1319053185 732630 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :it's an obvious idea in hindsight < 1319053237 170171 :nooga!~nooga@maverick.aircity.pl PRIVMSG #esoteric :shhhhhhhhhit < 1319053255 603763 :nooga!~nooga@maverick.aircity.pl PRIVMSG #esoteric :never rely on tab completion in bash < 1319053260 462647 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :nooga: what did you just do? < 1319053269 537138 :nooga!~nooga@maverick.aircity.pl PRIVMSG #esoteric :i just deleted db on a production server < 1319053272 308608 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :ouch < 1319053274 328774 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :do you have backups? < 1319053280 88171 :nooga!~nooga@maverick.aircity.pl PRIVMSG #esoteric :and i don't have privledges to restore it < 1319053284 717179 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :wait what? < 1319053286 440925 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :if you read slaughterhouse five backwards it's a book about forgetting all about that watching movies backwards business < 1319053299 30031 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :who has privileges to delete the production db, but not to restore it? < 1319053303 155923 :nooga!~nooga@maverick.aircity.pl PRIVMSG #esoteric :i have to wait for the administration < 1319053304 571573 :nooga!~nooga@maverick.aircity.pl PRIVMSG #esoteric :yeah < 1319053306 399384 :nooga!~nooga@maverick.aircity.pl PRIVMSG #esoteric :sick < 1319053306 976166 :nooga!~nooga@maverick.aircity.pl PRIVMSG #esoteric ::D < 1319053308 699776 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I know I once accidentally deleted all the files in my home directory < 1319053319 685124 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :but not recursively, luckily < 1319053324 351010 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :I have three times deleted all my files everywhere < 1319053327 783240 :nooga!~nooga@maverick.aircity.pl PRIVMSG #esoteric :I did that too < 1319053328 520600 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :In three different ways < 1319053331 261459 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :and most of my important stuff's in directories < 1319053389 292002 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319053390 67865 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319053390 690962 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319053391 179563 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319053392 180477 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319053393 736065 :HackEgo!foobar@codu.org PRIVMSG #esoteric :16) Finally I have found some actually useful purpose for it. < 1319053398 182244 :HackEgo!foobar@codu.org PRIVMSG #esoteric :609) well, oerjan has a lot of opinions on this, so I'll hand it over to him < 1319053398 344337 :HackEgo!foobar@codu.org PRIVMSG #esoteric :611) now that we've cleared that up let us hug fungot = elliott_: let's not start that again." < 1319053404 42574 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :Thank the maker! < 1319053405 321662 :HackEgo!foobar@codu.org PRIVMSG #esoteric :29) so, he.. uh basically probed me with a weasel. < 1319053406 141969 :HackEgo!foobar@codu.org PRIVMSG #esoteric :304) zzo38: you missed the point. the point was way stupider than that. < 1319053407 653849 :nooga!~nooga@maverick.aircity.pl PRIVMSG #esoteric :elliott: how air is city? < 1319053412 422921 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :nooga: yes < 1319053421 191879 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: 29, yes? < 1319053437 197873 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: I wasn't looking, let me read it < 1319053441 856845 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :I've had an idea for a fungot style: < 1319053444 403123 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :Ngevd: that is the impression the commission' s great unwillingness to show flexibility in the labour market to new immigration, when we play games with montenegro and with southern serbia. this initiative raises various complex problems, which involve agreement with the european gauge high speed network of the leading economic, financial and banking timetable. on the basis of rule 8. notification of resignation in an official < 1319053448 818696 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: yep, 29 < 1319053451 257048 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :No wait, it sucked < 1319053451 810546 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :Nevermind < 1319053456 903362 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 29 < 1319053458 94455 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Ngevd: go on < 1319053459 47682 :HackEgo!foobar@codu.org PRIVMSG #esoteric :​*poof* < 1319053462 548677 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :the other four are all good < 1319053464 849052 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :Uncyclopedia < 1319053478 51589 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :yep, that'd suck < 1319053512 313881 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :How hard is it to add styles? < 1319053538 771200 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :is there a list of styles? which style is best? < 1319053560 224499 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :^style < 1319053560 410801 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :Available: agora alice c64 ct darwin discworld europarl* ff7 fisher fungot homestuck ic irc jargon lovecraft nethack pa sms speeches ss wp youtube < 1319053592 320311 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`log [[:digit:]]: zzo38: you missed the point. the point was way stupider than that. < 1319053594 878554 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :olsner: fungot is the best style < 1319053596 950593 :HackEgo!foobar@codu.org PRIVMSG #esoteric :2011-02-26.txt:22:17:09: zzo38: you missed the point. the point was way stupider than that. < 1319053597 525448 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :elliott: mrs president, you will see that we have once again a very brief comment on the law on the fnord of china. the hong kong talks, yet we assist mr giscard d'estaing by having a private, non-profit company that has produced fairly good economic growth and safeguarding the principle of mutual recognition in a sector that includes the views expressed, especially as regards schools and libraries, i.e. more employment opportu < 1319053600 216863 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric : Uncyclopedia < 1319053600 962364 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :eurgh < 1319053603 720437 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`logurl 2011-02-26.txt:22:17:09: < 1319053606 67367 :HackEgo!foobar@codu.org PRIVMSG #esoteric :http://codu.org/logs/log/_esoteric/2011-02-26 < 1319053629 448388 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :^style fungot < 1319053629 595056 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :Selected style: fungot (What I've said myself) < 1319053658 929070 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :it's based on ... what it's already said? < 1319053669 131293 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :or what *I* have said? < 1319053671 362998 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :> cycle "fungot" < 1319053671 540862 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :Ngevd: agora alice c64 ct darwin discworld europarl ff7 fisher ic irc* jargon lovecraft nethack pa speeches ss wp youtube comments) < 1319053672 281948 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : "fungotfungotfungotfungotfungotfungotfungotfungotfungotfungotfungotfungotfu... < 1319053677 454167 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :> cycle "fungot " < 1319053677 649658 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :Ngevd: " so that the text. perhaps the cards, you've been contemplating what could it be it by now. try. i've often amused myself that way. consider this platform i am aware, commissioner, that there are no gentiles in the garden, examining the fastenings of the drawing-room window, washing and the summoning of the small piece of source code anywhere there's whitespace is ignored and made my own) so it wont have < 1319053678 277596 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : "fungot fungot fungot fungot fungot fungot fungot fungot fungot fungot fung... < 1319053686 950205 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :fungot ignores lambdabot. < 1319053687 134518 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :elliott: to, uhhh....... uncool it online. it was an unmanned flight--thanks for doing your homework. seriously, read description :) ( maybe i suck at english as u suck at english as u suck at english as u suck at english as u suck at english as u suck at english as u suck at english as u suck at english as u suck at english as u suck at english as u suck at english as u suck at english as u suck at english as u suck at english < 1319053690 801408 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric : it's based on ... what it's already said? < 1319053690 948262 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :elliott: agora alice c64 ct darwin discworld europarl ff7 fisher ic irc* jargon lovecraft nethack pa speeches ss wp youtube ( some youtube comments) < 1319053692 404055 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :olsner: yep < 1319053695 321801 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :Ooh, that's clever < 1319053701 785591 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :fungot, what is love? < 1319053701 932400 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :Madoka-Kaname: perhaps, if i could but learn is when you're fairies, you know, that thing < 1319053726 370919 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :Almost accurate, too! < 1319053743 620059 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :fizzie, how likely is fungot achieving sentience? < 1319053743 894608 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :Ngevd: that is just a value of type is created containing the syntax for mark if he was really gonna ' let' me keep. i will walke my selfe, richard. then, heaven, i love thee well; and, by my friend, c < 1319053769 536127 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :There could be a Shakespeare style? < 1319053773 136915 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :there is < 1319053775 361318 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ss < 1319053785 338145 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :Ooh < 1319053792 27718 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :but, how can the fungot style be any good if it's just repeating old stuff? < 1319053792 292484 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :olsner:, so i'd be happy to help an fnord archive) implementations, more implementations, more implementations, more implementations, more implementations, more implementations, more implementations, more implementations, more implementations, more implementations, more implementations, more implementations, more implementations, more implementations, more implementations, more implementations, more implementations, more implem < 1319053792 896671 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :I thought that was Spades Slick or something < 1319053803 417496 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :olsner: because it's /all/ the styles mixed together < 1319053804 808285 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :olsner, interestingly < 1319053809 529841 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :olsner: proportionately to how much they said < 1319053813 336647 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :ah, right < 1319053816 427211 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :Also, I am thirsty < 1319053819 998570 :Ngevd!~Taneb@2.99.90.255 PRIVMSG #esoteric :I will go and drink < 1319053823 643026 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :olsner: and fungot has been around long enough that it's large enough for that to work < 1319053823 789629 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :elliott: that is just a value of type is created containing the syntax for mark if he was really gonna get worse and worse each week, < 1319053829 1393 :Ngevd!~Taneb@2.99.90.255 NICK :Taneb|Drinking < 1319053831 294857 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :olsner: plus it has like program outputs and stuff which is fun < 1319053852 422639 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :fungot does more things than the fungot thing? < 1319053852 601724 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :olsner: agora alice c64 ct darwin discworld europarl ff7 fisher ic irc* jargon lovecraft nethack pa speeches ss wp < 1319053872 356349 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :and why is it quoting me the styles again < 1319053892 822238 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :olsner: because fungot can list styles < 1319053892 985953 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :elliott: or is it just me, or i: yet, you rogue! < 1319053898 590307 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :and that corpus is everything's fungot said < 1319053898 737347 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :elliott: agora alice c64 ct darwin discworld europarl ff7 fisher ic irc* jargon lovecraft nethack pa speeches ss wp youtube comments). the other compiler; c-intercal uses c. 0 is 9" minutes ago! :p) then performed by marilyn manson.its a instrumental but even democrats have a lying, and love the video < 1319053900 893332 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :olsner: yes, of course < 1319053906 601793 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :^help < 1319053906 774115 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :^ ; ^def ; ^show [command]; lang=bf/ul, code=text/str:N; ^str 0-9 get/set/add [text]; ^style [style]; ^bool < 1319053909 416533 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :^cmds < 1319053915 602104 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :hmm, I swear ^cmds was the thing < 1319053916 159471 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :^show < 1319053916 306213 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :echo reverb rev rot13 rev2 fib wc ul cho choo pow2 source help hw srmlebac uenlsbcmra scramble unscramble asc ord prefixes tmp test celebrate wiki chr < 1319053920 288911 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :there < 1319053940 232975 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :^str 7 get < 1319053940 379508 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :Empty. < 1319053941 946983 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :^style youtube < 1319053942 93550 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :Selected style: youtube (Some YouTube comments) < 1319053945 407103 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :fungot, hi. < 1319053945 603597 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :Madoka-Kaname: fuck you, jaybedwell. < 1319053955 624316 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :fungot, how's today..? < 1319053955 877930 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :Madoka-Kaname: lol, this happened in june 1988. < 1319053960 233482 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :fungot, are you crazy? < 1319053960 580908 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :Madoka-Kaname: if you shoot a tank in the autothrottle. during the cold war. and deep inside ( sounds verry stupid)i already was like a fucking waste of space and i < 1319053966 166028 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :Yep. < 1319053976 172073 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :Is this what Youtube's collective consciousness is like? < 1319053992 720454 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :hmm, does fungot actively seek out new youtube comments, or how does that work? < 1319053992 983102 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :olsner: its good for about 10 seconds and then suddenly go girlie and then i jizz in my pants < 1319054014 806093 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :jizzing after going girlie, that's something < 1319054016 80728 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :^style fungot < 1319054016 228787 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :Selected style: fungot (What I've said myself) < 1319054028 280955 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :olsner: no, asiekierka just copy-pasted like ten comments < 1319054031 201963 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :because he has no idea how to program < 1319054038 178759 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :and then fizzie was forced to add them out of sympathy < 1319054064 852124 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :heh, ok... < 1319054100 827425 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :Madoka-Kaname: indeed < 1319054108 118890 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :asiekierka can program... just not well... < 1319054114 666374 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :he couldn't then, at least < 1319054124 882879 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :a google search for youtube comment corpus led to a python program to automatically extract comments from youtube < 1319054125 155881 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :this was in '09 < 1319054182 594481 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319054183 254861 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319054183 713263 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319054184 167562 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319054184 688366 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319054188 584632 :HackEgo!foobar@codu.org PRIVMSG #esoteric :282) The context is Gracenotes releasing an illegal copy of a film about monster cock dildos. < 1319054192 79845 :HackEgo!foobar@codu.org PRIVMSG #esoteric :113) fungot!*@* added to ignore list. AnMaster: i'd find that a bit annoying to wait for an ack. < 1319054192 353000 :HackEgo!foobar@codu.org PRIVMSG #esoteric :618) this strikes me as probably better than a singularity, because you can't trust a random AI, but you can probably trust olsner < 1319054198 393262 :HackEgo!foobar@codu.org PRIVMSG #esoteric :679) When my registrar is emailing me that codu.xxx is available, that's a problem. < 1319054199 46571 :HackEgo!foobar@codu.org PRIVMSG #esoteric :445) as always in sweden everything goes to a fixed pattern: thursday is queueing at systembolaget to get beer and schnaps, friday is pickled herring, schnaps and dancing the frog dance around the phallos, saturday is dedicated to being hung over < 1319054210 250513 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :618 is the best there < 1319054227 223159 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :113 is good; 618 is good; 679's OK; 445 is also OK; I don't like 282 all that much < 1319054246 34056 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :and the context for 282 is the thing that it is the context for < 1319054261 846306 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :282's humour derives from a previous quote that is actually funny < 1319054262 269808 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :so < 1319054263 863896 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 282 < 1319054266 48255 :HackEgo!foobar@codu.org PRIVMSG #esoteric :​*poof* < 1319054277 982438 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :`quote 281 < 1319054280 143684 :HackEgo!foobar@codu.org PRIVMSG #esoteric :281) HELLWORLD! It's like HELLO WORLD, except not *quite*. There is more agony. < 1319054281 170305 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :that one? < 1319054290 693153 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :no < 1319054359 367447 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :`quote < 1319054361 295491 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319054361 585941 :HackEgo!foobar@codu.org PRIVMSG #esoteric :225) ONLY GOOD QUOTES PLEASE! AND NO FAKE ONES EITHER! < 1319054362 109027 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319054363 37249 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319054363 965122 :HackEgo!foobar@codu.org PRIVMSG #esoteric :123) alise: why internet is like wtf < 1319054364 112296 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319054365 487154 :HackEgo!foobar@codu.org PRIVMSG #esoteric :473) elliott: You have become the very thing you fought for! < 1319054365 634104 :HackEgo!foobar@codu.org PRIVMSG #esoteric :237) Maybe they should just get rid of Minecraft. If more people want it someone can make using GNU GPL v3 or later version, with different people, might improve slightly. < 1319054366 716659 :HackEgo!foobar@codu.org PRIVMSG #esoteric :73) I want to read about Paris in the period 1900-1914 not about the sexual preferences of a bunch of writers >.> < 1319054382 345027 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :225 is bad and also breaks the rules, but 73 is also bad < 1319054386 436881 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :the rest are good < 1319054426 905710 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :if 225 is bad, then breaking the rules it itself tries to set should count for ... something? < 1319054431 962271 :Taneb|Drinking!~Taneb@2.99.90.255 NICK :Taneb < 1319054433 341535 :Taneb!~Taneb@2.99.90.255 PRIVMSG #esoteric :Hello! < 1319054445 553474 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :or maybe not < 1319054448 355218 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :olsner: it's a forged quote :P < 1319054452 521815 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 225 < 1319054454 626880 :HackEgo!foobar@codu.org PRIVMSG #esoteric :​*poof* < 1319054476 233906 :derdon!~derdon@p5DE89A44.dip.t-dialin.net JOIN :#esoteric < 1319054479 424531 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :bad, fake *and* simultaneously trying to forbid bad or fake quotes? < 1319054489 565306 :Taneb!~Taneb@2.99.90.255 PRIVMSG #esoteric :That's almost irony < 1319054489 885721 :oerjan!oerjan@sprocket.nvg.ntnu.no JOIN :#esoteric < 1319054499 265646 :GreaseMonkey!~gm@unaffiliated/greasemonkey JOIN :#esoteric < 1319054499 413507 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :olsner: it is called a joke < 1319054524 702679 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :oh! ok < 1319054697 166071 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :we should make fungot activate automatically after a set period of silence < 1319054697 349081 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :olsner: to. why, this is for you guys are a lot of the design, prisoners and slaves that have sucked. rephrase: " i tried todo a _" is 0 1215: ( files " machines/ mips/ decls" < 1319055021 466358 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :olsner: 2 hours, doubling with each message, dropping to 0 after other people speak? < 1319055052 673136 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: it should be six hours, and set the topic < 1319055055 959756 :citiral!~ThaMan@d54C0A684.access.telenet.be JOIN :#esoteric < 1319055061 741781 :citiral!~ThaMan@d54C0A684.access.telenet.be PRIVMSG #esoteric :Hello everyone! < 1319055065 515745 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :hi again citiral < 1319055069 718670 :citiral!~ThaMan@d54C0A684.access.telenet.be PRIVMSG #esoteric :Told'you I'd be back. < 1319055076 991254 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :ais523: that's ... frugal :) I was thinking more like a 5 minute timer that resets whenever someone says something < 1319055085 670509 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :so you're reinventing optbot again? < 1319055089 113576 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :citiral: No, you're a different citiral. < 1319055100 719151 :citiral!~ThaMan@d54C0A684.access.telenet.be PRIVMSG #esoteric :I'm the same citiral as yesterday. < 1319055108 946863 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :olsner: it'd be really spammy with nobody online < 1319055120 823879 :citiral!~ThaMan@d54C0A684.access.telenet.be PRIVMSG #esoteric :I remember rambling about GTA, so it must have to be me yesterday. < 1319055124 38563 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :ais523: yep! :) < 1319055130 946080 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :citiral: implanted memories < 1319055139 998229 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: it would pad out logs < 1319055141 617042 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :to a constant length < 1319055148 965567 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :pls < 1319055162 550499 :citiral!~ThaMan@d54C0A684.access.telenet.be PRIVMSG #esoteric :More like mind-jacking. < 1319055174 58251 :citiral!~ThaMan@d54C0A684.access.telenet.be PRIVMSG #esoteric :The real citiral's body is hidden in the closet. < 1319055180 417889 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :it would only really be useful for cases where people have been talking a lot but then suddenly run out of topic and stop < 1319055216 689172 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :but there are infinitely many topics < 1319055217 715462 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319055219 99801 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319055219 577277 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319055219 723863 :HackEgo!foobar@codu.org PRIVMSG #esoteric :332) Ohheywait, I can make it a raytracer instead of a photon tracer so long as I run time backwards. < 1319055220 253015 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319055220 864099 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319055226 819031 :HackEgo!foobar@codu.org PRIVMSG #esoteric :521) aibohphobia The fear of palindromes < 1319055227 164015 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: why don't we talk about esolangs sometime? < 1319055228 540765 :HackEgo!foobar@codu.org PRIVMSG #esoteric :318) addquoting yourself? isn't that like commenting on your own facebook status? Yup, but I'm JUST THAT AWESOME. < 1319055231 88905 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :ais523: run out of the *current* topic then < 1319055233 506916 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :we were earlier, I think < 1319055235 117081 :HackEgo!foobar@codu.org PRIVMSG #esoteric :46) It looks like my hairs are too fat. Can you help me split them? < 1319055235 892126 :HackEgo!foobar@codu.org PRIVMSG #esoteric :149) ais523: elf corpses are not considered expensive health food. but the most expensive. < 1319055240 363450 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: those suck < 1319055254 184325 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :hmm, those are all pretty good < 1319055265 607163 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :46 is the worst IMO < 1319055269 275277 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :but am not sure if it's worth deleting < 1319055285 699900 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :`addquote ais523: those suck hmm, those are all pretty good < 1319055287 452852 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :it's mildly amusing < 1319055287 824302 :HackEgo!foobar@codu.org PRIVMSG #esoteric :689) ais523: those suck hmm, those are all pretty good < 1319055307 235088 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: that one is awful, but OK FINE < 1319055316 843977 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: giving you a new option of ones to delet < 1319055318 267115 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :*delete < 1319055320 748897 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it's not terrible < 1319055327 879308 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric ::D < 1319055329 226305 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319055330 118178 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319055330 377256 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319055330 642322 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319055331 5581 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319055333 21749 :HackEgo!foobar@codu.org PRIVMSG #esoteric :2) EgoBot just opened a chat session with me to say "bork bork bork" < 1319055333 426967 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :this is the funnest game omg < 1319055336 132296 :HackEgo!foobar@codu.org PRIVMSG #esoteric :2) EgoBot just opened a chat session with me to say "bork bork bork" < 1319055337 923886 :HackEgo!foobar@codu.org PRIVMSG #esoteric :69) i am sad ( of course by analogy) :) smileys) < 1319055338 370894 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :... < 1319055339 759532 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :that < 1319055340 805883 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :same < 1319055341 556461 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :quote < 1319055344 215400 :HackEgo!foobar@codu.org PRIVMSG #esoteric :302) just because i'm homosexual doesn't mean i have sex with men. ...i'm also a paedophile [...] see if i'm a gay paedophile i don't have sex with men i have sex with BOYS < 1319055345 803379 :HackEgo!foobar@codu.org PRIVMSG #esoteric :571) I didn't realise nickel apparently can't be shaped into a screw because of some fundamental feature of dwarven physics. < 1319055351 973779 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :DF quotes are all good < 1319055353 175749 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :universally < 1319055356 607252 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :anyway I'm restarting since it duplicated that one < 1319055357 693531 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319055358 276787 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319055358 644809 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319055358 882279 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319055359 183896 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1319055365 408217 :HackEgo!foobar@codu.org PRIVMSG #esoteric :621) We have no leather. Time to use that most venerable of resources, the puppy. < 1319055367 537816 :HackEgo!foobar@codu.org PRIVMSG #esoteric :653) It's like Pygmalion and Galatea but more weeaboo. Also lesbian. < 1319055373 300299 :citiral!~ThaMan@d54C0A684.access.telenet.be PRIVMSG #esoteric :What language are most bots written in here? < 1319055378 46254 :HackEgo!foobar@codu.org PRIVMSG #esoteric :185) pikhq, Okinawan? Wtf is that < 1319055378 307517 :HackEgo!foobar@codu.org PRIVMSG #esoteric :540) Oh god. I've become a metallurgy hipster. < 1319055379 563835 :HackEgo!foobar@codu.org PRIVMSG #esoteric :37) I guess when you're immortal, mapping your fonts isn't necessary < 1319055383 249451 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oh, has anyone explained to citiral what we're actually doing here < 1319055391 35635 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :citiral: HackEgo is a Linux system so it's all sorts of languages < 1319055392 617909 :citiral!~ThaMan@d54C0A684.access.telenet.be PRIVMSG #esoteric :I was wondering... < 1319055392 849709 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :EgoBot too < 1319055397 69148 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :but the actual bot code is C and sh < 1319055400 692803 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :fungot is Funge < 1319055400 839402 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :elliott: agora alice c64 ct darwin discworld europarl ff7 fisher ic irc* jargon lovecraft nethack pa speeches ss wp youtube* < 1319055404 9708 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :lambdabot is Haskell < 1319055413 315838 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :clog is... dunno, but it never speaks :-) < 1319055413 462757 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :elliott: I think you might need to explain that to me too, it's a bit hazy to me < 1319055418 940124 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :glogbot is C, I think maybe sh too < 1319055424 142099 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :olsner: cullin the quotes < 1319055427 874481 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :thutubot is written in Thutu, but isn't here < 1319055429 271645 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: 185, right? < 1319055435 784270 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :elliott: you can get an error message out of clog < 1319055440 168833 :citiral!~ThaMan@d54C0A684.access.telenet.be PRIVMSG #esoteric :Those are a lot of bots.. < 1319055441 292185 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: right, but we should stop this at some point < 1319055446 399534 :citiral!~ThaMan@d54C0A684.access.telenet.be PRIVMSG #esoteric :Watch out, they might become sentient! < 1319055446 548253 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 185 < 1319055448 666703 :HackEgo!foobar@codu.org PRIVMSG #esoteric :​*poof* < 1319055448 813288 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: fiiiiine :P < 1319055452 448309 :citiral!~ThaMan@d54C0A684.access.telenet.be PRIVMSG #esoteric :Skynet all over again < 1319055453 825946 :citiral!~ThaMan@d54C0A684.access.telenet.be PRIVMSG #esoteric :! < 1319055456 145796 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :citiral: only four that ever speak < 1319055457 774322 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :elliott: aah, is that what we're doing! carry on then :) < 1319055468 227967 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :olsner: but ais523 said to stop....... < 1319055470 823968 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :fungot: what does he mean, clearly you are sentient already? < 1319055470 970873 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :oerjan: if that is not used commonly and carries with it an array subscript was too easy heh one time i figured if it's possible. " formal " desu" or " not provide" :) < 1319055471 117517 :thutubot!~thutubot@cpc2-king8-0-0-cust831.perr.cable.virginmedia.com JOIN :#esoteric < 1319055476 989735 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :+help < 1319055481 877117 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :hi thutubot < 1319055482 224861 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :umm, I've forgotten how to work this thing < 1319055483 806379 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :+hello < 1319055483 953163 :thutubot!~thutubot@cpc2-king8-0-0-cust831.perr.cable.virginmedia.com PRIVMSG #esoteric :Hello, ais523! < 1319055484 905481 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :+haskell 99 < 1319055495 323592 :citiral!~ThaMan@d54C0A684.access.telenet.be PRIVMSG #esoteric :+hello < 1319055495 470183 :thutubot!~thutubot@cpc2-king8-0-0-cust831.perr.cable.virginmedia.com PRIVMSG #esoteric :Hello, citiral! < 1319055498 227888 :citiral!~ThaMan@d54C0A684.access.telenet.be PRIVMSG #esoteric :+test < 1319055499 664343 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :elliott: he said to stop *at some time*, not now < 1319055503 852885 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ah, true < 1319055506 75396 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: lambdabot's ignoring thutubot… < 1319055511 809634 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: no, it was broken < 1319055514 878225 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :+ul (:aSS):aSS < 1319055515 24996 :thutubot!~thutubot@cpc2-king8-0-0-cust831.perr.cable.virginmedia.com PRIVMSG #esoteric :(:aSS):aSS < 1319055516 129805 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :you said that last tim < 1319055516 545031 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :e < 1319055518 242283 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :it broke somehow < 1319055521 276924 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :olsner: you do the next batch (it's five `quotes) < 1319055521 538441 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: well, it sent the privmsg to lambdabot, but got no response < 1319055526 363979 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: no, it's broken :-) < 1319055526 510627 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I'm not sure exactly what happened there < 1319055530 221938 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :you figured out how at the time < 1319055534 364363 :citiral!~ThaMan@d54C0A684.access.telenet.be PRIVMSG #esoteric :So how do these bots get hooked up to an IRC client? < 1319055540 720572 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :PRIVMSG lambdabot :@run 99 < 1319055543 175465 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :citiral: they are IRC clients < 1319055546 434743 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :citiral: they don't, they connect to the server themselves < 1319055550 500887 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oh < 1319055551 951291 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :IRC is a pretty simple protocol; you can do it by hand, if you like < 1319055552 117241 :citiral!~ThaMan@d54C0A684.access.telenet.be PRIVMSG #esoteric :Oh, I see. < 1319055553 418493 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :apart from myndzi \o/ < 1319055554 48408 :myndzi!myndzi@c-67-168-184-168.hsd1.wa.comcast.net PRIVMSG #esoteric :                    | < 1319055554 298172 :myndzi!myndzi@c-67-168-184-168.hsd1.wa.comcast.net PRIVMSG #esoteric :                   /< < 1319055556 168520 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :that's an mirc script < 1319055560 126351 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :\m/ \o/ \m/ < 1319055560 472659 :myndzi!myndzi@c-67-168-184-168.hsd1.wa.comcast.net PRIVMSG #esoteric :         | < 1319055560 704370 :myndzi!myndzi@c-67-168-184-168.hsd1.wa.comcast.net PRIVMSG #esoteric :        /< < 1319055562 126559 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :aww < 1319055565 634372 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :,o/ \o, < 1319055567 777840 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :hmph < 1319055569 674602 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i'm bad at this < 1319055577 928964 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :is myndzi a person? or does it only do the stick figures? < 1319055589 475857 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :myndzi is a person and bot sharing the same account < 1319055606 411849 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :which lead to fun when I tried to manipulate the bot into getting the person to sign up for Agora < 1319055614 655160 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :omg, the ambiguity, we can never be sure which of them is speaking < 1319055617 551971 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :what does myndzi repeat on, again? < 1319055649 942964 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :^celebrate < 1319055650 90217 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric : \o| |o| |o/ \m/ \m/ |o/ \o/ \o| \m/ \m/ \o| |o| |o/ < 1319055650 680531 :myndzi!myndzi@c-67-168-184-168.hsd1.wa.comcast.net PRIVMSG #esoteric :  |   |   |    `\o/´    |   ¦   |    `\o/´    |   |   | < 1319055650 960553 :myndzi!myndzi@c-67-168-184-168.hsd1.wa.comcast.net PRIVMSG #esoteric : /'\ /<  /<      |     /´\ ´¸¨  |\     |      |\ /'\ /`\ < 1319055651 107192 :myndzi!myndzi@c-67-168-184-168.hsd1.wa.comcast.net PRIVMSG #esoteric :                /´\                   /'¯|_) < 1319055651 107352 :myndzi!myndzi@c-67-168-184-168.hsd1.wa.comcast.net PRIVMSG #esoteric :              (_| |_)               (_| < 1319055655 897316 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric ::') < 1319055656 720863 :citiral!~ThaMan@d54C0A684.access.telenet.be PRIVMSG #esoteric :Is it possible to write a bot in befunge-93 or -98? < 1319055664 23262 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :^source < 1319055664 170205 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :http://git.zem.fi/fungot/blob/HEAD:/fungot.b98 < 1319055665 413562 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :citiral: -98 actually has networking code < 1319055667 852850 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :citiral: you /know/ it's possible in -98, we've shown you fungot's source about ten times < 1319055667 999566 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :elliott: no, it's not. it's more complex than that. read the code.) good stuff to colin kernel be the glass in its short justification, the committee on budgetary control, not going to refer to ur own name? ya) < 1319055669 547534 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :so fungot's written in it < 1319055669 694242 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :ais523: just to help an fnord archive) or " in meinen lederhosen" ( plural < 1319055679 283144 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :-93 is doable with netcat < 1319055683 250538 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :even EgoBot and HackEgo use netcat (well, socat) < 1319055686 78105 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :in -93, it would be much harder, and you'd need an external program to connect it to IRC < 1319055695 652840 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :but -93 is way too limited < 1319055696 802786 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :thutubot uses netcat, which is probably simplest < 1319055703 655319 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :you could do a hunt the wumpus bot but probably nothing else :) < 1319055732 461939 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :+ul (12)S(*a(~:)~*^~):((1)S)~*~((2)S:*)~*:(~:()~)~*^(a(:^)*~a(*()~)~*^~^):^ < 1319055736 153606 :citiral!~ThaMan@d54C0A684.access.telenet.be PRIVMSG #esoteric :And if I write even the simplest of bots I may put him here, or do I first need some sort of approval? < 1319055741 284499 :thutubot!~thutubot@cpc2-king8-0-0-cust831.perr.cable.virginmedia.com PRIVMSG #esoteric :1221121221221121122121121221121121221221121221211211221221121221221121121221211221221121221221121122121121221221121121221121122121121122122112122121122122121121122122112122121121122121121221121121221211221221121221221121121221121122122121121221121122121121 ...too much output! < 1319055745 160652 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :citiral: the basic rule is to try to avoid botloops < 1319055748 653495 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :so get your bot to ignore other bots < 1319055750 878918 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :" elliott: no, it's not. it's more complex than that. read the code." :) < 1319055751 86133 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :olsner:, so i'd make stuff up to. why, this is for you guys are a lot, but played so bad and missed that: ( :::ass. in case you missed that: ( :::ass. in case you missed that: ( :::ass. in case you missed that: ( :::ass. in case you missed that: ( :::ass. in case you missed that: ( :::ass. in case you missed that: ( :::ass. in case you missed that: ( :::ass. in case you missed that: ( :::ass. in case you missed that: ( :::ass. < 1319055754 815281 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :otherwise, channels get spammed < 1319055761 452476 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :olsner: heh < 1319055773 198930 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: that's not a rule < 1319055779 149615 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :ACTION thinks myndzi repeats on ACTIONS mentioning him < 1319055779 710262 :myndzi!myndzi@c-67-168-184-168.hsd1.wa.comcast.net PRIVMSG #esoteric :ACTION thinks oerjan repeats on ACTIONS mentioning him < 1319055780 848093 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :lambdabot doesn't do any ignores < 1319055781 578521 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: I just made it up < 1319055788 649929 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :oerjan: oh, myndzi still does that? < 1319055793 429729 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :and EgoBot/HackEgo's bot-loop protection is < 1319055794 966360 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it has exceptions for Agora-related terms, IIRC < 1319055795 168532 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :(a) bad; < 1319055796 76882 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :(b) new < 1319055800 44 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: hahaha, really? < 1319055806 390614 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ACTION agrees to the following: myndzi < 1319055807 82 :myndzi!myndzi@c-67-168-184-168.hsd1.wa.comcast.net PRIVMSG #esoteric :ACTION agrees to the following: elliott < 1319055809 626730 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ACTION agrees to the following Agora: myndzi < 1319055812 849893 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :LOL < 1319055818 418929 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ACTION Agora myndzi < 1319055825 465138 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :got sick of it, eh? < 1319055826 554059 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: really < 1319055890 148124 :Taneb!~Taneb@2.99.90.255 PRIVMSG #esoteric :What punctuations are free for bots? < 1319055896 135300 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :what's this agora and how were you going to make myndzi's bot sign him up for it? < 1319055905 827662 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :olsner: Agora is a game, a nomic played by email < 1319055911 778951 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it's been running continuously since 1993 < 1319055917 408284 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :due to a rule that said that wins don't end the game < 1319055945 180194 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :ais523. < 1319055947 970902 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :Does an ignore list work? < 1319055949 33276 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :so the idea was to get myndzi to agree to allow us to act on his behalf to cause him to sign up < 1319055955 536989 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :Madoka-Kaname: reasonably well, yes < 1319055962 797098 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :you can't botloop if the bots pay no attention to each other < 1319055963 201586 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Madoka-Kaname: iojfdogfgjkglkhgdflkjhg not those pings again < 1319055968 825697 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric : citiral: the basic rule is to try to avoid botloops <-- hey preemptive ignores for new bots are against tradition! < 1319055980 682361 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :oerjan: indeed < 1319055984 148393 :citiral!~ThaMan@d54C0A684.access.telenet.be PRIVMSG #esoteric :Wut? < 1319055985 742942 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :Well... < 1319055987 121450 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :and ops keep having to be involved, or else bot owners < 1319055997 384611 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :A hug bot wouldn't loop unless there are other huggy bots. < 1319056005 961775 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :Which means.. < 1319056006 285488 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric ::3 < 1319056013 978245 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :yep, another possibility is to output only with a given prefix < 1319056015 46199 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :?so what < 1319056015 192885 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :what not available < 1319056015 340961 :thutubot!~thutubot@cpc2-king8-0-0-cust831.perr.cable.virginmedia.com PRIVMSG #esoteric :what not available < 1319056021 542885 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :thutubot, no...... < 1319056024 944948 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :most of the bots here are capable of evaluating programming languages, anyway < 1319056029 974629 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric : olsner:, <-- hm fizzie, isn't that missing space a bug < 1319056030 121454 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :oerjan: or is it just me, or i: yet, you rogue! pass him! < 1319056040 789786 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oerjan: no < 1319056044 252922 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :> "is thutubot going to copy everything I say again?" < 1319056044 967222 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : "is thutubot going to copy everything I say again?" < 1319056045 113908 :thutubot!~thutubot@cpc2-king8-0-0-cust831.perr.cable.virginmedia.com PRIVMSG #esoteric : "is thutubot going to copy everything I say again?" < 1319056046 193387 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oerjan: it was explained a while ago < 1319056058 312344 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :?so +ul (hello)S < 1319056058 476569 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :+ul (hello)S not available < 1319056058 626606 :thutubot!~thutubot@cpc2-king8-0-0-cust831.perr.cable.virginmedia.com PRIVMSG #esoteric :+ul (hello)S not available < 1319056065 11700 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :?so +ul (?so +ul)S < 1319056065 193448 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :+ul (?so +ul)S not available < 1319056065 340227 :thutubot!~thutubot@cpc2-king8-0-0-cust831.perr.cable.virginmedia.com PRIVMSG #esoteric :+ul (?so +ul)S not available < 1319056070 16302 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :grr, thutubot ignores lambdabot? < 1319056076 771730 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :or is it the not available that trips it < 1319056078 354314 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: no, it just repeats everything it says < 1319056084 517645 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: +ul (?so +ul)S not available < 1319056085 423925 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :wasn't run < 1319056086 601573 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :and that codepath's taking precedence over the other codepath < 1319056087 952662 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :+ul (?so +ul)S not available < 1319056088 287517 :thutubot!~thutubot@cpc2-king8-0-0-cust831.perr.cable.virginmedia.com PRIVMSG #esoteric :?so +ul < 1319056088 434398 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :+ul not available < 1319056088 434587 :thutubot!~thutubot@cpc2-king8-0-0-cust831.perr.cable.virginmedia.com PRIVMSG #esoteric :+ul not available < 1319056089 481636 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :that evaluates Underload < 1319056089 789175 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ah < 1319056101 763318 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :apparently it doesn't do both, which is not surprising given how Thutu works < 1319056103 75081 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ok well brb < 1319056111 567342 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :we have a bot that repeats whatever lambdabot says? < 1319056124 658364 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :apparently so < 1319056131 402376 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :sounds... useful < 1319056144 218263 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it was originally a joke < 1319056151 414428 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :after implementing Underload in Thutu < 1319056154 550362 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I pretended to implement Haskell < 1319056162 876877 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :where it was actually done by asking Lambdabot for the answer < 1319056177 29677 :Gregor!foobar@codu.org PRIVMSG #esoteric :lol < 1319056183 96796 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :ah, clever :) < 1319056186 535390 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric : oerjan: no <-- but it means olsner isn't properly addressed < 1319056206 353938 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :but lambdabot ignores thutubot < 1319056208 322570 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :at least in PM < 1319056212 610619 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :+ul (> 2+2)S < 1319056212 757269 :thutubot!~thutubot@cpc2-king8-0-0-cust831.perr.cable.virginmedia.com PRIVMSG #esoteric :> 2+2 < 1319056213 497380 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : 4 < 1319056214 628689 :thutubot!~thutubot@cpc2-king8-0-0-cust831.perr.cable.virginmedia.com PRIVMSG #esoteric : 4 < 1319056221 701626 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :not in-channel, though, it seems < 1319056245 977653 :Taneb!~Taneb@2.99.90.255 PRIVMSG #esoteric :I may make a bot < 1319056260 981060 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :oerjan: "properly"? I consider anything that has "olsner" in it somewhere as being addressed to me < 1319056270 326826 :nooga!~nooga@maverick.aircity.pl PRIVMSG #esoteric :voodoo < 1319056275 715245 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :^prefixes < 1319056275 897881 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :Bot prefixes: fungot ^, HackEgo `, EgoBot !, lambdabot @ or ? < 1319056283 769097 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :Taneb: ^ < 1319056296 475066 :Taneb!~Taneb@2.99.90.255 PRIVMSG #esoteric :Can I reserce '~'? < 1319056305 869904 :Taneb!~Taneb@2.99.90.255 PRIVMSG #esoteric :Can I reserve it to? < 1319056311 469011 :Taneb!~Taneb@2.99.90.255 PRIVMSG #esoteric :to use that is < 1319056313 819947 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :thutubot + < 1319056316 203852 :Taneb!~Taneb@2.99.90.255 PRIVMSG #esoteric :I'm not good at it < 1319056319 299662 :Taneb!~Taneb@2.99.90.255 PRIVMSG #esoteric :*this < 1319056322 243795 :Taneb!~Taneb@2.99.90.255 PRIVMSG #esoteric :AAARGH! < 1319056323 904019 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :lambdabot also uses > < 1319056335 215775 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :People use * < 1319056342 648334 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :Taneb. < 1319056345 448143 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :My bot already uses ~ < 1319056350 708756 :Vivio-chan!~vivio@ppp-70-251-229-235.dsl.rcsntx.swbell.net JOIN :#esoteric < 1319056354 360881 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :There. < 1319056355 174450 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :It's here. < 1319056356 102682 :Taneb!~Taneb@2.99.90.255 PRIVMSG #esoteric :'#' then < 1319056360 664868 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :~part < 1319056360 811446 :Vivio-chan!~vivio@ppp-70-251-229-235.dsl.rcsntx.swbell.net PART :#esoteric < 1319056360 958210 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :=p < 1319056371 760217 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :Yeah. < 1319056374 229219 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :I have a ~prefix command < 1319056375 547072 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :Use whatever. < 1319056556 263628 :Taneb!~Taneb@2.99.90.255 PRIVMSG #esoteric :A bot written in Piet would be interesting < 1319056562 649354 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :I can set the prefix to "HEY PLEASE DO " if I wanted >> < 1319056637 117467 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric : lambdabot also uses > <-- with a space after though, so unlikely to conflict < 1319056845 295660 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :my bot just used its name as prefix < 1319056852 75413 :Taneb!~Taneb@2.99.90.255 PRIVMSG #esoteric :Because I'm not very good at this < 1319056857 412056 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :(it was also completely useless) < 1319056862 726452 :Taneb!~Taneb@2.99.90.255 PRIVMSG #esoteric :Can I make a bot that just looks things up on the wiki? < 1319056869 84594 :Taneb!~Taneb@2.99.90.255 PRIVMSG #esoteric :And if that fails on wikipedia? < 1319056871 645618 :nooga!~nooga@maverick.aircity.pl PRIVMSG #esoteric :i worship llvm < 1319056881 686850 :Taneb!~Taneb@2.99.90.255 PRIVMSG #esoteric :And if that fails just googles them and returns the first hit? < 1319057008 48337 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :Taneb: I don't know, can you? < 1319057015 986198 :Taneb!~Taneb@2.99.90.255 PRIVMSG #esoteric :Probably not < 1319057021 764546 :Taneb!~Taneb@2.99.90.255 PRIVMSG #esoteric :I'm not very good at this < 1319057032 575739 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`wiki Velato < 1319057034 192282 :HackEgo!foobar@codu.org PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: wiki: not found < 1319057038 692046 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :darn < 1319057044 327570 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`ls bin < 1319057046 104315 :HackEgo!foobar@codu.org PRIVMSG #esoteric :​? \ addquote \ allquotes \ calc \ define \ delquote \ etymology \ forget \ fortune \ frink \ google \ json \ k \ karma \ karma+ \ karma- \ learn \ log \ logurl \ macro \ marco \ paste \ pastekarma \ pastelog \ pastelogs \ pastenquotes \ pastequotes \ pastewisdom \ ping \ prefixes \ qc \ quine \ quote \ quotes \ roll \ runperl < 1319057055 156164 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :it vbroke < 1319057060 37374 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :pastewisdom? < 1319057065 696212 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :`pastewisdom < 1319057067 872640 :HackEgo!foobar@codu.org PRIVMSG #esoteric :http://codu.org/projects/hackbot/fshg/index.cgi/raw-file/tip/paste/paste.21742 < 1319057102 321822 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`run ls bin | tail < 1319057104 482571 :HackEgo!foobar@codu.org PRIVMSG #esoteric :runperl \ toutf8 \ translate \ translatefromto \ translateto \ units \ url \ wl \ word \ wtf < 1319057109 117130 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :"/tmp/paste.21742: FORTRAN program" :S < 1319057173 454696 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`cat bin/pastewisdom < 1319057175 111141 :HackEgo!foobar@codu.org PRIVMSG #esoteric :​#!/bin/sh \ cat wisdom/* | paste < 1319057193 47706 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :`ls wisdom < 1319057194 972909 :HackEgo!foobar@codu.org PRIVMSG #esoteric :ais523 \ augur \ c \ elliott \ everyone \ finland \ fizzie \ flower \ friendship \ gregor \ hackego \ haskell \ ievan \ intercal \ itidus20 \ monad \ monads \ monqy \ oerjan \ oklopol \ qdb \ qdbformat \ sgeo \ shachaf \ u \ vorpal \ welcome \ wiki < 1319057211 902867 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`? oklopol < 1319057214 24141 :HackEgo!foobar@codu.org PRIVMSG #esoteric :oklopol "so i hear these blogs are getting popular, people like writing about their lives and shit. on this thing called the internet which is like a neural network only really stupid." < 1319057240 313041 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :`? elliott < 1319057242 606601 :HackEgo!foobar@codu.org PRIVMSG #esoteric :elliott wrote this learn DB, and wrote or improved many of the other commands in this bot. He probably has done other things? < 1319057261 215431 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :`? friendship < 1319057263 442613 :HackEgo!foobar@codu.org PRIVMSG #esoteric :friendship wisdom < 1319057347 390602 :derrik!~xix@194.150.65.81 QUIT :Quit: a bientot < 1319057354 986416 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`? quine quine < 1319057356 922210 :HackEgo!foobar@codu.org PRIVMSG #esoteric :quine quine? ¯\(°_o)/¯ < 1319057360 918193 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :er < 1319057363 414919 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`quine quine < 1319057365 217031 :HackEgo!foobar@codu.org PRIVMSG #esoteric :​`quine < 1319057394 98654 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`rm bin/quine < 1319057395 808895 :HackEgo!foobar@codu.org PRIVMSG #esoteric :No output. < 1319057416 807020 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`? finland < 1319057418 887512 :HackEgo!foobar@codu.org PRIVMSG #esoteric :Finland is a European country. There are two people in Finland, and at least five of them are in this channel. Corun drives the bus. < 1319057443 977470 :Taneb!~Taneb@2.99.90.255 PRIVMSG #esoteric :Finland is the largest esoteric programming community in the world < 1319057448 528061 :Taneb!~Taneb@2.99.90.255 PRIVMSG #esoteric :Narrowly beating Hexham < 1319057453 531256 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :*in Finland < 1319057480 951125 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :`quote < 1319057482 898291 :HackEgo!foobar@codu.org PRIVMSG #esoteric :92) I can do everything a Turing machine can do, except love < 1319057484 473467 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :`quote finland < 1319057486 840909 :HackEgo!foobar@codu.org PRIVMSG #esoteric :No output. < 1319057487 770418 :Taneb!~Taneb@2.99.90.255 PRIVMSG #esoteric :Hexham isn't in Finland! < 1319057495 356826 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :not any longer < 1319057495 503481 :Taneb!~Taneb@2.99.90.255 PRIVMSG #esoteric :Hexham's in hell! < 1319057509 233893 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :but hell is in norway < 1319057514 189536 :Taneb!~Taneb@2.99.90.255 PRIVMSG #esoteric :EXACTLY < 1319057520 531144 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :Hexham: no longer not in Finland < 1319057520 720398 :Taneb!~Taneb@2.99.90.255 PRIVMSG #esoteric :Norway != Finland < 1319057528 54216 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :Q.E.D.! < 1319057530 508856 :Taneb!~Taneb@2.99.90.255 PRIVMSG #esoteric :Despite many superficial similarities < 1319057553 370493 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :like cold and heavy drinking < 1319057570 650168 :Taneb!~Taneb@2.99.90.255 PRIVMSG #esoteric :And sharing a border < 1319057572 574582 :Taneb!~Taneb@2.99.90.255 PRIVMSG #esoteric :Goodnight < 1319057574 328959 :Taneb!~Taneb@2.99.90.255 QUIT :Quit: Leaving < 1319057576 387060 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :norway has heavy drinking? < 1319057599 496534 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :it has a weekend binge drinking tradition < 1319057652 803659 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :but I suppose Finland has a continuous binge drinking tradition instead < 1319057731 748313 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :...i suppose. < 1319057787 528428 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`log [t]otall?er < 1319057806 92123 :HackEgo!foobar@codu.org PRIVMSG #esoteric :2008-09-03.txt:20:35:59: teetotaller < 1319057816 605369 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :bah humbug < 1319057829 714923 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`log [t]otall?er < 1319057834 738777 :HackEgo!foobar@codu.org PRIVMSG #esoteric :2010-10-17.txt:18:49:50: ais523, I'm a teetotaller < 1319057845 686734 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`log finn.*[t]otall?er < 1319057850 388983 :HackEgo!foobar@codu.org PRIVMSG #esoteric :No output. < 1319057856 288527 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :shocking < 1319057858 18965 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :oh hm < 1319057861 619220 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`log fin.*[t]otall?er < 1319057866 554581 :HackEgo!foobar@codu.org PRIVMSG #esoteric :No output. < 1319057873 869933 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`log [t]otall?er.*fin < 1319057878 375065 :HackEgo!foobar@codu.org PRIVMSG #esoteric :No output. < 1319057908 612120 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :oerjan: If you want a rexplanation: fungot does spacing by adding a space in front of regular words and some punctuation (opening parens etc.) but not others; so [foo][bar][.] properly turns into " foo bar." which is concatenated with "nick:" to get "nick: foo bar.". But it of course fails if the thing starts with no-space punctuation. < 1319057908 758912 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :fizzie: just to help an fnord archive) for fnord macros, a wonderful!' i am sorry, in particular candidate countries. if the transatlantic relationship, but the parliament has possessed him, yet he talkes well," he said, taking the tfy-0.201 course this autumn, that the poorest regions is not exacerbated by another divide, as you see, if all a human thinks it's about what sounds good when it's spoken. or read. < 1319057932 89632 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :(Same thing is responsible for the extra spaces after opening (, " or '.) < 1319057941 232452 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Oh no, a paren-imbalance. :/ < 1319057952 368023 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i was trying to find someone's comment to the effect that all finns are either alcoholic or teetotallers, but it may not have been said here, or in that way. < 1319058031 185935 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :the parenthesis was probably eaten by the fnord < 1319058057 853331 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :would it be possible to make fungot always match the parens? it's sooo annoying when they are mismatched :) < 1319058058 10383 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :olsner: so, let's say i call them mindless games. if we hit every stupid person, any person going to the theater < 1319058060 922298 :kwertii!~kwertii@ResNet-33-19.resnet.ucsb.edu JOIN :#esoteric < 1319058089 549666 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :olsner: I'm happy to accept a patch. (The Perl babble-testing script does keep a stack to force them to match.) < 1319058105 328646 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :^source < 1319058105 487199 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :http://git.zem.fi/fungot/blob/HEAD:/fungot.b98 < 1319058141 803600 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :The babbling is contained on lines 125-161. < 1319058201 689053 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :(There's even a comment.) < 1319058207 273181 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :what happens if you hit a context where only ) is possible? < 1319058227 652870 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :this might be tricky < 1319058286 331476 :citiral!~ThaMan@d54C0A684.access.telenet.be QUIT : < 1319058297 500096 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :oerjan: The Perl script doesn't modify the generation; as it constructs the string version of the output (internally it's generated as a list of tokens), it just skips over closing punctuation that doesn't match the stack, and at the end of the string closes all leftover open things. < 1319058318 877857 :ive!~nn@189.179.247.113 JOIN :#esoteric < 1319058364 822866 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :fizzie: I think I'll have to learn to read befunge first, that block of characters makes no sense to me < 1319058404 621236 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :that might not help < 1319058405 335748 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric ::) < 1319058406 485348 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :I'm not entirely sure which block does what; I think lines 163-169 are a binary search, but I can't quite recall what it's for. < 1319058433 602621 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :elliott: did fizzie write this? < 1319058442 166658 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :yes < 1319058467 266302 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :olsner: (why ask me and not fizzie?) < 1319058477 801881 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :elliott: hmm, not sure why I did that < 1319058479 715341 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :elliott: he might have gone insane in the process < 1319058487 583886 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :It's a bit of a write-only language. < 1319058516 530761 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :olsner: fizzie might deny it, I guess < 1319058527 531241 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Anyway, I think it does at least do the same thing which is to produce first a list of integer tokens, and then later turn all those into a string. < 1319058528 106461 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :fizzie: Well, it's more readable than Mycology < 1319058576 815471 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Oh, right, the binary search is probably used for "find the subnode for the next token in context", that makes sense. Especially since it's "called" from so far up. < 1319058578 546082 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric : 151 > ^ 0SE":,)'..!f"('?/s < 1319058587 236073 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :fizzie: What does that string do < 1319058595 230157 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :It's a comment. :p < 1319058603 522077 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :fizzie: What. < 1319058606 401294 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :For the jump table below. < 1319058611 443437 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :FSVO comment < 1319058630 5615 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Each letter denotes what the 'v' below it corresponds to. < 1319058639 90326 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Nice. < 1319058666 711043 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :0 being "UNK" i.e. fnord, S/E being the (empty) sentence start/end tokens, most of the punctuation being exactly what they are, and 'f'/'s' are I think "frown" and "smiley" maybe. < 1319058684 461496 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :and the v change the direction of the instruction pointer to go down? so how does it get to those 'v's below that line? < 1319058705 509928 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :olsner: It's the "j" next to them; that pops from the stack and jumps that many slots. < 1319058711 473163 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :jvvvvvv is a "common" jump table idiom. < 1319058714 536303 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :aah < 1319058728 897479 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Oh, and the first . is a "." and the second . is a "...", obvsly. < 1319058743 837911 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :obvsly. < 1319058745 553213 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :You should have used ( and ) for f and s, if that's okay. :p < 1319058796 152761 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :where's the entry point to that block? < 1319058828 111622 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :"Favourite esoteric languages: < 1319058828 258377 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Brainfuck < 1319058828 258581 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Ook!" < 1319058832 46756 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :"Favourite non-esoteric languages: < 1319058832 193476 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Visual Basic.NET < 1319058832 193683 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Pascal" < 1319058833 27799 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oh dear < 1319058842 417340 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :olsner: The first > on line 152 is where it comes in from the v in line 136, I'd say. < 1319058872 33331 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :elliott: if someone _wanted_ to troll us, they'd put in those, wouldn't they < 1319058881 612873 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oerjan: :D < 1319058886 622235 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :favourite esoteric languages < 1319058887 653545 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :vb.net < 1319058888 355201 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :pascal < 1319058891 95382 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :favourite non-esoteric languages < 1319058891 820996 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :brainfuck < 1319058892 433071 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ook < 1319058906 332161 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oerjan: in fairness, their language is _not_ a bf derivative < 1319058914 574080 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :well ok then < 1319058924 411837 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :fizzie: for this particular jump table? how about the whole markov-chain thingy? < 1319058928 446977 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :Link? < 1319058931 511228 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :olsner: btw all the comments are at the bottom < 1319058938 59411 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :(or the "catch-all own-name hook" as the comment above it seems to call it) < 1319058943 112720 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Madoka-Kaname: http://esoteric.voxelperfect.net/wiki/User:Marcsances < 1319058946 934726 :nooga!~nooga@maverick.aircity.pl QUIT :Ping timeout: 256 seconds < 1319058964 543592 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :elliott: wow, actual comments :O < 1319058977 953722 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :olsner: mostly storage locations :P < 1319058993 748637 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :olsner: Right, the whole thing starts with the >f1G07GF... < 1319059008 501129 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :olsner: That's the "check if my own name is in the message" bit. < 1319059023 694750 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :right, obviously < 1319059047 663710 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Well, you know. f1G to get the own name, 07G to get the message, and F from STRN to do strstr. < 1319059077 113470 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :There's a list of "variables" (playfield locations) at the bottom. < 1319059084 760361 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric : 396 (15-,1): bot's nickname < 1319059093 71163 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :playfield? :p < 1319059099 384100 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric : 407 (*,6-x): command options, depending on amount < 1319059130 15691 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :"This 'playfield' can be used for auxilliary storage when the stack alone will not suffice, but keep in mind that it also contains the running program." -- befunge-93 spec. < 1319059139 225730 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :I suppose since this is 98, I should be calling it the funge-space. < 1319059150 232985 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :I've gotten used to the 93 terminology, though. < 1319059172 657109 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Okay, the comment in the code does say "fungespace storage:" appropriately. < 1319059188 256674 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :if it also contains the running program, that means some of the code is overwritten by data during startup? < 1319059188 462596 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :jitfunge was -93 right < 1319059191 382348 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :or no < 1319059208 155228 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :No, it's 98; 93 is a bit boring. < 1319059209 388427 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :olsner: or you just embed the data into dead code < 1319059211 861245 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :fizzie: indeed < 1319059218 539299 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :fizzie: didn't it segfault on mycology or something < 1319059227 710862 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :olsner: The code is loaded starting at line 100. < 1319059236 419070 :augur!~augur@129.2.129.33 QUIT :Ping timeout: 258 seconds < 1319059249 814697 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :elliott: I don't quite recall the latest state. At least it doesn't run through it. < 1319059261 586506 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :fizzie: heh < 1319059262 42569 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :olsner: In case of fungot, that is. Not in general. < 1319059262 189201 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :fizzie:, so i'd be happy to help an fnord archive) < 1319059282 847274 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :see? it's the fnords that eat the ('s < 1319059297 136742 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :fizzie: you mean line 1 of the file appears at line 100 in fungespace? or just that everything up until line 100 gets overwritten? < 1319059326 58835 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :olsner: The former. There's a loader stub to set settings and load the main code at that offset. < 1319059339 644851 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :http://git.zem.fi/fungot/blob/HEAD:/fungot-load-freenode.b98 < 1319059339 791709 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :fizzie: if it's ( syntactically) long... part ( it's likely that dalton! leave her alone! < 1319059403 151111 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :I suppose it could as easily read the nick, server, port things from a file instead, but that's the way it is at the moment. < 1319059441 936160 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :There's a silly snippet at the start of the code that's used by ^reload to wipe the code and reload an updated version. It might not exactly work all that well though. < 1319059487 32306 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :funny with all the reversed strings in befunge code < 1319059516 136157 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :"Detroppus ton GNIF. Detroppus ton NRTS. Detroppus ton KCOS. Detroppus ton EKCS." < 1319059700 103440 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :Thank god for vim's reverse insert mode < 1319059717 687879 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :Detroppus ton, the infamous anvil-dropping spell < 1319059752 924157 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :Deewiant: Emacs' picture-mode is pretty good for Befunge < 1319059764 354442 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it lets you move the cursor in any of the compass directions after typing a key < 1319059769 994915 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :so you can go backwards or upwards or whatever < 1319059772 993602 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :even diagonally < 1319059788 594656 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :Deewiant: wow, vim actually *has* that? < 1319059795 285844 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :ais523: Does it have arbitrary deltas? < 1319059800 797370 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :(Bonus: with wrapping?) < 1319059802 10354 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :Deewiant: not that I know of < 1319059828 14928 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :olsner: Yes, :he ins-reverse < 1319059863 596011 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :Deewiant: just found the docs on the interwebs too, well, mind blown < 1319059882 939287 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :Note the unfortunate "There is no reverse replace mode (yet)." < 1319059923 524210 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :These days I just use a selection-reversing mapping < 1319060272 355459 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric : Note the unfortunate "There is no reverse replace mode (yet)." < 1319060280 339332 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Deewiant: shouldn't you just be able to run every command on some kind of reverse-overlay < 1319060331 954251 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :One should be able to do all kinds of things, but one can only reverse insert < 1319060380 922189 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Deewiant: vim is the worst vim < 1319060393 171326 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :It's also the only vim and thus the best vim < 1319060423 550044 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Deewiant: there are other vims i think < 1319060433 806293 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :They're subsets of vims < 1319060436 805614 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :At best < 1319060475 844531 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Deewiant: Hey, elvis even has a GUI < 1319060514 325900 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :If it barfs on my .vimrc it's likely not much of a vim < 1319060527 989533 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Deewiant: Your .vimrc probably has, like, vimscript features only in vcs < 1319060542 625338 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Whereby vcs is whatever vcs vim use < 1319060564 674332 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :I think it's compatible back to 7.0 but not 6.x < 1319060586 576370 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I guess I should say that vim is a crappy vi < 1319060593 723674 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :They kind of gave up on the whole compositional commands model < 1319060610 37875 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :Partly < 1319060632 242211 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Deewiant: Come on, even regexp replaces happen outside of the command model < 1319060637 80669 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :As opposed to operating on a region < 1319060711 178275 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :That's partly because of how it has to be input; the command would be s/foo/bar/flagsregion and the makes it a bit weird < 1319060763 55521 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Deewiant: I do not believe that is the real reason :P < 1319060780 339339 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I'm like 90 percent certain it's just historical < 1319060785 435317 :Patashu!~Patashu@c122-106-155-219.carlnfd1.nsw.optusnet.com.au JOIN :#esoteric < 1319060789 518210 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :I think it's a decent reason, if nothing else < 1319060795 850556 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Deewiant: Just put another / after the flags < 1319060813 864420 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :Too typo-sensitive < 1319060830 777441 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Deewiant: Flags in {} after s < 1319060837 292403 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Or actually < 1319060838 410104 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Not even in {} < 1319060841 931038 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Just before the first / < 1319060846 761489 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :I'd just have :'<.'> operate on the exact region, not the lines covered < 1319060856 418136 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric ::'<.'>? < 1319060868 900165 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :elliott: That's still typo-sensitive, you might want \/ but type / or whatever < 1319060883 40158 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Deewiant: Eh? < 1319060887 443220 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :That's just a problem with regexps < 1319060894 599088 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :Yes, regexps are typo-sensitive < 1319060901 821309 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :But if they're an ex command you can edit them < 1319060911 322 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :If it's a normal mode command you have to restart at the first typo < 1319060921 697898 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Deewiant: That's a problem with normal mode, not regexps < 1319060927 951520 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :Fair enough < 1319060934 251291 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :And now you're talking about something very non-vi < 1319060938 814346 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Why shouldn't backspace/etc. pop up a command editor at the bottom < 1319060940 161149 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Not really < 1319060951 387871 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :That's just adding an interpretation to otherwise-unused commands < 1319060954 523403 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Erm < 1319060956 538280 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :s/commands/keys/ < 1319061021 642060 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :I suppose that could work to an extent < 1319061044 70978 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :I'd rather see normal mode work for editing ex commands :-P < 1319061069 74287 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Deewiant: Ctrl+E (or whatever) in normal mode pops up one-line frame at bottom containing currently written command, in normal mode < 1319061096 20911 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Some other command runs the current line as a normal-mode command and closes it < 1319061099 449095 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Tada < 1319061101 397339 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :s/normal mode/command mode/ presumably < 1319061114 238130 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :What would command mode be < 1319061123 343527 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Erm < 1319061124 58075 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Right < 1319061162 728111 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Deewiant: Although really, sam got it basically completely right < 1319061169 840273 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Not being line-based, etc. < 1319061181 154481 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric ::'<,'> is the range corresponding to the current visual selection < 1319061203 390325 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Mouthful < 1319061212 425332 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :It's autofilled when you type : in visual mode < 1319061224 835235 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Heh < 1319061268 825428 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric : I'd just have :'<.'> operate on the exact region, not the lines covered < 1319061271 58995 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Heh, so you literally want Sam < 1319061283 542140 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :Sam isn't a vim < 1319061303 273293 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I mean, you want Sam-like interpretation of ranges < 1319061306 794644 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :/searches < 1319061321 347796 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :"Sam vs. acme editor wars occur in the Plan 9 community" Between all three of them < 1319061441 137788 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :I do not like green eggs and ham / I do not like them, Vim-I-am. < 1319061480 706777 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :vimium < 1319061494 612318 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :More people need to use sam/acme < 1319061497 705775 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :fizzie: Use sam or acme please < 1319061498 237460 :Sgeo|web!ad034d00@gateway/web/freenode/ip.173.3.77.0 PRIVMSG #esoteric :> 1 + 1 < 1319061499 80001 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : 2 < 1319061499 226627 :thutubot!~thutubot@cpc2-king8-0-0-cust831.perr.cable.virginmedia.com PRIVMSG #esoteric : 2 < 1319061505 177054 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :fizzie: plan9port's is fully integrated < 1319061521 650696 :Sgeo|web!ad034d00@gateway/web/freenode/ip.173.3.77.0 PRIVMSG #esoteric :> putStrLn "hi" < 1319061522 549664 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : < 1319061522 696430 :thutubot!~thutubot@cpc2-king8-0-0-cust831.perr.cable.virginmedia.com PRIVMSG #esoteric : < 1319061528 207031 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: kill thutubot < 1319061535 572553 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :s/ and then the end of the line// < 1319061539 5774 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :+quit < 1319061545 331797 :thutubot!~thutubot@cpc2-king8-0-0-cust831.perr.cable.virginmedia.com QUIT :Remote host closed the connection < 1319061554 728740 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :huh, seems it doesn't respond to +quit nowadays < 1319061562 764944 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :thx < 1319061568 402204 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ilu thutubot it was just annoying < 1319061579 316745 :Sgeo|web!ad034d00@gateway/web/freenode/ip.173.3.77.0 PRIVMSG #esoteric :What's the point of thutubot? < 1319061612 9201 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :to be written in thutu < 1319061631 206180 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ACTION installs plan9port to hate the world a little less < 1319061676 810201 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Gosh, swtch.com is so slow. < 1319061704 674210 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :!haskell putStrLn "Are you working yet?" < 1319061719 962148 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric : beeeeeeeeeeeeep < 1319061724 50078 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric : beeep :( < 1319061731 610098 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric : :'( < 1319061734 973919 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :swatch.com would be more timely. < 1319061735 983486 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :!help < 1319061736 372350 :EgoBot!foobar@codu.org PRIVMSG #esoteric :​help: General commands: !help, !info, !bf_txtgen. See also !help languages, !help userinterps. You can get help on some commands by typing !help . < 1319061742 499113 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :it would appear not < 1319061764 604475 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :fizzie: HYUK HYUK HYUK which did you pick < 1319061788 449854 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :I did not pick them, fiz-I-am. < 1319061800 124135 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :fizzie: But I _demanded_ you to. < 1319061810 440772 :fizzie!fis@iris.zem.fi PRIVMSG #esoteric :Yes, well. < 1319061832 498069 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :he does not like green acne and spam < 1319061853 269172 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oerjan: OK _you_ decide. < 1319061896 934130 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oerjan: You never code anyway. < 1319061958 432973 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :well it'll have to be spam. green acne would ruin my last remains of sociability < 1319061999 605744 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oerjan: no no no it is sam or acme. < 1319062005 270145 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: here, /you/ use sam or acme. < 1319062016 635814 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: no I don't < 1319062027 604869 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: it's a demand, not a statement < 1319062093 799483 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i think mark-chu-carr?oll? mentioned on his good math/bad math blog previously that was writing a new editor based on acme < 1319062119 14922 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :if it was acme. something unusual, anyway. < 1319062122 309961 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :*that he < 1319062143 655175 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oerjan: he did < 1319062150 374036 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :apex < 1319062156 178349 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oh hmm < 1319062159 638329 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :looks rather incomplete :P < 1319062169 922614 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :well he hasn't mentioned it in a while < 1319062171 422519 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :hmph, looks like he's using a gap buffer < 1319062180 387482 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :totally the Wrong Decision < 1319062715 39076 :augur!~augur@208.58.5.87 JOIN :#esoteric < 1319062920 423047 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :what's a gap buffer? < 1319062988 519240 :Deewiant!~deewiant@cs27125254.pp.htv.fi PRIVMSG #esoteric :https://secure.wikimedia.org/wikipedia/en/wiki/Gap_buffer < 1319063244 850720 :derdon!~derdon@p5DE89A44.dip.t-dialin.net QUIT :Remote host closed the connection < 1319064892 443499 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :elliott, what do you suggest instead of a gap buffer? < 1319064930 847846 :Vorpal!~AnMaster@unaffiliated/anmaster PRIVMSG #esoteric :a balanced tree of lines seems sensible to me. < 1319064986 848975 :ais523!~ais523@unaffiliated/ais523 QUIT :Remote host closed the connection < 1319065281 403292 :CakeProphet!~eris@gate-20.spsu.edu JOIN :#esoteric < 1319065281 589031 :CakeProphet!~eris@gate-20.spsu.edu QUIT :Changing host < 1319065281 589189 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake JOIN :#esoteric < 1319065515 448167 :MDude!~fyrc@or-67-238-31-252.dhcp.embarqhsd.net QUIT :Ping timeout: 252 seconds < 1319065672 256756 :MDude!~fyrc@or-67-238-31-252.dhcp.embarqhsd.net JOIN :#esoteric < 1319065785 512322 :Jafet!~Jafet@unaffiliated/jafet JOIN :#esoteric < 1319066204 924477 :Sgeo|web!ad034d00@gateway/web/freenode/ip.173.3.77.0 QUIT :Ping timeout: 265 seconds < 1319066366 570727 :CakeProphet!~eris@wikipedia/The-Prophet-Wizard-of-the-Crayon-Cake QUIT :Ping timeout: 258 seconds < 1319066976 945470 :copumpkin!~pumpkin@unaffiliated/pumpkingod QUIT :Quit: Computer has gone to sleep. < 1319068404 484531 :sllide!~jari@ip565eb113.direct-adsl.nl QUIT :Read error: Connection reset by peer