< 1476489848 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> let phi = (sqrt 5 + 1)/2 in [round (phi**n) | n <- [0..]] < 1476489850 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : [1,2,3,4,7,11,18,29,47,76,123,199,322,521,843,1364,2207,3571,5778,9349,15127... < 1476489860 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hm needs work < 1476489900 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> (sqrt 5 + 1)/2 < 1476489902 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 1.618033988749895 < 1476489910 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> 2/(sqrt 5 + 1) < 1476489912 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 0.6180339887498948 < 1476490089 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> (1 - sqrt 5)/2 < 1476490091 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : -0.6180339887498949 < 1476490127 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> let phi = (sqrt 5 + 1)/2 in [round (phi**n/2) | n <- [0..]] < 1476490129 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : [0,1,1,2,3,6,9,15,23,38,61,100,161,261,421,682,1103,1786,2889,4675,7563,1223... < 1476490272 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :fix$(1:).scanl(+)0 < 1476490275 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> fix$(1:).scanl(+)0 < 1476490277 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : [1,0,1,1,2,3,5,8,13,21,34,55,89,144,233,377,610,987,1597,2584,4181,6765,1094... < 1476490297 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> fix$(0:).scanl(+)1 < 1476490299 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : [0,1,1,2,3,5,8,13,21,34,55,89,144,233,377,610,987,1597,2584,4181,6765,10946,... < 1476490332 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :oerjan: Maybe ceil or floor instead of round? < 1476490335 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :Probably not, but maybe < 1476490351 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :> let phi = (sqrt 5 + 1)/2 in [ceil (phi**n) | n <- [0..]] < 1476490353 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : error: < 1476490353 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : Variable not in scope: ceil :: Double -> t < 1476490368 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :@type (**) < 1476490369 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :Floating a => a -> a -> a < 1476490370 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hppavilion[1]: no, there are numbers too far off, like 15 < 1476490374 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :Oh < 1476490402 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :i'm sure there is a constant multiplier but i've forgotten what it was. < 1476490449 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> let phi = (sqrt 5 + 1)/2; fib = fix$(1:).scanl(+)1 in zipWith(/) fib (map(phi**) [1..]) < 1476490451 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : [0.6180339887498948,0.38196601125010515,0.4721359549995794,0.437694101250946... < 1476490455 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :ouch < 1476490468 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> let phi = (sqrt 5 + 1)/2; fib = fix$(1:).scanl(+)1 in zipWith(/) fib (map(phi**) [1..]) :: [Float] < 1476490470 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : [0.618034,0.381966,0.47213593,0.4376941,0.4508497,0.44582468,0.44774407,0.44... < 1476490478 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :Oooh, negative fibonacci < 1476490508 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hppavilion[1]: fibonacci is symmetric about 0 < 1476490508 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :The nth fibonacci when n < 0 is (-1)^(n+1) times the -nth fibonacci < 1476490515 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :or that. < 1476490526 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :oerjan: Wikipedia disagrees hth < 1476490539 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :well, anyway, there's an obvious continuation. < 1476490588 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> let phi = (sqrt 5 + 1)/2; fib = fix$(1:).scanl(+)1 in drop 10 $ zipWith(/) fib (map(phi**) [1..]) < 1476490590 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : [0.4472248879170925,0.44720928218042744,0.447215243041414,0.4472129661951193... < 1476490609 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :oerjan: General case of fibonacci: (k, |R^k)onacci < 1476490613 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> 1/0.44721 < 1476490615 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 2.236085955144116 < 1476490634 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> 0.44721^2 < 1476490636 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 0.1999967841 < 1476490641 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :oh < 1476490685 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> let phi = (sqrt 5 + 1)/2 in [round (phi**n/sqrt 5) | n <- [0..]] < 1476490687 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : [0,1,1,2,3,5,8,13,21,34,55,89,144,233,377,610,987,1597,2584,4181,6765,10946,... < 1476490690 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :The number at x is the sum of the previous k numbers, starting with a fixed set < 1476490691 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :there you go. < 1476490733 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :Fibonacci is the (2, (1, 1))onacci sequence, from the latin 'fibo' for "2 and a pair of 1s" < 1476490786 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :(Although...) < 1476490877 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :@let oplus a b = 1/((1/a)+(1/b)) < 1476490879 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : Defined. < 1476490906 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :@let ofib n = 1 if n < 2 else (ofib (n-1)) `oplus` (ofib (n-2)) < 1476490906 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : Parse failed: Parse error: if < 1476490916 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :Dammit, what am I forgetting? < 1476490923 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :@let phi=(sqrt 5 + 1)/2; fibArgGuess x = logBase phi (x*sqrt 5); fib n = round (phi**n/sqrt 5); fibArg x | fib g == x = Just g | otherwise = Nothing where g = fibArgGuess x < 1476490925 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : Defined. < 1476490939 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> map fibArgGuess [1..] < 1476490941 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : [1.6722759381845549,3.1126960285971115,3.9552877667738344,4.553116119009668,... < 1476490944 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :oops < 1476490961 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :@undef < 1476490961 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :Undefined. < 1476490973 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :@let phi=(sqrt 5 + 1)/2; fibArgGuess x = round $ logBase phi (x*sqrt 5); fib n = round (phi**n/sqrt 5); fibArg x | fib g == x = Just g | otherwise = Nothing where g = fibArgGuess x < 1476490974 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : Defined. < 1476490983 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> map fibArg [1..] < 1476490985 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : error: < 1476490985 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : • Could not deduce (Floating a0) arising from a use of ‘fibArg’ < 1476490985 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : from the context: (RealFrac a1, Integral a1, Floating a1) < 1476490988 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :fff < 1476491016 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :@undef < 1476491016 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :Undefined. < 1476491030 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :@let phi=(sqrt 5 + 1)/2; fibArgGuess x = round $ logBase phi (fromIntegral x*sqrt 5); fib n = round (phi**n/sqrt 5); fibArg x | fib g == x = Just g | otherwise = Nothing where g = fibArgGuess x < 1476491031 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : Defined. < 1476491034 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> map fibArg [1..] < 1476491036 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : error: < 1476491036 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : • Ambiguous type variable ‘a10’ arising from a use of ‘show_M21357250580... < 1476491036 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : prevents the constraint ‘(Show a10)’ from being solved. < 1476491047 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :gah < 1476491052 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :@let ofib 0 = 1; ofib 1 = 1; ofib n = (ofib (n-1)) `oplus` (ofib (n-2)) < 1476491053 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : .L.hs:168:25: error: < 1476491053 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : • Variable not in scope: oplus :: t -> t -> t < 1476491053 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : • Perhaps you meant ‘mplus’ (imported from Control.Monad.Writer) < 1476491102 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :@let ofib 0 = 1; ofib 1 = 1; ofib n = (ofib (n-1)) `oplus` (ofib (n-2)) where oplus a b = 1/((1/a)+(1/b)) < 1476491103 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : Defined. < 1476491112 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :> ofib 0 < 1476491115 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 1.0 < 1476491118 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :> ofib 1 < 1476491120 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 1.0 < 1476491127 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :Very slow, must've done something bad < 1476491129 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :> ofib 2 < 1476491132 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 0.5 < 1476491133 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hppavilion[1]: um i'm going to have to wipe yours out. < 1476491142 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :oerjan: Why!? < 1476491153 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :because i cannot correct only mine, @undef only removes everything < 1476491158 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :Wait, does lambdabot drop @lets? < 1476491163 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :Oh, I can readd it then < 1476491196 0 :otterbot!~yaybot@unaffiliated/jeffl35/bot/jeffbot QUIT :Remote host closed the connection < 1476491197 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :@undef < 1476491197 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :Undefined. < 1476491204 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :@let ofib 0 = 1.0; ofib 1 = 1.0; ofib n = (ofib (n-1)) `oplus` (ofib (n-2)) where oplus a b = 1/((1/a)+(1/b)) < 1476491205 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : Defined. < 1476491215 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :@let phi=(sqrt 5 + 1)/2; fibArgGuess x = round $ logBase phi (fromIntegral x*sqrt 5); fib n = round (phi^n/sqrt 5); fibArg x | fib g == x = Just g | otherwise = Nothing where g = fibArgGuess x < 1476491216 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : Defined. < 1476491217 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :> map ofib [0..] < 1476491221 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> map fibArg [1..] < 1476491223 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : mueval-core: Time limit exceeded < 1476491225 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : [Just 2,Just 3,Just 4,Nothing,Just 5,Nothing,Nothing,Just 6,Nothing,Nothing,... < 1476491227 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :argh < 1476491231 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :oh < 1476491237 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :it was yours that failed :P < 1476491239 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`olist 1055 < 1476491240 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :olist 1055: shachaf oerjan Sgeo FireFly boily nortti b_jonas < 1476491245 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :oerjan: Do you see why mine is absurdly inefficient? < 1476491334 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :ACTION . o O ( I could probably just define it with normal fibo and just use the oplus of the last two items in normal fibo ) < 1476491342 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hppavilion[1]: it's the usual exponential blowup from a recursive fibonacci. < 1476491344 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :Yeah, that'd work < 1476491348 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :oerjan: Ah < 1476491378 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :oerjan: Is there a way that isn't recursive? I don't remember < 1476491382 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> map ofib [0..10] < 1476491384 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : [1.0,1.0,0.5,0.3333333333333333,0.2,0.125,7.692307692307693e-2,4.76190476190... < 1476491423 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :@let oplus a b = 1/((1/a)+(1/b)) < 1476491425 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : Defined. < 1476491450 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> fix$(1:).scanl oplus 1 < 1476491452 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : [1.0,1.0,0.5,0.3333333333333333,0.2,0.125,7.692307692307693e-2,4.76190476190... < 1476491457 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hth < 1476491457 0 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :helloerjan what is this nonsense < 1476491468 0 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :oh the harmonic sum thing < 1476491474 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :quintopia: For fibonacci < 1476491485 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :quintopia: Fibonacci sequence with harmonic sum rather than normal sum < 1476491497 0 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :it doesn't seem to be working? < 1476491499 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hppavilion[1]: well, by recursive i mean double recursion without sharing. < 1476491510 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :quintopia: working now. < 1476491513 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :Ah < 1476491515 0 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :1/(1/1+1/2)=2/3 not 1/2 < 1476491520 0 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :err 1/3 < 1476491548 0 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :oh wait < 1476491551 0 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :my bad < 1476491557 0 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :that's 1/.5 < 1476491567 0 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :so yeah < 1476491598 0 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :is there a nonzero limit for F_{n+1}/F_n in this case? < 1476491619 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> map(id&&&fibArg)[1..] < 1476491621 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : [(1,Just 2),(2,Just 3),(3,Just 4),(4,Nothing),(5,Just 5),(6,Nothing),(7,Noth... < 1476491651 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> drop 7$map(id&&&fibArg)[1..] < 1476491653 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : [(8,Just 6),(9,Nothing),(10,Nothing),(11,Nothing),(12,Nothing),(13,Just 7),(... < 1476491665 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :seems to work < 1476491694 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :although it'll presumably have floating point problems for huge arguments < 1476491698 0 :otherbot!jeffl35@unaffiliated/jeffl35/bot/jeffbot JOIN :#esoteric < 1476491753 0 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :i guess if regular F_{n+1}/F_{n} is phi, then harmonic F_{n+1}/F_{n} is Phi? yeah, it has to be < 1476491769 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :I've replaced the builtin python RNG in my numerology program with a superior PCG one < 1476491785 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net PRIVMSG #esoteric :(Even if PCG isn't as good as it's made out to be, it's probably better than the builtin one) < 1476492709 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :@tell Taneb Did you guys see the paper claiming to prove NP = PSPACE? <-- i didn't read the paper itself but i read some reddit comments that pointed out some red flags < 1476492709 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :Consider it noted. < 1476492736 0 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :NP=PSPACE seems INCREDIBLY UNLIKELY to me < 1476492762 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :some called that a red flag in itself >:) < 1476492781 0 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :another paper that claims NP=PSPACE? < 1476492783 0 :alercah!raedford@unaffiliated/alercah PRIVMSG #esoteric :P = PSPACE < 1476492785 0 :alercah!raedford@unaffiliated/alercah PRIVMSG #esoteric :duh < 1476492798 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :imode: i assume it's the same as a week ago... < 1476492809 0 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :and the week before.. and before.... and before.... < 1476492864 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :alercah: no, NP < 1476492882 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :(unless you are claiming that even more unlikely result) < 1476492898 0 :alercah!raedford@unaffiliated/alercah PRIVMSG #esoteric :I am :D < 1476492905 0 :alercah!raedford@unaffiliated/alercah PRIVMSG #esoteric :`? P < 1476492905 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :P is the complexity class of Problems. They can be solved by reduction to NP. < 1476492909 0 :alercah!raedford@unaffiliated/alercah PRIVMSG #esoteric :`? NP < 1476492910 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :NP is the complexity class of decisions that are No Problem. < 1476492914 0 :alercah!raedford@unaffiliated/alercah PRIVMSG #esoteric :`? PSPACe < 1476492914 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :PSPACe? ¯\(°​_o)/¯ < 1476492915 0 :alercah!raedford@unaffiliated/alercah PRIVMSG #esoteric :`? PSPACE < 1476492916 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :PSPACE? ¯\(°​_o)/¯ < 1476492935 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`? coNP < 1476492936 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :coNP? ¯\(°​_o)/¯ < 1476492939 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`? co-NP < 1476492941 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :co-NP, invented in Soviet Russia, is the class of decisions for which you are No Problem. < 1476492957 0 :alercah!raedford@unaffiliated/alercah PRIVMSG #esoteric :`learn PSPACE is the complexity class of Problem SPACEs. It is the same as P, by an herbal reduction. < 1476492959 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Learned 'pspace': PSPACE is the complexity class of Problem SPACEs. It is the same as P, by an herbal reduction. < 1476493197 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`culprits < 1476493199 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :alercäh shachäf shachäf shachäf oerjän oerjän oerjän oerjän hppavilion[1̈] oerjän oerjän shachäf oerjän oerjän oerjän oerjän oerjän shachäf shachäf shachäf shachäf oerjän oerjän oerjän oerjän oerjän shachäf oerjän oerjän jeffl3̈5 oerjän oerjän oerjän oerjän boil̈y shachäf shachä < 1476493203 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :lost in PSPACE < 1476493210 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :pooch space < 1476493312 0 :alercah!raedford@unaffiliated/alercah PRIVMSG #esoteric :`? umlaut < 1476493312 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :umlaut? ¯\(°​_o)/¯ < 1476493325 0 :alercah!raedford@unaffiliated/alercah PRIVMSG #esoteric :`? ümlaut < 1476493325 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​ümlaut? ¯\(°​_o)/¯ < 1476493330 0 :alercah!raedford@unaffiliated/alercah PRIVMSG #esoteric :`? ümläüt < 1476493331 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​ümläüt? ¯\(°​_o)/¯ < 1476493358 0 :alercah!raedford@unaffiliated/alercah PRIVMSG #esoteric :`? ümläüẗ < 1476493359 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​ümläüẗ? ¯\(°​_o)/¯ < 1476493399 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`? diaeresis < 1476493400 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :diaeresis? ¯\(°​_o)/¯ < 1476493404 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hm < 1476493408 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`? diarrhea < 1476493409 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Diarrhea is the most sickening accent, although some others are more grave. < 1476493519 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`learn Umlaut is German for "hum aloud", an important feature of the German language. It is indicated by putting two dots over the vowel of the syllable. < 1476493521 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Learned 'umlaut': Umlaut is German for "hum aloud", an important feature of the German language. It is indicated by putting two dots over the vowel of the syllable. < 1476493600 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`wisdom < 1476493601 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :reversal//lasrever < 1476493606 0 :alercah!raedford@unaffiliated/alercah PRIVMSG #esoteric :I hate wikipedia pages on mathematical problem that talk about the context of the problem, results related to the problem, and everything except for the actual problem < 1476493612 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`cwlprits lasrever < 1476493614 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1476493668 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`? arabic < 1476493669 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​.scihpylgoreiH sa drah sa ton hguoht ,troppus stnof ekam ot drah yrev si taht egaugnal citimes lartnec a si cibarA < 1476493776 0 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :@messages-loud < 1476493776 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :oerjan said 17m 47s ago: Did you guys see the paper claiming to prove NP = PSPACE? <-- i didn't read the paper itself but i read some reddit comments that pointed out some red flags < 1476493852 0 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric ::( < 1476493973 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hey scott aaronson didn't even bother looking at it :P < 1476493989 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :(he's seen too many failed attempts) < 1476494023 0 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :I hope it turns out to be correct, even if it probably isn't, because I'm an optimist and that seems an exciting result < 1476494034 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :Taneb: int-e said something about it after you mentioned it < 1476494048 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :(he thought he'd spotted a specific error) < 1476494065 0 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :I see, that was just after I headed out < 1476494089 0 :alercah!raedford@unaffiliated/alercah PRIVMSG #esoteric :oerjan: what reddit thread? < 1476494106 0 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :It's not a subject I have enough background knowledge in to make much headway < 1476494117 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :the russian for eyebrow is apparently бровь. that's p. cognate. < 1476494220 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hmph my latest reddit threads list has disappeared. < 1476494243 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :i guess it doesn't survive browser restart < 1476494325 0 :otherbot!?@? NICK :otterbot < 1476494326 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :https://www.reddit.com/r/programming/comments/56wyrd/arxiv_paper_claiming_np_pspace_any_immediate_red/ was one < 1476494377 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :i'm not sure if that one had the relevant comments < 1476494389 0 :carado!~carado@bea44-1-78-193-226-57.fbxo.proxad.net QUIT :Ping timeout: 268 seconds < 1476494402 0 :Zarutian!~zarutian@168-110-22-46.fiber.hringdu.is QUIT :Quit: Zarutian < 1476494425 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :oh it had https://www.reddit.com/r/programming/comments/56wyrd/arxiv_paper_claiming_np_pspace_any_immediate_red/d8n8bh5 < 1476494614 0 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :Someone I know at uni apparently made a (very-not-infinite-tape) turing machine < 1476494614 0 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :https://www.youtube.com/watch?v=nRsdaEjSHDA < 1476494930 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :here was another from r/compsci https://w3.reddit.com/r/compsci/comments/56w8hy/arxiv_paper_claiming_np_pspace_any_immediate_red/d8ov40q < 1476494954 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :which goes into more detail about a possible error < 1476494963 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :(slightly) < 1476495204 0 :DHeadshot!~DHeadshot@cpc88301-woki8-2-0-cust688.6-2.cable.virginm.net QUIT :Ping timeout: 260 seconds < 1476495233 0 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :are there any esolangs that use comments as string literals (optionally, that is)? < 1476495285 0 :otterbot!jeffl35@unaffiliated/jeffl35/bot/jeffbot QUIT :Quit: Quit requested by jeffl35: It's codebox's fault! < 1476495292 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :well in underload we use string literals as comments :) < 1476495317 0 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :hehe. < 1476495334 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :^ul (not a comment)(like this)!S < 1476495334 0 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :not a comment < 1476495361 0 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :http://pastebin.com/u78anJ0w < 1476495369 0 :otherbot!~yaybot@unaffiliated/jeffl35/bot/jeffbot JOIN :#esoteric < 1476495382 0 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :my own, I use everything between two quotes as a comment. < 1476495401 0 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :but as it's a part of the source, some external "syscall" could read from program data. < 1476495488 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :in befunge you could do it too, but then you can use any piece of the program as comment as long as you don't run it. < 1476495512 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :and you can also use g to read any part of the program. < 1476495519 0 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :that's kind of why I'm starting to think about remapping " to pull double-duty. < 1476495523 0 :nisstyre!~yourstrul@li611-52.members.linode.com JOIN :#esoteric < 1476495528 0 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :maybe a "skip" operator. < 1476495545 0 :nisstyre!~yourstrul@li611-52.members.linode.com QUIT :Changing host < 1476495546 0 :nisstyre!~yourstrul@oftn/oswg-member/Nisstyre JOIN :#esoteric < 1476495553 0 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :5" would skip ahead 5 symbols. < 1476495923 0 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :problem is if you wanted to inline a comment... you would need to keep track of the comment's length. :P < 1476496313 0 :hppavilion[1]!~Doslowdow@58-0-174-206.gci.net QUIT :Ping timeout: 268 seconds < 1476496533 0 :moonythedwarf_!~IceChat9@unaffiliated/moonythedwarf QUIT :Ping timeout: 248 seconds < 1476497094 0 :MoniRa!594e0c3f@gateway/web/freenode/ip.89.78.12.63 JOIN :#esoteric < 1476497532 0 :MoniRa!594e0c3f@gateway/web/freenode/ip.89.78.12.63 QUIT :Quit: Page closed < 1476497592 0 :Reece`!~Ner@host-92-13-206-75.as43234.net QUIT :Read error: Connection reset by peer < 1476498051 0 :otherbot!?@? NICK :otterbot < 1476498633 0 :\oren\!~oren@ec2-52-2-213-98.compute-1.amazonaws.com PRIVMSG #esoteric :imode: Hollerith constants? < 1476498676 0 :imode!~imode@unaffiliated/imode QUIT :Ping timeout: 250 seconds < 1476499449 0 :zzo38!~zzo38@24-207-15-88.eastlink.ca PRIVMSG #esoteric :That is what I thought too, but if you said skip, then maybe it is just a comment? I don't know exactly how it is working? < 1476499476 0 :otterbot!~yaybot@unaffiliated/jeffl35/bot/jeffbot QUIT :Read error: Connection reset by peer < 1476499496 0 :otherbot!~yaybot@unaffiliated/jeffl35/bot/jeffbot JOIN :#esoteric < 1476499639 0 :otherbot!~yaybot@unaffiliated/jeffl35/bot/jeffbot QUIT :Read error: Connection reset by peer < 1476499658 0 :otherbot!~yaybot@unaffiliated/jeffl35/bot/jeffbot JOIN :#esoteric < 1476499913 0 :centrinia!~centrinia@107-208-218-105.lightspeed.tukrga.sbcglobal.net JOIN :#esoteric < 1476500087 0 :imode!~imode@unaffiliated/imode JOIN :#esoteric < 1476500978 0 :centrinia!~centrinia@107-208-218-105.lightspeed.tukrga.sbcglobal.net QUIT :Quit: Leaving < 1476502101 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net JOIN :#esoteric < 1476502379 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :ACTION . o O ( Shouldn't Jeb! Bush have campaigned as ¡Jeb! Bush? ) < 1476502648 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :It seems that many of my edits to Wikipedia look like they're a PC thing, but are actually purely logical; often, it's removing unnecessary conditional statements < 1476502754 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :that's what you WANT to think hth < 1476502761 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :Such as saying 'husband of a female US president' when it would make more sense to say 'husband of a US president', as the couple being heterosexual isn't actually important, and a gay couple would be the same. < 1476502781 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :(as in, I change it from the first to the last) < 1476502788 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :(former to latter?) < 1476502809 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :what is PC < 1476502835 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :now the poor people in 2040 will be all confused when they try to find out whether the first husband of a president was gay or not < 1476502902 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :then they'll bitch about those insisting on calling them "people" when they clearly don't identify as such. < 1476502944 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :who? what? < 1476502950 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :ACTION is confused < 1476502953 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :yay < 1476502987 0 :\oren\!~oren@ec2-52-2-213-98.compute-1.amazonaws.com PRIVMSG #esoteric :the people in 2040 will most likely have horrifying political views created as a reaction to those of my generation < 1476502998 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :the poor (sorry, fortunately disadvantaged) of 2040 hth < 1476503024 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :\oren\: hm good point. make that 2060. < 1476503028 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :shachaf: Political Correctness- in this case, things like person-first language, trigger warnings, attempting to pretty much ban words that someone could find offensive or with etymological connotations < 1476503079 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :ACTION . o O ( Is the wife of the Vice President (or similar role) the Second Lady? ) < 1476503089 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :shachaf: i'm trying to lampshade PC language by imagining a future in which the word "people" is seen as offensive to some hth < 1476503149 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :ACTION . o O ( . o O ( . o O ( BWWWAAAAAAAAAAAAAAHHNNNN ) ) ) < 1476503227 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :i don't get it < 1476503249 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :shachaf: me or oerjan? < 1476503279 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :i don't get the bwahn hth < 1476503300 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :oerjan: It's inception. It's a . o O within a . o O within a . o O < 1476503308 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :is it a misspelled KHAN with different bantu gender? < 1476503308 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :oerjan: And inception had that sound effect < 1476503312 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :oh. < 1476503316 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :never seen it. < 1476503344 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :oerjan: http://inception.davepedu.com/noflash.php hth < 1476503377 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :. o O ( that url has "flash" in it i don't want to click it ) < 1476503397 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :oerjan: It's the one without flash. < 1476503403 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :*OBVIOUSLY* < 1476503412 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :(For some reason, the main one IS flash) < 1476503421 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hppavilion[1]: you're not interpreting me sufficiently meta hth < 1476503430 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :Oh? < 1476503454 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :obviously when i put something in . o O ( ) it's not meant to be literal hth < 1476503459 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :Oh? < 1476503464 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :Oh < 1476503467 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :. < 1476503482 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :ACTION . o O ( Have I been using . o O ( wrong this whole time? ) < 1476503554 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :yes ) < 1476503590 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :;-; < 1476503605 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :i didn't mean that literally, duh < 1476503614 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :I figured < 1476503616 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :it was inside parentheses, after all. < 1476503632 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :*+the < 1476503639 0 :\oren\!~oren@ec2-52-2-213-98.compute-1.amazonaws.com PRIVMSG #esoteric :))))) < 1476503675 0 :\oren\!~oren@ec2-52-2-213-98.compute-1.amazonaws.com PRIVMSG #esoteric :{{{[[ < 1476503682 0 :\oren\!~oren@ec2-52-2-213-98.compute-1.amazonaws.com PRIVMSG #esoteric :||||| < 1476503693 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :. o O ( the people who add extraneous close parentheses should be careful. what happens if they close the _big_ parenthesis at the beginning of the universe? ) < 1476503706 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :*closing < 1476503739 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :people who keep parentheses open too long should be careful, lest they open the big ) at the end of the universe < 1476503739 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :oerjan: We return to the multiverse < 1476503755 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((( < 1476503760 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :That should keep us safe for a few hours < 1476503789 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :⎞ < 1476503795 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :⎟ < 1476503795 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :⎠ < 1476503812 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :shachaf: No! You've killed us all! < 1476503826 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :(big parenthesis close all outstanding parenthesis)) < 1476503863 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :⎞ < 1476503866 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :⎟ < 1476503867 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :⎟ < 1476503869 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :⎟ < 1476503871 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :⎠ < 1476503872 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :hth < 1476503873 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :(Other than the big one at the end of the universe) < 1476503888 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :`idcode ⎟ < 1476503889 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: idcode: not found < 1476503899 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :`icode ⎟ < 1476503900 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​[U+239F RIGHT PARENTHESIS EXTENSION] < 1476503907 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :`unidata ⎟ < 1476503907 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: unidata: not found < 1476503949 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :`unicodedata ⎟ < 1476503949 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: unicodedata: not found < 1476504259 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :⎫ < 1476504260 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :⎪ < 1476504260 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :⎪ < 1476504260 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :⎬ < 1476504260 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :⎪ < 1476504260 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :⎪ < 1476504264 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :⎭ < 1476504272 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`multicode ⎟ < 1476504273 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :U+239F RIGHT PARENTHESIS EXTENSION \ UTF-8: e2 8e 9f UTF-16BE: 239f Decimal: ⎟ \ ⎟ \ Category: Sm (Symbol, Math) \ Bidi: ON (Other Neutrals) < 1476504307 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :⎫ < 1476504307 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :⎪ < 1476504307 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :⎪ < 1476504307 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :⎬ All the same person < 1476504307 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :⎪ < 1476504308 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :⎪ < 1476504310 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :⎭ < 1476504316 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :(now THAT'S clever) < 1476504330 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :*spammy < 1476504346 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :oerjan: I thought of that too < 1476504347 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :⎫ < 1476504347 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :⎪ < 1476504347 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :⎬ < 1476504347 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :⎨ < 1476504347 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :⎬ < 1476504348 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :⎪ < 1476504350 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :⎭ < 1476504351 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :please limit your spam to three lines twh < 1476504354 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :ACTION is done and going to eat < 1476504556 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :⎲ < 1476504559 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :⎳ < 1476504561 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :tg < 1476504616 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net QUIT :Ping timeout: 258 seconds < 1476504776 0 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :hah. < 1476504888 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`icode ⏜ < 1476504888 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​[U+23DC TOP PARENTHESIS] < 1476504923 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`icode ⏤ < 1476504924 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​[U+23E4 STRAIGHTNESS] < 1476504932 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :more inclusive characters please twh < 1476505149 0 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`unidecode ⎬ < 1476505150 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​[U+23AC RIGHT CURLY BRACKET MIDDLE PIECE] < 1476505170 0 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`unidecode ⎞ < 1476505170 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​[U+239E RIGHT PARENTHESIS UPPER HOOK] < 1476505290 0 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Ooh... I think I get it. < 1476505308 0 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :The `icode command does the opposite of the `unicode command... < 1476505318 0 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Because `unicode is "un-icode". < 1476505326 0 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :That's painful, man. < 1476506467 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net JOIN :#esoteric < 1476506508 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :[1] "Noon" is when the sun is directly above your head < 1476506537 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :[2] "Antinoon" is when it is noon at the antipode of your current location (draw a straight line through the center of the earth, come out the other side) < 1476506538 0 :zzo38!~zzo38@24-207-15-88.eastlink.ca PRIVMSG #esoteric :Unless between the tropics the sun is never directly above < 1476506557 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :high noon is 260 minutes after regular noon < 1476506576 0 :zzo38!~zzo38@24-207-15-88.eastlink.ca PRIVMSG #esoteric :But, when the sun is at "midheaven", which means at the local meridian, is the solar noon. < 1476506583 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :zzo38: Correction: "Noon" is when the subsolar point is at the same longitude as you < 1476506625 0 :zzo38!~zzo38@24-207-15-88.eastlink.ca PRIVMSG #esoteric :OK < 1476506657 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :i,i "It was about people whose mental diseases couldn't be treated because the causes of the diseases were all in the fourth dimension, and three-dimensional Earthling doctors couldn't see those causes at all or even imagine them. One thing Trout said that Rosewater liked very much was that there really were vampires and werewolves and goblins and angels and so on, but that they were in the fourth dimens < 1476506663 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :ion. So was William Blake, Rosewater's ... < 1476506666 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :... favorite poet, according to Trout. So were heaven and hell." < 1476506668 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Ugh. < 1476506703 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :[3] Separate the time between two consecutive antinoons into 24 equal-length units. Noon is at the exact midpoint (generally) < 1476506722 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :[4] Movement of the sun across the sky is a continuous function, or very very close. < 1476506778 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :[5] Theorem: At all times, it is 17:00 somewhere; in fact, it is 17:00 in uncountably infinitely many somewhere lying along a chord of the surface of the earth. < 1476507909 0 :pikhq!~pikhq@75-163-203-149.clsp.qwest.net QUIT :Ping timeout: 252 seconds < 1476508010 0 :pikhq!~pikhq@75-163-188-57.clsp.qwest.net JOIN :#esoteric < 1476508089 0 :zzo38!~zzo38@24-207-15-88.eastlink.ca PRIVMSG #esoteric :I found an article which says (among other things) "This is particularly accurate here where were trying to examine a chess game that happened forty years and we only have three of the pieces." Now I can think, what kind of chess puzzle might be made that involve such thing? < 1476508181 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :"A one-way mirror, also called two-way mirror" :( < 1476508209 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :a (-1)-way mirror < 1476508809 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :shachaf: That's called a wall < 1476509427 0 :otherbot!?@? NICK :otterbot < 1476511548 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Special:Log/newusers14]]4 create10 02 5* 03Luizperes 5* 10New user account < 1476512006 0 :pikhq!~pikhq@75-163-188-57.clsp.qwest.net PRIVMSG #esoteric :No, I think that's called a void. < 1476512884 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :pikhq: Not sure... < 1476512896 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :I don't actually have anything other than 1-way mirror to work with < 1476512905 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :I need a definition of 0-way and/or 2-way mirror < 1476512985 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :(What's n for a normal mirror as found in a Nacireman shrine room?) < 1476513104 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no QUIT :Quit: pi-way mirror < 1476513284 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :@tell oerjan oerjan has quit (Quit: pi-way mirror) <-- itym (pau*0.66...)-way mirror hth < 1476513284 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :Consider it noted. < 1476513917 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Esolang:Introduce yourself14]]4 10 02https://esolangs.org/w/index.php?diff=49974&oldid=49932 5* 03Luizperes 5* (+177) 10/* Introductions */ < 1476513966 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Brain14]]4 N10 02https://esolangs.org/w/index.php?oldid=49975 5* 03Luizperes 5* (+784) 10Created page with "An esoteric programming language based on Brainfuck. == About == '''Brain''' wants to improve the performance of the Brainfuck programming language and extend it as well, as..." < 1476514437 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net QUIT :Ping timeout: 258 seconds < 1476515176 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net JOIN :#esoteric < 1476515242 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :`? scow < 1476515247 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Scow (S-cow) is canned meat made from cows with a lisp. < 1476515301 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :`help < 1476515301 0 :HackEgo!~HackEgo@162.248.166.242 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/ < 1476515312 0 :pikhq!~pikhq@75-163-188-57.clsp.qwest.net QUIT :Ping timeout: 260 seconds < 1476515410 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :`slwd scow//s#$# Scheme is usually preferred, but Racket will be accepted in a pinch.# < 1476515412 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :wisdom/scow//Scow (S-cow) is canned meat made from cows with a lisp. Scheme is usually preferred, but Racket will be accepted in a pinch. < 1476515420 0 :pikhq!~pikhq@75-163-209-198.clsp.qwest.net JOIN :#esoteric < 1476515427 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :I regret nothing. < 1476515518 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Brain14]]4 10 02https://esolangs.org/w/index.php?diff=49976&oldid=49975 5* 03Luizperes 5* (+2382) 10 < 1476515839 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Brainfuck14]]4 10 02https://esolangs.org/w/index.php?diff=49977&oldid=47222 5* 03Hppavilion1 5* (+688) 10Stage III: Bargaining < 1476515866 0 :Sgeo__!~Sgeo@ool-18e4354b.dyn.optonline.net QUIT :Read error: Connection reset by peer < 1476516011 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Brainfuck14]]4 10 02https://esolangs.org/w/index.php?diff=49978&oldid=49977 5* 03Hppavilion1 5* (+144) 10Linkfix, even more bargainal offers < 1476516018 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Brain14]]4 10 02https://esolangs.org/w/index.php?diff=49979&oldid=49976 5* 03Luizperes 5* (+1211) 10 < 1476516051 0 :Sgeo!~Sgeo@ool-18e4354b.dyn.optonline.net JOIN :#esoteric < 1476516144 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :Sgeo: I see you once made a brainfuck derivative < 1476516244 0 :Sgeo!~Sgeo@ool-18e4354b.dyn.optonline.net PRIVMSG #esoteric :ACTION runs away from PhantomHoover < 1476516275 0 :Sgeo!~Sgeo@ool-18e4354b.dyn.optonline.net PRIVMSG #esoteric :It's more of an encoding than a derivative, although I think the same could be said for a lot of derivatives, but I'm explicit about it < 1476516348 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :Sgeo: PhantomHoover is no longer in charge of hating on that < 1476516350 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :Sgeo: I am now < 1476516357 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :Sgeo: You may want to check the wikipage < 1476516410 0 :augur!~augur@noisebridge130.static.monkeybrains.net QUIT :Remote host closed the connection < 1476516414 0 :Sgeo!~Sgeo@ool-18e4354b.dyn.optonline.net PRIVMSG #esoteric :Wait, which derivative, I made two < 1476516445 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :Sgeo: Ah, I was looking at Braintrust < 1476516459 0 :Sgeo!~Sgeo@ool-18e4354b.dyn.optonline.net PRIVMSG #esoteric :I was thinking BF-RLE < 1476516468 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :Sgeo: BF-RLE is acceptable, but would probably be better served as part of the main BF page or as a subpage < 1476516526 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :I'm quite a fan of PSOX though < 1476516529 0 :Sgeo!~Sgeo@ool-18e4354b.dyn.optonline.net PRIVMSG #esoteric :The core idea of Braintrust was unrelated to Brainfuck, I just needed a vessel to implement it and Brainfuck seemed as good as any < 1476516530 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :iirc < 1476516530 0 :Sgeo!~Sgeo@ool-18e4354b.dyn.optonline.net PRIVMSG #esoteric :ty < 1476516536 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :Ah. < 1476516554 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Brain14]]4 10 02https://esolangs.org/w/index.php?diff=49980&oldid=49979 5* 03Luizperes 5* (+1104) 10 < 1476516668 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Brain14]]4 10 02https://esolangs.org/w/index.php?diff=49981&oldid=49980 5* 03Luizperes 5* (+538) 10 < 1476516743 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Brain14]]4 10 02https://esolangs.org/w/index.php?diff=49982&oldid=49981 5* 03Luizperes 5* (+185) 10 < 1476517007 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Brainfuck Sharp14]]4 M10 02https://esolangs.org/w/index.php?diff=49983&oldid=46788 5* 03Hppavilion1 5* (-7017) 10Blank < 1476517030 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Brainfuck Sharp14]]4 M10 02https://esolangs.org/w/index.php?diff=49984&oldid=49983 5* 03Hppavilion1 5* (-14) 10 < 1476517097 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Brainfuck Sharp14]]4 M10 02https://esolangs.org/w/index.php?diff=49985&oldid=49984 5* 03Hppavilion1 5* (+73) 10linky < 1476517139 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Brainfuck Sharp14]]4 M10 02https://esolangs.org/w/index.php?diff=49986&oldid=49985 5* 03Hppavilion1 5* (+0) 10linkyfix < 1476517184 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Brainfuck Sharp14]]4 M10 02https://esolangs.org/w/index.php?diff=49987&oldid=49986 5* 03Hppavilion1 5* (-8) 10repeated redundancy fixed and repaired < 1476517196 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :Maybe HackEgo should just not mention minor edits < 1476517217 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :(then again, spammers would just mark their edits as minor and we wouldn't ever see...) < 1476517251 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :Sgeo: I have, hopefully, subsided the problem for some time with an edit to the bf article on the wiki < 1476518066 0 :sparr!~sparr@2604:a880:800:10::103:f001 QUIT :Changing host < 1476518066 0 :sparr!~sparr@pdpc/supporter/active/sparr JOIN :#esoteric < 1476518240 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Brain14]]4 10 02https://esolangs.org/w/index.php?diff=49988&oldid=49982 5* 03Luizperes 5* (+577) 10 < 1476518333 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Language list14]]4 10 02https://esolangs.org/w/index.php?diff=49989&oldid=49927 5* 03Luizperes 5* (+12) 10 < 1476518444 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Brain14]]4 10 02https://esolangs.org/w/index.php?diff=49990&oldid=49988 5* 03Luizperes 5* (+0) 10 < 1476518781 0 :augur!~augur@c-24-7-90-158.hsd1.ca.comcast.net JOIN :#esoteric < 1476519866 0 :MoALTz!~no@78-10-223-145.static.ip.netia.com.pl JOIN :#esoteric < 1476520438 0 :imode!~imode@unaffiliated/imode QUIT :Ping timeout: 250 seconds < 1476521804 0 :AnotherTest!~turingcom@d51A4BF3B.access.telenet.be JOIN :#esoteric < 1476522428 0 :carado!~carado@bea44-1-78-193-226-57.fbxo.proxad.net JOIN :#esoteric < 1476523619 0 :MDead!~MDude@pa-67-234-97-58.dhcp.embarqhsd.net JOIN :#esoteric < 1476523701 0 :`^_^v!~nycs@180.245.205.103 JOIN :#esoteric < 1476523703 0 :Cale!~cale@pool-108-29-88-63.nycmny.fios.verizon.net JOIN :#esoteric < 1476523903 0 :AnotherTest_!~turingcom@d51A4BF3B.access.telenet.be JOIN :#esoteric < 1476524008 0 :AnotherTest!~turingcom@d51A4BF3B.access.telenet.be QUIT :*.net *.split < 1476524009 0 :zzo38!~zzo38@24-207-15-88.eastlink.ca QUIT :*.net *.split < 1476524009 0 :MDude!~MDude@pa-67-234-97-58.dhcp.embarqhsd.net QUIT :*.net *.split < 1476524010 0 :\oren\!~oren@ec2-52-2-213-98.compute-1.amazonaws.com QUIT :*.net *.split < 1476524011 0 :digitalcold!~redacted@192.73.232.206 QUIT :*.net *.split < 1476524011 0 :atehwa_!atehwa@aulis.sange.fi QUIT :*.net *.split < 1476524011 0 :newsham!~chat@udp217044uds.hawaiiantel.net QUIT :*.net *.split < 1476524012 0 :AnotherTest_!?@? NICK :AnotherTest < 1476524016 0 :MDead!?@? NICK :MDude < 1476524446 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net PRIVMSG #esoteric :The best customary unit is still the Kenobi < 1476524518 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Brainfuck14]]4 10 02https://esolangs.org/w/index.php?diff=49991&oldid=49978 5* 03Rdebath 5* (-137) 10Removed "Symbolic Brainfuck", trivial substitution, "goto" wimpmode and "memory" wimpmode are already covered. < 1476524626 0 :Cale!~cale@pool-108-29-88-63.nycmny.fios.verizon.net QUIT :Ping timeout: 258 seconds < 1476524649 0 :hppavilion[1]!~Doslowdow@93-231-58-66.gci.net QUIT :Quit: Leaving < 1476524897 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :shachaf: thanks < 1476524925 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :? < 1476525067 0 :zzo38!~zzo38@24-207-15-88.eastlink.ca JOIN :#esoteric < 1476525067 0 :\oren\!~oren@ec2-52-2-213-98.compute-1.amazonaws.com JOIN :#esoteric < 1476525067 0 :digitalcold!~redacted@192.73.232.206 JOIN :#esoteric < 1476525067 0 :atehwa_!atehwa@aulis.sange.fi JOIN :#esoteric < 1476525067 0 :newsham!~chat@udp217044uds.hawaiiantel.net JOIN :#esoteric < 1476525081 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Oh, the list? < 1476525113 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :\oren\: I don't care about unifont, sorry < 1476527536 0 :atehwa!atehwa@aulis.sange.fi JOIN :#esoteric < 1476527598 0 :digitalc1ld!~redacted@192.73.232.206 JOIN :#esoteric < 1476527858 0 :zzo38!~zzo38@24-207-15-88.eastlink.ca QUIT :*.net *.split < 1476527858 0 :\oren\!~oren@ec2-52-2-213-98.compute-1.amazonaws.com QUIT :*.net *.split < 1476527859 0 :digitalcold!~redacted@192.73.232.206 QUIT :*.net *.split < 1476527859 0 :atehwa_!atehwa@aulis.sange.fi QUIT :*.net *.split < 1476527859 0 :newsham!~chat@udp217044uds.hawaiiantel.net QUIT :*.net *.split < 1476528336 0 :\oren\!~oren@ec2-52-2-213-98.compute-1.amazonaws.com JOIN :#esoteric < 1476529059 0 :augur!~augur@c-24-7-90-158.hsd1.ca.comcast.net QUIT :Read error: Connection reset by peer < 1476529071 0 :augur!~augur@c-24-7-90-158.hsd1.ca.comcast.net JOIN :#esoteric < 1476529089 0 :newsham!~chat@udp217044uds.hawaiiantel.net JOIN :#esoteric < 1476529501 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Brainfuck implementations14]]4 10 02https://esolangs.org/w/index.php?diff=49992&oldid=49805 5* 03Rdebath 5* (+194) 10A little more description < 1476529519 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Brainfuck14]]4 10 02https://esolangs.org/w/index.php?diff=49993&oldid=49991 5* 03Rdebath 5* (+349) 10Added division for fastest known "interpreters" (JIT), removed two "Hardware" ones that use commodity CPUs. Is COBOL notable?? < 1476530298 0 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :`le/rn denial/Sorry, but we don't know anything about denial. Taneb most definitely did not invent it. < 1476530300 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Learned «denial» < 1476530697 0 :Reece`!~Ner@host-92-13-206-75.as43234.net JOIN :#esoteric < 1476531033 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :a tanebven'tion < 1476531862 0 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :Last night I won a game of Settlers of Catan by building a city out of sheep < 1476533031 0 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :(I was getting 5 sheep whenever someone rolled a 5, which was often, and had a port so I could sell 2 sheep for 1 whatever) < 1476533246 0 :augur!~augur@c-24-7-90-158.hsd1.ca.comcast.net QUIT :Remote host closed the connection < 1476533861 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :oh man < 1476533875 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :better put that on the sheeping wall < 1476533880 0 :heroux!sandroco@gateway/shell/insomnia247/x-vypcbpnuymnmxaeq QUIT :Ping timeout: 250 seconds < 1476533928 0 :heroux!sandroco@gateway/shell/insomnia247/x-kesnphfemixihtkw JOIN :#esoteric < 1476534504 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :Taneb: original, or with extension sets? How heavily house ruled? < 1476534514 0 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :b_jonas, original < 1476534534 0 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :Taneb: i did that once. always quite fun. < 1476534538 0 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :Actually, it was someone else's set, I don't know what'd in the original < 1476534548 0 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :I had a "Longest road" card for two victory points < 1476534605 0 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :I also at point did a trade out of turn, but it was quite small and didn't change much in the long term < 1476534698 0 :heroux!sandroco@gateway/shell/insomnia247/x-kesnphfemixihtkw QUIT :Remote host closed the connection < 1476534731 0 :heroux!sandroco@gateway/shell/insomnia247/x-ektomlriykcxivjl JOIN :#esoteric < 1476534889 0 :ais523!~ais523@unaffiliated/ais523 JOIN :#esoteric < 1476535000 0 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :@metar LOWI < 1476535001 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :LOWI 151120Z 26009KT 9999 FEW060 BKN120 17/09 Q1014 NOSIG < 1476535015 0 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :feels colder < 1476535061 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :@metar EGBB < 1476535062 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :EGBB 151120Z 18007KT 150V210 9999 SCT022 13/09 Q1005 < 1476535429 0 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`? weather < 1476535441 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :lambdabot: @@ @@ (@where weather) CYUL ENVA ESSB KOAK < 1476535443 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : CYUL 151100Z 13004KT 15SM FEW120 BKN250 05/03 A3038 RMK AC1CI6 AC TR SLP291 \ ENVA 151120Z 09009KT CAVOK 08/M05 Q1027 NOSIG RMK WIND 670FT 12008KT \ ESSB 151120Z 08008KT 050V130 9999 BKN015 06/03 < 1476535444 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :Q1032 \ KOAK 151053Z 11003KT 9SM FEW016 OVC022 16/14 A2994 RMK AO2 SLP136 T01560144 PNO $ < 1476535496 0 :heroux!sandroco@gateway/shell/insomnia247/x-ektomlriykcxivjl QUIT :Ping timeout: 260 seconds < 1476535616 0 :heroux!sandroco@gateway/shell/insomnia247/x-mamcqwkwcljnjaqe JOIN :#esoteric < 1476535938 0 :heroux!sandroco@gateway/shell/insomnia247/x-mamcqwkwcljnjaqe QUIT :Remote host closed the connection < 1476535971 0 :heroux!sandroco@gateway/shell/insomnia247/x-nxvspotwyktndxth JOIN :#esoteric < 1476537838 0 :`^_^v!~nycs@180.245.205.103 QUIT :Quit: This computer has gone to sleep < 1476537944 0 :LKoen!~LKoen@vbo91-1-82-238-218-67.fbx.proxad.net JOIN :#esoteric < 1476538533 0 :izalove!~izabera@unaffiliated/izabera PRIVMSG #esoteric :https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/include/uapi/linux/reboot.h < 1476538539 0 :izalove!~izabera@unaffiliated/izabera PRIVMSG #esoteric :the values in lines 9-12 < 1476538548 0 :izalove!~izabera@unaffiliated/izabera PRIVMSG #esoteric :print them in hex < 1476538646 0 :izalove!~izabera@unaffiliated/izabera PRIVMSG #esoteric :`` printf '%8x\n' 672274793 85072278 369367448 537993216 | sed -r 's|(..)(..)|\1/\2/|' < 1476538647 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :28/12/1969 \ 5/12/1996 \ 16/04/1998 \ 20/11/2000 < 1476538666 0 :izalove!~izabera@unaffiliated/izabera PRIVMSG #esoteric :these are the birth dates of linus torvalds' wife and daughters < 1476538676 0 :izalove!~izabera@unaffiliated/izabera PRIVMSG #esoteric :that's the cutest easter egg i've ever seen < 1476538841 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :izalove: I knew they were significant dates, but not what they represented < 1476538884 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :a fun problem I ran into with my CALESYTA entry today was related to soft hyphens < 1476538893 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I wanted to output binary data unambiguously < 1476538932 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :for control codes in the 0-32 and 127 range, there are characters like ␀ you can use < 1476538969 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :for 128-160, I used combining characters like ␍⃑ < 1476538983 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :and this makes 255 out of the 256 possible octets visible < 1476539017 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :(because you can use latin-1 for the values above 160) < 1476539018 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :but soft hyphen doesn't have a control picture, and isn't naturally visible < 1476539128 0 :heroux!sandroco@gateway/shell/insomnia247/x-nxvspotwyktndxth QUIT :Ping timeout: 244 seconds < 1476539211 0 :heroux!sandroco@gateway/shell/insomnia247/x-hpjervhboxcvbanl JOIN :#esoteric < 1476540726 0 :heroux!sandroco@gateway/shell/insomnia247/x-hpjervhboxcvbanl QUIT :Remote host closed the connection < 1476540770 0 :heroux!sandroco@gateway/shell/insomnia247/x-rnpsfggdbdnzrgrn JOIN :#esoteric < 1476541580 0 :zzo38!~zzo38@24-207-15-88.eastlink.ca JOIN :#esoteric < 1476542021 0 :heroux!sandroco@gateway/shell/insomnia247/x-rnpsfggdbdnzrgrn QUIT :Remote host closed the connection < 1476542056 0 :heroux!sandroco@gateway/shell/insomnia247/x-rutdqfbuoimyvpel JOIN :#esoteric < 1476542416 0 :pikhq!~pikhq@75-163-209-198.clsp.qwest.net QUIT :Ping timeout: 260 seconds < 1476542532 0 :pikhq!~pikhq@174-24-59-151.clsp.qwest.net JOIN :#esoteric < 1476542734 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :ais523: can't you use ibm437 for that? it has practically only distinguishable characters, since they had few space and wanted to get as many different visible glyphs from it as possible. only {0x20, 0x00, 0xff} look the same, but you can replace those. < 1476542796 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :also possibly {0xf9, 0xfa} which are a middle dot and a small middle dot < 1476542867 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :my bitmap font actually has some mostly unambiguous pictures at the position of the ascii control and high control characters, only I almost see them because there's no way to display them in the terminal < 1476542964 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :the soft hyphen isn't a control character though, so it does show up in the terminal with my font properly < 1476542994 0 :zzo38!~zzo38@24-207-15-88.eastlink.ca PRIVMSG #esoteric :They are different dots < 1476543022 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :zzo38: sure < 1476543450 0 :heroux!sandroco@gateway/shell/insomnia247/x-rutdqfbuoimyvpel QUIT :Ping timeout: 252 seconds < 1476543753 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :b_jonas: it's possible but probably less intuitive < 1476543781 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :ais523: sure, it depends on what the data represents < 1476543829 0 :heroux!~heroux@gateway/shell/insomnia247/x-qzvlkkyvxmmfcvvw JOIN :#esoteric < 1476543972 0 :`^_^v!~nycs@180.245.205.103 JOIN :#esoteric < 1476544103 0 :heroux!~heroux@gateway/shell/insomnia247/x-qzvlkkyvxmmfcvvw QUIT :Ping timeout: 245 seconds < 1476544136 0 :heroux!sandroco@gateway/shell/insomnia247/x-gnjlrkrefscbcghd JOIN :#esoteric < 1476544460 0 :heroux!sandroco@gateway/shell/insomnia247/x-gnjlrkrefscbcghd QUIT :Remote host closed the connection < 1476544470 0 :heroux!sandroco@gateway/shell/insomnia247/x-fdndxzhuntfplcxk JOIN :#esoteric < 1476546673 0 :nycs!~nycs@180.245.205.103 JOIN :#esoteric < 1476546698 0 :`^_^v!~nycs@180.245.205.103 QUIT :Ping timeout: 250 seconds < 1476547097 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no JOIN :#esoteric < 1476547330 0 :Reece`!~Ner@host-92-13-206-75.as43234.net QUIT :Quit: Alsithyafturttararfunar < 1476547396 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :@messages- < 1476547396 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :hppavilion[1] said 9h 28m 31s ago: oerjan has quit (Quit: pi-way mirror) <-- itym (pau*0.66...)-way mirror hth < 1476547406 0 :Reece`!~Ner@host-92-13-206-75.as43234.net JOIN :#esoteric < 1476547427 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :oerjan: you have a symbol for 1½ times pi? < 1476547430 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :is that a cross between pi and tau? < 1476547434 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :i don't. < 1476547443 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :oh, hppavilion[1] < 1476547444 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hppavilion[1] has all sorts of weird things. < 1476547450 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :that's like starting arrays at 0.5 < 1476547531 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :ais523: isn't that an xkcd thing? < 1476547538 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :i'm pretty sure he's done that too. or at least someone did. < 1476547545 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :b_jonas: not originally, although xkcd may have referenced it < 1476547550 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :http://www.xkcd.com/1292/ < 1476547559 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :VHDL probably lets you start arrays at any value you like < 1476547570 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`? scow < 1476547571 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Scow (S-cow) is canned meat made from cows with a lisp. Scheme is usually preferred, but Racket will be accepted in a pinch. < 1476547582 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :and there are hints in the syntax that you can index them with things other than integers < 1476547589 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`slwd scow//[.].*/./ < 1476547590 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :sed: -e expression #1, char 1: unknown command: `[' < 1476547591 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :ais523: fortran, pascal and haskell lets you start arrays at any value too. < 1476547598 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`slwd scow//s/[.].*/./ < 1476547600 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :wisdom/scow//Scow (S-cow) is canned meat made from cows with a lisp. < 1476547618 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :VHDL also lets you have arrays that are numbered backwards < 1476547628 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hppavilion[1] sometimes doesn't understand when something ruins a joke... < 1476547631 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :this means that you can ask an array for its upper and lower bounds, also for its left and right bounds < 1476547647 0 :zzo38!~zzo38@24-207-15-88.eastlink.ca PRIVMSG #esoteric :And also BASIC < 1476547656 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :(an array numbered, say, 7 downto 0 will have a lower bound of 0 but a left bound of 7) < 1476547669 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :@tell hppavilion[1] your addition to `? scow ruins the joke, so i removed it. < 1476547669 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :Consider it noted. < 1476547679 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :Perl had a variable that let you globally change the lower bound of all arrays < 1476547683 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :then they changed it to a compiler directive < 1476547686 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :then they deprecated it < 1476547751 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :ais523: yes, it's funny how that's happened in three completely different ways in APL and BASIC and Perl < 1476547794 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :APL originally used to be indexed from 1, probably to pull mathematicians in more easily, but later added a global setting like in perl to change indexing to start with 0 instead, which is the sane choice < 1476547843 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :BASIC tried to please both crowds, so DIM R(8) would create an array of 9 elements indexed from 0 to 8 inclusive, but later gained a global option to start indexing at 1 < 1476547871 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :Perl started with indexing at 0 but had the option for reasons unknown to me < 1476547874 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :what about Lua and PHP, which treat arrays as special cases of hash tables? < 1476547897 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :and therefore let you use completely arbitrary indexes, but typically a few special cases for arrays that are numbered in order? < 1476547906 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :actually I think a PHP array is an ordered hash table (?) < 1476547911 0 :zzo38!~zzo38@24-207-15-88.eastlink.ca PRIVMSG #esoteric :You can just write something like DIM R(-3 to 15) or whatever, though < 1476547911 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :ais523: Lua actually has the builtin operator # treat arrays as 1-based (plus library functions), plus also the implementation is optimized for 1-based arrays, < 1476547928 0 :zzo38!~zzo38@24-207-15-88.eastlink.ca PRIVMSG #esoteric :ais523: Yes it is, for some reason < 1476547929 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :oh, and the varargs system also treatas arrays as 1-based < 1476547938 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :b_jonas: that's the special case I was thinking of < 1476547946 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :so in Lua, sadly, you're stuck with 1-based arrays very much, and it's hard to change that without some compatibillity break < 1476547958 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :(#, that is) < 1476547973 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :though at least lua isn't that much of an array-based language than perl or apl, so it matters a bit less < 1476547979 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :GAP is the one that REALLY bothers me < 1476547987 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :it indexes arrays from 1 < 1476548005 0 :nycs!~nycs@180.245.205.103 QUIT :Ping timeout: 260 seconds < 1476548006 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :and that is a huge mental barrier to me whenever I try to do anything in GAP < 1476548022 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :like, in theory it shouldn't be that bad, you just have to subtract 1 or add 1 a few places < 1476548029 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :but it somehow drives me crazy < 1476548034 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :b_jonas: I've seen a widely used language in a particular field < 1476548043 0 :\oren\!~oren@ec2-52-2-213-98.compute-1.amazonaws.com PRIVMSG #esoteric :clearly you've never done much in Visual Basic either < 1476548055 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :\oren\: I did just mention BASIC above < 1476548058 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :didn't I? < 1476548074 0 :zzo38!~zzo38@24-207-15-88.eastlink.ca PRIVMSG #esoteric :In BASIC, strings are 1-based, but arrays can be whatever based you want. < 1476548085 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :in which the normal, intended way to do x[y] = z translates as eval("x" + y) = z < 1476548099 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I assume this is somehow optimized behind the scenes but it's still insane < 1476548114 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :(incidentally, this trick is sometimes useful in Perl golfing) < 1476548123 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :(you basically use the entire space of variable names as a hash table) < 1476548198 0 :\oren\!~oren@ec2-52-2-213-98.compute-1.amazonaws.com PRIVMSG #esoteric :visual basic is interesting to me because it has all the same extensive libraries as C# but retains a lot of BASIC wackyness < 1476548230 0 :zzo38!~zzo38@24-207-15-88.eastlink.ca PRIVMSG #esoteric :TI-92 also uses 1-based arrays. (Also on TI-92, I have tried and if you use a fractional array index it just fails to simplify and is not an error, but specifying zero as the index is an error.) < 1476548251 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :zzo38: yes, true, I forgot about strings < 1476548316 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :I'm very unfamiliar with TI-92 < 1476548382 0 :\oren\!~oren@ec2-52-2-213-98.compute-1.amazonaws.com PRIVMSG #esoteric :visual basic is like C# from an alternate timeline where americans won the cold war < 1476548491 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :zzo38: have you ever programmed wordbasic or corelscript? those are strange dialects of basic, much closer to traditional basics than visualbasic < 1476548521 0 :zzo38!~zzo38@24-207-15-88.eastlink.ca PRIVMSG #esoteric :JavaScript uses 0-based arrays and strings, but you can make up your own object for 1-based if you want to (but then is not compatible with other functions) < 1476548528 0 :zzo38!~zzo38@24-207-15-88.eastlink.ca PRIVMSG #esoteric :b_jonas: I think I may have done once < 1476548548 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :zzo38: well sure, you can make up your own functions for anything-based arrays in lots of languages < 1476548569 0 :nycs!~nycs@114.121.236.217 JOIN :#esoteric < 1476548573 0 :zzo38!~zzo38@24-207-15-88.eastlink.ca PRIVMSG #esoteric :Yes, and you can also fake 1-based in C, but you can't do it properly. < 1476548723 0 :zzo38!~zzo38@24-207-15-88.eastlink.ca PRIVMSG #esoteric :For example you can make up a macro to make pointer arithmetic to do that, but on some computers, performing pointer arithmetic that causes the result to be out of bounds is an error. < 1476548765 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :zzo38: yes, in C you'd need a new macro to index the array, which subtracts 1 < 1476548797 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :how does Mathematica work again? does it use 1-based arrays? it's been a while since I used it so I don't recall < 1476548800 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :ACTION checks docs < 1476548803 0 :zzo38!~zzo38@24-207-15-88.eastlink.ca PRIVMSG #esoteric :I don't know < 1476548822 0 :zzo38!~zzo38@24-207-15-88.eastlink.ca PRIVMSG #esoteric :I have never used Mathematica but I have seen several example codes, but I forget, anyways < 1476548899 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :yes, Mathematica is 1-based, worse than that in fact, because indexing by 0 gives the head of the item (think of the head like the symbol in prolog, sort of, but way more magical than that), so if you accidentally index by 0 you could get ugly heisenbugs that are hard to discover < 1476548996 0 :moony!~IceChat9@unaffiliated/moonythedwarf JOIN :#esoteric < 1476549149 0 :nycs!~nycs@114.121.236.217 QUIT :Read error: Connection reset by peer < 1476549483 0 :`^_^v!~nycs@180.245.205.103 JOIN :#esoteric < 1476550559 0 :MoALTz!~no@78-10-223-145.static.ip.netia.com.pl QUIT :Quit: Leaving < 1476550580 0 :boily!~alexandre@cable-192.222.252.9.electronicbox.net JOIN :#esoteric < 1476551048 0 :boily!~alexandre@cable-192.222.252.9.electronicbox.net PRIVMSG #esoteric :fungot: nostril? < 1476551048 0 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :boily: i walked 5 miles to get to http://community.schemewiki.org from there. but it's written in a relatively portable style? < 1476551078 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :hehe < 1476551096 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :huh, I never thought of bots thinking of Internet use in miles, but it makes sense from their viewpoints < 1476551112 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :this is pretty much the setting of the Megaman Battle Network series, come to think of it < 1476551113 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :I think it's sort of figurative < 1476551139 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :(Internet usage becomes so complex that people need to use bots to help them navigate it, and the bots see the Internet as if it were a real world, needing to walk from place to place, etc.) < 1476551147 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :like walking through the valley of the shadow of death < 1476551206 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :ais523: what? for a very long time now the internet has been so complicated that people need routers to figure out where to send each packet. and I'm convinced the routers (at least some of them) work by magic. < 1476551211 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :bood nostrily < 1476551223 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :(as in, the other routers just ask the magic routers for help) < 1476551246 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`addquote boily: i walked 5 miles to get to < 1476551246 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric : http://community.schemewiki.org from there. but it's written in < 1476551246 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric : a relatively portable style? < 1476551246 0 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :oerjan: of having a cognitive disconnect there weren't any chinese speakers there), and expander and ( module b...) in my code directory on the web < 1476551248 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :1293) boily: i walked 5 miles to get to < 1476551250 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :argh < 1476551255 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :b_jonas: but you don't have bots going around fighting wars and placing barriers across cables and getting frozen in cyber-ice < 1476551256 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`delquote 1293 < 1476551259 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​*poof* boily: i walked 5 miles to get to < 1476551275 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :oerjan: how did that end up text-wrapped anyway? < 1476551284 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :ais523: hmm.... I think a little of that does happen, but yes, we don't get much of it < 1476551285 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :`addquote boily: i walked 5 miles to get to http://community.schemewiki.org from there. but it's written in a relatively portable style? < 1476551286 0 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :ais523: better than the drscheme editor that ' delete' on mac keyboards, is usually defined in terms of c++, ada, java... macros don't happen until after the bindings are there? < 1476551287 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :1293) boily: i walked 5 miles to get to http://community.schemewiki.org from there. but it's written in a relatively portable style? < 1476551327 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :ais523: because i'm copying from putty, and irssi is _supposed_ to detect its own wrapping, but somehow keeps failing. < 1476551353 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :i've increased the timing threshold several times... < 1476551359 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :test: fungot> boily: i walked 5 miles to get to < 1476551359 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric : http://community.schemewiki.org from there. but it's written in < 1476551359 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric : a relatively portable style? < 1476551360 0 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :oerjan: eww... mgt is ugly, though, < 1476551372 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :nope, failed again. < 1476551412 0 :boily!~alexandre@cable-192.222.252.9.electronicbox.net PRIVMSG #esoteric :@massages-loud < 1476551413 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :oerjan said 1d 23h 13m 54s ago: wait. don't tell me nobody fungotted overnight and I'm still the last one who spoke to him? <-- . o O ( hah no one else _ever_ will ... oh crap ) < 1476551436 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :paste_detect_time = 200msecs < 1476551440 0 :boily!~alexandre@cable-192.222.252.9.electronicbox.net PRIVMSG #esoteric :ACTION pats fungot on the... head? does fungot even have a head? < 1476551440 0 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :boily: i can't judge about that. they're introducing the topic of your fnord < 1476551450 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :fungot doesn't know whether it has a head < 1476551451 0 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :ais523: i'm not even sure myself how it works :( it says i've fnord wrong argument order. for example a microsoft keyboard... so my shifts are different. < 1476551451 0 :phoenixflounderi!326ab82b@gateway/web/cgi-irc/kiwiirc.com/ip.50.106.184.43 JOIN :#esoteric < 1476551455 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :how can that possibly not be enough? it must ignore it for some other reason. < 1476551458 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :that makes sense, given how bot anatomy works < 1476551459 0 :boily!~alexandre@cable-192.222.252.9.electronicbox.net PRIVMSG #esoteric :`relcome phoenixflounderi < 1476551460 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​06phoenixflounderi: 13Welcome 04to 07the 08international 09hub 02for 06esoteric 13programming 04language 07design 08and 09deployment! 02For 06more 13information, 04check 07out 08our 09wiki: 02. 06(For 13the 04other 07kind 08of 09esoterica, 02try 06#esoteric 13on 04EFnet 07or 08DALnet.) < 1476551464 0 :phoenixflounderi!326ab82b@gateway/web/cgi-irc/kiwiirc.com/ip.50.106.184.43 PRIVMSG #esoteric :thank you < 1476551507 0 :phoenixflounderi!326ab82b@gateway/web/cgi-irc/kiwiirc.com/ip.50.106.184.43 PRIVMSG #esoteric :oh, this is about programming < 1476551513 0 :phoenixflounderi!326ab82b@gateway/web/cgi-irc/kiwiirc.com/ip.50.106.184.43 PRIVMSG #esoteric :thats nto what i had in mind at all < 1476551543 0 :boily!~alexandre@cable-192.222.252.9.electronicbox.net PRIVMSG #esoteric :not an issue. < 1476551561 0 :phoenixflounderi!326ab82b@gateway/web/cgi-irc/kiwiirc.com/ip.50.106.184.43 PART #esoteric : < 1476551568 0 :boily!~alexandre@cable-192.222.252.9.electronicbox.net PRIVMSG #esoteric :beuh... < 1476551572 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :looks like our welcome message actually worked! < 1476551577 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :how often does that happen < 1476551637 0 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :ais523, I think every couple of weeks someone gets `welcome'd then leaves < 1476551646 0 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :I like to think it's because it's working < 1476551651 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :yes, but not always do they say it's because it's the wrong #esoteric < 1476551772 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :test after increasing again: fungot> boily: i walked 5 miles to get to < 1476551772 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric : http://community.schemewiki.org from there. but it's written in < 1476551772 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric : a relatively portable style? < 1476551772 0 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :oerjan: i know of < 1476551783 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :argh < 1476551800 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :ok if 500 msecs don't work, then it cannot be the time. < 1476551830 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I was thinking "if it's not the time, maybe it's the date?" but it isn't Wednesday < 1476552189 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :fungot> boily: i walked 5 miles to get to < 1476552189 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric : http://community.schemewiki.org from there. but it's written in < 1476552189 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric : a relatively portable style? < 1476552189 0 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :oerjan: so that would be nice if there was a small chance i get a < 1476552209 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :(that was a last test to see if it was because i'd written a prefix first) < 1476552213 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :but no. < 1476552231 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :i'm pretty sure it worked after i increased it on a previous occasion. < 1476552247 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :ais523> yes, but not always do they say it's because it's the wrong < 1476552247 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric : #esoteric < 1476552251 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :(sorry) < 1476552267 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :ACTION gives up for now, i guess it's back to mungling those things in vim. < 1476552367 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :oh irssi has finally been upgraded. < 1476552371 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :must be that. < 1476552482 0 :ybden!ybden@unaffiliated/ybden PRIVMSG #esoteric :`cat bin/relcome < 1476552482 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​#!/bin/sh \ welcome "$@" | rainwords < 1476552488 0 :ybden!ybden@unaffiliated/ybden PRIVMSG #esoteric :`cat bin/rainwords < 1476552489 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​#!/hackenv/bin/shebang_args_or_input python \ import random; w=[l.split() for l in open("/dev/stdin").read().split("\n")]; r=[4,7,8,9,2,6,13]; print "\n".join((lambda s: " ".join(chr(3) + "%02d"%r[(i+s)%len(r)] + l[i] for i in range(len(l))))(random.randrange(0, len(r))) for l in w) < 1476552498 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :(so i'm not longer being insecure, i guess) < 1476552535 0 :zzo38!~zzo38@24-207-15-88.eastlink.ca PRIVMSG #esoteric :IRC client I use not have the problem with wrapping because output wrapping is done only by the terminal. (It also makes input wrapping done by the terminal, but still needs to know the width of the screen in case of backspace or if other output occurs while the user is typing) < 1476552689 0 :FireFly!znc@freenode/staff/firefly PRIVMSG #esoteric :oerjan: I don't know irssi, but weechat has /window bare for those purposes. maybe irssi has something similar? < 1476552695 0 :FireFly!znc@freenode/staff/firefly PRIVMSG #esoteric :for copy-pasting quotes I mean < 1476552806 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :what's /window bare < 1476552857 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :irssi has /set paste_join_multiline ON, it just happens to be buggy. i found an old still open bug report... < 1476553017 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hm it _is_ capable of reflowing when resizing the window... < 1476553044 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :otoh how would putty be able to know if there's a true line break? < 1476553066 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :oerjan: maybe it just counts any line with a bunch of spaces at the start as a continuation? < 1476553079 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :that's the obvious impl of dewrapping < 1476553082 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :ais523: that's the idea. it just doesn't work. < 1476553122 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :ACTION thinks "the idea is that it just doesn't work" would be a good esolang concept < 1476553134 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :btw, how are everyone's CALESYTA entries getting on? < 1476553149 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I have most of a spec worked out in my head (also an older version written down but I'm going to redo some things) < 1476553157 0 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :CALEYSTA? < 1476553161 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :Taneb: see topic < 1476553168 0 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :Ooh! I forgot about that! < 1476553177 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :also I now have a working syntax highlighter < 1476553184 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :which means that the parser probably works too < 1476553194 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :finally, I have an idea (only in my head so far) of how to write useful programs < 1476553211 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it's surprisingly difficult, you have to exploit corner cases in the spec in a nonobvious way to prevent the language being subTC in an unusual way < 1476553305 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :oh, an esolang design contest? interesting < 1476553322 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :let me see that < 1476553404 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :they want spec + impl (maybe also IDE) + example programs + not a BF variant < 1476553421 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :also a computational class analysis < 1476553500 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :oh gah I just realised how hard it will be to write a quine in this langugae < 1476553503 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :*language < 1476553519 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it may end up as the language with the hardest quine-to-other-common-example-program ratio < 1476553533 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :nice! < 1476553540 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :then it's definitely not just a brainfuck-alike < 1476553552 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :in brainfuck-alikes it's usually easy to write a quine, or impossible < 1476553567 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I'm pretty sure it's possible, but the language has features that specifically make quining harder than normal < 1476553570 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :(impossible if they have too limited io or very limited computational capability) < 1476553588 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :um, what counts as normal? < 1476553601 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :you don't mean perl-like normal, but dumb esolang-like normal, right? < 1476553604 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I gave lessons on quine construction somewhere a while back, maybe Reddit < 1476553627 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :as in, I don't expect there to be fancy string literals with various forms of quoting and escape sequences and built-in string and regex operations < 1476553636 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :by normal I mean that the difficulty of writing a quine in your language is basically equal to the difficulty of taking a universal quine, and translating it into your language < 1476553647 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :ok < 1476553655 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :and by universal quine I mean pseudocode quine, or basically the standard quine template that doesn't rely on any language-specific tricks < 1476553701 0 :LKoen!~LKoen@vbo91-1-82-238-218-67.fbx.proxad.net QUIT :Quit: “It’s only logical. First you learn to talk, then you learn to think. Too bad it’s not the other way round.” < 1476553773 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :anyway, the universal quine template doesn't take kindly to languages in which any part of the program can alter the parsing of the entire rest of the program, both backwards and forwards < 1476553814 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I ended up looking at mathematical papers in order to find algorithms for use in the parser < 1476553830 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :nice < 1476553832 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :to get it up to acceptable speed on large inputs < 1476553882 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :Now I'm looking at the three sqlite quines I wrote < 1476553907 0 :zzo38!~zzo38@24-207-15-88.eastlink.ca PRIVMSG #esoteric :You wrote three? Which ones are they? < 1476553918 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :`which sqlite3 < 1476553919 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/usr/bin/sqlite3 < 1476553923 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :ooh! < 1476553928 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :zzo38: they're on the mailing list near 2014-03-08 < 1476553934 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :`` echo select 1 | sqlite3 < 1476553936 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Error: incomplete SQL: select 1 < 1476553946 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :wait, I have to select it from something? < 1476553954 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :or maybe add a semicolon or the like? < 1476553959 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :`` echo 'select 1;' | sqlite3 < 1476553960 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :1 < 1476553965 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :ah, semicolon is all it needed < 1476553986 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :sqlite quine => http://dpaste.com/0S0XKSE < 1476553997 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :now I'm interested in how you break linearity < 1476554001 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :that's the only hard part I see here < 1476554010 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :(err, affinity, not linearity; clearly deleting information is easy) < 1476554014 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :um, what do you mean by linearity in this case? < 1476554016 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :oh, you created a table < 1476554022 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :b_jonas: the ability to use a value more than once < 1476554024 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :only in the first one < 1476554043 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :in the third one I use subselect to assign something to variables, and used the variable more than once in the outer select < 1476554076 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I think you need to break linearity to use a universal quine construction, thus quining isn't /necessarily/ possible in a linear language < 1476554078 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :in the second one I use the string function replace that can find and replace more than one instance of a substring < 1476554092 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :(but then, linear languages tend to be sub-TC unless they have a monad or the like that lets you break linearity in a controlled fashion) < 1476554123 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :the first one is a vanilla universal quine of the kind I like, using a list of values instead of variables, only it gets somewhat hairy because it isn't easy to create and subscript a list in sqlite3, < 1476554134 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :and also it's hard to concatenate a list of strings < 1476554207 0 :boily!~alexandre@cable-192.222.252.9.electronicbox.net QUIT :Quit: ENGINEERED CHICKEN < 1476554209 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :`` echo "SELECT replace(s,char(33),'''')||s||'''s);'FROM(SELECT'SELECT replace(s,char(33),!!!!)||s||!!!s);!FROM(SELECT!'s);" | sqlite3 < 1476554209 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Error: near line 1: no such function: char < 1476554216 0 :zzo38!~zzo38@24-207-15-88.eastlink.ca PRIVMSG #esoteric :Now the GURPS points calculation program I made in JavaScript is supports colours! < 1476554222 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :may be an escaping problem < 1476554225 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :SQL is a pain to sel-escape < 1476554233 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :*shell-escape < 1476554236 0 :zzo38!~zzo38@24-207-15-88.eastlink.ca PRIVMSG #esoteric :You need a newer version of SQLite < 1476554241 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :although I don't think it is in this case < 1476554242 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :ah < 1476554245 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :`` sqlite3 --version < 1476554246 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :3.7.13 2012-06-11 02:05:22 f5b5a13f7394dc143aa136f1d4faba6839eaa6dc < 1476554303 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :interesting question: assuming you don't care about bracket matching issues, do all languages with an Underload interpreter also have a quine? < 1476554411 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric : I think you need to break linearity to use a universal quine <-- this reminds me of http://www.scottaaronson.com/blog/?p=2903#comment-1425822 < 1476554414 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric : construction, thus quining isn't /necessarily/ possible in a < 1476554416 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric : linear language < 1476554421 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :of course it broke again. < 1476554429 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :this is going to be awful. < 1476554430 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :wait, how does that even break? < 1476554438 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :ais523: I think so, at least if the source of the underload program can be stored in some sane encoding in the program (not necessarily as a literal without escaping, but any sane format) < 1476554439 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :the bit that broke wasn't even copy-pasted < 1476554458 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :b_jonas: oh, good point, you could have a language where the /only/ program is an Underload interp < 1476554481 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :oerjan: huh, I know the author of that comment < 1476554482 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :ais523: i only paste once i've written the rest, since that generally posts the line too < 1476554491 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :but this is more or less true to any sane inner language, not only to underload < 1476554495 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :he used to work a couple of offices away from mine < 1476554596 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :from that esolang design contest, "Can you design a language inspired by the water cycle and the movement of clouds?" -- is that trying to be a reference to some existing esolang (esolang in the broad sense, as always)? < 1476554609 0 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :what, precisely, would constitute a quine (for example, the coding systems for the program itself and for its output might be different; it may also be impossible to construct arbitrary UL programs in the target language (the extreme example is a "language" that only allows the empty program, which is an interpreter that reads an UL program and then executes it...)) < 1476554616 0 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :? < 1476554643 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :b_jonas: probably not; it's reminiscent of Homespring but different < 1476554667 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :(I remember someone randomly posting some Homespring on Reddit once; that was a weird experience) < 1476554695 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :int-e: I guess I'm assuming some sort of basic "no cheating" rules < 1476554721 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :in which you can modify the Underload interpreter to take fixed input (but that ends up as part of the program), and there aren't encoding issues (including with Underload's hate of mismatched parens) < 1476554742 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :"all commands are based on a metaphor of salmon travelling upriver" < 1476554762 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :wait, have you not seen Homespring before? < 1476554778 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :you really should, it's probably the best thematic esolang there is < 1476554782 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :I haven't seen it before < 1476554784 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :even if it does have a few issues < 1476554789 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :WHAT? better than chef? < 1476554793 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :definitely < 1476554802 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :chef is mostly just a syntax encoding < 1476554811 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :well sure < 1476554817 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :that's why it's thematic < 1476554833 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :homespring is interesting because it /isn't/ just a syntax encoding < 1476554896 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :for something that's not thematic and also not just a syntax encoding, I think ICFP 2006 has one or two such mini-languages featured < 1476554901 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :um < 1476554905 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :s/not thematic/thematic/ < 1476554906 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :ais523> interesting question: assuming you don't care about bracket matching issues, do all languages with an Underload interpreter also have a quine? <-- not necessarily if you cannot give that interpreter constructed input... < 1476554939 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :oerjan: I noticed that loophole and closed it in a later comment < 1476554950 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric : in which you can modify the Underload interpreter to take fixed input (but that ends up as part of the program), and there aren't encoding issues (including with Underload's hate of mismatched parens) < 1476554967 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :it's enough if you can give underload a fixed input < 1476554981 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :so you just treat the language as underload with different syntax < 1476555041 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :I'll have to look at homespring then < 1476555045 0 :moonythedwarf_!~IceChat9@unaffiliated/moonythedwarf JOIN :#esoteric < 1476555046 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :at least a bit < 1476555093 0 :moony!~IceChat9@unaffiliated/moonythedwarf QUIT :Ping timeout: 244 seconds < 1476555131 0 :izalove!~izabera@unaffiliated/izabera PRIVMSG #esoteric :i invented a super simple way to do zsh's numeric glob in bash < 1476555158 0 :izalove!~izabera@unaffiliated/izabera PRIVMSG #esoteric :but nobody cared in #bash < 1476555161 0 :izalove!~izabera@unaffiliated/izabera PRIVMSG #esoteric :and i'm offended < 1476555171 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :is this CALESYTA a yearly repeating contest? < 1476555203 0 :oerjan!~oerjan@hagbart.nvg.ntnu.no QUIT :Quit: Later < 1476555208 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :izalove: zsh -c 'rest of the command'? < 1476555213 0 :izalove!~izabera@unaffiliated/izabera PRIVMSG #esoteric :no < 1476555235 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :b_jonas: this is the first time it's happened < 1476555240 0 :izalove!~izabera@unaffiliated/izabera PRIVMSG #esoteric :i invented a way to turn a string into a glob < 1476555244 0 :izalove!~izabera@unaffiliated/izabera PRIVMSG #esoteric :@(string) < 1476555244 0 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :Unknown command, try @list < 1476555245 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :the website implies that it may happen again later but isn't certain on the issue < 1476555247 0 :izalove!~izabera@unaffiliated/izabera PRIVMSG #esoteric :or string@() < 1476555251 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :thanks < 1476555257 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :right now they aren't even sure whether there's going to be a prize or not < 1476555263 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :so I guess it depends on how successful the contest is < 1476555273 0 :izalove!~izabera@unaffiliated/izabera PRIVMSG #esoteric :which means you can use this command safely and it won't run it if file doesn't exist cmd @(file) < 1476555278 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :who cares if there's a prize? < 1476555289 0 :izalove!~izabera@unaffiliated/izabera PRIVMSG #esoteric :and this thing can be adapted to numeric globs < 1476555292 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :it's esolang creation, the reward is in doing the thing < 1476555295 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :b_jonas: I don't really mind < 1476555299 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I'd have create the esolang anyway < 1476555303 0 :izalove!~izabera@unaffiliated/izabera PRIVMSG #esoteric :shopt -s nullglob; echo @(file{12..345}) < 1476555306 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :if I wanted a prize, I'd deal with non-eso langs < 1476555307 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :but the contest inspires me to make it better < 1476555308 0 :izalove!~izabera@unaffiliated/izabera PRIVMSG #esoteric :how cool is that < 1476555316 0 :izalove!~izabera@unaffiliated/izabera PRIVMSG #esoteric :guys stop what you're doing < 1476555318 0 :izalove!~izabera@unaffiliated/izabera PRIVMSG #esoteric :this is revolutionary < 1476555321 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :ais523: exactly, the contest and the publicity that comes with it < 1476555325 0 :izalove!~izabera@unaffiliated/izabera PRIVMSG #esoteric :why don't you understand < 1476555338 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :izalove: what? that can't even work < 1476555347 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :really? < 1476555356 0 :izalove!~izabera@unaffiliated/izabera PRIVMSG #esoteric :why can't it work? < 1476555361 0 :izalove!~izabera@unaffiliated/izabera PRIVMSG #esoteric :of course it works < 1476555391 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :izalove: the bracket thing expands to separate arguments, so it blows up ... ah! then the @() makes the argument disappear if there's no such file? < 1476555394 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :brilliant < 1476555402 0 :izalove!~izabera@unaffiliated/izabera PRIVMSG #esoteric :ikr < 1476555429 0 :izalove!~izabera@unaffiliated/izabera PRIVMSG #esoteric :that's about the most clever piece of bash code i've ever written < 1476555432 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :of course, it won't work if you do it with like @(P{1000000..9999999}.JPG) but still useful < 1476555435 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :thanks for teaching that < 1476555454 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :I'll use that for copying a range of original pictures where there are gaps for pictures I deleted on the camera < 1476555458 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :I always wanted something like this < 1476555486 0 :izalove!~izabera@unaffiliated/izabera PRIVMSG #esoteric :\o/ < 1476555500 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric : \o/ pity we don't have that bot still \o/ < 1476555730 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :I'm reading the rules for that contest. It says I have to agree all the material for the esolang can be published on their website, but it doesn't say that the winner will be announced on the website. They can keep the winner in secret, < 1476555745 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :and then multiple people can try to claim that the organizers told them they won. < 1476555760 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :They will probably not do that though. < 1476555790 0 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :they even reserve the right to not declare a winner at all < 1476555809 0 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :(or did, when I read their terms ... a week or two ago) < 1476555815 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :int-e: well sure, that makes sense < 1476555829 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :if they don't receive any good submissions, then they shouldn't declare a winner < 1476555838 0 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :and at this point they can't be sure they'll receive any < 1476556007 0 :Cale!~cale@pool-108-29-88-63.nycmny.fios.verizon.net JOIN :#esoteric < 1476556100 0 :zzo38!~zzo38@24-207-15-88.eastlink.ca PRIVMSG #esoteric :There is the rule in GURPS if your character is the kind of creature with ten mouths, but it doesn't specify in case some are different such as some don't speak or they have different biting damage from each other. < 1476556321 0 :\oren\!~oren@ec2-52-2-213-98.compute-1.amazonaws.com PRIVMSG #esoteric :Bild: Ist Donald Trump ein Sexmonster? < 1476556329 0 :\oren\!~oren@ec2-52-2-213-98.compute-1.amazonaws.com PRIVMSG #esoteric :lololololololol < 1476556528 0 :APic!apic@apic.name PRIVMSG #esoteric :lol < 1476557282 0 :imode!~imode@unaffiliated/imode JOIN :#esoteric < 1476558018 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 JOIN :#esoteric < 1476558122 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :How does this Cale syta contest understand "Originality"? Can you win with a language you've published years ago, if it was original at the time? Can you submit a language someone else has designed years ago? < 1476558137 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :wob_jonas: I don't know; they have an email address, you could ask them < 1476558162 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :wait wait < 1476558170 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :is the other site for the channel logs up now? < 1476558171 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :nice < 1476558180 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :no it's not up < 1476558181 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I suspect they want a new language though, or at least one that wasn't previously public < 1476558184 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :it still only has logs till mid-year < 1476558196 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :glogbot hasn't been here for ages < 1476558215 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :why's it in the topic? < 1476558288 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :inertia, also it's still useful for older logs < 1476558389 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :ok < 1476558432 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :couldn't we just get whoever maintains the tunes logs to link to the codu logs from the list page/ < 1476558448 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :I think it was out of the topic for a while < 1476558458 0 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :not easily, I think the tunes logs have been on autopilot for years if not decades < 1476558473 0 :imode!~imode@unaffiliated/imode QUIT :Ping timeout: 252 seconds < 1476558485 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :hmm < 1476558486 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :I see < 1476558816 0 :augur!~augur@2601:645:8100:c347:4561:6a6:183f:9ec9 JOIN :#esoteric < 1476559691 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :argh, I let too much dirty laundry pile up. this would need three loads, but three absolutely won't fit in the weekend < 1476560130 0 :LKoen!~LKoen@2a01:e35:2eed:a430:1c30:205e:b8dd:5fc1 JOIN :#esoteric < 1476560273 0 :ais523!~ais523@unaffiliated/ais523 QUIT :Remote host closed the connection < 1476560283 0 :ais523!~ais523@unaffiliated/ais523 JOIN :#esoteric < 1476560781 0 :DHeadshot!~DHeadshot@cpc88301-woki8-2-0-cust688.6-2.cable.virginm.net JOIN :#esoteric < 1476560802 0 :moonythedwarf_!?@? NICK :archeology < 1476560902 0 :jeffl35!?@? NICK :physiology < 1476561901 0 :ais523!~ais523@unaffiliated/ais523 QUIT : < 1476561920 0 :archeology!?@? NICK :computing < 1476561992 0 :iovoid!?@? NICK :programming < 1476562026 0 :boily!~alexandre@cable-192.222.252.9.electronicbox.net JOIN :#esoteric < 1476562281 0 :boily!~alexandre@cable-192.222.252.9.electronicbox.net PRIVMSG #esoteric :`wisdom < 1476562283 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :mythology//Mythology is the study of myths, moths and mirths. < 1476562290 0 :boily!~alexandre@cable-192.222.252.9.electronicbox.net PRIVMSG #esoteric :`? moth < 1476562291 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Moths are the main ingredient of mothballs. < 1476562296 0 :boily!~alexandre@cable-192.222.252.9.electronicbox.net PRIVMSG #esoteric :`? mothball < 1476562297 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :mothball? ¯\(°​_o)/¯ < 1476562346 0 :boily!~alexandre@cable-192.222.252.9.electronicbox.net PRIVMSG #esoteric :`learn Mothballs are the main ingredient of a traditional soup of eastern european origin. < 1476562347 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Learned 'mothball': Mothballs are the main ingredient of a traditional soup of eastern european origin. < 1476562396 0 :boily!~alexandre@cable-192.222.252.9.electronicbox.net PRIVMSG #esoteric :`? soup < 1476562397 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :What soup, Doc? < 1476562405 0 :boily!~alexandre@cable-192.222.252.9.electronicbox.net PRIVMSG #esoteric :`? szoup < 1476562406 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :A szoup a szilárd tápszereknek híg alakban való elkészítése a célból, hogy könnyebben emészthetők legyenek; a hígító anyag a viz, mely feloldja s magába veszi a tápanyag legértékesebb részeit. < 1476562410 0 :boily!~alexandre@cable-192.222.252.9.electronicbox.net PRIVMSG #esoteric :ah, messemblait aussi. < 1476562432 0 :moonythedwarf_!~IceChat9@unaffiliated/moonythedwarf JOIN :#esoteric < 1476562440 0 :boily!~alexandre@cable-192.222.252.9.electronicbox.net PRIVMSG #esoteric :mhelloonythellodwarf_ < 1476562492 0 :computing!~IceChat9@unaffiliated/moonythedwarf QUIT :Ping timeout: 260 seconds < 1476562932 0 :moonythedwarf_!?@? NICK :computing < 1476562949 0 :DHeadshot!~DHeadshot@cpc88301-woki8-2-0-cust688.6-2.cable.virginm.net QUIT :Quit: When the chips are down, the buffalo is empty < 1476563287 0 :digin4!~digin4@unaffiliated/digin4 JOIN :#esoteric < 1476563381 0 :digin4!~digin4@unaffiliated/digin4 QUIT :Read error: Connection reset by peer < 1476563532 0 :LKoen!~LKoen@2a01:e35:2eed:a430:1c30:205e:b8dd:5fc1 QUIT :Quit: “It’s only logical. First you learn to talk, then you learn to think. Too bad it’s not the other way round.” < 1476563879 0 :Zarutian!~zarutian@168-110-22-46.fiber.hringdu.is JOIN :#esoteric < 1476564199 0 :Bowserinator!?@? NICK :mathematics < 1476564552 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :ah yes, that other wisdom entry in hungarian < 1476564557 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :I almost forgot about that < 1476564579 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :I think those two are the only one, but I haven't searched < 1476564666 0 :boily!~alexandre@cable-192.222.252.9.electronicbox.net PRIVMSG #esoteric :`` grep -EHIi 'ő|ű' wisdom/* < 1476564674 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :grep: wisdom/¯\_(ツ)_: Is a directory \ grep: wisdom/le: Is a directory \ grep: wisdom/¯\(°_o): Is a directory \ grep: wisdom/¯\(°​_o): Is a directory \ wisdom/b_jonas:b_jonas egy nagyon titokzatos személy. Hollétéről egyelőre nem ismertek. \ wisdom/ent:Ents are very useful creatures for the puzzle of writing town names in Hungary as t < 1476564718 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :boily: nah, those are rare. grep for /á|é|gy|sz|ny|\baz\b/ to find them better < 1476564730 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :case insensitively < 1476564772 0 :boily!~alexandre@cable-192.222.252.9.electronicbox.net PRIVMSG #esoteric :`` find wisdom/ -type f -exec grep -EHIi 'á|é|gy|sz|ny|\baz\b' {} \; < 1476564788 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :and /bb\b/ I guess < 1476564794 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :but that doesn't add too much < 1476564795 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :wisdom/itymology:Itymology is the science of understanding the true meaning of a statement. \ wisdom/french:Le français n'est pas le démon, visitez les Coupeurs. Ne pas couvrir. Meilleur avant! \ wisdom/thé:Thé is an oddly-spelled hot beverage popular in the Commonwealth. \ wisdom/lie bracket:Politicians try to stay within the lie bracket: Not < 1476564807 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :possibly /tt\b/ might be better < 1476564811 0 :boily!~alexandre@cable-192.222.252.9.electronicbox.net PRIVMSG #esoteric :«é» is too French. < 1476564825 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :boily: yeah, you have to hand-check it later < 1476564833 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :or maybe add some anti-french exclusion terms < 1476564836 0 :boily!~alexandre@cable-192.222.252.9.electronicbox.net PRIVMSG #esoteric :`` find wisdom/ -type f -exec grep -EHIi 'á|gy|sz|ny|\baz\b' {} | cut -d':' -f1 \; < 1476564837 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :cut: ;: No such file or directory \ find: missing argument to `-exec' < 1476564843 0 :boily!~alexandre@cable-192.222.252.9.electronicbox.net PRIVMSG #esoteric :aaaaaaaaaaaaargh. < 1476564890 0 :boily!~alexandre@cable-192.222.252.9.electronicbox.net PRIVMSG #esoteric :`` for i in wisdom/*; do grep -EHIi 'á|gy|sz|ny|\baz\b' $i | cut -d':' -f1; done < 1476564920 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :um < 1476564920 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :grep: `?: No such file or directory \ grep: wisdom/: Is a directory \ grep: wisdom/¯\_(ツ)_: Is a directory \ grep: wisdom/le: Is a directory \ grep: wisdom/¯\_(ツ)_: Is a directory \ grep: wisdom/le: Is a directory \ grep: wisdom/¯\(°_o): Is a directory \ grep: wisdom/¯\(°​_o): Is a directory \ grep: wisdom/6: No such file or directory \ < 1476564926 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :why not just grep -l instead of cut/ < 1476564933 0 :boily!~alexandre@cable-192.222.252.9.electronicbox.net PRIVMSG #esoteric :<_<... >_>... < 1476564942 0 :boily!~alexandre@cable-192.222.252.9.electronicbox.net PRIVMSG #esoteric :because I forgot about that option. < 1476564990 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :boily: I added a short --help text to my grep clone that lists only the more useful options, I can use that as a reference; though some useful options like -x and -w are missing from that clone entirely < 1476565063 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :look at http://math.bme.hu/~ambrus/pu/cgrep and grep -A 20 HELP_MESSAGE in it < 1476565175 0 :Sgeo!~Sgeo@ool-18e4354b.dyn.optonline.net QUIT :Quit: Leaving < 1476565195 0 :Sgeo!~Sgeo@ool-18e4354b.dyn.optonline.net JOIN :#esoteric < 1476565248 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :or maybe grep -A 20 HELP_MESSAGE\ = in it so you don't get the code around where it's used, only the definition < 1476565896 0 :pikhq!~pikhq@174-24-59-151.clsp.qwest.net QUIT :Ping timeout: 265 seconds < 1476566007 0 :pikhq!~pikhq@174-24-6-38.clsp.qwest.net JOIN :#esoteric < 1476566181 0 :augur_!~augur@2601:645:8100:c347:404:4128:a5da:38c9 JOIN :#esoteric < 1476566403 0 :augur!~augur@2601:645:8100:c347:4561:6a6:183f:9ec9 QUIT :Ping timeout: 245 seconds < 1476566471 0 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :boily: coily < 1476567103 0 :lynn!sid154965@gateway/web/irccloud.com/x-itkljhartfvhctoi PRIVMSG #esoteric :ACTION waves < 1476567153 0 :lynn!sid154965@gateway/web/irccloud.com/x-itkljhartfvhctoi PRIVMSG #esoteric :How's this channel been? I keep forgetting to check here ·◡·; < 1476567165 0 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :noisy < 1476567224 0 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :(though I don't have much right to complain, I'm not talking much about esoteric stuff either) < 1476567227 0 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :hellynn < 1476567391 0 :lynn!sid154965@gateway/web/irccloud.com/x-itkljhartfvhctoi PRIVMSG #esoteric :hellopia! < 1476567429 0 :lynn!sid154965@gateway/web/irccloud.com/x-itkljhartfvhctoi PRIVMSG #esoteric :ACTION . o O («coi ly.» could be directed at me, too) < 1476567455 0 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :yeah. i suppose. if you put the space there. < 1476567466 0 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :but i wouldn't have thought to truncate lynn to ly < 1476567477 0 :boily!~alexandre@cable-192.222.252.9.electronicbox.net PRIVMSG #esoteric :quinthellopia! < 1476567484 0 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :hows things? < 1476567492 0 :boily!~alexandre@cable-192.222.252.9.electronicbox.net PRIVMSG #esoteric :ACTION woggles at lynn. «hellynn!» < 1476567510 0 :boily!~alexandre@cable-192.222.252.9.electronicbox.net PRIVMSG #esoteric :I'm invaded by weird people from Québec City. < 1476567511 0 :lynn!sid154965@gateway/web/irccloud.com/x-itkljhartfvhctoi PRIVMSG #esoteric :It's a Lojban joke (I guess since I last talked in here I became the kind of person who makes Lojban jokes) < 1476567563 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :lynn: nah, that wouldn't work, that would look like you're trying to greet boily, not you < 1476567598 0 :lynn!sid154965@gateway/web/irccloud.com/x-itkljhartfvhctoi PRIVMSG #esoteric :Well that's precisely the other ½ of this joke! < 1476567599 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :I mean, yeah, if you think more about it ly. would tell it refers to you, but at the surface level < 1476567620 0 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :lynn: it was a original a porthello of Lojban "coi" and "boily" < 1476567632 0 :lynn!sid154965@gateway/web/irccloud.com/x-itkljhartfvhctoi PRIVMSG #esoteric :"porthello" omg < 1476567652 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :yeah... that's a strange word, I didn't understand it at first < 1476567662 0 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :. o O ( lynn should give their thoughts a bit more breathing space ) < 1476567711 0 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :portmondieu < 1476567729 0 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :boily: so did beer come out unscathed? < 1476567737 0 :lynn!sid154965@gateway/web/irccloud.com/x-itkljhartfvhctoi PRIVMSG #esoteric :ACTION . o O I('m bad at thought)s < 1476567786 0 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :lynn: they must be seeping out of your ears by now... < 1476567836 0 :imode!~imode@unaffiliated/imode JOIN :#esoteric < 1476567840 0 :lynn!sid154965@gateway/web/irccloud.com/x-itkljhartfvhctoi PRIVMSG #esoteric :ACTION . o O ( ) I was gonna say something but it escaped my mind < 1476567841 0 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :himode < 1476568174 0 :boily!~alexandre@cable-192.222.252.9.electronicbox.net PRIVMSG #esoteric :quintopia: there was a sudden schedule shift. I was supposed to wednesday the beer, going to grab them now. < 1476568180 0 :boily!~alexandre@cable-192.222.252.9.electronicbox.net QUIT :Quit: SAVORY CHICKEN < 1476568527 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :lynn: well ok, if it's a deliberate joke so obscure that most people will miss it, then I guess it'd be appropriate on #esoteric < 1476568565 0 :computing!~IceChat9@unaffiliated/moonythedwarf QUIT :Ping timeout: 250 seconds < 1476568604 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :though of course the problem is that you don't get to choose how other people greet you, they do < 1476568642 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :few people greet me as wob_jó naspot for example < 1476568648 0 :computing!~IceChat9@unaffiliated/moonythedwarf JOIN :#esoteric < 1476568676 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :admittedly b_hellonas is shorter < 1476568702 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :um < 1476568708 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 PRIVMSG #esoteric :wob_hellonas to compare it fairly < 1476568980 0 :pikhq!~pikhq@174-24-6-38.clsp.qwest.net QUIT :Ping timeout: 250 seconds < 1476569067 0 :pikhq!~pikhq@174-24-27-125.clsp.qwest.net JOIN :#esoteric < 1476569262 0 :MDead!~MDude@pa-67-234-97-58.dhcp.embarqhsd.net JOIN :#esoteric < 1476569431 0 :MDead!~MDude@pa-67-234-97-58.dhcp.embarqhsd.net QUIT :Client Quit < 1476569434 0 :impomatic_!~digital_w@host81-136-85-154.range81-136.btcentralplus.com JOIN :#esoteric < 1476570128 0 :LKoen!~LKoen@2a01:e35:2eed:a430:bd5d:56d6:c43a:79ca JOIN :#esoteric < 1476570141 0 :wob_jonas!59858794@gateway/web/cgi-irc/kiwiirc.com/ip.89.133.135.148 QUIT :Quit: http://www.kiwiirc.com/ - A hand crafted IRC client < 1476570668 0 :DHeadshot!~DHeadshot@cpc88301-woki8-2-0-cust688.6-2.cable.virginm.net JOIN :#esoteric < 1476570748 0 :computing!~IceChat9@unaffiliated/moonythedwarf QUIT :Ping timeout: 260 seconds < 1476571967 0 :AnotherTest!~turingcom@d51A4BF3B.access.telenet.be QUIT :Quit: ZNC - http://znc.in < 1476574754 0 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07List of ideas14]]4 10 02https://esolangs.org/w/index.php?diff=49994&oldid=49101 5* 03Challenger5 5* (+126) 10 < 1476574893 0 :physiology!jeffl@unaffiliated/jeffl35 QUIT :Changing host < 1476574893 0 :physiology!jeffl@unaffiliated/jeffl35/bot/jeffbot JOIN :#esoteric < 1476574918 0 :otterbot!~yaybot@unaffiliated/jeffl35/bot/jeffbot QUIT :Quit: Restart requested by programming: "SECRET" < 1476574935 0 :otherbot!~yaybot@35.45.148.146.bc.googleusercontent.com JOIN :#esoteric < 1476574955 0 :physiology!jeffl@unaffiliated/jeffl35/bot/jeffbot QUIT :Changing host < 1476574955 0 :physiology!jeffl@unaffiliated/jeffl35 JOIN :#esoteric < 1476574958 0 :otherbot!?@? NICK :Guest48379 < 1476575030 0 :Guest48379!~yaybot@35.45.148.146.bc.googleusercontent.com QUIT :Remote host closed the connection < 1476575046 0 :otherbot_!~yaybot@35.45.148.146.bc.googleusercontent.com JOIN :#esoteric < 1476575161 0 :physiology!jeffl@unaffiliated/jeffl35 QUIT :Changing host < 1476575161 0 :physiology!jeffl@unaffiliated/jeffl35/bot/jeffbot JOIN :#esoteric < 1476575204 0 :physiology!jeffl@unaffiliated/jeffl35/bot/jeffbot QUIT :Changing host < 1476575204 0 :physiology!jeffl@unaffiliated/jeffl35 JOIN :#esoteric < 1476575214 0 :otherbot_!~yaybot@35.45.148.146.bc.googleusercontent.com QUIT :Client Quit < 1476575233 0 :otherbot_!~yaybot@unaffiliated/jeffl35/bot/jeffbot JOIN :#esoteric < 1476575262 0 :otherbot_!?@? NICK :otherbot < 1476575415 0 :LKoen!~LKoen@2a01:e35:2eed:a430:bd5d:56d6:c43a:79ca QUIT :Quit: “It’s only logical. First you learn to talk, then you learn to think. Too bad it’s not the other way round.” < 1476575857 0 :\oren\!~oren@ec2-52-2-213-98.compute-1.amazonaws.com PRIVMSG #esoteric :ARGH < 1476575882 0 :\oren\!~oren@ec2-52-2-213-98.compute-1.amazonaws.com PRIVMSG #esoteric :no matter how many times i kill ants, or how I kill them, they come back < 1476575938 0 :\oren\!~oren@ec2-52-2-213-98.compute-1.amazonaws.com PRIVMSG #esoteric :I've tried squishing them, drowning them, boiling them, burning them, disolving them, and poisoning them < 1476575987 0 :\oren\!~oren@ec2-52-2-213-98.compute-1.amazonaws.com PRIVMSG #esoteric :I thought the ants' hive mind would figure out that if they come here they die