00:02:55 damn, I only wanted to implement a small part of this library, with only the functions I need 00:03:08 Of what library is it? 00:03:23 but it turns out that I'm implementing like over half of the functoins, 00:03:38 -!- yorick has quit (Ping timeout: 272 seconds). 00:04:04 because either I need that function, or it's a function that's trivial to implement once I figured out and implemented another similar one, so I'm implementing it immediately because it would be more difficult to figure out the implementation later 00:04:40 Still it can help if it is publish later on so that other people can look too, I suppose 00:04:47 But, what library is it, and what function is it? 00:04:47 zzo38: another XMM vector wrapper like Agner Fog's vectorclass library or eigen's packagemath or that new library called "VC" (unimaginatively) 00:05:01 this one has a different interface and somewhat different scope from those 00:05:28 -!- yorick has joined. 00:05:44 specifically, right now I'm implementing only the operations of XMM vectors of 8 and 16 bit wide integer types, because I don't need 32 and 64 wide 00:05:54 (nor float) 00:06:37 and I'm targetting only one cpu type 00:06:41 some of these might change later 00:06:58 the api tries to look very different from vectorclass though 00:09:04 this is why I mentioned #define Z ) const { return 00:09:10 but that's a joke, I'm not really doing that 00:09:20 I'm using all kinds of complicated template tricks instead 00:10:13 as in, to avoid duplication of a few common functions between 8 and 16 bit wide integers (and possibly other classes in the future), I've introduced two extra template classes 00:10:27 that can get ugly 00:10:53 (there are more extra classes and class templates for other utility purposes) 00:12:09 @tell boily Have to cancel wednesday. A friend from far away will be in town for exactly one day for the next >6 months, and did not find out that day was tomorrow until today. 00:12:10 Consider it noted. 00:18:50 -!- yorick has quit (Ping timeout: 252 seconds). 00:30:27 All this ugliness I have to write because there's no library that does excatly what I want, but at least this will be reusable (at least for me) later 00:34:25 (the difficult part of this library will be finding all the bugs though) 00:49:41 -!- |f`-`|f has quit (Ping timeout: 256 seconds). 00:54:00 -!- |f`-`|f has joined. 01:07:22 -!- mihow has quit (Quit: mihow). 01:13:12 -!- Wallacoloo has joined. 01:14:41 ok, let's see what happens 01:16:12 hmm, did it go to an infinite loop, or only very slow? 01:16:21 it should be fast 01:16:29 well, somewhat fast 01:17:53 hmm 01:17:59 I think a condition is negated or something 01:19:05 yep, it seems so... but which one 01:21:35 -!- GeekDude has changed nick to }{FISH}. 01:27:37 oh no, I'm inviting the raptors by adding a goto 01:30:42 ah, I can see the reversed condition 01:31:44 ah, much better now! 01:33:36 er what's with it now? 01:33:48 memory corruption where? 01:36:06 ah ok, it depends on the input image size 01:37:09 but how? wtf 01:37:43 -!- copumpkin has joined. 01:38:28 -!- oerjan has quit (Quit: leaving). 01:38:44 -!- Wallacoloo has left. 01:51:39 oh great, found the first bug in the library 01:51:43 this one luckily was not well hidden 02:12:19 -!- digitalcold has quit (Ping timeout: 252 seconds). 02:12:21 but the memory corruption is still in my code 02:12:34 -!- digitalcold has joined. 02:16:18 -!- lleu has quit (Ping timeout: 265 seconds). 02:24:02 -!- nys has quit (Ping timeout: 265 seconds). 02:29:07 -!- nys has joined. 02:37:35 -!- }{FISH} has quit (Quit: {{{}}{{{}}{{}}}{{}}} (www.adiirc.com)). 02:54:02 -!- Wallacoloo has joined. 02:58:38 https://www.youtube.com/watch?v=1TAOKIRV2d4 02:58:43 argh! I still don't see where the memory corruption bug is 02:58:52 I must be writing past an array somewhere 02:58:57 (in some direction) 03:04:57 MDude yours? 03:05:06 no 03:05:17 Its neat 03:06:11 Yeah 03:35:18 -!- nys has quit (Quit: quit). 03:43:14 -!- hilquias has quit (Ping timeout: 256 seconds). 03:43:55 uh oh 03:44:01 I ought to try making something based on Oragami when I get around to 3D game stuff. 03:44:03 What? 03:44:44 This is what happens when I wait to say a thing. Other things happen first. 03:46:23 NOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO 03:46:37 I marked a variable that gives the dimension of a dynamic array as static when 03:46:43 that dimension should change 03:46:51 THAT'S WHAT CAUSED THE CORRUPTION 03:46:53 FUCK YOU 03:47:39 Thrilling tale 03:47:48 I'VE BEEN DEBUGGING THIS FOR HOURS NOW 03:53:13 b_jonas: w 03:57:14 b_jonas: Sounds like you should have used a better language 03:57:41 it wasn't the fault of the language 03:57:44 it was the fault of my code 03:58:27 If you've used a language without dynamic-sized stack-allocated arrays, it wouldn't have happened 03:58:40 I recommend malborge 04:02:07 FreeFull: this wasn't a stack-allocated language, but a heap-allocated one 04:02:18 b_jonas: Well, even worse 04:03:19 What's the language? 04:04:49 -!- Herbalist has joined. 04:05:07 FreeFull: C++ 04:06:36 -!- MDude has changed nick to MDream. 04:06:54 -!- perrier has quit (Remote host closed the connection). 04:07:47 Jorge Luis "Mal" Borges 04:07:50 b_jonas: Why were you even declaring a static variable 04:08:06 -!- perrier has joined. 04:09:10 FreeFull: I think I left it over from some earlier version of the code where that array was of a fixed size, and I didn't notice it was declared static when I changed it. 04:09:26 b_jonas: But, why wasn't it const 04:09:35 FreeFull: it was const 04:09:40 as in, static const int 04:09:47 it should have been just const int 04:10:36 Ok, again, why was it static in the first place when you first wrote it? 04:11:22 because it was a compile-time constant 04:15:52 But that's not what static means 04:30:24 If debugging is the process of removing bugs, then programming must be the process of putting them in. Edsger W. Dijkstra [citation needed] 04:33:17 That would leave "bugging" a redundant word though? 04:33:56 -!- augur has quit (Ping timeout: 264 seconds). 04:35:27 -!- augur has joined. 04:36:42 -!- Herbalist has quit (Quit: WeeChat 1.2). 04:40:04 -!- bb010g has joined. 04:42:40 -!- hilquias has joined. 04:47:41 -!- SopaXorzTaker has quit (Ping timeout: 256 seconds). 04:51:39 -!- Walpurgisnacht has joined. 04:59:46 MDream, dunno, english is my fourth language after clucks, chirps and whistles 05:20:59 ? 05:34:28 bird langs 05:44:08 `cat canary 05:44:18 Spjong 05:44:26 fungot: where are you?! 05:44:37 fnordbot: chirp 05:44:38 int-e: races in all of the galaxy, a device which made this starship, one day, a student at the university of maximegalon, who pursued a brilliant marble-sanded beaches of santraginus v, inhaling the heady sea vapours; you can sleep under it. " yeah," he shouted to the guard, " not really. " we had a look at this," said slartibartfast, " that was one of mine," a voice said " i seem to be having tremendous difficulty in finding 05:51:14 I see? 05:55:32 -!- Wright has quit (Ping timeout: 264 seconds). 05:58:16 Walpurgisnacht: what you see is what you get 05:58:57 Sounds about right 06:04:47 [wiki] [[Special:Log/newusers]] create * YourLocalFax * New user account 06:07:01 -!- Walpurgisnacht has quit (Remote host closed the connection). 06:54:15 [wiki] [[Mindfunc]] N http://esolangs.org/w/index.php?oldid=43352 * YourLocalFax * (+4773) Created page with "Mindfunc is a functional extension to the [[brainfuck]] language. This page assumes knowledge of brainfuck, so you should totally read up on it if you haven't already. == Det..." 06:55:24 [wiki] [[Language list]] http://esolangs.org/w/index.php?diff=43353&oldid=43345 * YourLocalFax * (+15) /* M */ 06:56:29 [wiki] [[Mindfunc]] http://esolangs.org/w/index.php?diff=43354&oldid=43352 * YourLocalFax * (-2) /* Implementations */ 06:57:05 [wiki] [[Mindfunc]] http://esolangs.org/w/index.php?diff=43355&oldid=43354 * YourLocalFax * (+23) /* Implementations */ 06:58:08 [wiki] [[Brainfuck extensions]] http://esolangs.org/w/index.php?diff=43356&oldid=39116 * YourLocalFax * (+14) 06:58:29 [wiki] [[Brainfuck extensions]] http://esolangs.org/w/index.php?diff=43357&oldid=43356 * YourLocalFax * (+0) 06:58:47 [wiki] [[Language list]] http://esolangs.org/w/index.php?diff=43358&oldid=43353 * YourLocalFax * (+0) /* M */ 07:02:01 -!- TodPunk has quit (Read error: Connection reset by peer). 07:02:35 -!- TodPunk has joined. 07:10:01 -!- variable has quit (Quit: 1 found in /dev/zero). 07:20:36 -!- variable has joined. 07:26:04 -!- x10A94 has joined. 07:26:21 -!- zzo38 has quit (Ping timeout: 252 seconds). 07:26:44 [wiki] [[Mindfunc]] http://esolangs.org/w/index.php?diff=43359&oldid=43355 * YourLocalFax * (-23) /* Implementations */ 07:27:02 -!- J_A_Work has joined. 07:27:36 [wiki] [[Mindfunc]] http://esolangs.org/w/index.php?diff=43360&oldid=43359 * YourLocalFax * (-9) /* Consumers */ 07:28:00 [wiki] [[Mindfunc]] http://esolangs.org/w/index.php?diff=43361&oldid=43360 * YourLocalFax * (+0) /* Consumers */ 07:29:14 [wiki] [[Mindfunc]] http://esolangs.org/w/index.php?diff=43362&oldid=43361 * YourLocalFax * (-62) /* Built-ins */ 07:30:11 [wiki] [[Mindfunc]] http://esolangs.org/w/index.php?diff=43363&oldid=43362 * YourLocalFax * (+28) 07:30:39 [wiki] [[Mindfunc]] http://esolangs.org/w/index.php?diff=43364&oldid=43363 * YourLocalFax * (+1) /* Built-ins */ 07:31:53 [wiki] [[Mindfunc]] http://esolangs.org/w/index.php?diff=43365&oldid=43364 * YourLocalFax * (+66) /* Other Examples */ 07:32:08 [wiki] [[Mindfunc]] http://esolangs.org/w/index.php?diff=43366&oldid=43365 * YourLocalFax * (+0) /* Other Examples */ 07:33:32 [wiki] [[Mindfunc]] http://esolangs.org/w/index.php?diff=43367&oldid=43366 * YourLocalFax * (+24) 07:33:53 [wiki] [[User:YourLocalFax]] N http://esolangs.org/w/index.php?oldid=43368 * YourLocalFax * (+3) Created page with "Hi." 08:29:56 -!- Patashu has joined. 08:37:31 -!- AnotherTest has joined. 09:08:03 -!- FireFly has quit (Ping timeout: 246 seconds). 09:09:48 -!- J_A_Work has quit (Quit: J_A_Work). 09:28:26 -!- J_A_Work has joined. 09:36:43 -!- FireFly has joined. 09:38:37 -!- FireFly has quit (Changing host). 09:38:37 -!- FireFly has joined. 09:40:48 -!- variable has quit (Ping timeout: 256 seconds). 09:42:10 -!- J_A_Work has quit (Quit: J_A_Work). 09:44:34 -!- fungot has joined. 09:44:40 -!- J_A_Work has joined. 10:12:33 -!- lleu has joined. 10:12:33 -!- lleu has quit (Changing host). 10:12:33 -!- lleu has joined. 10:17:39 -!- aretecode has quit (Ping timeout: 246 seconds). 10:26:37 -!- aretecode has joined. 10:34:10 -!- mauris has joined. 10:46:33 -!- Patashu has quit (Remote host closed the connection). 10:46:54 -!- Patashu has joined. 10:48:47 -!- lleu has quit (Ping timeout: 255 seconds). 11:25:37 -!- yorick has joined. 12:34:54 -!- GeekDude has joined. 12:36:49 -!- GeekDude has changed nick to GeoDude. 12:48:47 -!- Froox has joined. 12:51:19 -!- J_A_Work has quit (Quit: J_A_Work). 12:52:09 -!- Frooxius has quit (Ping timeout: 248 seconds). 12:54:02 -!- copumpkin has quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…). 12:54:59 -!- fungot has quit (Ping timeout: 276 seconds). 13:08:08 -!- boily has joined. 13:18:16 -!- rbryan has joined. 13:21:49 So... if I tried to write a semi-useful language for fun but it turned out to be painful to program in is this the right place for it? 13:22:45 -!- Patashu has quit (Ping timeout: 250 seconds). 13:24:38 rbryan: Sure 13:25:04 https://github.com/rbryan/rplisp 13:25:11 It's a reverse polish lisp. 13:25:16 And it's terrible. 13:25:42 https://github.com/rbryan/rplisp/blob/master/factorial.rpl 13:29:21 -!- nys has joined. 13:35:01 there's no such thing as terrible 13:35:04 except numberic underload 13:35:19 terribly boring derivatives are terrible 13:35:38 -!- FreeFull has quit (Quit: BBS). 13:36:38 guys, guys! we're missing a very important ritual here! 13:36:43 `relcome rbryan 13:36:45 ​rbryan: Welcome to the international hub for esoteric programming language design and deployment! For more information, check out our wiki: . (For the other kind of esoterica, try #esoteric on EFnet or DALnet.) 13:36:50 @massages-loud 13:36:50 quintopia said 13h 24m 41s ago: Have to cancel wednesday. A friend from far away will be in town for exactly one day for the next >6 months, and did not find out that day was tomorrow until today. 13:37:12 @tell quintopia AAAAAAAAAAAAAAAAAAH! oh well. 13:37:12 Consider it noted. 13:38:35 is reverse polish == stack based? 13:38:35 so 13:38:42 1 2 + 3 -? 13:38:46 (1 + 2) - 3? 13:39:22 Stlisp could do that! 13:39:38 I think if you want to be a purist, RP /= stack, but in practice they are about the same. 13:39:39 stlisp allowed prefix, postfix and infix 13:40:02 (add 5 5) == (5 5 add) == (5 add 5) 13:40:38 (add 5 5) == (5 5 add) == (5 add 5) == add(5 5) == 5 5 (add) == 5 5 add () == 5 (5 add) == add 5 (5) and many more 13:41:00 that is horrible. what if “5” is a function? 13:41:08 5 can't be a function 13:41:17 because it's an integer literal 13:41:27 mroman_, what if it were (add x y) 13:41:43 (add x y) is legal 13:41:50 What if x is a function? 13:42:01 then you'd have to write (add (x) y)? 13:42:10 or add x () y () 13:42:15 or something like that 13:42:20 ( is just syntactic sugar 13:42:22 No such variable is 13:42:30 ) carries out the operation 13:42:46 ((add x 5)) 13:42:54 would be the same thing as (add (x) 5) 13:44:09 ) pops something from the operations-to-carry-out stack and carries the operation out 13:44:13 ( literally does nothing 13:44:13 No such variable literally 13:44:48 ( ( 13:44:48 (input):1:2: error: unexpected 13:44:49 EOF, expected: ")", 13:44:49 dependent type signature, 13:44:49 expression, name 13:44:49 ( ↵… 13:44:53 ( 9 13:44:53 9 : Integer 13:46:10 -!- `^_^v has joined. 13:51:16 This one is stack based. 13:52:05 also gtg. I've places to be. I will certainly be back later though. Sorry my first visit was so short lived. 14:07:56 -!- lleu has joined. 14:14:02 -!- Sprocklem has quit (Ping timeout: 265 seconds). 14:34:38 -!- Tod-Autojoined has joined. 14:34:39 -!- rbryan_ has joined. 14:34:46 -!- gde33|2 has joined. 14:39:05 -!- FreeFull has joined. 14:43:56 -!- TodPunk has quit (Disconnected by services). 14:44:01 -!- Tod-Autojoined has changed nick to TodPunk. 14:44:05 -!- rbryan has quit (*.net *.split). 14:44:05 -!- bb010g has quit (*.net *.split). 14:44:06 -!- gde33 has quit (*.net *.split). 14:44:07 -!- j-bot has quit (*.net *.split). 14:44:07 -!- erdic has quit (*.net *.split). 14:44:08 -!- lambdabot has quit (*.net *.split). 14:44:08 -!- clog has quit (*.net *.split). 14:44:09 -!- trn has quit (*.net *.split). 14:44:09 -!- conehead has quit (*.net *.split). 14:44:11 -!- conehead- has joined. 14:44:11 -!- conehead- has changed nick to conehead. 14:44:16 -!- conehead has quit (Changing host). 14:44:16 -!- conehead has joined. 14:45:49 -!- erdic has joined. 14:45:59 -!- trn has joined. 14:46:36 -!- bb010g_ has joined. 14:55:45 -!- bb010g_ has changed nick to bb010g. 15:00:16 -!- lambdabot has joined. 15:04:22 -!- ais523 has joined. 15:04:46 -!- clog has joined. 15:14:30 -!- ais523 has quit (Ping timeout: 246 seconds). 15:38:46 -!- MDream has changed nick to MDude. 15:57:49 -!- password2 has joined. 16:16:02 -!- nycs has joined. 16:17:17 -!- `^_^v has quit (Ping timeout: 252 seconds). 16:17:52 -!- idris-bot has quit (Ping timeout: 276 seconds). 16:18:55 -!- Melvar has quit (Ping timeout: 264 seconds). 16:19:47 -!- Melvar has joined. 16:38:16 -!- Wright has joined. 16:46:09 -!- boily has quit (Quit: HUNDRED CHICKEN). 17:02:03 -!- mihow has joined. 17:06:14 -!- evalj has joined. 17:12:55 -!- heroux has quit (Remote host closed the connection). 17:18:26 -!- mihow has quit (Quit: mihow). 17:19:03 -!- mihow has joined. 17:24:37 -!- heroux has joined. 17:35:11 -!- atrapado has joined. 17:36:07 I have a day off! 17:36:26 ... which I have spent half of sleeping 17:36:58 ooh, reverse polish lisp! 17:38:11 why does canada celebrate the 4th of july three days early twh 17:39:34 because our constitutionwas signed by the Queen on that day... or somthing. i'll look it up 17:43:48 Yah, the British North America Act was passed by the British parliament and signed by Queen Victoria on July 1 1867 17:44:43 It united Upper Canada, Lower Canada, New Brunswick and Nova Scotia into the Dominion of Canada. My father's generation called it Dominion Day 17:44:54 -!- Sgeo_ has joined. 17:45:19 Sghello! 17:45:50 `wisdom 17:45:59 -!- Sgeo has quit (Ping timeout: 244 seconds). 17:46:01 bfjoust/bfjoust is a spamming tool for #esoteric. 17:46:10 `? canada 17:46:12 Canada is Big Scotland. Like, you know, very big. 17:48:52 -!- zzo38 has joined. 17:49:28 hezzo38! 17:50:35 `wisdom of zzo38 17:50:36 twnh/twnh is dubious hambiguitous help that will or will not be help. 17:52:25 `learn_append twnh It is provided by a toe with no hair. 17:52:28 Learned 'twnh': twnh is dubious hambiguitous help that will or will not be help. It is provided by a toe with no hair. 17:52:59 you see, i've been through the desert on a toe with no hair 17:52:59 Queen Victoria is the grandmother of the current monarchs of England, Sweden, Norway, Denmark, and Spain. 18:06:28 the Constitution Act, 1982 was proclaimed on April 17 18:09:35 -!- boily has joined. 18:22:20 and there were a bounch of constitution acts in between, esentially whenever a new province joined 18:23:17 boilygiorno 18:23:30 borenjour! 18:27:44 -!- lemurian has joined. 18:29:58 -!- x10A94 has quit (Read error: Connection reset by peer). 18:36:40 -!- GeoDude has changed nick to GeekDude. 18:42:07 -!- `^_^ has joined. 18:43:25 -!- nycs has quit (Ping timeout: 250 seconds). 18:48:39 -!- staffehn has quit (Ping timeout: 246 seconds). 18:49:17 coppro: chelloppro! happy Canaday! 18:49:32 happy canada day to you! 18:49:42 boily: why does canada celebrate the 4th of july three days early twh 18:49:57 `wisdom of boily 18:49:59 for further details/who knows 18:50:44 shellochaf! wisdom of boily? 18:50:52 `wisdom 18:50:53 bookwatching/bookwatching is when you conflagrate birdwatching and the books used to identify them in the same object. 18:51:36 `culprits wisdom/bookwatching 18:51:38 oerjan elliott Bike FreeFull elliott Sgeo boily 18:51:45 `wisdom birds 18:51:47 qdbfmt/qdbformat is: message; * nick action; two spaces between messages; all elisions marked with [...] other than irrelevant intervening messages; for messages separated by elision, one space on each side, not two 18:52:04 qdbfmt is for the birds 18:53:22 -!- staffehn has joined. 18:55:46 `wisdom 18:55:48 u/u monad? 18:56:31 `` wisdom | rainwords 18:56:32 ​roujo's relevant info/That information is stored in an unnamed metal cabinet in one of the top floors of an obscure administrative building with a number that you probably never heard of. 18:56:36 ok that might be a bit too much 18:56:58 boily: also happy moving day 19:01:20 ghah! this is bright! 19:02:04 coppro: the neighbour I have never seen is moving today. there are noises and moving appliances. 19:02:38 `wisdom moving 19:02:39 coonspirator/A coonspirator is caterpillar silk wrapped in collaborators. 19:02:56 `quote moving 19:02:58 231) gah, who'd have thought removing concurrency from algol could be so difficult 19:08:11 -!- password2 has quit (Remote host closed the connection). 19:18:22 `wisdom 19:18:23 sleep/Sleep is for the weak. 19:19:14 * shachaf is tempted to introduce some cleverness into wisdom entries rather than just using cat 19:19:21 cat | rnooodl, rather 19:42:48 boily: care to reschedule? 19:43:41 quintopia: for now I don't know exactly when. perhaps some time around July 11? 19:44:18 sounds good to me. did everything install okay? 19:45:34 I haven't todayed following your @massage, but it'll work. 19:46:10 (besides, getting some pressure from cow orkers to steam with them too. the advantage they have over you is that they can directly wallop me around the head due to physical proximity.) 19:46:37 we should also meet sometime this summer. 19:46:58 `quote 19:46:59 743) STOP CAPITALIZING It's making me feel weird the I has to be capitilized its proper grammer 19:48:13 not our proudest `quote moment there... 19:52:25 `wisdom 19:52:26 something-that-isn't-in-hackego's-wisdom/It is now. 19:52:33 `wisdom 19:52:34 le/rn/le/rn makes creating wisdom entries manually a thing of the past. 19:52:49 ¶ wisdom 19:52:52 `wisdom 19:52:53 doesthiswork/no 19:52:58 `wisdom 19:52:59 wfraatw/A WFRAATW is a well-founded recursive acronym akin to "WFRAATW". 19:59:46 -!- nycs has joined. 20:00:10 [wiki] [[Special:Log/newusers]] create * Bojidar-bg * New user account 20:01:51 -!- `^_^ has quit (Ping timeout: 256 seconds). 20:02:11 `? k 20:02:12 K K K Ken 20:37:21 -!- TieSoul has joined. 20:39:54 `wisdom 20:39:57 ramen/拉麵是一種類型的麵條縫製從原始樹木。 20:43:16 -!- FreeFull has quit (Quit: BBS). 20:49:01 `culprits wisdom/ramen 20:49:03 oerjan elliott boily 20:50:05 caveat translator: don't expect this sentence to be grammaticatitatively correct, much less to make sense. the ramen are still delicious hth 20:55:01 -!- TieSoul has quit (Remote host closed the connection). 20:55:53 -!- evalj has quit (Remote host closed the connection). 20:58:07 -!- FreeFull has joined. 21:02:37 -!- rbryan_ has changed nick to rbryan. 21:06:22 -!- Patashu has joined. 21:13:25 -!- rbryan has quit (Read error: Connection reset by peer). 21:18:40 -!- oerjan has joined. 21:19:55 wtf codu.org expired 21:20:10 lol 21:20:17 ugh 21:20:24 did a squatter get it for good 21:20:33 and Gregor has been idle for 10 days 21:20:45 (and that's only because he pinged out then) 21:20:56 Hmm, whois is still showing it registered to Gregor. 21:21:18 updated july 1 21:21:29 expires june 30, 2016 21:21:29 seems fine 21:21:41 aha 21:21:49 i guess it just hasn't propagated 21:23:48 i get a page with a lot of strange links and "This Domain Name Has Expired - Renewal Instructions." at the bottom 21:24:48 and now it refuses to reload. oh well. tunes -> 21:40:20 WTF. 21:40:52 -!- Patashu has quit (Ping timeout: 256 seconds). 21:40:53 pikhq: mountain view is that awful? 21:41:03 shachaf: No. 21:41:15 WTF on codu.org expiry. 21:41:28 You're not finding it awful? 21:41:36 I'm not in Mountain View yet. 21:41:48 It looks like my move is next week. 21:41:53 awfulle and artifycial 21:42:33 -!- mauris has quit (Ping timeout: 265 seconds). 21:57:06 -!- nycs has quit (Quit: This computer has gone to sleep). 21:57:21 -!- atehwa has quit (Remote host closed the connection). 21:57:21 -!- villasukka has quit (Read error: Connection reset by peer). 22:08:33 Queen Victoria is the grandmother of the current monarchs of England, Sweden, Norway, Denmark, and Spain. <-- i'm pretty sure that's at least one generation off, i think two. 22:09:18 harald <- olav <- maud <- edward <- victoria iirc 22:11:39 @tell oren Queen Victoria is the grandmother of the current monarchs of England, Sweden, Norway, Denmark, and Spain. <-- that's two generations off for norway hth 22:11:39 Consider it noted. 22:17:29 -!- AnotherTest has quit (Quit: ZNC - http://znc.in). 22:17:39 hm the swedish king is descended from victoria in two ways 22:24:18 @tell oren three off for spain, although their king just changed. 22:24:18 Consider it noted. 22:38:49 -!- hilquias has quit (Remote host closed the connection). 22:40:04 -!- scoofy has quit (Ping timeout: 276 seconds). 22:41:41 `? chess 22:41:42 Chess is a complex boardgame, where players exchange unclear royal steaks until they decide which of them has lost. The game is recorded through the Gringmuth Moving Pineapple Notation. 22:42:12 @tell oren monarchy is difficult. beware the moving pineapples. 22:42:12 Consider it noted. 22:43:50 pineapples? 22:45:07 Hthththth 22:46:51 -!- scoofy has joined. 22:46:51 パインアップル 22:46:52 -!- atrapado has quit (Quit: Leaving). 22:54:48 oerjan: pineapples hth 22:54:50 pikhq: have you played riichi? 22:54:58 No. 22:55:42 you should 23:42:00 I seem to have accidentaly entered a ziggurat, and where's elliott. 23:43:31 Sixpig. 23:46:33 http://www.wattagnet.com/Six_pig__poultry_alternative_feed_ingredients.html 23:49:48 i do not know where elliott is, he was last sighted on the wiki by accident. 23:57:32 [wiki] [[Joke language list]] M http://esolangs.org/w/index.php?diff=43369&oldid=43245 * Oerjan * (+0) /* General languages */ order 23:59:02 what do bananas and pineapples have in common