00:03:57 -!- hjulle has quit (Ping timeout: 265 seconds). 00:11:28 -!- zzo38 has quit (Remote host closed the connection). 00:18:46 ais523: Well, I can now answer "it's non-zero". 00:19:30 huh, I didn't realise C99 allowed non-prototype declarations 00:20:03 As does C11. 00:20:32 C11 didn't change syntax much 00:20:35 -!- ZombieAlive has quit (Remote host closed the connection). 00:20:36 *nod* 00:20:52 C11 was *mostly* an addition to the libraries. 00:27:05 Which interestingly means that it's not especially hard to port at least *some* old K&R C to C11. 00:32:13 I was not actually expecting it to be as easy to write moderately universal C as it is. 00:32:26 Ends up being a bit weird, but still. 00:33:01 (and limited in functionality if you want to support certain spectacularly low-quality environments. :)) 00:39:50 -!- daniel_13 has joined. 00:39:54 K&R function declarations are mentioned an "obsolescent feature" both in C99 and C11. 00:40:02 Maybe next century they'll actually drop the support. 00:40:12 Does K&R C have function declarations? 00:40:21 What is the syntax? 00:41:04 return_type function(); for a non-definition declaration, and return_type function(a, b, c) type a; type c; { ... } for a declaration that is also a definition. 00:41:16 With implicit ints allowed for the return type and the parameter types. 00:41:20 K&R C has function *declarations*, but not prototypes. 00:41:22 OK. So there's no way to specify anything other than the return type. 00:41:27 Yep. 00:41:44 And in ISO C you're permitted to use such a declaration, but not required. 00:41:45 they should change that twh 00:42:05 C99 does not allow implicit int. 00:42:30 -!- daniel_13 has left. 00:45:28 At least it still lets you do int f(x, y, z, w, a, b, c) int x, y, z, w, a, b, c; { ... } saving you from repeatedly typing the 'int'. 00:45:35 Clearly the K&R style is superior. 00:45:56 The K&R style makes a lot of sense. 00:46:39 int (*f)(); means that (*f)() is an int. So it makes sense that "int f(x)" means that f(x) is an int. 00:47:11 But then you specify "int f(x) char x; { ... }" -- f(x) is an int only for char x. 00:47:30 int f(char x) makes no sense, though. char x isn't even an expression. 00:50:52 -!- a2 has joined. 00:51:05 -!- a2 has changed nick to CADD. 00:51:34 -!- CADD has changed nick to Guest89181. 00:55:35 -!- Guest89181 has quit (Ping timeout: 264 seconds). 01:26:25 -!- aretecode has quit (Read error: Connection reset by peer). 01:28:28 -!- aretecode has joined. 01:35:18 -!- PinealGlandOptic has quit (Ping timeout: 240 seconds). 01:42:21 -!- callforjudgement has joined. 01:42:44 -!- ais523 has quit (Disconnected by services). 01:42:46 -!- callforjudgement has changed nick to ais523. 01:52:20 -!- ais523 has quit (Read error: Connection reset by peer). 01:52:25 -!- callforjudgement has joined. 01:52:42 -!- callforjudgement has changed nick to ais523. 02:13:57 -!- ais523 has quit. 02:14:12 -!- ais523 has joined. 02:14:42 int f((char)x)? 02:15:02 -!- Phantom_Hoover has quit (Read error: Connection reset by peer). 02:31:56 -!- teakey has joined. 02:33:11 -!- Left_Hand_6969 has joined. 02:34:41 -!- Left_Hand_6969 has changed nick to Theophrastus_Bom. 02:35:47 -!- ais523 has quit (Read error: Connection reset by peer). 02:35:55 -!- ais523 has joined. 02:36:20 -!- lleu has quit (Ping timeout: 272 seconds). 02:36:27 -!- Theophrastus_Bom has changed nick to Empedoclean. 02:36:58 -!- Empedoclean has left. 02:38:07 -!- heroux has quit (Ping timeout: 256 seconds). 02:42:25 -!- teakey_ has joined. 02:44:36 -!- teakey has quit (Ping timeout: 245 seconds). 02:44:43 -!- teakey_ has changed nick to teakey. 02:49:35 -!- augur has quit (Ping timeout: 255 seconds). 02:52:32 -!- ais523 has quit (Read error: Connection reset by peer). 02:52:42 -!- ais523 has joined. 02:54:23 -!- ais523 has quit (Remote host closed the connection). 02:54:30 -!- ais523 has joined. 02:57:51 -!- augur has joined. 03:17:13 -!- aretecode has quit (Read error: Connection reset by peer). 03:17:47 -!- FreeFull has quit (Ping timeout: 264 seconds). 03:18:00 -!- FreeFull has joined. 03:18:01 -!- FreeFull has quit (Changing host). 03:18:01 -!- FreeFull has joined. 03:19:17 -!- aretecode has joined. 03:20:50 -!- doesthiswork has joined. 03:40:14 -!- ais523 has quit (Read error: Connection reset by peer). 03:40:17 -!- callforjudgement has joined. 03:40:23 -!- callforjudgement has changed nick to ais523. 03:46:07 -!- ais523 has quit (Read error: Connection reset by peer). 03:46:15 -!- ais523 has joined. 03:49:11 :t forever 03:49:12 Monad m => m a -> m b 03:51:03 helloefjan 03:51:07 meh 03:52:30 hijan 03:52:50 shichif 03:56:41 oerjan: forever is the monad version of an infinite loop? 03:56:48 (I figured that out based on the type) 03:57:17 (and the name) 03:59:44 yes 04:00:04 i was checking if they'd updated it to Applicative instead of Monad 04:01:20 wouldn't being a monoid be sufficient (or, well, you don't even need an identity, just associativity)? or is that a different operatoin? 04:01:23 *operation 04:02:10 you could make a monoid forever, but it wouldn't have a compatible type 04:03:11 and for those monadic values that are also monoids, it's not necessary the same operation 04:03:19 *ily 04:03:28 e.g. it's not the same for list 04:03:32 *lists 04:04:54 oerjan: did you see the thing where Applicatives are monoids in the category of endofunctors 04:05:27 i haven't looked at that yet, although edwardk keeps throwing the word day convolution around 04:05:36 (with Day convolution as your monoidal product hth) 04:05:48 day convolution is great 04:06:01 it's p. much like regular convolution 04:06:51 O KAY 04:07:15 Day f g a = exists x y. (f x, g y, x -> y -> a) hth 04:07:18 so what product do you use to make Functors monoids in the category of endofunctors 04:07:36 `? monad 04:07:37 Monads are just monoids in the category of endofunctors. 04:07:56 you can get Alternative in two different ways 04:08:02 the problem here is that the category of endofunctors is really general 04:08:14 Well, "the category of endofunctors" is underspecified. 04:08:22 Since it's a monoidal category. 04:08:44 "monoidal category" normally implies it has some /specific/ monoid 04:09:31 Does it? 04:09:42 It's a useful concept independently of talking about monoid objects, I think. 04:09:45 shachaf: so can you get every subtype of optics this way 04:10:07 oerjan: can you get any subtype of optics this way twh 04:10:31 well i mean, Applicative <-> Traversal. 04:11:05 Functor <-> Lens 04:11:12 oh darn, profunctors 04:11:43 please note that i'm not actually engaging my brain here 04:12:05 shachaf: oh, the definition I know is that a monoidal category has some operation \otimes on both objects and arrows that is associative, and has an identity object I (and identity arrow id_I), and some coherence rules 04:12:21 Yes, that's the one. 04:12:33 admittedly, sometimes we come across categories that are monoidal two different ways 04:12:47 but normally you assume there's a specific \otimes that you can talk about 04:12:57 The category of endofunctors is monoidal in at least five different ways. 04:13:07 obviously there is a category of ways a category is monoidal hth 04:13:43 Anyway, when people say "monoid" in this context they usually mean a monoid object in a monoidal category. 04:14:30 I.e. some specific object X along with arrows : X ⊗ X -> X and : I -> X 04:14:57 right, the concept of monoid objects sort-of passed me by because it isn't something I'm used to having in my categories 04:15:01 (In Set, when you make it a monoidal category using cartesian product, you get the usual notion of a monoid.) 04:16:07 Set has an arrow X → X × X, doesn't it? (where × is cartesian product) 04:16:21 or have I got that backwards? 04:16:29 I'm trying to remember what a cartesian category is 04:16:49 (the main theme in my research being categories where you can't do that) 04:17:00 Are you thinking of comonoids here? 04:17:20 no 04:17:23 or, well, possibly 04:17:35 I'm thinking of the normal model for contraction 04:17:49 in programming languages 04:18:03 (where contraction is something like \x -> x + x, i.e. a lambda that uses its argument twice or more) 04:18:28 Right. Set isn't a good category to talk about those things in. 04:18:56 A comonoid is an object X along with arrows : X -> X ⊗ X and X -> I satisfying the dual laws to the monoid laws. 04:19:16 In Set (or Hask) every object is a comonoid in exactly one boring way. 04:19:30 But e.g. in linear logic it corresponds to objects that you can duplicate and delete. 04:20:05 ah right, yes 04:20:12 I'm thinking of substructural categories 04:20:19 where you might or might not have each of those two rules independently 04:20:36 in particular, I normally use affine categories, where you can delete but not duplicate 04:20:52 Sure, you can talk about cosemigroups and -- copointed sets, I guess? 04:21:26 If you want a puzzle about comonoids, you can solve http://thue.stanford.edu/puzzle.html 04:21:30 a pointed set is a set that has one specific element that you can identify 04:21:48 so what's a copointed set? a set that has an element from which you can identify any of the others? 04:21:49 I think "copointed set" is probably a bad name. 04:22:13 I was just dualizing "point : I -> X" 04:23:24 do you know about the concept of initial and terminal objects? 04:23:50 in my case, there isn't just a copoint operator, I is actually terminal 04:23:56 i.e. there's exactly one way to delete each object 04:24:11 Sounds reasonable. 04:24:24 The trouble with "pointed set" is that it's so lawless. 04:24:35 But you can do better here. 04:24:56 anyway these are some of the most basic concepts in category theory, they come up all the time 04:25:15 Yes. 04:25:17 (a category has at most one of each, incidentally, that's pretty easy to prove) 04:25:42 Yes, I've come across initial and terminal objects before. :-) 04:26:03 oh right, I see 04:26:07 pointing a set is different from this 04:26:19 because we're picking out one particular arrow and saying "you can use this to find one particular object" 04:26:30 which… from a category-theoretic point of view, doesn't gain you anything 04:26:42 because now you have to identify one arrow rather than one object 04:26:56 (and a copointed set would be one in which you can delete one particular object, which doesn't seem so useful) 04:27:22 By object do you mean element here? 04:28:05 err, sorry, was mixing sets and categories 04:28:15 Why would a copointed set be one in which you can delete one particular element? It gives you an arrow : X -> I 04:28:31 Anyway I don't think "copointed" is the right notion, it's just the first thing that came to mind. 04:28:46 I'm trying to figure out what X → I is, categorically 04:29:02 in Set, it's a function which takes elements of a particular type and discards them 04:29:54 actually, ignoring the return value of a function is very hard in Verity if you still want its side effects 04:30:11 you have to assign it to a variable in order to force it, otherwise it doesn't get evaluated at all because call-by-name 04:30:18 If your arrows have side effects you're getting pretty far from any of this. 04:30:30 Anyway I don't quite know what the question is, but I'm sure Chu spaces are the answer. 04:31:09 our arrows contain information about their side effects 04:31:42 or basically, we're creating an Algol variant with a somewhat ML-like attitude 04:31:55 so you can think of everything as being in the same big monad 04:33:31 The other day someone was talking about how instead of talking about "network partitions", people should talk about delayed, dropped, and duplicated packets. 04:33:39 It reminded me of substructural logic. 04:34:30 "delayed" isn't one of the normal substructural logic operations 04:34:40 Well, reordered. 04:35:19 https://en.wikipedia.org/wiki/Substructural_type_system talks about affine, relevant, and ordered type systems. 04:37:49 oh, discarding /exchange/? 04:38:06 gah, this is going to make my future discussions with nominal set theorists awkward 04:39:26 -!- oerjan has quit (Quit: Brain saving mode engaged). 04:40:33 -!- GeekDude has quit (Quit: {{{}}{{{}}{{}}}{{}}} (www.adiirc.com)). 04:40:36 that said, it doesn't interfere with the part of the Campaign for Strict Associators that I didn't remove from the manifesto as being too controversial 04:42:24 (the Campaign, stated succintly: I believe that the categories that people use to model programming languages should be those in which (A⊗B)⊗C and A⊗(B⊗C) are not merely isomorphic, but equal) 04:45:47 i,i a strict 2-category with one object 04:46:01 Which categories, for instance? 04:46:46 denotational semantics; for example, I use game semantics a bunch, and one thing you have to do there is implement a disjoint union on move names so that you can tell moves apart 04:46:54 if you use inl/inr, then your associators aren't strict 04:47:04 but if you number the moves and adjust numbers to keep sequence, then they are 04:47:41 (e.g. (q+q)+q can become q_ll, q_lr, q_r with the first method, or q_1, q_2, q_3 with the second) 04:48:17 But then you have this global numbering. 04:48:58 it's not global 04:49:10 I suppose that instead of numbering you could use a different sort of normalization. 04:49:11 + basically takes the largest number on the LHS, and adds it to every number on the RHS 04:49:37 i.e. q_1,q_2 + q_1 gives you q_1,q_2,q_3; so does q_1 + q_1,q_2 04:49:48 -!- bb010g has quit (Quit: Connection closed for inactivity). 04:51:15 this actually extends all the way into the variable names we use in our output code, it's not just a theoretical point 05:11:00 -!- password2 has joined. 05:12:17 -!- Frooxius has joined. 05:13:13 -!- Froox has joined. 05:14:01 -!- Froo has joined. 05:16:17 -!- bb010g has joined. 05:16:47 -!- Frooxius has quit (Ping timeout: 256 seconds). 05:17:55 -!- Froox has quit (Ping timeout: 256 seconds). 05:24:12 -!- heroux has joined. 05:31:55 -!- impomatic has quit (Ping timeout: 240 seconds). 05:52:49 -!- password2 has quit (Remote host closed the connection). 06:07:09 -!- aretecode has quit (Read error: Connection reset by peer). 06:09:17 -!- aretecode has joined. 06:15:14 -!- aretecode has quit (Max SendQ exceeded). 06:18:15 -!- aretecode has joined. 06:41:33 -!- doesthiswork has quit (Quit: Leaving.). 06:56:05 -!- iamevn_ has quit (Quit: Leaving). 07:24:42 -!- AnotherTest has joined. 07:34:44 fungot: fnord 07:34:45 mroman: madam president, i would like to voice my criticism of the united kingdom, is that, if it arose, to be placed on lightening administrative burdens and costs in these member states so there is the need to legislate in this area near naples? there you are, you say you prefer natural families to homosexual partnerships, you risk being condemned once again, taking a snapshot of reality. the testimony of those north koreans 07:35:07 fungot: what north koreans? 07:35:07 mroman: fnord president, amending budget 4, the commission has followed up investigations launched by the institutions. all the same, undoubtedly lose some of their employment policies. 07:44:46 You know, translating code from Haskell to C++ makes me really miss the list monad 07:45:14 I keep going if {for {if {for {if {for {if... 07:45:23 (with actual conditions and stuff) 07:52:55 -!- zadock has joined. 08:07:11 surely the if () is a Maybe, not a List? 08:07:48 ais523, the fors make it a list with guards 08:08:03 I'm translating code that used the list monad quite heavily 08:09:01 I'm going to write ugly code. 08:09:48 -!- bb010g has quit (Quit: Connection closed for inactivity). 08:10:04 -!- Froox has joined. 08:10:54 nvd: hmm, why isn't there a "mixed Maybe and List" monad-like thing 08:11:05 a polymorphic >>= that lets you connect a List with a Maybe to get a List 08:11:19 :t maybeToList 08:11:20 Maybe a -> [a] 08:11:40 I think you can use that 08:12:04 -!- Frooxius has joined. 08:13:35 -!- Froo has quit (Ping timeout: 256 seconds). 08:13:36 yes, I assumed it'd be something like that 08:13:53 the type theorist in me is disappointed that the resulting [a] can only have 0 or 1 elements 08:13:59 -!- Froo has joined. 08:14:06 but at this rate I'll end up inventing Agda :-( 08:14:09 -!- AnotherTest has quit (Ping timeout: 276 seconds). 08:14:40 -!- Froox has quit (Ping timeout: 264 seconds). 08:16:28 -!- Frooxius has quit (Ping timeout: 252 seconds). 08:22:35 -!- teakey has quit (Quit: Leaving). 08:23:41 -!- solid_whiskey has joined. 08:26:02 nvd: you could do if (...) break; instead 08:26:09 for guard (not ...) 08:26:30 elliott, it'd have to be continue rather than break, I think 08:26:41 er, yes 08:26:55 But yes, I could 08:32:25 -!- Patashu has joined. 08:32:38 I'm not personally a huge fan of that pattern 08:34:26 I tend to use continue for guards 08:34:35 especially in Perl, where it's called "next" instead 08:35:18 I use next for those in perl, but I almost never use continue in C or C++ 08:35:32 and very rarely use break in loops (but use it in switches of course) 08:35:48 apparently I have very difficult programming style in C++ and perl 08:36:12 same for most people 08:36:20 well, who know both C and Perl 08:36:30 yes... most people here don't do perl 08:36:46 here, let me find an example 08:37:39 https://gitorious.org/intercal/intercal/source/ef74805b817199fefde98ed61bb024683b4fbae0:src/clc-cset.c#L245 08:48:49 Pretty. 08:50:00 ais523: oh, but that uses return, not continue or goto 08:50:04 I decided to sprinkle Perl idioms throughout that code because CLC-INTERCAL is written in IACC which is written in itself, but its bytecode interpreter is written in Perl 08:50:14 it looks a lot uglier in C, though 08:56:58 nvd: if you don't like that pattern, why did you use it in the haskell? 08:57:12 elliott, it looks nicer in Haskell 08:57:17 fair enough :p 08:57:35 ais523: i'm so glad gitorious is shutting down 08:58:11 the alternatives are even worse :-( 08:58:45 that's not true, none of the alternatives give up on displaying medium-sized commits and say they're too big to display 08:59:00 even traditional gitweb is like ten billion times better 09:16:36 -!- Vorpal has quit (Ping timeout: 252 seconds). 09:19:17 -!- Vorpal has joined. 09:58:36 -!- ais523 has quit (Read error: Connection reset by peer). 09:58:52 -!- ais523 has joined. 10:03:02 nvd: Did you know that translating from Haskell to C++ is a sin? 10:03:18 mroman, yes 10:03:40 It's like taking a picture of a good old oil painting 10:03:46 then apply some instagram filters to it 10:04:47 and then make a screenshot of it 10:04:50 put it into a word 10:04:53 open explorer 10:04:59 use the word-doc preview 10:05:02 take a screenshot of it 10:05:09 and upload it on imgur for likes 10:05:19 Oh, I am fully in agreement 10:05:40 mroman: this is missing a wooden table 10:05:51 mroman: no, you have to photograph the screen showing the word document with a mobile phone too, and maybe add a black and white printer to it 10:10:00 What programming languages can be transmitted with international morse code 10:10:48 Piet 10:11:05 that is not what I'd have said 10:11:15 C probably can be, given trigraphs/digraphs 10:11:33 there's no {} or [] 10:11:42 but there are parantheses 10:12:06 s/ant/ent/ 10:12:16 {} and [] are trigraphable I think 10:12:20 mroman, C can accept ??< and ??> for {} and ??( and ??) for [] 10:12:49 there's no <> in ITU morsecode 10:13:45 OK, so C would need symbol substitutions 10:13:53 you could likewise do substituted INTERCAL 10:13:58 or probably nonsubstituted COBOL 10:14:04 substitution is cheating 10:14:05 :) 10:14:37 BASIC dialects probably work 10:14:42 LISP dialects too 10:14:43 qbasic 10:15:08 -!- solid_whiskey has quit (Remote host closed the connection). 10:15:08 Translating Haskell programs to C++ is like replacing a crystal chandelier with a kerosene heater, it does the job ten times faster except it will sometimes explode. 10:15:32 letters have no case 10:15:38 Jafet, the explosions give me something fun to do 10:15:42 mroman, FORTRAN, maybe? 10:15:42 if haskell is correct, then the translated C++ program should also be correct, no? 10:15:43 a kerosene heater seems like it has a rather different job from a crystal chandelier 10:15:45 so case-insensitive languages are probably more suited for transmission through morse code 10:15:47 you wouldn't hang it from a ceiling 10:15:59 scoofy, not if the translation is manual and imperfect 10:16:00 scoofy: only if the translation is correct 10:16:32 ais523: yes 10:16:47 so if you have a good translator, it won't blow up 10:17:32 scoofy, unfortunately, the translator is me 10:17:41 -!- solid_whiskey has joined. 10:17:58 well, if it's being translated by a translator of doom 10:18:03 explosions seemed likely 10:18:10 (I wanted to allcaps it but that would throw off the keming) 10:18:18 :P 10:18:18 then it will blow up 10:18:32 scoofy, I'm dealing with the blowing up now 10:19:02 why not C ? 10:19:38 scoofy, I wanted to use certain features of the C++ standard library 10:19:43 Such as bitsets and vectors 10:19:47 Which would be harder in C 10:29:50 -!- boily has joined. 10:34:39 C's most prominent feature is the lack of features. 10:35:00 that's an important feature. 10:35:47 -!- solid_whiskey has quit (Quit: Leaving). 10:37:16 It certainly can be. 10:39:06 -!- solid_whiskey has joined. 10:49:51 -!- AnotherTest has joined. 11:21:05 C is lacking in features compared to languages implemented in C 11:22:40 -!- hjulle has joined. 11:23:22 C is taoist. it has all the features by not having them. 11:23:34 -!- boily has quit (Quit: RESOLUTIVE CHICKEN). 11:24:15 C is just a syntactic extension of B 11:27:01 speaking of B 11:27:26 I should find a language reference for B 11:27:37 seeing as links to bell-labs all result in "Object Not Found" 11:28:28 -!- callforjudgement has joined. 11:28:30 mroman: the book I learned compilers from has examples in BCPL 11:28:34 -!- ais523 has quit (Disconnected by services). 11:28:36 -!- callforjudgement has changed nick to ais523. 11:28:54 the main interesting features of BCPL is that everything is a pointer-sized int, types don't exist 11:29:02 this probably explains implicit int in C 11:32:14 It's astonishing how fnord many programming languages are out there 11:32:53 (BCPL is the direct ancestor of B) 11:33:00 parent, I guess 11:33:04 Mesa, Euclid, Turing, Sp/K, CMS-2, JOVIAL .... 11:33:16 SYMPL 11:33:24 mroman: anyway, just look at all the BF derivatives we have 11:33:34 http://99-bottles-of-beer.net/language-sympl-1167.html 11:33:35 then think how much real language designers must outnumber esolang designers 11:35:33 Don't forget the languages that evolve by themselves 11:35:39 Snowflake? 11:35:39 -!- lleu has joined. 11:35:49 I think pretty much every other language requires at least some human input 11:35:55 and even Snowflake has to observe the programs it's running 11:40:40 Most of the newest featurs of C came from compiler-specific extensions and such, I think that's what he meant 11:42:23 like for example, the inline keyword 11:42:32 -!- AnotherTest has quit (Ping timeout: 252 seconds). 11:44:00 inline wasn't really compiler-speciifc 11:44:00 and people using C++ compilers on C code led to introducing // as a standard comment type 11:44:03 most of them supported it 11:44:17 http://codepad.org/BS1nkUTx 11:44:22 luckily I have a BF derivative generator 11:44:29 true, in slightly different ways 11:44:52 which produces prefix-free strings of course 11:44:54 mroman: oh no... 11:45:01 mroman: that's a kitty-killer 11:45:31 oh argh 11:46:28 in the morning, I was thinking on the bus about whether there's a cpu architecture where the instruction pointer normally goes backwards, that is, after executing an instruction, the next instruction is usually the one adjacent to it on a lower address. 11:46:42 now I realized this is also a kitty-killer because you can get a bf-derivative from it. 11:47:09 http://codepad.org/jLZdvBSv 11:47:21 now all I need to do is add a wiki bot to create wiki pages 11:47:40 though the esolang wiki doesn't seem to list a kcufniarb language 11:47:50 hmm... would the meaning of brakcets be reversed in that? 11:48:13 * orin wats mroman ーー蟲蟲 11:48:21 and how about the meaning of less than and greater than? 11:50:02 b_jonas: it's been done, probably multiple times 11:50:05 mroman: change it so it also generates a page title you can use on the wiki when the name of the language isn't valid as a page title 11:50:08 just different names 11:50:28 mroman: in particular, that one you pasted has a # sign, which is invalid in a page title 11:51:14 mroman: make sure the title doesn't have any of # < > [ ] | { } 11:51:24 So C11 can be said to be the result of agglomerating the changes made in differnet dialects of C 11:51:36 no wait there's more 11:51:55 I could just use a-zA-Z obviously 11:51:57 -!- ais523 has quit. 11:52:05 -!- ais523 has joined. 11:52:24 mroman: make sure the title doesn't have any ascii control character nor any of # & : / < > [ ] | { } 11:52:38 no, still no good 11:52:47 mroman: make sure the title doesn't have any ascii control character nor any of # & : % ~ / < > [ ] | { } 11:52:51 and is at most 255 byte long 11:53:01 no, 11:53:01 um 11:53:04 argh 11:53:12 yeah, a-zA-Z is safe 11:53:21 https://www.mediawiki.org/wiki/Manual:Page_title tells the details, it's complicated 11:53:22 http://codepad.org/HVZEzvVI 11:53:24 ^- there you go 11:53:44 mroman: um, you can still use those in instructions, just not the page title 11:54:27 yeah but this way it's morse friendlier 11:54:30 let me just use a-z 11:54:31 ok 11:56:21 [wiki] [[Btjzxgquartfrqifjlv]] N http://esolangs.org/w/index.php?oldid=42832 * 160.85.232.227 * (+366) Created page with "'''btjzxgquartfrqifjlv''' is a brainfuck derivative. It has the same instructions but...
   Replace [ with btj   Replace ] with zxg   Replace + with qua   Replace - with ..."
11:56:36  Oops.
11:57:25  mroman: needs a category
11:57:34  oerjan will fix that
11:57:44  he likes to do these kind of things.
11:57:57  [wiki] [[Btjzxgquartfrqifjlv]]  http://esolangs.org/w/index.php?diff=42833&oldid=42832 * B jonas * (+36) 
11:57:59  actually
11:58:01  I will
11:58:40  Incidentally, there is a subset of brainfuck that is valid morse code
11:59:00  without []?
11:59:05  and <>?
11:59:21  mroman: no, just . and -
11:59:37  oh
11:59:52  right
12:00:08  mroman: if it's a modulo 256 bf interpreter, you can even output anything with it
12:00:15  yeah
12:01:00  it seems the api is enabled on the esowiki, good: http://esolangs.org/w/api.php?action=query&prop=info&meta=siteinfo&format=xmlfm&siprop=general|namespaces|namespacealiases|interwikimap|specialpagealiases|magicwords
12:01:07  makes it easy to do automatic queries and edits
12:01:19  like that one
12:05:26  b_jonas: modulo 256 where the sign is equal to that of the modulus
12:05:32  which
12:05:41  unlike Java :D
12:06:17  mroman: yeah yeah, mathematician's remainder, not C/C++/cpu modulo
12:06:42  (nor any of the two crazy variants scheme r5rs includes INSTEAD OF any of these two sane ones)
12:07:03  (that always bugs me... how did they come up with that?)
12:08:01 -!- AnotherTest has joined.
12:12:43  why?
12:12:47  what variants does r5rs have?
12:13:50  mroman: one that gives the remainder with the lowest absolute value, and one that behaves different from one of the two sane variants for negative divisors
12:14:04  I don't quite recall the exact details
12:18:57 -!- solid_whiskey has quit (Ping timeout: 256 seconds).
12:24:07  "Beside zsh, this is the only golfed program. Burlesque is quite awesome, it has a very large range of different functions, like ro. Sadly there's nothing like the Python [::a] slicing operator. "
12:24:11  what
12:24:19  I'd be damned if Burlesque wouldn't have that
12:24:27  I'm pretty certain there's an EveryNth built-in
12:26:39 -!- PinealGlandOptic has joined.
12:28:59 -!- Patashu has quit (Ping timeout: 256 seconds).
12:30:09  `quote Burlesque
12:30:10  1221)  piece of cake doing this stuff in Burlesque :P [19 lines later]  I hate Burlesque :(
12:31:21 -!- solid_whiskey has joined.
12:37:44 -!- bunbunbot has joined.
12:37:50  ^\blsq 7mo10.+
12:37:50   {7 14 21 28 35 42 49 56 63 70}
12:37:55  ^\blsq 7mo10.+?iBS
12:37:55   8 15 22 29 36 43 50 57 64 71
12:38:01 -!- callforjudgement has joined.
12:38:29 -!- ais523 has quit (Disconnected by services).
12:38:36 -!- callforjudgement has changed nick to ais523.
12:42:14  There should be a version of morse code for vikings.
12:42:22  A norse morse code.
12:45:20  You mean norse code?
12:57:55 -!- doesthiswork has joined.
13:01:02  @def type a $ b = a b
13:01:03   Defined.
13:01:23  > Nothing :: Maybe $ Int -> Int
13:01:25       Couldn't match expected type ‘Maybe $ Int -> Int’
13:01:25                   with actual type ‘Maybe a0’
13:01:25       In the expression: Nothing :: Maybe $ Int -> Int
13:02:12  > const Nothing :: Int -> Maybe $ Int
13:02:14    Maybe Int>
13:03:14  Looks like (->) has a lower precedence than ($)?
13:14:50  haskell has precedence?
13:16:11  @info (+)
13:16:11  (+)
13:16:29  Hm.
13:18:22  orin: In case that was an honest question, yes, it does. One assigns it with fixity declarations.
13:18:43  @ 2 + 3 * 5
13:18:58  > 2 + 3 * 5
13:18:59   17
13:19:41  if internet memes are accurate, most people would actually expect 25
13:29:49  > 1 | 3
13:29:51   :1:3: parse error on input ‘|’
13:29:57  > 1 ^ 3
13:29:59   1
13:30:06  > 3 ^ 5
13:30:08   243
13:30:18  ????
13:30:40  > 0x10
13:30:42   16
13:30:42 -!- `^_^v has joined.
13:30:47  orin: probably because for humans it's actually more convenient to do arithmetic "in-order"
13:30:49  fungot: ????
13:30:50  Jafet: i will vote or i will come to the conclusion that parliament and the commission is entitled to safe products and sound information. clear danger maps, which identify the special risks to residents, constitute a negative factor on economic growth in europe, therefore to have more time to apply the parliamentary method, which dates back to the beginning of a gradual abolition of overtime, on the eve of the introduction of 
13:31:03  rather than perform a look-ahead for operators with higher precedence
13:31:09  > 0xf7 & 0x7f 
13:31:11       Could not deduce (Num a0)
13:31:11       from the context (Num a, Num (a -> b))
13:31:11         bound by the inferred type for ‘e_10707’:
13:31:16  ARGH
13:31:43  > 5 ^ 2 
13:31:45   25
13:31:48  OH
13:32:14  > 25 ^ 0.5
13:32:16       Could not deduce (Integral b0) arising from a use of ‘^’
13:32:16       from the context (Num a)
13:32:16         bound by the inferred type of it :: Num a => a at Top level
13:32:21  QWHAT
13:32:56  > 0x7f & (.&.) 0xf7 & (`showHex` "")
13:32:58   "77"
13:33:44  25.0 ^ 0.5
13:33:54  > 25.0 ^ 0.5
13:33:56       Could not deduce (Integral b0) arising from a use of ‘^’
13:33:56       from the context (Fractional a)
13:33:56         bound by the inferred type of it :: Fractional a => a at Top level
13:34:13  But. But it worked for 2
13:35:10  mroman: one language natural they use how wonders then
13:35:33 -!- `^_^v has quit (Read error: No route to host).
13:35:40 -!- nycs has joined.
13:35:54 -!- AnotherTest has quit (Ping timeout: 276 seconds).
13:36:47  Ok srsly
13:36:49 -!- augur has quit (Quit: Leaving...).
13:36:56  > 5 ^ 2
13:36:57   25
13:37:08  > 5 * 3.0
13:37:10   15.0
13:37:15  > 5 ^ 2.0
13:37:17       Could not deduce (Integral b0) arising from a use of ‘^’
13:37:17       from the context (Num a)
13:37:17         bound by the inferred type of it :: Num a => a at Top level
13:37:24  > 25 ** (1/2)
13:37:26   5.0
13:37:45  There are two different exponent operators?
13:37:52 -!- Sprocklem has quit (Ping timeout: 265 seconds).
13:37:55  Whyyyyy
13:38:13  thye could have iuse ^ for xor then
13:38:28  orin: three
13:38:30 -!- AnotherTest has joined.
13:38:37  b_jonas: wut
13:38:37  orin: (^) and (**) and (^^)
13:38:46  dude what
13:38:50  @type (^)
13:38:51  (Integral b, Num a) => a -> b -> a
13:38:52  @type (^^)
13:38:53  (Fractional a, Integral b) => a -> b -> a
13:38:54  @type (**)
13:38:56  Floating a => a -> a -> a
13:39:08  xor is just zipWith (/=), what's the problem?
13:40:26  ^ why do they need three
13:40:30  zipWith works on ints?
13:40:45  the last one covers all reals anyay
13:40:46  orin: different types
13:40:54  Jafet: no way
13:40:57  > xor []
13:40:58       No instance for (Typeable t0)
13:40:58         arising from a use of ‘show_M374984897116395339918141’
13:40:58       In the expression:
13:41:08  > xor ([]::[Bool])
13:41:10       No instance for (Bits [Bool]) arising from a use of ‘xor’
13:41:10       In the expression: xor ([] :: [Bool])
13:41:24  > xor True True
13:41:26   False
13:41:32  Jafet: no it's not
13:42:01  xor 3 1
13:42:06  > xor 3 1
13:42:08   2
13:42:18  hey that works
13:42:18  @instances Bits
13:42:21  Bool, Int, Int16, Int32, Int64, Int8, Integer, Word, Word16, Word32, Word64, Word8
13:42:44  Huh, where does that instance come from
13:43:25 -!- nycs has changed nick to `^_^v.
13:44:10  > xor 2.0 -1
13:44:11       No instance for (Typeable a0)
13:44:12         arising from a use of ‘show_M465181737757271416918296’
13:44:12       In the expression:
13:44:26 -!- augur has joined.
13:45:45 -!- AnotherTest has quit (Ping timeout: 272 seconds).
13:45:46  > xor 3.4 0x8000000000000000
13:45:47       No instance for (Show a0)
13:45:48         arising from a use of ‘show_M788904274569950582318343’
13:45:48       The type variable ‘a0’ is ambiguous
13:46:11  whaaat so I can't flip the sign bit? boooo
13:46:32  orin: thats definitely not what it says
13:46:42  :t xor
13:46:43  Bits a => a -> a -> a
13:46:51  > negate 3.4
13:46:53   -3.4
13:47:13  > shl 3.4 24
13:47:14   Not in scope: ‘shl’
13:47:21  :t xor 2 3 :: Int
13:47:22  Int
13:47:27  > xor 2 3
13:47:29   1
13:47:54 -!- hjulle has quit (Ping timeout: 246 seconds).
13:48:05  @type shr
13:48:06      Not in scope: ‘shr’
13:48:06      Perhaps you meant one of these:
13:48:06        data constructor ‘Chr’ (imported from Text.PrettyPrint.HughesPJ),
13:48:10  @type shiftRight
13:48:11  Not in scope: ‘shiftRight’
13:48:14  :t 3.4 80 :: CFloat
13:48:15      Not in scope: type constructor or class ‘CFloat’
13:48:15      Perhaps you meant ‘Float’ (imported from Prelude)
13:48:15  @type rightShift
13:48:17  Not in scope: ‘rightShift’
13:48:18  hu
13:48:19  :t 3.4 80 :: Float
13:48:20      No instance for (Fractional (a0 -> Float))
13:48:20        (maybe you haven't applied enough arguments to a function?)
13:48:20        arising from the literal ‘3.4’
13:48:25  whoops
13:48:28  :t xor 3.4 80 :: Float
13:48:29      No instance for (Bits Float) arising from a use of ‘xor’
13:48:29      In the expression: (xor 3.4 80 :: Float)
13:48:33  @type shiftL
13:48:34  Bits a => a -> Int -> a
13:48:35  ah
13:49:26  > shiftL 255 4
13:49:28   4080
13:49:35  > shiftR 255 4
13:49:37   15
13:49:43  yup
13:50:16  :t rotL
13:50:17  Not in scope: ‘rotL’
13:50:20  :t rotateL
13:50:21  Bits a => a -> Int -> a
13:50:26  cool
13:50:57  > rotateR 1 1 
13:50:58   0
13:50:58 -!- idris-bot has quit (Ping timeout: 250 seconds).
13:51:15  aha. infinite-bit
13:51:47 -!- AnotherTest has joined.
13:52:11  > rotateR (Int16 1) 1 
13:52:12   Not in scope: data constructor ‘Int16’
13:52:32  > rotateR (Word16 1) 1 
13:52:34   Not in scope: data constructor ‘Word16’
13:52:45  :t 1 :: Int16
13:52:46  Int16
13:53:03 -!- bunbunbot has quit (Remote host closed the connection).
13:53:08  > rotateR (1 :: Int16) 1 
13:53:09   -32768
13:53:14  aesome
13:53:49 -!- Melvar has quit (Ping timeout: 265 seconds).
13:54:00  so I can get all the types from C in Haskell, it just has its own default types. 
13:54:53  > rotateR (0.5 :: Double) 1 
13:54:54       No instance for (Bits Double) arising from a use of ‘rotateR’
13:54:54       In the expression: rotateR (0.5 :: Double) 1
13:55:04  boooo
13:56:24 -!- AnotherTest has quit (Ping timeout: 256 seconds).
13:56:37  well that wouldn't work in C either
13:57:18  actually C doesn't even have a rotate operator, unless one was added in C11
13:59:23  Major flaw for implementing certain cryptographies
14:01:06  #define rot64(x,n) ((x>>n)|(x<<(64-n)))
14:01:09  well, compilers recognize things like uint32_t x; x = (x << 29) | (x >> 3);
14:01:29  One should hope so!
14:01:34 -!- Melvar has joined.
14:02:38  Probably it's a throw back to the PDP-11. Maybe it didn't have a rotate instruction
14:02:56 -!- idris-bot has joined.
14:04:53  It had an arithmentic shift,but could only rotate by one bit at a time
14:08:33  woah. it had a separate add carry operation instead of an add-with-carry? that seems very inconvenient.
14:09:30  wow
14:14:04 -!- idris-bot has quit (Quit: Terminated).
14:14:22 -!- idris-bot has joined.
14:14:50  It's technically more flexible, though I can't think of an application
14:15:27  I guess you can implement addc using adc if you have a zero register
14:20:58 -!- atriq has joined.
14:30:52  I need some volunteers
14:31:10  You need to compare the pain of having a matchstick buring on your skin against being stung be a regular bee
14:31:14  *burning
14:31:17  *by
14:31:36  also the matchstick burning is more likely to leave a scar so do it somewhere where it won't really matter
14:31:52  what if you're allergic to bee stings? how are you comparing the bees for regularity?
14:31:59  well
14:32:00  honey bees
14:32:02  and have you had this study ethically reviewed? I can imagine running into some problems
14:32:17  I give a shit about ethics I guess
14:32:18  :)
14:32:23  (also, do you know how hard it is to find a honeybee nowadays?)
14:32:37  You can also use a wasp
14:32:42 -!- doesthiswork has quit (Quit: Leaving.).
14:32:54  they both have a pain index of 2
14:33:14  unless you take the wrong kind of wasps
14:33:16  Jafet: it's not. the point of add-with-carry is that it can use the old carry flag and update it as well
14:33:21  there are wasps with an index of 3
14:34:02  Jafet: so you can use it for implementing a very cheap arbitrary precision addition. I wonder how the PDP people would do that.
14:35:47  ais523: As long as participants volunteer I see no reason to consult an ethics commission.
14:36:07  Ok... the bee might not volunteer
14:36:13  especially because it dies in the process
14:36:18  which is why you can use wasps. Wasps keep on living after stinging you
14:36:53  when starting my research at the CS department
14:36:59  I had to fill out an ethics questionnaire
14:37:23  were you involved in killing machines?
14:37:26  there was a fast-track questionnaire to identify which projects were obviously safe and didn't need further scrutiny
14:37:28  such as killer roboters?
14:37:54  it had three questions; I forget one, but the other two were along the lines of "are you going to do any experiments on human subjects?" and "is your research likely to lead to the collapse of society?"
14:37:55  hm
14:38:03  4 is considered to be "traumatically painful"
14:38:43 -!- Sprocklem has joined.
14:38:57  3 is "seriously painful"
14:39:39  That is, not humourously painful?
14:40:10  If I log website traffic does that count as experiments on human subjects?
14:41:12  I wouldn't say that a stapler is less painful than a bee sting
14:41:19  I have stapled a finger once
14:41:23  and it was pretty painful
14:42:07  That's not an experiment, because you don't have control logs of people who don't visit the website
14:42:09  mroman: almost any interaction with humans counts as experimenting on them, but you can normally get those trials approved too
14:42:19  it just takes more than a three-question questionnaire
14:42:24  Okay, looking at a PDP11 handbook, ADC and SBC seem to be designed to enable 32 bit operations on a 16 bit machine, which barely works (3 instructions each, but resulting carries are wrong).
14:42:33  If my research wouldn't lead to the collapse of society I wouldn't be interested in researching it.
14:42:53  if your proposed study is "I want to ask humans to pick out faces in images and compare it to the performance of a computer", and the images are relatively innocuous, that'd probably get approved pretty quickly
14:43:14  Society may not like to give you funding for that sort of research, though
14:43:27  Jafet: Surely the department of defense will.
14:43:50  Only the american one, which should tell you something about that society
14:44:20  (each ==> addition and subtraction)
14:44:23  My research is going to destroy facebook. That might lead to a collapse of society.
14:44:33  Good point
14:44:52  "collapse of society" is very much under-defined.
14:45:00  Altohugh if it does, I would say society needed to be burnt to the ground
14:45:16  ais523: Do they give you a "survival rate"?
14:45:18  i.e.
14:45:36  the questions were very generic
14:45:37  If n-% of the human population would survive does it count as a collapse?
14:45:50  I guess if there's the slightest chance we might bring about something that potentially qualifies as an apocalypse
14:46:00  we're meant to send the research proposal in for further scrutiny
14:46:55  Well... research requires sacrifices.
14:47:27  Most notably in medicine.
14:47:48  Hmm... I would say no-one actually needs to (immediately) die or suffer for a study to be problematic.
14:48:07  Sure. Long term suffering is also an issue.
14:48:45  Consider if I proved that people of a particular ethnic group are significantly more intelligent, and isolated the genetic factors causing it.  
14:48:57  but I'm pretty certain nobody did long term studies about cell phone "radiation" before bringing them to the market
14:49:01  these studies are only done now.
14:49:28  That would not cause any suffering or death , but it could lead to massive societal issues
14:49:47  orin: we already know what happens, given the publication of a book that contained one graph that appeared to indicate that
14:50:18  that by itself was sufficient to cause problems
14:50:28  We haven't even discussed what to do with unborn babies.
14:50:38  There's a lot to discuss about genetics/genetic modification etc.
14:51:06  In the absence of conclusive results, I would recommend not providing unborn babies with cellphones
14:51:31  That was aimed at testing babies for things like a third chromosome
14:51:48  or other conditions such as having only one of a certain kind of chromosome
14:52:09  *fetus
14:52:14  let's not call them babies just yet.
14:52:52  Well, they're like pseudocode programs. Or esowiki language specifications.
14:53:31  but... I'm pretty certain if we decide to allow certain research in genetics it will still take 100 years before we are actually capable of doing really crazy stuff with it
14:53:47  I don't think anybody will be able to produce humans with wings that can fly within the next 15 years
14:53:54  My point is virtually any 'hard' results in anything near to eugenics would cause immediate political shitstorms
14:54:09  orin: Agreed
14:54:11  mroman: there's certainly a lot of opposition to germline changes
14:54:20  (i.e. any genetic changes that can be inherited)
14:54:25  That's merely because it's physically impossible for human-sized mammals to fly
14:54:33  well
14:54:37  you can make them sub-human size !
14:54:51  (which is also a generically inheritable condition)
14:54:54 -!- atriq has left.
14:54:55  (sometimes)
14:55:07  damn
14:55:09  *genetically
14:55:15  mroman: even that's too large
14:55:25  You would need giant muscles as well,but it is doable
14:55:35  hobbits are still too heavy to fly with wings non-magically
14:55:36  Well
14:55:42  pterodactlys were bigger than huamns
14:55:43  Maybe we have cyborgs!
14:56:12  we already have exo-skeletons
14:56:19  sure, and airplanes too
14:56:22  It may be more efficient to work in the other direction and make sapient flying squirrels.
14:56:23  yeah
14:56:26  but airplanes aren't cool
14:56:34  mroman: there are cool airplanes
14:56:51  insect sized airplanes are cool
14:56:54  Like the SU-47 Berkut
14:57:10  Murder by microdrone
14:57:38  Obama should use microdrones that can inject deadly poison
14:57:49  instead of regular old-school drones that just bomb the whole freaking place
14:58:45  thinking of that
14:59:02  they could just use gas that temporarily paralyzes people
14:59:08  then go in, shoot the real guy
14:59:56  (Assuming such a gas exists. Which it probably does)
15:00:13  `? learn
15:00:14  learn? ¯\(°​_o)/¯
15:00:18  `? mroman
15:00:19  mroman is a leading artist in password security (SFW). He also likes black madness. He can design password hashes that are worse than the identity function. He invented the identity function.
15:00:30  mroman: well, there was the Russian theatre siege a few years ago
15:00:38  `learn_append mroman He's also an artist in unconventional warfare.
15:00:40  Learned 'mroman': mroman is a leading artist in password security (SFW). He also likes black madness. He can design password hashes that are worse than the identity function. He invented the identity function. He's also an artist in unconventional warfare.
15:01:04  that's basically what the Russian military did, but many of the hostages died because they didn't admit to /which/ gas they used until some of them had already died fro mside effects
15:01:18  Airplanes work differently at insect size, due to viscosity effects at that scale
15:02:48  `? oren
15:02:49  oren is a Canadian esolanger who would like to obliterate time zones so that he can talk to his father who lives in the same house.
15:02:54  `? orin
15:02:54  orin? ¯\(°​_o)/¯
15:04:08  `learn orin Orin is known as oren. Orin was called Warren by half his teachers.
15:04:10  Learned 'orin': orin Orin is known as oren. Orin was called Warren by half his teachers.
15:04:58  `learn orin is oren's evil twin, stalking him from the other side of the international date line.
15:05:00  Learned 'orin': orin is oren's evil twin, stalking him from the other side of the international date line.
15:05:31  lol
15:06:03  you're always on the same side of the date line
15:06:06  just possibly 24 hours out
15:06:23  eaxtly
15:08:30  It would be so much  easier if /É™/ had only one spelling 
15:09:02  or maybe a sylabic n? 
15:09:43  it's the same ending as steven or karen
15:10:34  screw it I'm a touhou character
15:10:52 -!- orin has changed nick to ORen.
15:11:06 -!- ORen has changed nick to ORin.
15:19:11  @metar lowi
15:19:11  LOWI 121450Z VRB03KT CAVOK 30/03 Q1018 NOSIG
15:19:40  close to melting... but quite dry, at least.
15:20:00  @metar lovi
15:20:00  No result.
15:20:11  @metar lowv
15:20:12  No result.
15:20:25  @metar loww
15:20:25  LOWW 121450Z 14013KT CAVOK 23/08 Q1020 NOSIG
15:21:05  @metar eddb
15:21:05  EDDB 121450Z 20013KT CAVOK 27/09 Q1010 TEMPO 20015G25KT
15:22:10  @metar CYYZ
15:22:10  CYYZ 121500Z 27023G31KT 15SM BKN048 14/05 A2985 RMK SC7 SLP110 DENSITY ALT 600FT
15:22:36  Blah, a little cold
15:23:07  and windy
15:23:45  not cold.
15:24:29 -!- ZombieAlive has joined.
15:24:30  isn't 14 C cold?
15:25:17  no
15:26:09  slightly chilly, maybe.
15:26:44  (meaning it's uncomfortable in a T-shirt)
15:34:47  [wiki] [[Btjzxgquartfrqifjlv]]  http://esolangs.org/w/index.php?diff=42834&oldid=42833 * Esowiki201529A * (+3) 
15:40:58  [wiki] [[Wepmlrio]] N http://esolangs.org/w/index.php?oldid=42835 * Esowiki201529A * (+397) Created page with "{{lowercase}} '''wepmlrio''' is a brainfuck derivative. It has the same instructions but... 
   Replace [ with w   Replace ] with e   Replace + with p   Replace - with m  ..."
15:41:44  welmprio already sucks from reading that part
15:42:01  while end plus minus left right input output
15:42:52  yeah
15:42:56  boring
15:45:11  [wiki] [[Gibberish/JavaScript]]  http://esolangs.org/w/index.php?diff=42836&oldid=42813 * Esowiki201529A * (+91) 
16:00:13 -!- oerjan has joined.
16:01:33  eep, web is down
16:02:29  You're just too far up.
16:03:34  but somehow irc is working
16:03:41  (and putty)
16:04:16 -!- aloril_ has quit (Ping timeout: 255 seconds).
16:06:25  restarting router changed nothing
16:09:05  hm some norwegian sites load
16:09:53  Did norway recently make a Great Firewall of Norway
16:10:15  To prevent scurrilous foreign influence?
16:10:30  PROBABLY
16:11:09  Oh oerjan!
16:11:34  oerjan: Is it true that (->) has a lower precedence than ($)?
16:11:38  helvar
16:12:23  Melvar: you know, would you mind asking that at a time i've actually got web access to check it?
16:12:34  > Nothing :: Maybe $ Int -> Int
16:12:35       Couldn't match expected type ‘Maybe $ Int -> Int’
16:12:35                   with actual type ‘Maybe a0’
16:12:35       In the expression: Nothing :: Maybe $ Int -> Int
16:12:41  > const Nothing :: Int -> Maybe $ Int
16:12:43    Maybe Int>
16:13:05  Melvar: normally $ isn't a type, this must be something lambdabot has defined
16:13:15  I did. type a $ b = a b
16:13:37  if it has no fixity defined, it will be infixl 9, very high
16:13:52  Are there type fixities separate from value fixities?
16:14:10  oerjan: why don't you install ghc twh
16:14:35  Melvar: fixities go with a scope.  if the type is defined in a different scope from the value, it may.
16:15:11  shachaf: i _have_ ghc.  but i don't have the version that fixed my documentation request to give the fixity of -> hth
16:17:52  Melvar: or to be precise, fixity goes with a binding.  for technical reasons if you define a type and a value with the same name at the top level of a module, a fixity declaration will encompass both.
16:18:23  but if they're in different modules there should be no reason why they need to have the same fixity.
16:18:52 -!- bb010g has joined.
16:19:07  oerjan: I see, thank you.
16:20:11  "technical reasons"
16:20:20 -!- solid_whiskey has quit (Ping timeout: 256 seconds).
16:20:42  @def infixr 0 $
16:20:43   Defined.
16:20:58  > Nothing :: Maybe $ Int -> Int
16:20:59   Nothing
16:21:18  Huh. Indeed.
16:22:41  > Nothing :: Maybe $ Maybe $ Int
16:22:43   Nothing
16:23:32  :t Just (+) :: Maybe $ (->) Int $ Int -> Int
16:23:33  Maybe $ ((->) Int $ (Int -> Int))
16:24:41  @def type a + b = Either a b; type a * b = (a, b); infixl 6 +; infixl 7 *
16:24:41   Parse failed: Parse error: *
16:25:19  @def type a + b = Either a b; type a × b = (a, b); infixl 6 +; infixl 7 ×
16:25:20   Defined.
16:25:27 -!- Phantom_Hoover has joined.
16:25:51  > Right (1, 2) :: Int + Int × Int
16:25:53   Right (1,2)
16:26:01  > Left (1, 2) :: Int × Int + Int
16:26:03   Left (1,2)
16:29:41  :t undefined :: Int × Int + Int
16:29:42  (Int × Int) + Int
16:34:54 -!- ais523 has quit (Ping timeout: 244 seconds).
16:43:43 -!- oerjan has quit (Quit: Later).
16:44:06 -!- `^_^v has quit (Read error: Connection reset by peer).
16:47:31 -!- `^_^v has joined.
16:51:58 -!- PinealGlandOptic has quit (Ping timeout: 255 seconds).
16:53:56 -!- aloril has joined.
16:54:13  [wiki] [[Btjzxgquartfrqifjlv]]  http://esolangs.org/w/index.php?diff=42837&oldid=42834 * 168.99.197.17 * (+94) added morse code versions (and removed random s at end)
17:01:26 -!- TieSoul_ has joined.
17:01:41 -!- TieSoul has quit (*.net *.split).
17:01:41 -!- tromp_ has quit (*.net *.split).
17:01:41 -!- rodgort has quit (*.net *.split).
17:01:42 -!- TodPunk has quit (*.net *.split).
17:01:42 -!- trn has quit (*.net *.split).
17:01:42 -!- coppro has quit (*.net *.split).
17:01:42 -!- olsner has quit (*.net *.split).
17:01:42 -!- Tod-Autojoined has joined.
17:01:55 -!- coppro has joined.
17:02:37 -!- tromp_ has joined.
17:02:58 -!- trn has joined.
17:05:23 -!- rodgort has joined.
17:08:21 -!- GeekDude has joined.
17:19:42  need to open file in ed just to use the N,Ms/name/newname/g command
17:20:08  rename a varable without reanming same variable in another function
17:51:32 -!- olsner has joined.
18:01:26  [wiki] [[Scrip7]]  http://esolangs.org/w/index.php?diff=42838&oldid=41512 * Orenwatson * (+261) 
18:01:58  there we go, updated
18:04:59 -!- Sprocklem has quit (Ping timeout: 276 seconds).
18:06:08  I used alpha and beta as metasyntactic variables, because all the latin letters are taken
18:12:22  [wiki] [[Scrip7]]  http://esolangs.org/w/index.php?diff=42839&oldid=42838 * 74.15.57.253 * (+10) html problems
18:16:58  @metar CYYZ
18:16:58  CYYZ 121808Z 26020G25KT 15SM -SHRA FEW041 OVC052 13/06 A2987 RMK CU2SC6 SLP116
18:17:53 -!- password2 has joined.
18:49:03 -!- zadock has quit (Quit: Leaving).
19:23:05  munich have no chance npw
19:26:05 -!- Somelauw has joined.
19:31:45 -!- Sprocklem has joined.
19:31:51 -!- GeekDude has quit (Read error: Connection reset by peer).
19:32:46 -!- GeekDude has joined.
19:32:59 -!- GeekDude has quit (Changing host).
19:32:59 -!- GeekDude has joined.
19:34:03  just because the Illuminati is the Illuminati doesn't mean they can't raise the roof c:
19:52:17  I should make a playlist of all these memetic songs
19:56:14 -!- Sprocklem has quit (Ping timeout: 272 seconds).
20:09:56 -!- nszceta has joined.
20:16:55 -!- password2 has quit (Remote host closed the connection).
20:21:32 -!- Sprocklem has joined.
20:29:36  ORin, what's your stance on the matrix of solidity?
20:33:36  never heard of it
20:33:43  Do people still program esoteric nowadays?
20:34:58  yeah
20:38:35  I managed to program rot13 in brainfuck, but it's 622 chars long.
20:52:02 -!- Patashu has joined.
20:54:41 -!- zadock has joined.
20:55:38 -!- nszceta has quit (Quit: My Mac has gone to sleep. ZZZzzz…).
21:08:23 -!- Somelauw has quit (Quit: WeeChat 0.4.2).
21:17:42 -!- Sprocklem has quit (Quit: [).
21:19:47 -!- bb010g has quit (Quit: Connection closed for inactivity).
21:23:45 -!- Patashu has quit (Ping timeout: 245 seconds).
21:33:33 -!- nszceta has joined.
21:35:54 -!- `^_^v has quit (Ping timeout: 240 seconds).
21:36:21 -!- zadock has quit (Quit: Leaving).
21:40:37 -!- PinealGlandOptic has joined.
21:57:04 -!- nszceta has quit (Quit: Textual IRC Client: www.textualapp.com).
22:03:36 -!- oerjan has joined.
22:06:25 -!- notfowl- has joined.
22:08:49  I'm copying files to a directory accessible by another user with rsync -tvz -e "sudo -u" again
22:10:20 -!- notfowl has quit (Excess Flood).
22:44:14  `run sed -i "5invd" bin/slist
22:44:16  No output.
22:46:03  why did skype send me this email?
22:46:07  Aktiveeri krediit uuesti
22:47:14  And why did they think I can understand esonian?
22:47:19  *estonian
22:47:35  hint: they probably didn't hth
22:47:42 * oerjan gets finnish spam all the time
22:48:29  i wish i got finnish spam twh
22:48:56  Yesterday I walked by a group of students and one of them was talking about how they took a class on Finland.
22:49:21  finland, finland, finland.
22:49:27  Turns out you can major in Scandinavian Studies here.
22:49:53  My friend is going to finland this summer on some sort of physics... thing
22:50:07  i bet you wish you could study scandinavia
22:50:55  "The 46th IPhO will be held at Mumbai, India from 5 to 12 July 2015." ok not that then
22:51:38  i,i Initial Phở Offering
22:51:56  i could have gone to the ipho once, i think it was in poland
22:52:09  but i went to the imo in germany instead
22:52:42  Oh, physics olympiad.
22:53:11  you can't trust physicists hth
22:53:22  especially when tensors are involved
22:53:38  OKAY
22:53:47 -!- SirCmpwn has quit (Remote host closed the connection).
22:54:24  I don't know anything about it exacpt he's going, to finland, with a physics professor
22:54:55  to finland to get physical with a professor, check
22:55:28 -!- SirCmpwn has joined.
22:55:40  I haven't been to the IPHO but I have been to the IHOP
22:56:59  i just barely failed to visit the IHOP the half-year i stayed in seattle
22:58:14  i recall being scared away by the fact they had a dress code.  although it was probably really lenient i practice...
22:58:22  *in
22:58:52  whoa whoa whoa
22:58:58  you were in seattle for a half-year?
22:59:09  yes, spring 1996
23:00:46  ihop spring's eternal
23:29:35 -!- Decim has joined.
23:29:48  Is there a bot that deciphers short to text
23:33:54 -!- bb010g has joined.
23:40:04  Sigh
23:40:21  Once I get a new laptop
23:40:31  Ill finally be my old self again
23:43:21  oerjan: I get Norwegian spam hardly ever. In fact, I don't recall any specific examples at all.
23:44:44  Also I don't know what "Scandinavian Studies" can be.
23:45:16  it's a course where you dissect swedish meatballs and the like
23:45:26  Hm, you can do Scandinavian Studies in London, too.
23:45:34  "Welcome to UCL Scandinavian Studies! We teach and research the language, literature, history, linguistics and visual culture of Denmark, the Faroe Islands, Iceland, Norway and Sweden from medieval times to the present day. Our department is also home to Norvik Press, the UK's only press specialising in Nordic literature and culture."
23:45:54  University of California, London?
23:46:40  Their web page is so confusing, I can't find out what it's short for.
23:46:46  University College London.
23:47:02  That's, like, just a collection of words.
23:47:22  "Universities that offer education and perform research in Scandinavian studies are typically found in North America and Europe. In North America, many activities are coordinated through the Society for the Advancement of Scandinavian Study and its journal, the quarterly Scandinavian Studies."
23:47:32  that's a little unsettling
23:49:01  It's not a conspiracy that aims for global domination, if that's what you are thinking.
23:49:04  I just wanted to make that clear.
23:50:25  yes, very important not to leave any misunderstandings.
23:50:44 * FireFly . o O ( http://tvtropes.org/pmwiki/pmwiki.php/Main/SuspiciouslySpecificDenial )
23:51:19  Where did that thought bubble thing come from
23:51:38  i somehow connect it with int-e 
23:51:45  nvd: i think it means "i,i" hth
23:51:45  oerjan, int-e seems to do it a lot
23:52:05  ski does it a lot. But his thought bubbles are very well formatted.
23:52:07  I mostly associate it with ski
23:52:28  I think the name of UCL predates the "college = university" thing
23:53:04  Oh maybe not
23:53:53  It was originally London University
23:54:22  Then, with King's College, became one of the colleges of the larger University of London
23:55:33  shachaf: are you trying to make me believe there's a channel where ski actually talks.  admittedly he's on a lot...
23:55:57  oerjan: not lately that i've seen
23:56:14  maybe #haskell but i'm not in there
23:56:22  . 。 ∘ ° ◦ o ο ○ ◯ O Ο 〇 and so on.
23:56:59  shachaf: he doesn't seem to be in #haskell, only every subchannel in existence
23:57:10  oerjan: good point
23:57:20  He used to be in #haskell
23:57:27  so did oerjan
23:57:41  He's also occasionally around in #haskell.se, but then again that place is mostly dead
23:58:00  Is the channel about the set of all channels included in the set of all channels? I guess it must be.
23:58:31  Have you proven the existence of such a set?