00:07:43 lovely 00:10:41 -!- Nisstyre has changed nick to nisstyre. 00:24:48 > 9999 / 365 00:24:48 27.394520547945206 00:26:32 -!- augur has quit (Remote host closed the connection). 00:30:48 -!- augur has joined. 00:31:43 -!- Phantom_Hoover has quit (Read error: Connection reset by peer). 00:34:02 -!- cswords__ has quit (Ping timeout: 265 seconds). 00:35:16 > 714 / 17 00:35:17 42.0 00:36:21 how to extract a root? 00:36:32 > sqrt (42.0) 00:36:33 6.48074069840786 00:36:37 thx 00:36:46 actually parentheses not needed 00:37:04 -!- cswords has joined. 00:37:07 > sin (90) 00:37:07 0.8939966636005579 00:37:10 > 42.0 ** (1/3) -- other roots 00:37:11 3.4760266448864496 00:37:30 -!- derdon has joined. 00:37:33 -!- derdon has quit (Remote host closed the connection). 00:37:38 -!- derdon has joined. 00:39:26 And how do I get all the N roots? 00:39:33 you told me once oerjan, but i forgot: how to calculate a function for a number of values like x² for -10..10 with step 2 00:40:15 > [x^2 | x <- [-10, -8 .. 10]] 00:40:16 [100,64,36,16,4,0,4,16,36,64,100] 00:40:27 ah yes *noted 00:40:40 > [42.0 ** (1/n) | n <- [1..]] -- for fizzie 00:40:41 [42.0,6.48074069840786,3.4760266448864496,2.5457298950218306,2.111785764966... 00:41:02 or wait, did you mean all the complex roots? 00:41:05 oerjan: No, I mean, all three cube roots of 42, for examle. 00:41:07 Yes. 00:41:12 well... 00:42:15 Okay, they're equally spaced around the thing, I suppose. 00:42:21 :t sic 00:42:22 Not in scope: `sic' 00:42:27 > (^2) <$> [-10, -8 .. 10] -- not related 00:42:28 [100,64,36,16,4,0,4,16,36,64,100] 00:42:29 hm what was that 00:42:40 @hoogle a -> Complex a 00:42:41 Data.Complex (:+) :: a -> a -> Complex a 00:42:41 Data.Complex cis :: RealFloat a => a -> Complex a 00:42:41 Prelude id :: a -> a 00:42:45 ah cis 00:43:21 > [42.0 ** (1/3) * cis (n * pi / 3) | n <- [0, 2, 4]] 00:43:22 [3.4760266448864496 :+ 0.0,(-1.7380133224432242) :+ 3.010327378703255,(-1.7... 00:43:51 OKAY, like you often say. 00:44:23 @source Data.Complex 00:44:24 http://darcs.haskell.org/packages/base/Data/Complex.hs 00:45:22 oh hm 00:45:43 > [makePolar (42.0 ** (1/3)) (n * pi / 3) | n <- [0, 2, 4]] 00:45:44 Not in scope: `makePolar' 00:45:54 > [mkPolar (42.0 ** (1/3)) (n * pi / 3) | n <- [0, 2, 4]] 00:45:55 [3.4760266448864496 :+ 0.0,(-1.7380133224432242) :+ 3.010327378703255,(-1.7... 00:46:09 Tell me idea/complaint about this please? http://sprunge.us/QdMI 00:47:07 > [a*b | a <- [1 .. 10], b <- [2, 4 .. 10]] 00:47:08 [2,4,6,8,10,4,8,12,16,20,6,12,18,24,30,8,16,24,32,40,10,20,30,40,50,12,24,3... 00:47:40 octave:3> roots([1, 0, 0, -42]) 00:47:40 ans = 00:47:41 -1.7380 + 3.0103i 00:47:41 -1.7380 - 3.0103i 00:47:41 3.4760 + 0.0000i 00:47:54 It's perhaps not the most pleasant interface either. 00:48:12 Takes coefficients of a polly nomial. 00:48:43 well haskell doesn't have _that_ in base, i think 00:50:26 > [ a | a <- [1, 2, 4, 7, 11..29]] 00:50:27 : parse error on input `..' 00:50:27 You can say roots(poly(X)) in Octave if you want to solve eigenvalues of X really badly. (poly(X) returns the characteristic polynomial.) 00:50:35 > [ a | a <- [1, 2, 4, 7, 11 .. 29]] 00:50:36 : parse error on input `..' 00:50:58 hagb4rd: sorry, only one comma 00:51:21 k.. 00:51:48 > [a | a <- [1, 2, 4] ++ [7, 11 .. 29]] 00:51:50 [1,2,4,7,11,15,19,23,27] 00:52:10 > scanl (+) 1 [2..] 00:52:11 [1,3,6,10,15,21,28,36,45,55,66,78,91,105,120,136,153,171,190,210,231,253,27... 00:52:14 oops 00:52:19 > scanl (+) 1 [1..] 00:52:20 [1,2,4,7,11,16,22,29,37,46,56,67,79,92,106,121,137,154,172,191,211,232,254,... 00:53:10 wow 00:53:17 > takeWhile (<= 29) $ scanl (+) 1 [1..] 00:53:18 [1,2,4,7,11,16,22,29] 00:53:29 what does scanl mean at all? 00:53:45 > scanl f x [1,2,3] :: [Expr] 00:53:46 [x,f x 1,f (f x 1) 2,f (f (f x 1) 2) 3] 00:54:27 @src scanl 00:54:27 scanl f q ls = q : case ls of 00:54:27 [] -> [] 00:54:27 x:xs -> scanl f (f q x) xs 00:54:54 it's like foldl except it also gives intermediate results 00:56:00 > take 5 $ iterate f x 00:56:01 [x,f x,f (f x),f (f (f x)),f (f (f (f x)))] 00:56:16 -!- cheater has quit (Ping timeout: 252 seconds). 00:56:22 It's also a bit like that except it also has that list to go along. 00:58:45 > foldl (+) 1 [1..] 00:58:47 Terminated 00:58:54 I intend to try to add other stuff to extensible-data package, such as TADS2-style inheritance and CLC-INTERCAL-style object orientation. 00:59:19 I am not yet quite sure how 01:01:13 hagb4rd: also, scanl often works on infinite lists, but foldl never does 01:02:20 i see 01:02:33 > foldl (+) 1 [1..27] 01:02:34 379 01:02:44 qed 01:02:51 got it 01:03:11 also there are scanl1 and foldl1 if you don't want that special first element 01:03:16 > fst <$> iterate (uncurry ((`ap` (1 +)) . ((,) .) . (+))) 1 01:03:17 [1,2,4,7,11,16,22,29,37,46,56,67,79,92,106,121,137,154,172,191,211,232,254,... 01:03:19 (Can you tell I used @pl there to make it more readable?) 01:03:26 CLEARLY 01:04:11 It was \(n,i) -> (n+i,i+1) back when it was still unreadably pointy. 01:04:14 > scanl (+) 1 $ enumFrom 1 01:04:15 [1,2,4,7,11,16,22,29,37,46,56,67,79,92,106,121,137,154,172,191,211,232,254,... 01:05:53 As well as rulebooks as in Inform 7 01:06:52 is this a bit like multifile predicates in prolog? 01:08:47 oerjan: Someone has said it resembles that 01:09:01 But I don't really know 01:09:08 there is supposedly the #haskell-in-depth channel for deeper haskell discussions, although i think elliott said it was nearly dead 01:10:00 O, well, that is why I often use this channel; the people in #haskell channel tend to hate it. But I do write on #haskell channel too 01:10:09 in fact, you might ask elliott if he knows a better place to discuss this kind of stuff 01:11:03 from stackoverflow and the latest haskell weekly news, it looks to me like he is more into haskell now than before he left here 01:11:50 zzo38: yes, but i have noticed you rarely get any answers here either 01:12:24 oerjan: Yes I know. But usually they are closer to the kind of answers I am looking for, when there are answers. 01:17:52 Would you even know how Prolog's multifile predicates would be implemented in Haskell? 01:18:02 nope 01:18:28 Did you look at the code I posted and if it seems to help at all? 01:20:01 i took a glimpse and decided it was over my head, alas 01:45:08 -!- augur has quit (Remote host closed the connection). 01:45:55 -!- augur has joined. 01:51:14 -!- cheater has joined. 01:56:38 yes elliott..did he show up once in the past decade? 01:57:13 -!- cheater has quit (Ping timeout: 260 seconds). 01:57:59 he was here last yesterday or the day before, but he only comes here now because he's trying to take over the esolang wiki 01:58:20 -!- nisstyre has changed nick to Nisstyre. 01:58:21 he is on freenode, though 01:58:34 -!- derdon has quit (Remote host closed the connection). 02:00:07 i don't understand. you mean he's on freenode not joining this channel? y? 02:00:12 yes. 02:00:27 in fact i have a private window open with him 02:00:33 *Someone* should take over the esolang wiki; there are still things to change in the software and server configuration. (But it doesn't necessarily have to be elliott; it could be Gregor.) 02:00:48 he said something about #esoteric not being interesting any more :( 02:01:02 aw no.. this is sad 02:01:22 tell him we need him here 02:02:12 Arguably it should be somebody who's actually on the channel X_X 02:02:20 But then, I don't want to do it and codu doesn't really have the room anyway. 02:02:52 Gregor: Yes I suppose so; I did suggest it to be you 02:03:53 Instead I'll just be bitter about not having ops in spite of being one of the longest-standing members of the #esoteric community ;) 02:04:32 i want elliott back :/ 02:05:07 hagb4rd: Then you call them and ask them 02:05:45 ask whom? 02:06:19 hasb4rd: Ask elliott 02:06:47 he won't listen to me 02:07:10 i'm a piece of chickenshit 02:08:15 something bad must have happened,.. i know that 02:08:40 No, I think we can conclude with impunity that he's just being a dick. 02:10:15 Gregor: hey you are next on _my_ list of people to op. i'm just not sure if we need more ops right now. 02:10:45 and we ops would have to discuss it i should assume 02:10:50 I think we don't need more ops right now. 02:11:18 i didn't even notice we had some 02:11:34 feeling glad there is no need for 02:12:20 terrifying 02:20:41 I looked up some things in GNU Prolog manual. They have dynamic procedures, public procedures, multifile procedures, discontiguous procedures, and operator tables. 02:21:18 Are there non-oerjan ops? 02:21:24 pikhq: yes. 02:21:31 That have talked this decade? 02:21:37 My extensible-data for Haskell allows fields of a record, choices of a union, and items of a list, to be specified in multiple modules. 02:21:40 yes. today, even. 02:22:01 is it a secret? 02:22:19 fizzie: is your opitude a secret? 02:22:40 hagb4rd: Try CS ACCESS #esoteric LIST 02:22:45 Oh, right, fizzie. 02:22:48 Not that I know of, no. 02:22:57 good, good. 02:23:19 i'd ask ais523 if i can reveal that he's an op, but he's not here. 02:23:27 hehe 02:23:39 The network reveals it to everyone anyhow. 02:24:28 and lament was here today for about 10 secs or so. but spiritually he counts in the haven't-talked-in-a-decade list. 02:25:42 oerjan: The CS ACCESS #esoteric LIST tells you that ais523 is on the access list. 02:25:52 also, elliott says no. 02:26:04 zzo38: i was joking. 02:27:37 successfully 02:27:57 by all means 02:28:44 And I would like to be able to use some of the dynamic clause management stuff from Prolog in Haskell, if I could know how to implement such things. 02:31:42 Do you know if there are packages to implement some Prolog stuff in Haskell and which ones? 02:35:12 zzo38: http://lambda-the-ultimate.org/node/112 <-- check this entry 02:37:14 also that one: http://darcs.haskell.org/nofib/real/prolog/Examples 02:37:29 hagb4rd: OK. They say macros would help; I wrote Hampp would that help? 02:38:48 The document that first one links is unreadable 02:39:02 try the other link 02:39:07 OK 02:39:50 What is Haskell B.? 02:40:09 good question 02:41:06 no this won't help 02:41:11 And anyways those aren't what I was looking for; what I was looking for, is ways to implement some of the features of Prolog and other programming languages so that they can be used in Haskell. 02:41:20 yea, got it 02:41:40 (I finally found the package which I can use to implement Icoruma's wildcard includes in a Haskell preprocessor.) 02:41:46 but can't find any packaged suiting this issue 02:42:41 (And then I could implement wildcard imports as well.) 03:07:08 Another thing I would like to have in Haskell is "shadow dictionaries" and I don't know if any other programming language has anything like that. 03:18:03 -!- PiRSquared17 has joined. 03:18:04 http://www.youtube.com/watch?v=v-Voo1UJzdc 03:18:16 w00t, spambot with "multhy threading" support 03:21:48 Better than mulchy threading. 03:23:48 yeah, that'd be messy 03:26:58 -!- azaq23 has quit (Quit: Leaving.). 04:02:40 Can it treat choice-points as first-class values? 04:04:56 sounds continuation-like 04:07:05 I suppose so. But whether there is any way in whichever programming languages, that can implement something like this: http://esolangs.org/wiki/CLCLC-INTERCAL#Backtracking 04:08:27 guess zzo38 won't stop throwing curveballs tonight ;) 04:09:03 hagb4rd: I don't have any normal balls! 04:09:19 i hope you're wrong :p 04:09:48 OK 04:09:50 * oerjan swats hagb4rd -----### 04:09:58 ouch 04:11:05 But I do want to be able to implement things from other programming languages to be usable in Haskell; including things from Prolog, TADS, Inform 7, and INTERCAL. 04:11:43 Which might be strange to some people. 04:15:46 -!- augur has quit (Remote host closed the connection). 04:16:04 exotic erisian esoteric! 04:16:29 hagb4rd: What does that mean? 04:16:58 tried to find a climax describing your approach ;p 04:17:59 O, that is what it means. 04:18:01 you mean erisian? its derived from eris, the greek goddess of chaos and disorder 04:18:02 OK 04:18:45 Yes I know what Eris is, and about Greek goddess; I read about it in Wikipedia 04:23:21 Derive a language from Eros instead 04:24:47 Jafet: Then *you* do that. I don't want to 04:45:06 -!- madbr has joined. 05:04:02 -!- elliott has joined. 05:04:07 pls load http://95.149.228.149:8181/w/index.php thx 05:05:14 no load 05:06:07 ok what error 05:06:22 "Dette webområdet kan ikke vises i Internet Explorer" 05:06:23 -!- PiRSquared17 has changed nick to PiRSquared|Sleep. 05:06:27 what does it show in the URL bar? 05:06:28 * oerjan whistles innocently 05:06:36 http://95.149.228.149:8181/w/index.php 05:06:52 hmmmmmmmmmm 05:07:22 ok, it's mediawiki doing that 05:07:45 oh i tried with lynx from nvg 05:07:45 oerjan: try now 05:08:32 IT'S ALIVE 05:08:39 though horribly formatted 05:08:47 howso? 05:08:53 only the "Esolang" looks weird here 05:09:15 looks like Esolana yeah 05:09:24 since the g's descender is cut off 05:09:28 that's our new site name. 05:09:31 deal with it :P 05:09:54 oerjan: are there any other formatting glitches? 05:09:57 hm actually it's not _that_ bad, just missing a couple pictures and that bottom g 05:10:27 right. the pictures can be repaired, as can the styles of the main page 05:10:46 Esolanɑ 05:10:57 so IPA 05:11:02 haha 05:11:12 hm and several tabs are placed differently 05:11:44 yeah different style in general 05:11:50 oerjan: yes, it's the new Vector skin, as used on Wikipedia 05:11:57 it's the default for any MediaWiki from the last few years 05:12:32 Ditching the old one or just reskinning it? 05:13:16 madbr: the old what? to provide context, Graue has abandoned the wiki (no time to admin it) and it's become overrun with spam so I'm working on getting the database dump from its ancient version of mediawiki to import into something made in the last 5 years :P 05:13:38 aha :D 05:13:47 yeah i see 05:13:47 which involved a manually patched version of the SQL dump over an /existing/ database structure with some tables emptied 05:13:52 so now I'm trying to see if it actually worked :P 05:14:38 hmm 05:14:53 http://95.149.228.149:8181/w/index.php?title=Fatmouse looking good 05:15:51 hahaha, the login process is really broken since I don't have the user table 05:15:55 i can log in as me, but it expires the next time i click any link 05:16:03 and I think nobody else can log in 05:16:06 so why is the esolang wiki image some limes? 05:16:20 because it is 05:16:23 why not? 05:16:26 it's a stock image 05:16:32 with questionable licensing 05:16:34 aww 05:16:41 i'm disappointed it's not someone's personal limes 05:16:48 oh, it's *someone's* personal limes 05:16:52 it's from one of those like stock photo farm sites 05:16:57 -!- augur has joined. 05:16:58 which just contain a huge dump of images people upload under questionable licenses 05:17:07 I suspect Graue got it from wikimedia commons 05:17:13 where it was present but deleted for bad licensing 05:17:46 anyway, I think this means I can massage a complete database dump from Graue into full working order 05:17:52 Guess it could use a new different logo pic 05:18:08 I like the limes :( 05:18:23 although they'll need re-creating from the source image if we're using Vector 05:18:28 since they have horrible white pixel fringing 05:19:03 just google image searched it 05:19:05 so 05:19:07 many 05:19:08 stock 05:19:09 photos 05:19:38 http://us.123rf.com/400wm/400/400/babah/babah1004/babah100400002/6700020-cut-lime-and-branch-of-mit.jpg 05:19:41 this one's THREE DEE 05:20:57 this is the future, we need it at least 4d 05:21:36 it seems like all the pages are in working order 05:21:36 -!- oerjan has quit (Quit: Lost terminal). 05:23:07 see, i was just going to ask oerjan to try and log in to see what's up with the user table, too. 05:29:39 i like the limes 05:31:26 ok, so does anyone see any problems beyond what's reported with that installation? 05:31:44 if it's good, I'll tear it down and install another one for configuration testing 05:57:08 elliott! :D good to see you 05:57:32 i've heard you want to leave us 05:58:01 i dare you! do not! 05:58:14 i'm only here to bother people to try and test this wiki installation! 05:58:36 I hope you feel bothered. 05:58:50 hehe.. kind of ;) 05:59:16 damn you mlp, taking over the internets :/ 05:59:42 hi 05:59:58 elliott: oh hey, do the db import 06:00:12 monqy: thanks monqy. 06:00:16 thonqy. 06:00:41 monqy: try and log in to http://95.149.228.149:8181/w/index.php?title=Main_Page please 06:01:04 Fsolana 06:01:14 note to self because i'll probably lose logs somehow: http://sprunge.us/URjN 06:01:57 Login error 06:01:58 There is no user by the name "Monqy". Usernames are case sensitive. Check your spelling, or create a new account. 06:02:07 there's no "monqy" either (I tried that first) 06:02:20 good 06:02:25 plan "ostracise monqy": check 06:02:44 not like I ever made any edits oh wait yes i did 06:02:58 i put "hello" on my userpage and reverted a few spam edits 06:03:01 "a good citizen" 06:03:19 you'll just have to revert..... 06:03:21 your loneliness 06:03:29 F: 06:03:30 D: 06:03:42 sigh its 6 am and cold and i stayed up wrangling with a fucking sql file i hate life 06:03:43 spoken poetry :) 06:04:04 -!- quintopia has quit (Read error: Operation timed out). 06:06:58 DROP TABLE elliott 06:07:19 i'm about to drop some tables, it's true 06:07:33 they might even get flipped first 06:08:49 nops,can't log in I think 06:09:02 though I probably forgot the password anyways 06:09:04 yeah that's expected, i just needed to check that the weird pseudologin was just for my account 06:09:59 joker 06:11:12 i was being serious though 06:12:16 aw however.. is it a newer version of mediawiki? or why not make it an 1:1 copy? 06:13:04 you are cleaning it up, are you? 06:13:29 it's a newer version, yes; the idea is to make sure everything works before asking graue for the keys 06:13:38 (in this analogy the keys are the full database dump) 06:14:18 but i guess the db structure is at least the same 06:14:37 well, it's "sort of" the same 06:14:46 k 06:14:50 i see 06:15:04 I had to start with a normal install of MW, clear some of the tables to free them up for replacement entries, drop another so it could recreate it with a years-old structure (as it expected that format to insert with) 06:15:15 then run a patched copy (to remove table prefixes and DROP TABLE statements) of the SQL file 06:15:23 then run the MediaWiki update script which churned for like four minutes 06:15:30 and it still only mostly works :P 06:15:43 great :) 06:17:27 everything seems to work fine, at first sight 06:17:49 haven't tried to edit stuff at all 06:18:07 edits ... might work 06:18:16 you should try, I'm scared to :P 06:20:02 everything OK 06:20:29 yay 06:21:07 -!- Sgeo has changed nick to InvisiblePinkUni. 06:21:11 -!- InvisiblePinkUni has changed nick to Sgeo. 06:21:27 hi 06:22:24 the only thing i see is a tiny stylesheet error cutting of the bottom of the header title ('Esolang') on the main page :> 06:23:22 no no no. it's Fsolana now! 06:23:35 you're in #fsoteric 06:25:20 fsoterir 06:26:00 lol 06:28:04 -!- quintopia has joined. 06:34:44 anyway, I'll continue this crap tomorrow 06:34:45 -!- elliott has left ("Leaving"). 06:42:20 -!- Sgeo has changed nick to AhuraMazda. 06:46:26 -!- AhuraMazda has changed nick to Sgeo. 06:47:55 -!- Frooxius has quit (Ping timeout: 245 seconds). 06:52:10 -!- augur has quit (Remote host closed the connection). 06:52:50 -!- MoALTz has quit (Ping timeout: 248 seconds). 06:53:49 -!- augur has joined. 06:53:52 I cannot connect to the new wiki 06:55:15 Do you know what is wrong with this? 06:58:31 Will they add both the MediaWiki extension and my own extension? 06:58:56 And the suggested extension? 06:59:18 What is a extension? Embedding TeX code? 06:59:24 22:53:11 < zzo38> I cannot connect to the new wiki 06:59:25 22:54:33 < zzo38> Do you know what is wrong with this? 06:59:30 it likely went down with elliott 06:59:45 OK 07:01:28 -!- MoALTz has joined. 07:06:10 tex is text format..like the famous latex jafet 07:06:56 Where is the new wiki? 07:07:01 jafet: http://en.wikipedia.org/wiki/TeX 07:07:11 sgeo: its down 07:07:35 Ah, ok 07:10:00 Jafet: Yes, embedding TeX code. I have written a format file and a PHP file; the format file can probably be used as is but the PHP needs to be adjusted to work on MediaWiki and to do caching (caching is highly recommended) 07:10:24 Yes, so it doesn't seem trivial to embed TeX code in a HTML page 07:11:05 I have written the file http://zzo38computer.cjb.net/texify/ See that for more information 07:11:48 The famous latex jafet? As opposed to the normal one? 07:12:09 Mmmm, latex 07:12:26 zzo: I see. You just print an image and embed the image 07:13:54 Jafet: Yes; on such a wiki you should cache the result with a filename having a hashcode of the input. 07:14:13 So it's the extension of to arbitrary TeX 07:14:25 Jafet: Mostly, yes. 07:14:34 That's nice (as in, I'm not sure of a good use for it) 07:14:57 There are a few commands disabled, however (see near the end of the format file for a list of them) 07:15:06 Procedural diagrams, I suppose 07:15:15 If you can generate those with mediawiki templates or something 07:16:08 Oh, and if someone thinks TeX is awful, make him write mediawiki templates 07:21:20 I have: class ExtTree v p c | c -> p, p -> v; But how do I make it so that it requires that the "p" in one instance must always be the "c" of another instance, but with the same "v" as this instance? 07:31:59 -!- madbr has quit (Quit: Radiateur). 07:37:31 The POKEMON BREEDER card is no good except in first generation only, because otherwise you cannot necessarily know which stage 2 card corresponds with which basic card 07:39:05 (Each pokemon is assigned a number; and that means that in first generation only, you can tell which stage 2 card corresponds with which basic card by the numbers. Without the numbers, it is impossible to know which card to play.) 07:39:57 Do you agree?????????? 07:42:12 -!- Frooxius has joined. 07:42:36 a b ab bab abbab bababbab abbabbababbab bababbababbabbababbab 07:56:50 -!- mtve has quit (Ping timeout: 240 seconds). 07:57:21 -!- SimonRC has quit (Ping timeout: 244 seconds). 08:00:27 -!- SimonRC has joined. 08:01:13 -!- Frooxius has quit (Ping timeout: 260 seconds). 08:01:43 -!- aloril_ has quit (*.net *.split). 08:02:27 -!- aloril_ has joined. 08:12:31 -!- cswords_ has joined. 08:12:54 -!- Frooxius has joined. 08:15:51 -!- cswords has quit (Ping timeout: 240 seconds). 08:37:39 -!- SimonRC has quit (Ping timeout: 244 seconds). 08:40:31 -!- Slereah has quit (Ping timeout: 276 seconds). 08:41:31 -!- Zuu has quit (Write error: Broken pipe). 08:41:56 -!- Taneb has joined. 08:42:00 Hello! 08:42:21 -!- Zuu has joined. 08:43:06 -!- SimonRC has joined. 08:47:49 -!- SimonRC has quit (Ping timeout: 240 seconds). 08:50:08 -!- SimonRC has joined. 09:10:32 -!- Frooxius has quit (Read error: Connection reset by peer). 09:12:30 -!- Frooxius has joined. 09:18:38 -!- Frooxius has quit (Read error: Connection reset by peer). 09:21:15 -!- Frooxius has joined. 09:27:12 -!- Frooxius has quit (Read error: Connection reset by peer). 09:27:45 -!- Frooxius has joined. 09:42:05 > 216 / 132 09:42:06 1.6363636363636365 09:42:13 > 132/216 09:42:13 0.6111111111111112 09:43:20 -!- Frooxius has quit (Ping timeout: 245 seconds). 09:47:13 -!- Taneb has quit (Ping timeout: 245 seconds). 09:47:27 -!- Frooxius has joined. 09:53:43 -!- zzo38 has quit (Remote host closed the connection). 09:57:35 * pikhq WTFs 09:57:54 Driving home, someone was driving the wrong way. 09:58:03 I know that the visibility was all of 10 feet, but jesus man. 09:58:28 How you manage to be on the wrong side of a 4 lane divided highway is beyond me. 09:59:03 -!- Frooxius_ has joined. 09:59:37 -!- Frooxius has quit (Ping timeout: 260 seconds). 09:59:46 -!- Frooxius_ has changed nick to Frooxius. 10:01:04 -!- Taneb has joined. 10:06:53 -!- mtve has joined. 10:10:21 -!- Frooxius has quit (Ping timeout: 260 seconds). 10:13:04 -!- itidus21 has quit (Ping timeout: 265 seconds). 10:15:28 -!- Frooxius has joined. 10:23:58 -!- monqy has quit (Quit: hello). 10:42:31 -!- Taneb has quit (Ping timeout: 260 seconds). 10:44:15 -!- Frooxius has quit (Ping timeout: 252 seconds). 11:22:57 -!- Frooxius has joined. 11:26:10 -!- Taneb has joined. 11:38:37 -!- Taneb has quit (Ping timeout: 276 seconds). 11:43:19 -!- Phantom_Hoover has joined. 11:43:21 -!- Phantom_Hoover has quit (Changing host). 11:43:21 -!- Phantom_Hoover has joined. 12:27:30 -!- Frooxius_ has joined. 12:28:15 -!- Frooxius has quit (Ping timeout: 248 seconds). 12:28:29 -!- Frooxius_ has changed nick to Frooxius. 12:39:08 -!- Phantom_Hoover has quit (Remote host closed the connection). 12:39:10 -!- Phantom__Hoover has joined. 12:44:28 -!- Frooxius has quit (Read error: Connection reset by peer). 12:46:10 -!- Frooxius has joined. 12:49:35 -!- Taneb has joined. 13:04:37 -!- Frooxius_ has joined. 13:05:36 -!- Frooxius has quit (Ping timeout: 248 seconds). 13:05:48 -!- Frooxius_ has changed nick to Frooxius. 13:06:44 holy crap this is amazing. 13:06:58 @ping 13:06:58 pong 13:07:01 * kallisti is sleeping regularly and now has reasonable deskspace. 13:07:18 You're right! 13:07:31 Also, I completed Super Mario Galaxy this morning 13:07:34 -!- Frooxius has quit (Read error: Connection reset by peer). 13:08:00 -!- Frooxius has joined. 13:08:31 :) 13:13:17 ...I'm out of functions for Jackson 13:13:46 > 4 * 36 13:13:47 144 13:14:36 Taneb: I've been mucking around with the FFI lately. 13:14:38 fun stuff. 13:15:06 Should Jackson have FFI 13:15:07 ? 13:15:10 what is Jackson? 13:15:18 My Piet-like language 13:15:23 oh 13:15:24 uh....... 13:15:31 It has a lot of things. 13:15:32 -shrug- 13:15:36 if you feel like it. 13:15:56 I'm struggling to think of functions 13:16:03 It needs a lot of functions 13:16:48 well, in theory, it only needs a few. :> 13:16:59 but I assume you're going for one of those "semi-practical esolangs" 13:17:28 Ish. 13:17:40 It's nigh-unreadable 13:18:49 Can you tell the difference between #0099CC and #0099FF when there's only one pixel of each? 13:23:45 -!- Taneb has quit (Quit: walking dog time). 13:24:31 @tell Taneb Of course. You must be using a crappy hex editor. :> 13:24:31 Consider it noted. 13:27:11 -!- zzo38 has joined. 13:40:32 -!- Phantom__Hoover has quit (Remote host closed the connection). 13:48:52 -!- Taneb has joined. 13:49:06 Hello! 13:49:06 Taneb: You have 1 new message. '/msg lambdabot @messages' to read it. 13:49:10 @messages 13:49:10 kallisti said 24m 39s ago: Of course. You must be using a crappy hex editor. :> 13:49:33 I was referring to the colours. 13:57:53 @tell Taneb Taneb: You have 1 new message. '/msg lambdabot @messages' to read it. 13:57:54 Consider it noted. 13:58:09 @messages 13:58:09 shachaf said 16s ago: Taneb: You have 1 new message. '/msg lambdabot @messages' to read it. 13:58:15 @messages 13:58:15 You don't have any new messages. 13:58:17 Awww 13:59:16 Taneb: It's your own fault for using /msg #esoteric @messages instead of /msg lambdabot @messages 13:59:20 Now it's gone. 13:59:39 :( 14:38:13 -!- PiRSquared|Sleep has quit (Quit: back to sleep). 14:39:14 -!- const has quit (Excess Flood). 14:39:27 -!- yorick_ has changed nick to yorick. 14:49:27 -!- variable has joined. 14:50:33 -!- variable has quit (Excess Flood). 15:00:59 -!- derdon has joined. 15:10:48 http://2.asset.soup.io/asset/2905/6018_3568_450.jpeg 15:10:57 -!- variable has joined. 15:13:36 > return () :: Maybe () 15:13:37 Just () 15:13:43 > fail :: Maybe () 15:13:44 Couldn't match expected type `Data.Maybe.Maybe ()' 15:13:45 against inferred... 15:13:48 > fail "" :: Maybe () 15:13:49 Nothing 15:13:54 :t guard 15:13:55 forall (m :: * -> *). (MonadPlus m) => Bool -> m () 15:29:02 -!- hagb4rd2 has joined. 15:29:57 -!- Jafet1 has joined. 15:31:32 -!- hagb4rd has quit (Ping timeout: 240 seconds). 15:31:32 -!- Jafet has quit (Ping timeout: 240 seconds). 15:42:02 -!- variable has quit (Excess Flood). 15:47:27 -!- variable has joined. 16:06:17 -!- NihilistDandy has joined. 17:05:32 -!- Taneb has quit (Ping timeout: 240 seconds). 17:10:22 -!- Taneb has joined. 17:11:33 -!- itidus21 has joined. 17:14:50 Hello 17:15:52 -!- Jafet1 has changed nick to Jafet. 17:16:12 Hey, Taneb 17:16:59 So is pyralspite still in use? 17:17:42 You'd have to ask elliott. 17:17:57 NihilistDandy, yes, but still on Beta 1.7, I think 17:18:21 Taneb: Yeah. I just tried connecting and it said outdated. :( I miss our pits 17:19:57 Saaaaame 17:20:16 Gee, if only somebody on this channel had an up-to-date server that nobody seems to want to ever use. 17:20:24 @ask elliott Have you found your ssh key yet? 17:20:24 Consider it noted. 17:20:45 Gregor, is that a sort-of-sarcastic "I have a server which nobody uses"? 17:20:59 Yes, yes it is. 17:25:23 Gregor: Link pls? :D 17:26:12 NihilistDandy: gregorr.dyndns.org , but it has a whitelist, so I'll need your MC name to invite you in. 17:26:38 NihilistDandy :D 17:26:46 Without the ":D", clearly 17:27:11 You're in. 17:28:23 Taneb 17:28:24 Taneb: You have 1 new message. '/msg lambdabot @messages' to read it. 17:28:26 Nice glass floor 17:28:28 @messages 17:28:28 elliott said 5m 36s ago: I'm already juggling the hell that is MediaWiki, Stack Overflow and procrastination, and you want me to set up a Minecraft server too?! In a few days when I put MediaWiki up 17:28:28 for real I'll have to get the server situation sorted out; ask me after then. (I already know where the key is.) 17:30:09 Whitelist plox? 17:30:33 What is a whitelist plox? 17:30:44 Beats me. 17:31:18 Taneb: Minecraft name? 17:31:22 Taneb 17:31:35 NihilistDandy: You might want to get down from there ... 17:31:42 Taneb: You're in. 17:44:41 WRONG CHUNNEL, FOOLS. 17:50:25 O NO IT IS MISTAKE PLEASE 17:50:37 -!- pikhq_ has joined. 17:50:53 -!- pikhq has quit (Ping timeout: 252 seconds). 17:56:20 gopher.semmel.ch appears to be down today 18:02:40 @ping 18:02:40 pong 18:02:58 Do you like to play ping-pong? 18:03:59 i do 18:04:21 I'm not much good 18:08:10 -!- ais523 has joined. 18:12:49 -!- itidus21 has quit (*.net *.split). 18:12:49 -!- SimonRC has quit (*.net *.split). 18:14:06 -!- itidus21 has joined. 18:14:06 -!- SimonRC has joined. 18:14:08 -!- azaq23 has joined. 18:14:18 -!- azaq23 has quit (Max SendQ exceeded). 18:14:41 -!- azaq23 has joined. 18:21:50 -!- NihilistDandy has quit. 18:23:13 whoa.. netsplit 18:23:32 of course i always choose a netsplit resistant server 18:25:35 -!- oklopol has quit (Ping timeout: 248 seconds). 18:36:22 -!- monqy has joined. 19:15:48 -!- augur has quit (Remote host closed the connection). 19:16:37 -!- augur has joined. 19:17:01 -!- Taneb has quit (Ping timeout: 260 seconds). 19:23:21 Make up some computer game involving my and my brother's D&D character 19:24:00 Also please question me about this: http://hpaste.org/63474 (I don't know why the syntax highlighting is Visual Basic; it says Literate Haskell on the main page) 19:35:25 -!- Taneb has joined. 19:43:00 -!- [SOLEIL] has joined. 19:43:23 -!- [SOLEIL] has quit (Client Quit). 20:06:37 -!- Taneb has quit (Ping timeout: 265 seconds). 20:10:50 -!- azaq23 has quit (Quit: Leaving.). 20:21:54 -!- silvercloud has joined. 20:26:43 -!- silvercloud has quit (Remote host closed the connection). 20:48:48 -!- sebbu has quit (Quit: updating irc client). 20:54:18 -!- sebbu has joined. 20:54:18 -!- sebbu has quit (Changing host). 20:54:18 -!- sebbu has joined. 21:11:55 Olleh, Dlrow! 21:14:19 Whenever I see "dlrow", I think of Befunge. 21:18:56 -!- sabani has joined. 21:21:47 OK 21:21:56 Hello, World! 21:22:57 -!- zzo38 has set topic: Home of N>=1 IOCCC Winners! | This topic message is in Chinese when you are not paying attention. | http://codu.org/logs/_esoteric/. 21:23:26 -!- sabani has quit (Remote host closed the connection). 21:23:28 -!- zzo38 has set topic: Home of N>0 IOCCC Winners! | This topic message is in Chinese when you are not paying attention. | http://codu.org/logs/_esoteric/. 21:38:19 -!- fizzie has set topic: Home of N>=0 IOCCC Winners! | This topic message is in Chinese when you are not paying attention. | http://codu.org/logs/_esoteric/. 21:39:20 -!- Gregor has set topic: Home of N>=-12 IOCCC Winners! | This topic message is in Chinese when you are not paying attention. | http://codu.org/logs/_esoteric/. 21:44:34 -!- fizzie has set topic: Home of N!=-12 IOCCC Winners! | This topic message is in Chinese when you are not paying attention. | http://codu.org/logs/_esoteric/. 21:44:37 Would've used ≠, but didn't dare to put Jewnicode in the topic. 21:46:55 -!- calamari has joined. 21:47:29 -!- Gregor has set topic: Home of -e^(pi*i) IOCCC Winners! | This topic message is in Chinese when you are not paying attention. | http://codu.org/logs/_esoteric/. 21:52:28 Invent an INTERCAL variant which compiles into hardware. 22:15:13 DC3STXENQBELFFBELLFSTX? 22:19:31 -!- Taneb has joined. 22:19:45 Hello! 22:19:49 hi 22:19:57 It's time. 22:20:15 To do some more work--- hang on!!! 22:20:28 Who de-zombiefied the topic!? 22:20:39 -!- calamari has quit (Quit: Leaving). 22:21:50 -!- Taneb has set topic: Topic is a zombie; task sayTopic; say "Topic for #esoteric is: Home of -e^(pi*i) IOCCC Winners! | This topic message is in Chinese when you are not paying attention. | http://codu.org/logs/_esoteric/"; animate; animate. 22:22:40 The topic must be in an esolang. 22:22:44 It's a tradition. 22:23:07 very recent tradition 22:23:13 `pastlog deployment 22:23:30 Yes it is very recent and can be dropped (and reinstated) at any time 22:23:41 topic should be snack/esme polyglot 22:23:55 No output. 22:29:46 -!- calamari has joined. 22:36:02 -!- Taneb has quit (Quit: trying something). 22:38:29 -!- Gregor has set topic: putStr "Topic for #esoteric is: Home of -e^(pi*i) IOCCC Winners! | This topic message is in Chinese when you are not paying attention. | http://codu.org/logs/_esoteric/". 22:46:20 -!- calamari has quit (Quit: Leaving). 23:00:48 -!- calamari has joined. 23:03:44 Stupid. Exercise, Health, and Feel Good. 23:10:34 -!- Taneb has joined. 23:16:04 -!- calamari has quit (Quit: Leaving). 23:16:22 -!- calamari has joined. 23:21:29 -!- TeruFSX has quit (Remote host closed the connection). 23:41:01 -!- calamari has quit (Quit: Leaving). 23:57:38 23:58:39 How enigmatic. 23:58:53 !!!!!! 23:58:59 ?? 23:59:37 23:59:43 -!- oklopol has joined. 23:59:45 .