00:00:10 but how do I specify an unsigned four-digit quater-imaginary number 00:00:51 I don't think cobol does quarter-imaginary numbers 00:01:16 clear deficiency. 00:02:32 Sgeo: is that your university doing cobol courses? 00:02:45 olsner, no 00:02:59 doubtful considering it's an irish tld 00:03:15 although ireland would be less rural than Sgeo's university 00:03:39 Phantom__Hoover, what, just because my school used to literally be an agricultural school? 00:04:01 yeah, they don't teach agriculture in cities 00:04:47 what's wrong with farming, eh? 00:04:54 Sgeo, it's called FARMINGDALE 00:05:12 for real? 00:05:16 haha. 00:05:22 if you asked me to come up with the most ridiculously agrarian name possible i would think that too blatant 00:17:38 'Formula 1 organisers in India say they are determined to ensure that the track near Delhi is completely "dog proof" ahead of Sunday's race' 00:19:32 "guard dogs have been deployed throughout the track" 00:19:51 I think I have another criticism of Clojure 00:20:18 * Phantom__Hoover sits ready in rapt fascination 00:20:41 There are several ways to find the value associated with a key in a hash-map. This, in and of itself, is not a problem. 00:21:12 You can use the hash-map as a function, or use the get or find functions, or use a keyword as a function if the key you want is a keyword 00:21:36 wait, like, you have :x as a key in the hash, so you can do (:x hashtable) to get the value? 00:21:40 Yes 00:22:10 weird 00:22:21 -!- augur_ has joined. 00:22:26 Now, the problem I have with this is, what if I want to make my own data structure that fakes being a hash-map. I have to implement both the structure as being funcallable, and the Associative protocol 00:22:39 -!- augur has quit (Read error: Connection reset by peer). 00:22:52 I think keywords as functions just use the Associative protocol. I might not even have the right name for it 00:24:03 -!- augur_ has quit (Read error: Connection reset by peer). 00:25:02 -!- augur has joined. 00:26:00 Bike, it seems to be more common than (hashtable :x) 00:41:43 -!- copumpkin has changed nick to Michelangelo. 00:41:52 -!- Michelangelo has changed nick to copumpki. 00:41:54 -!- copumpki has changed nick to copumpkin. 00:43:48 i also find that weird, but I'm already used to it. 00:46:41 And I don't know when (get hashtable :x) is ever used, maybe people who don't realize that the other forms also accept an optional what to return if it's not there parameter the way get does 00:50:13 shachaf: What is lens? 00:50:35 baby don't hurt me 00:50:37 don't hurt me, no more 00:50:40 elliott: A Norwegian word meaning "hi monqy". 00:51:06 -!- hagb4rd has quit (Quit: hagb4rd). 00:51:08 Where's oerjan, by the way? 00:52:32 Sgeo: When your key is not a keyword 00:52:32 or when your collection can be a number of things (all that support get) 00:53:03 I guess get could also be used with -> 00:53:32 ,({1 2 3 4} 1) 00:53:32 2 00:53:32 ,([1 2 3 4] 1 2) 00:53:32 # 00:53:32 ,(get [1 2 3 4] 1 2) 00:53:33 ,(get [1 2 3 4] 6 2) 00:53:35 2 00:53:37 2 00:55:24 -!- copumpkin has changed nick to OMARCOMINYO. 00:59:16 shachaf: eating, last I heard 00:59:42 but that was a few days ago, may have changed since 01:01:03 -!- OMARCOMINYO has changed nick to copumpkin. 01:05:04 Does lambdabot do some form of lisp? 01:08:14 yeah, it does haskell 01:08:41 I'm so glad we have Sgeo here to paste logs from Clojure channels in here. 01:08:45 lolololololololol 01:08:50 Otherwise we might forget that this is #clojure. 01:09:25 yeah in the mainstream programming world, haskell is 'some kind of lisp' and yet the differences between python and ruby are vast and important 01:09:37 .. 01:09:38 perspective is a funny thing 01:09:59 kmc 01:09:59 kmc 01:10:00 i think 01:10:01 I just wanted to be silly and make a long string using lots of conses 01:10:01 olsner 01:10:02 FreeFull: judging by @list, not really? 01:10:03 might have been joking 01:10:04 elliott 01:10:08 But the haskell form of that is much shorter =P 01:10:08 yes i know olsner was joking 01:10:37 kmc: I'm glad you know 01:10:56 i'm glad i know you're glad i know 01:10:57 (cons 'S' (cons 't' (cons 'r' (cons 'i' (cons 'n' 'g'))))) 01:11:00 kmc: Why was ε afraid of ζ? 01:11:07 why 01:11:18 Because ζηθ! 01:11:19 Because 7 8 9 01:11:20 man you can't use single quotes like that in lisp, you'll break something 01:11:43 'Bike' 01:11:49 D: 01:11:57 shachaf: idgi 01:12:09 kmc: Why was epsilon afraid of zeta? Because zeta eta theta! 01:12:14 I think int something = 'abcd'; is valid C 01:12:15 Zeta ate-a theta. 01:12:30 shachaf: Are they consecutive in the greek alphabet? 01:12:35 Yes. 01:12:57 i see 01:13:10 Hmph. Best try another joke. 01:13:15 kmc: Where does a general keep his armies? 01:13:19 where 01:13:23 In his sleevies! 01:13:32 hehehe 01:13:35 that's a popsicle stick joke 01:13:41 FreeFull: Strin . g 01:13:48 wow 01:13:48 What's that? 01:13:52 esolang just got an anonymous edit 01:13:53 what bothers me about that is that sleevies is (probably) just a made up word 01:13:55 from an IPv6 address 01:13:59 nice 01:14:03 it must be aliens from the future 01:14:36 ais523: wait, that works? 01:14:40 are strings lists in any common lisps? 01:14:40 well 01:14:43 good thing i set that up! 01:14:46 > 'S':'t':'r':'i':'n':'g':[] 01:14:48 "String" 01:15:00 i thought haskell was practically the only language where the "built-in" / "default" string type is a linked list 01:15:03 elliott: apparently it works 01:15:05 > 'S':'t':'r':'i':'n':'g':"ent" 01:15:05 well, common lisps other than haskell then 01:15:06 "Stringent" 01:15:10 olsner: clearly 01:15:17 wait, haskell strings are linked lists, really? 01:15:21 yes 01:15:26 type String = [Char] 01:15:35 why? 01:15:36 kmc: What, you didn't know lisp did strings as linked lists? 01:15:46 Bike: Because Haskell is all about List Processing. 01:15:51 snerk 01:15:51 Being a Lisp. 01:16:05 @quote list.processing 01:16:06 monochrom says: in retrospect, it seems lisp designers were more interested in list processing than functional programming 01:16:09 FreeFull: Common Lisp? Scheme? Clojure? Maclisp? what? 01:16:12 "Lisp" isn't a language 01:16:29 Lisp 1.5 is a language. 01:16:33 is that really "in retrospect" 01:16:44 in lisp 1.5 you could use lists as functions! 01:16:51 Bike: well, it avoids introducing new concepts to the language, if you have lists and chars already 01:16:55 processing lists with lists, the way of the future. 01:16:59 Clojure strings are not lists but you can convert them into.... a list-like thing 01:17:00 and it gives you lazy strings in a natural way 01:17:07 but it's horribly inefficient 01:17:13 yeah that's what I was going to say 01:17:14 Well I guess strings aren't lists in common lisp 01:17:18 if you want to efficiently store text in Haskell, you use Data.Text 01:17:20 is there not a type for vectors/arrays/whatever 01:17:22 since all existing lisps were designed in the past, anything we say about lisp is in retrospect 01:17:32 there are many many array/vector types in Haskell 01:17:33 too many 01:17:35 Bike: it's a historical accident 01:17:36 sweet. 01:17:39 it's just that they aren't imported by default 01:17:44 kmc: well there are like three 01:17:46 elliott: that strings are lists? 01:17:51 and one of them is a replacemen tfor one of the others 01:17:53 olsner: I think you'll find most languages were designed in the past, assuming there is a design 01:17:53 Bike: yes 01:17:54 Data.Text is the way to go for efficient text storage, afaik 01:17:59 unless that's changed again 01:17:59 Data.Text doesn't give you random access. :-( 01:18:00 Bike: it made sense in 1992, it doesn't make sense in 2012 01:18:00 it uses UTF 01:18:01 that's quite the accident 01:18:02 -16 internally 01:18:05 which is kinda gross 01:18:06 shachaf: random access is irrelevant 01:18:11 kmc: icu compatibility 01:18:16 random access to Unicode codepoints isn't too useful 01:18:16 Bike: it is actually worse than you think 01:18:21 Bike: since haskell has lots of pointers in its linked list 01:18:23 because non-strictness 01:18:23 elliott: You can't even mark a point in a string with an index and then index into that point later, though. 01:18:24 elliott: made sense in 1992? but lisps that existed in '92 used arrays for strings 01:18:24 because codepoints != characters != anything you care about 01:18:32 Bike: but they aren't lazy 01:18:44 and also Lisp had more pretentions to being real-world useful than Haskell circa 1992 01:18:45 it's like 16 bytes to the character or something iirc 01:18:49 strange, strange, very strange 01:18:50 In Haskell you can have an infinitely long String 01:18:52 oh I suppose that's true though. 01:19:00 actually String is sometimes faster than the alternatives amusingly 01:19:08 you have to remember, for the first 10+ years of its life, Haskell was explicitly a language for PL researchers 01:19:09 > fix ("Honk " ++) 01:19:11 "Honk Honk Honk Honk Honk Honk Honk Honk Honk Honk Honk Honk Honk Honk Honk... 01:19:12 > repeat 'a' 01:19:14 "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa... 01:19:16 how very strange to consider 01:20:02 kmc: arguably it still is :) 01:20:07 well yeah 01:20:22 but i think before 2000 there were very few people claiming otherwise 01:20:28 now there is a large IRC channel full of them 01:20:45 #haskell is pretty bad these days, by the way. 01:20:54 "surprised??" 01:20:56 i would like to see kmc visit #haskell sometime 01:21:05 shachaf: what now 01:21:06 what is wrong with #haskell? 01:21:13 kmc: Same old. 01:21:24 #haskell-blah alternates between bad and good, depending on time zone. 01:21:32 which timezones are the bad ones 01:21:44 :-( 01:21:47 Bike: newbie joins, newbie asks standard newbie question, everyone starts shouting out their favorite explanation, then everyone argues about which one is best, then irrelevant tangents 01:21:51 newbie is confused 01:21:57 nobody actually cares about figuring out the one best way to teach something 01:22:02 wait, are you telling me not every speech about programming is like that 01:22:06 everyone's too heavily invested in their pet explanation 01:22:08 kmc: Remember sorear? 01:22:14 i felt the same way 01:22:16 which is why i left 01:22:22 after making some halfassed attempt to be better 01:22:23 shachaf: no 01:22:27 Those were the days. 01:22:57 Bike: also they act like a research paper on a topic is equivalent to mature tested packaged software 01:23:14 groan. 01:23:23 if your problem can't generate an academic paper then it's already solved 01:23:29 tbh i don't really see that attitude in #haskell at all 01:23:30 it's just a trivial matter of engineering 01:23:35 the research paper thing that is 01:23:37 i've seen it a few times 01:23:49 somebody was like "lol, just write a JVM backend for GHC, problem solved" 01:23:53 as though this would be completely trivial 01:24:03 the #1 problem is idiots who don't know anything about haskell trying to answer an overly-broad question like "what are monads" that they don't themselves understand 01:24:04 imo 01:24:09 yeah 01:24:12 that is a bigger problem 01:24:15 Yes. 01:24:26 (and I say idiots only because they decide they are competent enough to educate others, not because they merely don't know) 01:24:32 also #haskell has a bunch of dumb inside jokes 01:24:43 if you mention monads everyone is like "lolololololololol burritos" 01:24:56 elliott, now I'm scared that I'm an idiot 01:24:58 completely drowning out any attempt at a serious answer (not that such attempts would generally be successful) 01:25:04 also lambdabot is a huge inside joke 01:25:18 because she implements this bizarre variant of haskell which seems to exist to confuse beginners and entertain experts 01:25:23 pretty trollish basically 01:25:28 kmc: You should post that post on what's wrong with #haskell 01:25:49 Sgeo: i don't know how to answer that 01:26:02 people are always like "lambdabot is a great resource for learning Haskell!!" and then when the learner actually uses it, they have to explain why it thinks functions are numbers or whatever 01:26:07 :t (.) 01:26:08 forall a b (f :: * -> *). (Functor f) => (a -> b) -> f a -> f b 01:26:08 it what. 01:26:10 :t 3 3 01:26:11 forall t t1. (Num (t1 -> t), Num t1) => t 01:26:14 and then everyone blames Cale for making lambdabot's haskell weird, and Cale vehemently denies having anything to do with it 01:26:21 kmc: btw you are way too cynical about lambdabot, cale obviously feels its variants are useful and helpful for its target audience 01:26:28 i seem to have opened up a terrifying line of information here 01:26:29 it is unfortunate that it causes problems but i don't think it is really malicious 01:26:35 > 3 5 01:26:36 3 01:26:37 just obviously lambdabot never get updated ever since have you seen its codebase 01:26:40 I don't think there's a whole lot of malice in #haskell 01:26:48 Bike, 01:26:49 (by "cale" here I mean "broadly-approximated cale") 01:26:51 Malice is easier to deal with, usually. 01:26:53 > (sin + cos) 2 01:26:54 0.4931505902785393 01:26:55 (which means "Whoever is responsible for them" or whatever) 01:26:58 *whoever 01:27:00 Bike: welcome to #esoteric 01:27:06 it's crap 01:27:07 hello #esoteric 01:27:08 > (sin + cos) 0 01:27:09 1.0 01:27:19 Sgeo: is the same as sin 0 + cos 0, or what 01:27:26 > (sin * sin + cos * cos) 12345 01:27:28 0.9999999999999999 01:27:29 Yes 01:27:38 that's kinda cool actually. 01:27:48 It's not a stanard Haskell thing 01:28:12 so I gathered 01:28:13 elliott: i don't think it's malicious, but the fact that it's gone on this long indicates a certain lack of regard for beginners 01:28:17 #esoteric is also a big inside joke. 01:28:17 Nothing here 01:28:28 yes I've gotten that impression, shachaf 01:28:31 which is incongruous with a community that is constantly patting itself on the back over how friendly it is 01:28:40 one of the main things i learned from #haskell is that friendly != helpful 01:29:09 kmc: well experts are misserved by lambdabot's other problems 01:29:13 like how it keeps crashing 01:29:17 and that stupid L.hs nondeterministic thing 01:29:28 it is just unmaintained, can't really single out any individual problem imo 01:29:38 Cale "maintained" flip into L.hs 01:29:41 @ty flip 01:29:42 forall a b c. (a -> b -> c) -> b -> a -> c 01:29:46 whoa, dudeb 01:29:48 What? 01:29:53 a lot of IRC channels are too unfriendly to be helpful, but #haskell is too friendly to be helpful 01:29:56 kmc: btw i think the patting themselves on the back thing is generally over 01:30:01 > flip 01:30:01 elliott: oh really 01:30:03 Overlapping instances for GHC.Show.Show 01:30:03 ((a ->... 01:30:06 kmc: well i don't see it 01:30:12 kmc: anyway looks like it's your birthday 'cuz flip looks normal to me 01:30:18 haha 01:30:22 but (.) is still weird 01:30:23 I asked Cale to change it back today. 01:30:26 heh 01:30:32 Maybe he listened. 01:30:34 flip used to be weird too? 01:30:45 olsner: yes, it was strong 01:30:53 Yep, f (b -> c) -> b -> f c 01:30:55 strong :: (Functor f) => f (a -> b) -> a -> f b 01:30:59 i think edwardk calls it strong 01:31:02 so i am calling it strong 01:31:03 to be cool 01:31:03 strength? 01:31:06 oh maybe 01:31:15 it's the proof term that every haskell Functor is a strong functor right 01:31:21 shachaf: I got my Stripe CTF shirt today! 01:31:26 kmc: Oh. 01:31:29 :-( 01:31:33 @djinn (Functor f) => f (a -> b) -> a -> f b 01:31:33 u no? 01:31:33 Error: Class not found: Functor 01:31:36 Nope. 01:31:43 djinn doesn't do classes, I guess 01:31:48 elliott: want another proof that every functor is strong?? 01:31:52 proof = undefined 01:32:13 @djinn-env 01:32:14 data () = () 01:32:14 data Either a b = Left a | Right b 01:32:14 data Maybe a = Nothing | Just a 01:32:14 data Bool = False | True 01:32:14 data Void 01:32:15 type Not x = x -> Void 01:32:17 class Monad m where return :: a -> m a; (>>=) :: m a -> (a -> m b) -> m b 01:32:20 class Eq a where (==) :: a -> a -> Bool 01:32:21 either :: (a -> c) -> (b -> c) -> Either a b -> c 01:32:25 olsner: you need to teach it about functor i think 01:32:28 idk how 01:32:33 idk either 01:32:39 @help djinn 01:32:39 djinn . 01:32:39 Generates Haskell code from a type. 01:32:39 http://darcs.augustsson.net/Darcs/Djinn 01:32:42 no 01:32:42 wrong 01:32:42 elliott: It won't help. 01:32:50 djinn is "stupid" about classes 01:32:50 it knows about monads but not functors? 01:32:52 Observe: 01:32:55 @djinn a -> m a 01:32:56 -- f cannot be realized. 01:33:01 Er. 01:33:04 Bike: so does the haskell 2010 standard :( 01:33:04 @djinn Monad m => a -> m a 01:33:05 f = return 01:33:08 @djinn Monad m => b -> m b 01:33:08 -- f cannot be realized. 01:33:19 shachaf: haha 01:33:19 good 01:33:26 i'm pretty dumb at haskell but I thought monads were functors? 01:33:39 Mathematically 01:33:39 Bike: yep. 01:33:39 *haskell, math, life 01:33:51 haskell only has a direct monad class 01:33:51 Functor? I 'ardly know 'er! 01:33:56 there's a functor class in the standard libraries 01:34:00 very strange 01:34:02 (and applicative, the "half-way" point in a sense) 01:34:10 but they're not superclasses of monad due to -- wait for it -- historical accident 01:34:12 kmc: When are you running the kmc code contest? 01:35:00 :t (.) 01:35:01 forall a b (f :: * -> *). (Functor f) => (a -> b) -> f a -> f b 01:35:04 Ah, good. 01:35:18 elliott, now I'm scared that I'm an idiot 01:35:28 @let switchify f = (.f) 01:35:30 Defined. 01:35:31 @ty switchify 01:35:33 forall (f :: * -> *) a b. (Functor f) => f a -> (a -> b) -> f b 01:35:36 zomg 01:35:55 you're not an idiot generally since you don't confidently spew bullshit 01:36:39 Phantom__Hoover: pssst, i heard Sgeo made 6 bf derivatives before breakfast today 01:36:55 then he's not an idiot, he's a dead man walking 01:37:33 shachaf: Doesn't the Functor (.) upset you? 01:37:37 It should use the Category (.). 01:37:59 obviously it just predates Category, and no-one's bothered to update it yet 01:38:03 elliott: Maybe it should use the -> . 01:38:16 shachaf: No. Prelude should use the Category (.). 01:38:35 -!- hagb4rd has joined. 01:40:24 :t (*) 01:40:25 forall a. (Num a) => a -> a -> a 01:41:07 shachaf: it shipped from colorado 01:41:27 elliott: is there a place in the uk called "colourado" 01:41:34 yes 01:41:40 "i knew it" 01:41:59 it's an australian hair salon apparently 01:49:30 -!- Arc_Koen has quit (Quit: Arc_Koen). 01:52:49 Phantom__Hoover, what if I make a meta-language to describe BF derivatives 01:53:03 you mean tr? 01:53:05 can the language describe itself 01:54:33 More-like sed 01:55:45 depends on how awful it is 01:55:49 kmc: Do you have any good train facts for me? 01:56:54 just... general train facts? 01:57:55 Specific ones are good too. 01:58:09 i mean, are you looking for a specific kind of train fact 01:58:11 choo choo 01:58:13 do you know about gauntlet track? 01:58:32 http://en.wikipedia.org/wiki/Gauntlet_track 01:58:37 Trains are actually electric carts. (in CJK) 01:58:46 it is a strange kind of arrangement which is useful in many ways 01:59:56 Why the fuck would the word "arrangement" make me think of Worlds? 02:00:09 kmc: interesting 02:01:46 kmc: Nope. 02:03:18 when a two-track line has to cross a narrow bridge, it's sometimes better to use two overlapping tracks on the bridge, rather than a true single track segment 02:03:25 you can still only have one train on the bridge at once 02:03:41 but the mechanical bits on either side to go back to two tracks are simpler 02:03:58 purely static bits of steel, vs. points that need to move, and might ice up, etc. 02:04:38 shachaf: here is another train fact: 02:04:57 the New York Subway construction workers use temporary construction lights consisting of five incandescent bulbs mounted together on a board 02:05:17 I've heard that one before, I think? 02:05:22 > 120*5 -- or something like that 02:05:23 600 02:05:26 yes 02:05:29 kmc: how many abandoned stations are there in manhattan? 02:05:31 they run them off third rail power 02:05:37 also, have you visited the city hall one? 02:05:44 http://www.columbia.edu/~brennan/abandoned/ 02:05:55 wow 02:05:55 i've been through it on the 6, but i couldn't see much 02:05:59 sweet 02:06:00 need to bring a powerful flashlight 02:06:09 kmc: Did you hear copumpkin is leaving Boston? :-( 02:06:11 I want to explore them all 02:06:20 shachaf: don't tell him, he wouldn't approve 02:06:22 you are copumpkin? 02:06:26 isn't the new york underground an amalgamation of like 5 different private networks 02:06:35 kmc: yep :P 02:06:36 Phantom__Hoover: basically 3 02:06:39 kmc: Oops. I didn't tell you. 02:07:13 Phantom__Hoover: a few of the elevated lines might date back to the era when there were more than 3 02:07:14 copumpkin likes category theory more than boston :'( 02:07:20 and a few bits of the system used to be LIRR, and stuff like that 02:07:45 copumpkin: What will you be doing in CT? 02:08:32 but mainly it was the IRT (today, numbered lines), the BMT (mostly the NQR and JZ), and the city-run-from-the-start IND (the ACE, BDFM, and G) 02:09:05 but the city was heavily involved with planning from the start 02:09:17 in fact sometimes the city would build the lines on behalf of these private companies 02:09:19 but then also compete with them 02:09:33 and would impose terms that caused them to go bankrupt 02:09:41 and would condemn the structures so they could be bought cheaper 02:09:49 it was some kind of really fucked up hybrid public/private system 02:17:21 shachaf: um 02:18:36 shachaf: writing software! 02:18:40 >_> 02:18:56 copumpkin: What software? 02:19:11 Is it still that capitaliq thing? 02:19:52 nah, that's what I'm quitting 02:19:59 bwater.com 02:20:52 Oh. 02:21:01 Bah, another finance thing? 02:21:23 Well, I guess you already lost your soul at clarifi anyway. 02:21:30 lol 02:23:17 moving to Westport? 02:26:03 probably Wilton, but yeah 02:26:06 something like that 02:26:25 ok 02:26:30 i don't know what that area is like; is it nice? 02:26:38 it's a bit far from NYC but not totally unreasonable for a day trip 02:26:48 some employees actually commute 02:26:52 I'm not up for it though 02:26:53 yeah i bet 02:26:58 there's a bus from manhattan every day 02:27:04 it seemed nice from what I saw 02:27:14 kinda posh, apparently, but a lot of that part of CT is 02:27:22 more like Category Theory 02:27:24 copumpkin: There are buses from Manhattan to Boston more than once a day! 02:27:28 I'll probably be visiting NY a lot 02:27:35 commuting on the bus or train you can at least work or read or sleep 02:27:36 shachaf: I mean a company bus 02:27:39 Oh. 02:27:58 yeah, but still, being on a bus ~2.5 hours a day isn't my idea of fun 02:28:01 even if I'm reading or something 02:28:06 Maybe I should move to NY. 02:28:30 but it's still within a reasonable distance from boston, too 02:28:50 and the local airport has direct flights to Tampa :) 02:29:19 copumpkin: Have you considered the other coast? 02:29:28 makes Tampa more of a pain 02:29:37 Who needs Tampa? 02:29:42 I'm not opposed to it in principle 02:30:19 what's so great about tampa 02:30:23 -!- Phantom_Hoover has joined. 02:30:25 ==kmc 02:30:48 shachaf, if you move to NY, you'll be moving closer to me. 02:30:50 Just a warning. 02:30:52 my gf lives there and has to stay there for the next 1.5 years 02:31:53 Sgeo: Is NYC now Clojureland? 02:32:31 there's a big haskell meetup there starting up 02:32:40 shachaf, I take it you've never seen me obsessed with other languages? 02:32:47 -!- Phantom__Hoover has quit (Ping timeout: 246 seconds). 02:33:10 copumpkin: When do they meet? 02:33:16 Nov 14th is the first 02:33:21 Hmm. 02:33:23 -!- augur has quit (Remote host closed the connection). 02:33:23 http://www.meetup.com/NY-Haskell/ 02:37:31 -!- constant has changed nick to function. 02:37:40 -!- Phantom_Hoover has quit (Read error: Connection reset by peer). 02:41:02 What tvtropes does my Dungeons&Dragons story applies/misapplies/strangeapplies? 02:42:31 the pics from Cortlandt st. station on that site are kinda eerie 02:47:20 someone needs to make a post-apocalyptic RPG set almost entirely in the NYC subway system, with occasional glimpses of the destruction above 02:47:53 charles barkley: shut up and jam: gaiden 02:48:18 copumpkin: Try it. 02:48:50 I'd prefer to explore, not make the game :) 02:48:55 and I don't really get to explore the real thing 02:51:23 copumpkin: did you ever play Fallout 3? 02:51:28 I did :) 02:51:29 I loved it 02:51:32 large parts are set in the DC subway 02:51:35 yeah 02:51:36 it's a cool game 02:51:42 different from other fallouts 02:51:46 but still lots of fun 02:51:47 should i play fallout 1/2? 02:51:56 I love those too, but they have a different feel to them 02:52:08 good old games has them on sale occasionally, I think 02:52:24 i have... copies 02:52:30 kmc: Should you play Psychonauts? 02:52:33 A: Yes 02:52:35 playing it's slightly annoying, i think they work in wine 02:52:39 shachaf: i tried but it segfaulted :( 02:52:48 kmc: then yeah :) unfortunatley the low res is the most annoying thing for me 02:52:56 I played fallout 1 just recently 02:53:00 kmc: The Linux version from HB? 02:53:09 it's still pretty good, if you don't mind the low res 02:54:03 -!- augur has joined. 02:55:15 shachaf: yeah 02:55:41 kmc: I don't have hardware acceleration working so I can't test it. 02:55:48 I just booted to Windows. 02:57:33 DECtalk DTC01 (with a cat for scale) 02:57:37 Cat (with a DECtalk DTC01 for scale) 02:57:40 http://en.wikipedia.org/wiki/File:DECtalk_DCT01_and_Tink.jpg 03:03:58 -!- Nisstyre-laptop has joined. 03:16:35 In this Dungeons&Dragons game, well, one thing it does have is evil chancellor. Also, what do they call the strange plan, such as my plan involving the afro wig and beard trimmer, nobody seem to know what it is for, do you know what it is for? 03:17:31 -!- hagb4rd has quit (Quit: hagb4rd). 03:26:34 -!- DDR has joined. 03:28:50 Hey, just wanted to publicly thank Oerjan for cleaning up my ComeFrom page. 03:28:56 "Thanks!" 03:29:12 DDR: I think public thanks are more fruitful when the person you're thanking is around. 03:29:23 Yeah, can't have everything. :P 03:30:50 Anyhow, that about wraps it up for me. See ya. 03:31:11 @tell oerjan 21:28 < DDR> Hey, just wanted to publicly thank Oerjan for cleaning up my ComeFrom page. 03:31:12 Consider it noted. 03:31:24 Thanks. 03:31:29 -!- DDR has left. 03:34:04 `run echo ørjan | iconv -t iso646-no 03:34:07 iconv: illegal input sequence at position 0 03:34:18 `run echo ørjan | iconv -t iso646-no -f utf-8 03:34:22 ​|rjan 03:34:34 @arr jan 03:34:34 I'll keel haul ya fer that! 03:34:38 @ørr 03:34:39 Maybe you meant: arr yarr 03:44:25 shachaf: did you see http://amoffat.github.com/sh/ 03:44:35 kmc: Yep. 03:44:44 i used it for a nontrivial project 03:44:46 it's pretty nice 03:44:54 https://www.casascius.com/ pretty. Of course, only interested in prettyness, so can only imagine getting the 0-bitcoin one 03:45:08 Sgeo: but what does it have to do with clojure? 03:45:15 -!- lahwran has quit (Excess Flood). 03:45:32 Erm, better yet, the 25 BTC with no bitcoin value 03:45:36 That's what I was thinking of 03:45:50 Why is there a meme of me being Clojure obsessed 03:45:56 uh 03:46:07 I'm always obsessed with whatever my current language of the minute is, and currently that's Clojure 03:46:12 It varies over time. 03:47:03 Vires in Numeris 03:48:40 -!- lahwran has joined. 03:49:50 droppingWhile p l f = fst . foldrOf l (\a r -> let s = f a *> snd r in if p a then (fst r, s) else (s, s)) (noEffect, noEffect) 04:20:30 elliott, tswett coppro update 04:31:46 It's been a while since I've read Ubersoft 04:35:39 Hmm, Reddit hates Ubersoft 04:35:49 -!- Nisstyre-laptop has quit (Read error: Connection reset by peer). 04:36:24 -!- Nisstyre-laptop has joined. 04:36:55 -!- hagb4rd has joined. 04:40:59 -!- monqy has joined. 04:47:00 Does anyone discovered checkmate with a king move? 04:54:59 -!- Frooxius has quit (Ping timeout: 245 seconds). 05:03:02 Sgeo: I know, thanks. 05:37:03 Fight... for the sky...... 05:37:08 waiting for my..............ride 05:50:00 Flex Mex http://youtu.be/GTwrVAbV56o 05:51:10 -!- zzo38 has quit (Ping timeout: 244 seconds). 06:17:13 -!- hagb4rd has quit (Ping timeout: 245 seconds). 06:37:20 -!- sivoais has quit (Ping timeout: 244 seconds). 06:43:16 -!- sivoais has joined. 06:53:16 -!- AnotherTest has joined. 06:53:56 Hello 06:53:56 -!- AnotherTest has quit (Client Quit). 06:54:08 -!- AnotherTest has joined. 06:55:08 -!- shubshub has joined. 06:55:22 Guess what guys 06:56:09 * shubshub is making a new language 06:56:13 hi hi 06:56:17 is it a good language ? 06:56:37 its another form of batch 06:56:38 monqy: is hi hi a quine 06:56:40 in the language 06:56:42 hi 06:56:49 oh right you're the batch guy aren't you 06:56:54 yea 06:57:16 This time its Batch modified for making video games 06:57:53 how does that work :oi 06:58:16 Using Batch files to make new custom commands 06:58:43 what does that mean :o 06:58:58 -_- 06:59:01 -.- 06:59:29 ldo you jknopw anything about batch? 06:59:36 lulwut 06:59:53 do you know anything about batch? 06:59:58 *** 07:00:59 no 07:06:04 shubshub: do you know anything 07:07:02 elliott: do you know anything 07:08:26 shachaf: do you know anything 07:09:07 zomg 07:09:29 monqy: do 𝖄𝕺𝖀 know anything 07:09:29 red text?? 07:10:41 elliot: I know evertything about making games in batch 07:11:44 everything???? that's a lot of thing! 07:11:46 can you teach me 07:12:00 really? 07:12:42 monqy: No, just evertything. 07:13:07 oh.... 07:13:17 everty 07:13:24 is that more or less than eleventy 07:13:29 > compare "everty" "eleventy" 07:13:30 GT 07:13:35 wow 07:13:58 > compare "everty" "9000" 07:13:59 GT 07:14:16 well, eleventything isn't a lot of thing, so that's not saying much 07:46:24 wtf 07:46:32 Chrome doesn't want pages on my HD using geolocation' 07:48:35 -!- Bike has quit (Quit: (but seriously)). 07:49:20 shachaf: How does edwardk define iteratees again? 07:49:25 ISTR some definition. 07:50:30 elliott: You mean the pseudo-iteratee "It" thing in Trifecta? 07:50:53 data It r a = Pure a | It a (r -> It r a) ? 07:51:23 shachaf: Something like that, yes. 07:51:30 I remember some "f" being involved, though. 07:51:36 Some "Iterator" type from some earlier thing. 07:53:55 shachaf: Anyway, I want the "lens" package of iteratees/pipes/whatever. 07:54:16 elliott: There are too many iteratee packages, so you want another one to solve everything? 07:54:33 Except this one is written by edwardk and he makes it so much better than all the others that they all stop being relevant? 07:54:42 And also it has crazy types. 07:55:05 -!- zzo38 has joined. 07:57:06 elliott: There are too many iteratee packages, so you want another one to solve everything? 07:57:11 That was the idea of lens, right? 07:57:24 Seems to have worked, no? 07:57:43 Sort of. 07:57:54 lens also replaced a whole bunch of "unrelated" packages. 07:58:03 What with the whole uniplate/biplate/zipper/etc. business. 07:58:45 -!- shubshub has left. 07:58:57 shachaf: Right. So I guess this hypothetical package -- let's call it pipe -- would also replace, um, I don't know, edwardk's package with those other Traversable-type classes. 07:59:06 And maybe that reducers package, that seems sort of vaguely marginally related. 07:59:09 And... unix? 07:59:21 And yaml. It'll probably have a YAML parser. 07:59:46 YAML = the devil 08:00:05 Oops, no. 08:00:07 YAML = the future 08:00:29 elliott: Comment on Rogach's code in #haskell 08:00:31 Does the creator of YAML use IRC? 08:00:37 (So I can @tell him or her or them that.) 08:00:39 YAML all the things! 08:00:52 Mention "unlines" and Data.Text and all that. 08:01:07 Why isn’t the Haskell syntax based on YAML? 08:01:16 elliott: There are three "YAML people" 08:01:44 All of them can be found on IRC occasionally, though the one who wrote the spec is usually not around. 08:02:28 elliott: ((intercalate "\n" output) ++ "\n") 08:03:11 shachaf: You know which "YAML person" I mean. 08:04:05 (++"\n") =<< output 08:05:42 (++ion) 08:05:55 elliott: Sometimes. 08:10:10 elliott: He is now! 08:10:12 Happy? 08:10:31 shachaf: of course not 08:10:42 Never happy. 08:10:48 never happy. 08:11:09 droppingWhile p l f = fst . foldrOf l (\a r -> let s = f a *> snd r in if p a then (fst r, s) else (s, s)) (noEffect, noEffect) 08:14:47 -!- ais523 has quit. 08:20:08 -!- ogrom has joined. 08:24:29 -!- Vorpal has joined. 08:24:39 @hoogle noEffect 08:24:40 No results found 08:25:10 -- | The 'mempty' equivalent for a 'Gettable' 'Applicative' 'Functor'.; noEffect :: (Applicative f, Gettable f) => f a; noEffect = coerce $ pure () 08:25:35 @src coerce 08:25:36 Source not found. I am sorry. 08:25:48 Do I have to do everything for you? 08:25:54 yes 08:25:57 class Functor f => Gettable f where coerce :: f a -> f b 08:26:35 noEffect is a bad name. 08:27:01 shachaf: (Also ew, that typeclass is just isomorphic-to-Const-x-for-some-x.) 08:27:12 elliott: Exactly. 08:27:18 Do you know why he added it? 08:27:31 Also, class Applicative f => Settable f where untainted :: f a -> a 08:28:30 Do you know why he added it? 08:28:32 For overloading, probably. 08:28:38 For type errors! 08:28:45 What? 08:28:50 If you try to set with a getter or get with a setter, you get a huge ugly unification error. 08:29:00 But if you use these type classes, you get "No instance for (Gettable Mutator)" 08:30:55 I suppose often you don't know what is better name that is why you have bad name 08:31:30 elliott: "pretty cool huh" 08:31:36 monqy: "huh monqy" 08:31:58 elliott: Do you understand the Bazaar business? 08:32:36 ????? why did you say my name ???? what is going on 08:32:47 monqy: the sky is falling 08:32:55 08:32:57 08:34:53 -!- monqy has quit (Quit: hello). 08:40:25 maybe type Pipe f i o a b = forall r. (forall r'. (i -> f r') -> (a -> f r') -> f r') -> (o -> f r) -> (b -> f r) -> f r 08:43:18 There must be a Poe's law for crazy types. 08:44:49 type Stream f p o a = Stream { runStream :: forall r. (o -> f p) -> (a -> f r) -> f r } 08:44:50 type Pipe f i o a b = forall ii oo aa bb. Stream f (Pipe f ii i aa a) i a -> Stream f (Pipe f o oo b bb) o b 08:44:52 That looks right to me. 08:47:14 -!- copumpkin has quit (Quit: Computer has gone to sleep.). 08:47:48 shachaf: (How do you write Pipe f i i a a with that?) 08:50:03 elliott, [S] update 08:50:16 [S]geo? 08:50:19 [S]illy? 08:50:23 [S]i monqy? 08:52:27 shachaf, go read Homestuck 08:52:48 Homestuck? 08:52:52 Is that what those updates are about? 08:53:24 Yes 08:53:31 I thought they were updates of people on channel. :/ 08:53:38 Like, there's a new elliott firmware. 08:53:44 they're updates of who sgeo has decided to randomly ping for no reason today 08:53:59 elliott: Are you out of beta yet? 08:54:03 like if you had a list whose purpose was to announce updates to itself 08:54:05 fizzie: no :'( 08:54:12 fizzie: too buggy 08:54:28 Now I have to vs Arizona in the final series. Arizona is the only team I have ever lost against. Alvarez (SF) and Butler (C) are injured, so if Levine (C) or Colvin (SF) gets injured too then I will have none left and I will be out. But maybe if Murray (C on opposing team, and their only good player) gets injured, I might have a better chance. 08:55:13 Huh, never thought zzo38 would be into Fantasy Sports. Although I have no idea which one that is 08:55:16 Sgeo: http://slbkbs.org/jsgif/ to the rescue! 08:55:20 Well, tomorrow I will know what happened. 08:55:48 Sgeo: Franchise Basketball in X-BIT BBS 09:01:25 Butler is injured for ten games, so therefore you will be out for a long time. Maybe if there are the players available to buy, the first player I buy in next season should be a C position in order to avoid this problem. It might also be a good idea to get a F position since I don't have enough of those either. 09:03:46 -!- ogrom has quit (Ping timeout: 255 seconds). 09:15:29 -!- zzo38 has quit (Quit: zzo38). 09:20:00 -!- Nisstyre-laptop has quit (Quit: Leaving). 11:26:56 -!- Phantom_Hoover has joined. 11:37:20 -!- Arc_Koen has joined. 11:37:54 -!- Taneb has joined. 11:54:29 -!- Taneb has quit (Ping timeout: 255 seconds). 12:06:51 i'm assuming C is catcher and F is fielder? 12:07:09 F is for Feather. 12:07:49 Feather Fall Potion 12:13:48 -!- oerjan has joined. 12:14:25 @messages 12:14:26 pikhq said 8h 43m 13s ago: 21:28 < DDR> Hey, just wanted to publicly thank Oerjan for cleaning up my ComeFrom page. 12:14:43 @tell DDR you're welcome 12:14:44 Consider it noted. 12:17:01 hello oerjan 12:17:10 oerjan: btw you realise "I think the main reason the featured languages are currently stalled is that he thinks all of the better current suggestions need editing improvement before promotion." is not really true right :P 12:17:28 no, i actually didn't 12:17:32 ok 12:17:34 probably i should reply 12:17:47 hi Arc_Koen 12:17:49 (the real reason is that I would have to write a good blurb, and i am stupendously lazy) 12:17:56 AHA 12:18:16 what if someone else was to write the blurb? 12:18:39 well that could be good 12:18:39 as are we all, except those who have real jobs and therefore cannot find the time. 12:18:50 i am a terrible perfectionist though so i would probably still end up editing it to heck 12:19:01 possibly we should get someone on board just to do featured language stuff 12:19:04 like say oerjan! 12:19:54 -!- Phantom_Hoover has quit (Ping timeout: 240 seconds). 12:26:15 -!- hagb4rd has joined. 12:28:00 Arc_Koen: btw you don't actually need to put
 and 
in the same line as the neighboring content... an initial or final newline will usually be ignored 12:29:16 *a single 12:30:47 -!- Phantom_Hoover has joined. 12:50:38 yes I noticed that 12:51:12 you have no idea how much time I spend testing different formats after I've edited a page and before I hit save changes :( 12:53:13 You could make one featured language page, then tell people their languages can get featured if the pages for those languages are as good as the featured one. 12:53:15 heh 12:53:35 *Arc_Koen: heh 12:54:12 thanks for that ski thing 12:55:16 hey I had an idea for a stack-based language 12:55:23 functional and reversible 12:55:32 how would it work? 12:56:02 so there is one main stack 12:56:05 and functions 12:56:39 functions get a copy of the current stack to operate on, and when they are done, the top element from their stack is pushed on the stack 12:57:05 and loop constructs can only appear in the main function 13:00:20 (but the main function has no ways to pop its stack, since functions can only add items to it) 13:00:20 so basically functions can contain instructions or call other functions, and the main function can only use loop constructs and call other functions 13:00:20 and there's an auxiliary stack where data is pushed to make operations reversible 13:00:20 (for instance if you have an instruction "not" that pops the top item and replaces it with 0 if it was nonzero or 1 if it was 0, then it would also push the original number to the auxiliary stack so that it can be reversed) 13:00:20 and there should be some control flow operators that allow to reverse operations 13:00:21 anyway I'll be back later see you 13:03:19 @tell Arc_Koen that doesn't quite fit my intuition of "reversible" as it seems at best injective and not bijective. btw have you looked at Kayak? 13:03:19 Consider it noted. 13:05:42 -!- function has changed nick to trout. 13:06:11 i find this nick change both fishy and dysfunctional 13:06:49 Good for slappin', tho'. 13:07:40 @slap fizzie 13:07:40 * lambdabot smashes a lamp on fizzie 's head 13:07:59 no, lambdabot, that's the wrong kind of slapping 13:08:35 :P 13:08:41 @slap nortti 13:08:41 * lambdabot locks up nortti in a Monad 13:09:22 a monad of no escape 13:09:48 @unmtl Cont () 13:09:49 Plugin `unmtl' failed with: `Cont ()' is not applied to enough arguments, giving `/\A. (A -> ()) -> ()' 13:09:57 @unmtl Cont () Nortti 13:09:57 (Nortti -> ()) -> () 13:10:16 A monad of solidity. 13:12:57 oerjan: Isn't it cool how when you have ((Q -> Void) -> Void), you know there must be a Q in there somewhere? But you can't get at it. 13:13:02 Excluded middle, man. 13:13:28 yeah 13:14:01 or does it really mean that 13:14:15 Depends what you mean by mean. 13:14:54 oerjan: (It's not quite true; cf. http://r6.ca/blog/20040616T005300Z.html.) 13:15:48 * oerjan swats elliott's final period -----### 13:16:41 * nortti blows up 13:18:21 (The problem is that the Q term (which you must have) can depend on the (Q -> Void) argument it gets.) 13:18:36 (So you don't have a standalone Q argument.) 13:18:50 Er, s/argument/term/. 13:19:07 (You have a (Q -> Void) -> Q term, though, i.e. not Q implies Q, which is exactly what you need to prove... not not Q.) 13:19:14 ah yes any A which is a boolean tautology but not an intuitionistic one satisfies ¬¬A but not A intuitionistically 13:19:40 Still -- when you have ((Q -> Void) -> Void), you know you have (Q -> Void) -> Q, but you can't get at that, either. 13:19:42 So that's a thing, too. 13:19:47 Or -- wait, yes you can. 13:19:54 Plug it into the former, ex falso quodlibet. 13:19:59 OK, ignore me. 13:20:06 But it's still cool, even though I don't know what "it" is any more. 13:20:58 the cool that you can understand is not the true cool 13:30:12 -!- oerjan has quit (Quit: etc. etc. etc.). 14:31:11 -!- Frooxius has joined. 14:43:39 oerjan: yes I have. and how would it not be reversible? 14:43:39 Arc_Koen: You have 1 new message. '/msg lambdabot @messages' to read it. 14:51:52 -!- hagb4rd has quit (Quit: hagb4rd). 14:52:08 he left 14:54:09 elliott: well that's not irreversible! he could just join again 14:55:22 -!- Jafet has quit (Quit: Leaving.). 15:29:11 -!- hagb4rd has joined. 15:33:03 -!- Jafet has joined. 15:54:24 -!- Frooxius_ has joined. 15:56:34 -!- Frooxius has quit (Ping timeout: 260 seconds). 15:56:35 -!- Frooxius_ has changed nick to Frooxius. 16:04:23 -!- Nisstyre-laptop has joined. 16:12:47 -!- elliott has quit (Remote host closed the connection). 16:53:21 -!- zzo38 has joined. 16:59:43 -!- epicmonkey has joined. 17:00:29 -!- barts_ has quit (Read error: Operation timed out). 17:02:49 -!- barts_ has joined. 17:07:07 -!- Phantom__Hoover has joined. 17:09:56 -!- Phantom_Hoover has quit (Ping timeout: 255 seconds). 17:48:11 -!- Bike has joined. 18:37:15 -!- AnotherTest has left. 19:05:56 -!- Taneb has joined. 19:11:47 Do you like this? http://forums.nesdev.com/viewtopic.php?p=101816#p101816 19:14:57 By "fixed jump" you mean you can't move around mid-jump? 19:15:04 BZFlag is like that unless you have the Wings flag 19:15:33 -!- Taneb has quit (Ping timeout: 245 seconds). 19:15:58 No, I mean you cannot change the height. 19:23:20 In some games if you release the jump button you fall down but I don't like that much; I prefer if you push jump you cannot stop it unless hitting the ceiling or reached the maximum jump height. 19:23:50 -!- ais523 has joined. 19:25:44 -!- monqy has joined. 19:30:53 Ah 19:31:46 `quote lisp 19:31:57 574) elliott: GHC bug? Come on, it's the parentheses. The more parentheses you add, the closer it is to LISP, and therefore the more dynamically-typed. \ 771) you tell us you're making a lisp interpreter, but you don't mention its polterchrist is c++ templates? isn't that like telling us you're taking a bath and not mentioning you're bathing in a WORLD FULL OF SNAKES 19:32:39 "polterchrist" :) 19:49:45 :( 19:49:55 I still have no idea whether I'm supposed to evacuate 19:50:28 Is there a fire? 19:50:37 If not, then I think you are not supposed to evacuate. 19:51:35 zzo38, there's a hurricane heading for.. somewhere vaguely in my area, I think 19:52:30 oh no 19:52:39 all the sheep will be blown away :( 19:52:49 lol 19:56:38 It's really not a very agrarian place 19:56:48 It used to be 100 years ago, but isn't now. 19:57:41 yeah i'm gonna get hurricane'd as well 19:57:46 i just stockpiled a bunch of water 19:58:10 how ironic because hurricanes are made of water, am i rite 19:58:33 zzo38: that's right, if you need to evacuate for any other reason, the authorities will come by and set your house on fire so you know 19:58:58 http://www.getty.edu/art/gettyguide/artObjectDetails?artobj=1271 20:00:03 Sgeo: I thought the hurricane was going for boston, but maybe there are multiple hurricanes 20:00:57 olsner, I think the entire east coast is vaguely on alert 20:02:25 Well, not "entire" 20:02:37 olsner, hurricanes are big and also move 20:02:56 Phantom__Hoover: that's just a theory 20:03:07 apparently I'm about 50km from the east coast, should I be on alert too? 20:03:14 i think hurricanes are small and stay in one place and are caused by gay marriage 20:03:15 they're also made of clouds, are you stockpiling clouds? 20:03:18 teach the controversy! 20:03:53 olsner is in america? 20:04:50 Phantom__Hoover: no 20:05:36 i think i'm quite far from the east coast 20:05:42 england is confusting 20:06:52 in england east is on the west 20:08:18 what? 20:08:29 that's why they drive on the left 20:08:48 haven't really noticed before, but in swedish storms are called unweathers 20:09:17 strange 20:13:55 Do you like the other stuff I have written other than the fixed jump? 20:21:55 -!- sirdancealot7 has quit (Ping timeout: 272 seconds). 20:37:13 kmc, where do you live in Americaland btw 20:38:13 cambridge ma 20:38:43 -!- sirdancealot7 has joined. 20:39:50 is there likely to be a water shortage 20:42:53 no 20:53:00 -!- augur has quit (Ping timeout: 268 seconds). 20:59:02 -!- augur has joined. 21:05:03 from django.utils.crypto import constant_time_compare 21:14:30 -!- TeruFSX has quit (Read error: Connection reset by peer). 21:14:58 -!- TeruFSX has joined. 21:17:45 -!- TeruFSX has quit (Remote host closed the connection). 21:18:17 -!- TeruFSX has joined. 21:25:46 http://i1.kym-cdn.com/photos/images/original/000/317/740/011.jpg 21:27:38 -!- epicmonkey has quit (Ping timeout: 245 seconds). 21:28:29 -!- kallisti has quit (Quit: Changing server). 21:41:17 -!- kallisti has joined. 21:45:31 heh 21:45:33 what's the actual story 21:46:48 I tried to think of how to make the rules of Magic: the Gathering cards in Haskell. There would be the way to create/destroy objects given timestamps, object references, some command to used for changeable text (such as (textColor Red) and so on, in some monad), call with overridable rules, static with overridable rules, triggers, wait for user input, etc 21:47:14 for starters that it's too unrelated arcs, other than that I think they're just made of quite sturdy wood 21:47:39 Actually perhaps you also need to specify with the changeable text function, what object is belongs to 21:48:20 kmc: http://www.snopes.com/photos/architecture/nagasaki.asp 21:53:45 the braces inside the wieliczka salt mine are mostly made of wood and are many hundreds of years old 21:54:00 they are preserved by the super saltiness 21:55:10 -!- zzo38 has quit (Remote host closed the connection). 21:56:26 olsner, they also only have to support themselves. 21:56:31 wheeee git commit -am $'foo\n\nbar' 22:34:59 -!- copumpkin has joined. 22:46:10 -!- Phantom__Hoover has quit (Read error: Connection reset by peer). 22:46:26 -!- Phantom__Hoover has joined. 22:54:10 -!- Phantom__Hoover has quit (Read error: Connection reset by peer). 22:54:26 -!- Phantom__Hoover has joined. 23:20:32 -!- Vorpal has quit (Ping timeout: 246 seconds). 23:49:09 the laptop i want is now available on lenovo's australia site, but not the US site 23:49:17 of course everything is 40% more expensive on the australia site 23:50:04 What do you want? 23:50:13 The X carbon thing with i7 and 8GB RAM? 23:50:22 yes 23:50:47 AU$ 2,299 :X 23:50:53 Demand that they put it on the US website! 23:51:00 that's almost 2400 in real dollars 23:51:34 Hmm? It's over 4800 reals. 23:51:42 i knew you were going to say that 23:51:56 why is everything 40% more expensive in .au 23:52:01 cerqvpgnoyrchaf 23:52:11 it's not enough that it's way too fucking hot and all the plants and animals are trying to kill you? 23:52:23 -!- Phantom_Hoover has joined. 23:52:34 cerqvpgwhat? 23:52:42 crna gora? 23:52:55 ? 23:53:53 kmc: which lenovo? 23:54:48 kmc: Do you know that if you have any polynomial with nonnegative integer coëfficients, and you give me its value at one positive integer point, I can ask for its value at one other point and tell you the polynomial? 23:55:06 in related news, quantal's version of grub *might* be able to boot my system, how do I figure out whether it actually can without hosing my existing and working grub? 23:55:19 -!- Phantom__Hoover has quit (Ping timeout: 252 seconds). 23:56:38 olsner: ? 23:56:54 shachaf: hax 23:57:02 i seem to remember hearing that but i don't know how it works 23:57:31 It's very simple. 23:57:36 kmc: was wondering which model "the X carbon thing" was exactly