←2015-06-30 2015-07-01 2015-07-02→ ↑2015 ↑all
00:02:55 <b_jonas> damn, I only wanted to implement a small part of this library, with only the functions I need
00:03:08 <zzo38> Of what library is it?
00:03:23 <b_jonas> 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 <b_jonas> 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 <zzo38> Still it can help if it is publish later on so that other people can look too, I suppose
00:04:47 <zzo38> But, what library is it, and what function is it?
00:04:47 <b_jonas> 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 <b_jonas> this one has a different interface and somewhat different scope from those
00:05:28 -!- yorick has joined.
00:05:44 <b_jonas> 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 <b_jonas> (nor float)
00:06:37 <b_jonas> and I'm targetting only one cpu type
00:06:41 <b_jonas> some of these might change later
00:06:58 <b_jonas> the api tries to look very different from vectorclass though
00:09:04 <b_jonas> this is why I mentioned #define Z ) const { return
00:09:10 <b_jonas> but that's a joke, I'm not really doing that
00:09:20 <b_jonas> I'm using all kinds of complicated template tricks instead
00:10:13 <b_jonas> 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 <b_jonas> that can get ugly
00:10:53 <b_jonas> (there are more extra classes and class templates for other utility purposes)
00:12:09 <quintopia> @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 <lambdabot> Consider it noted.
00:18:50 -!- yorick has quit (Ping timeout: 252 seconds).
00:30:27 <b_jonas> 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 <b_jonas> (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 <b_jonas> ok, let's see what happens
01:16:12 <b_jonas> hmm, did it go to an infinite loop, or only very slow?
01:16:21 <b_jonas> it should be fast
01:16:29 <b_jonas> well, somewhat fast
01:17:53 <b_jonas> hmm
01:17:59 <b_jonas> I think a condition is negated or something
01:19:05 <b_jonas> yep, it seems so... but which one
01:21:35 -!- GeekDude has changed nick to }{FISH}.
01:27:37 <b_jonas> oh no, I'm inviting the raptors by adding a goto
01:30:42 <b_jonas> ah, I can see the reversed condition
01:31:44 <b_jonas> ah, much better now!
01:33:36 <b_jonas> er what's with it now?
01:33:48 <b_jonas> memory corruption where?
01:36:06 <b_jonas> ah ok, it depends on the input image size
01:37:09 <b_jonas> 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 <b_jonas> oh great, found the first bug in the library
01:51:43 <b_jonas> this one luckily was not well hidden
02:12:19 -!- digitalcold has quit (Ping timeout: 252 seconds).
02:12:21 <b_jonas> 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 <MDude> https://www.youtube.com/watch?v=1TAOKIRV2d4
02:58:43 <b_jonas> argh! I still don't see where the memory corruption bug is
02:58:52 <b_jonas> I must be writing past an array somewhere
02:58:57 <b_jonas> (in some direction)
03:04:57 <fowl> MDude yours?
03:05:06 <MDude> no
03:05:17 <fowl> Its neat
03:06:11 <MDude> Yeah
03:35:18 -!- nys has quit (Quit: quit).
03:43:14 -!- hilquias has quit (Ping timeout: 256 seconds).
03:43:55 <b_jonas> uh oh
03:44:01 <MDude> I ought to try making something based on Oragami when I get around to 3D game stuff.
03:44:03 <MDude> What?
03:44:44 <MDude> This is what happens when I wait to say a thing. Other things happen first.
03:46:23 <b_jonas> NOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO
03:46:37 <b_jonas> I marked a variable that gives the dimension of a dynamic array as static when
03:46:43 <b_jonas> that dimension should change
03:46:51 <b_jonas> THAT'S WHAT CAUSED THE CORRUPTION
03:46:53 <b_jonas> FUCK YOU
03:47:39 <MDude> Thrilling tale
03:47:48 <b_jonas> I'VE BEEN DEBUGGING THIS FOR HOURS NOW
03:53:13 <coppro> b_jonas: w
03:57:14 <FreeFull> b_jonas: Sounds like you should have used a better language
03:57:41 <b_jonas> it wasn't the fault of the language
03:57:44 <b_jonas> it was the fault of my code
03:58:27 <FreeFull> If you've used a language without dynamic-sized stack-allocated arrays, it wouldn't have happened
03:58:40 <FreeFull> I recommend malborge
04:02:07 <b_jonas> FreeFull: this wasn't a stack-allocated language, but a heap-allocated one
04:02:18 <FreeFull> b_jonas: Well, even worse
04:03:19 <FreeFull> What's the language?
04:04:49 -!- Herbalist has joined.
04:05:07 <b_jonas> 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 <Jafet> Jorge Luis "Mal" Borges
04:07:50 <FreeFull> b_jonas: Why were you even declaring a static variable
04:08:06 -!- perrier has joined.
04:09:10 <b_jonas> 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 <FreeFull> b_jonas: But, why wasn't it const
04:09:35 <b_jonas> FreeFull: it was const
04:09:40 <b_jonas> as in, static const int
04:09:47 <b_jonas> it should have been just const int
04:10:36 <FreeFull> Ok, again, why was it static in the first place when you first wrote it?
04:11:22 <b_jonas> because it was a compile-time constant
04:15:52 <FreeFull> But that's not what static means
04:30:24 <fowl> 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 <MDream> 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 <fowl> MDream, dunno, english is my fourth language after clucks, chirps and whistles
05:20:59 <Walpurgisnacht> ?
05:34:28 <fowl> bird langs
05:44:08 <int-e> `cat canary
05:44:18 <HackEgo> Spjong
05:44:26 <int-e> fungot: where are you?!
05:44:37 <int-e> fnordbot: chirp
05:44:38 <fnordbot> 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 <Walpurgisnacht> I see?
05:55:32 -!- Wright has quit (Ping timeout: 264 seconds).
05:58:16 <int-e> Walpurgisnacht: what you see is what you get
05:58:57 <Walpurgisnacht> Sounds about right
06:04:47 <HackEgo> [wiki] [[Special:Log/newusers]] create * YourLocalFax * New user account
06:07:01 -!- Walpurgisnacht has quit (Remote host closed the connection).
06:54:15 <HackEgo> [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 <HackEgo> [wiki] [[Language list]] http://esolangs.org/w/index.php?diff=43353&oldid=43345 * YourLocalFax * (+15) /* M */
06:56:29 <HackEgo> [wiki] [[Mindfunc]] http://esolangs.org/w/index.php?diff=43354&oldid=43352 * YourLocalFax * (-2) /* Implementations */
06:57:05 <HackEgo> [wiki] [[Mindfunc]] http://esolangs.org/w/index.php?diff=43355&oldid=43354 * YourLocalFax * (+23) /* Implementations */
06:58:08 <HackEgo> [wiki] [[Brainfuck extensions]] http://esolangs.org/w/index.php?diff=43356&oldid=39116 * YourLocalFax * (+14)
06:58:29 <HackEgo> [wiki] [[Brainfuck extensions]] http://esolangs.org/w/index.php?diff=43357&oldid=43356 * YourLocalFax * (+0)
06:58:47 <HackEgo> [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 <HackEgo> [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 <HackEgo> [wiki] [[Mindfunc]] http://esolangs.org/w/index.php?diff=43360&oldid=43359 * YourLocalFax * (-9) /* Consumers */
07:28:00 <HackEgo> [wiki] [[Mindfunc]] http://esolangs.org/w/index.php?diff=43361&oldid=43360 * YourLocalFax * (+0) /* Consumers */
07:29:14 <HackEgo> [wiki] [[Mindfunc]] http://esolangs.org/w/index.php?diff=43362&oldid=43361 * YourLocalFax * (-62) /* Built-ins */
07:30:11 <HackEgo> [wiki] [[Mindfunc]] http://esolangs.org/w/index.php?diff=43363&oldid=43362 * YourLocalFax * (+28)
07:30:39 <HackEgo> [wiki] [[Mindfunc]] http://esolangs.org/w/index.php?diff=43364&oldid=43363 * YourLocalFax * (+1) /* Built-ins */
07:31:53 <HackEgo> [wiki] [[Mindfunc]] http://esolangs.org/w/index.php?diff=43365&oldid=43364 * YourLocalFax * (+66) /* Other Examples */
07:32:08 <HackEgo> [wiki] [[Mindfunc]] http://esolangs.org/w/index.php?diff=43366&oldid=43365 * YourLocalFax * (+0) /* Other Examples */
07:33:32 <HackEgo> [wiki] [[Mindfunc]] http://esolangs.org/w/index.php?diff=43367&oldid=43366 * YourLocalFax * (+24)
07:33:53 <HackEgo> [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 <rbryan> 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 <FreeFull> rbryan: Sure
13:25:04 <rbryan> https://github.com/rbryan/rplisp
13:25:11 <rbryan> It's a reverse polish lisp.
13:25:16 <rbryan> And it's terrible.
13:25:42 <rbryan> https://github.com/rbryan/rplisp/blob/master/factorial.rpl
13:29:21 -!- nys has joined.
13:35:01 <mroman_> there's no such thing as terrible
13:35:04 <mroman_> except numberic underload
13:35:19 <mroman_> terribly boring derivatives are terrible
13:35:38 -!- FreeFull has quit (Quit: BBS).
13:36:38 <boily> guys, guys! we're missing a very important ritual here!
13:36:43 <boily> `relcome rbryan
13:36:45 <HackEgo> rbryan: Welcome to the international hub for esoteric programming language design and deployment! For more information, check out our wiki: <http://esolangs.org/>. (For the other kind of esoterica, try #esoteric on EFnet or DALnet.)
13:36:50 <boily> @massages-loud
13:36:50 <lambdabot> 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 <boily> @tell quintopia AAAAAAAAAAAAAAAAAAH! oh well.
13:37:12 <lambdabot> Consider it noted.
13:38:35 <mroman_> is reverse polish == stack based?
13:38:35 <mroman_> so
13:38:42 <mroman_> 1 2 + 3 -?
13:38:46 <mroman_> (1 + 2) - 3?
13:39:22 <mroman_> Stlisp could do that!
13:39:38 <boily> I think if you want to be a purist, RP /= stack, but in practice they are about the same.
13:39:39 <mroman_> stlisp allowed prefix, postfix and infix
13:40:02 <mroman_> (add 5 5) == (5 5 add) == (5 add 5)
13:40:38 <mroman_> (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 <boily> that is horrible. what if “5” is a function?
13:41:08 <mroman_> 5 can't be a function
13:41:17 <mroman_> because it's an integer literal
13:41:27 <Taneb> mroman_, what if it were (add x y)
13:41:43 <mroman_> (add x y) is legal
13:41:50 <Taneb> What if x is a function?
13:42:01 <mroman_> then you'd have to write (add (x) y)?
13:42:10 <mroman_> or add x () y ()
13:42:15 <mroman_> or something like that
13:42:20 <mroman_> ( is just syntactic sugar
13:42:22 <idris-bot> No such variable is
13:42:30 <mroman_> ) carries out the operation
13:42:46 <mroman_> ((add x 5))
13:42:54 <mroman_> would be the same thing as (add (x) 5)
13:44:09 <mroman_> ) pops something from the operations-to-carry-out stack and carries the operation out
13:44:13 <mroman_> ( literally does nothing
13:44:13 <idris-bot> No such variable literally
13:44:48 <boily> ( (
13:44:48 <idris-bot> (input):1:2: error: unexpected
13:44:49 <idris-bot> EOF, expected: ")",
13:44:49 <idris-bot> dependent type signature,
13:44:49 <idris-bot> expression, name
13:44:49 <idris-bot> (<EOF> ↵…
13:44:53 <mroman_> ( 9
13:44:53 <idris-bot> 9 : Integer
13:46:10 -!- `^_^v has joined.
13:51:16 <rbryan> This one is stack based.
13:52:05 <rbryan> 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 <oren> I have a day off!
17:36:26 <oren> ... which I have spent half of sleeping
17:36:58 <oren> ooh, reverse polish lisp!
17:38:11 <shachaf> why does canada celebrate the 4th of july three days early twh
17:39:34 <oren> because our constitutionwas signed by the Queen on that day... or somthing. i'll look it up
17:43:48 <oren> Yah, the British North America Act was passed by the British parliament and signed by Queen Victoria on July 1 1867
17:44:43 <oren> 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 <oren> Sghello!
17:45:50 <shachaf> `wisdom
17:45:59 -!- Sgeo has quit (Ping timeout: 244 seconds).
17:46:01 <HackEgo> bfjoust/bfjoust is a spamming tool for #esoteric.
17:46:10 <shachaf> `? canada
17:46:12 <HackEgo> Canada is Big Scotland. Like, you know, very big.
17:48:52 -!- zzo38 has joined.
17:49:28 <oren> hezzo38!
17:50:35 <shachaf> `wisdom of zzo38
17:50:36 <HackEgo> twnh/twnh is dubious hambiguitous help that will or will not be help.
17:52:25 <shachaf> `learn_append twnh It is provided by a toe with no hair.
17:52:28 <HackEgo> 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 <shachaf> you see, i've been through the desert on a toe with no hair
17:52:59 <oren> Queen Victoria is the grandmother of the current monarchs of England, Sweden, Norway, Denmark, and Spain.
18:06:28 <coppro> the Constitution Act, 1982 was proclaimed on April 17
18:09:35 -!- boily has joined.
18:22:20 <oren> and there were a bounch of constitution acts in between, esentially whenever a new province joined
18:23:17 <oren> boilygiorno
18:23:30 <boily> 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 <boily> coppro: chelloppro! happy Canaday!
18:49:32 <coppro> happy canada day to you!
18:49:42 <shachaf> boily: <shachaf> why does canada celebrate the 4th of july three days early twh
18:49:57 <shachaf> `wisdom of boily
18:49:59 <HackEgo> for further details/who knows
18:50:44 <boily> shellochaf! wisdom of boily?
18:50:52 <boily> `wisdom
18:50:53 <HackEgo> bookwatching/bookwatching is when you conflagrate birdwatching and the books used to identify them in the same object.
18:51:36 <shachaf> `culprits wisdom/bookwatching
18:51:38 <HackEgo> oerjan elliott Bike FreeFull elliott Sgeo boily
18:51:45 <shachaf> `wisdom birds
18:51:47 <HackEgo> qdbfmt/qdbformat is: <nick> 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 <shachaf> qdbfmt is for the birds
18:53:22 -!- staffehn has joined.
18:55:46 <boily> `wisdom
18:55:48 <HackEgo> u/u monad?
18:56:31 <shachaf> `` wisdom | rainwords
18:56:32 <HackEgo> 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 <shachaf> ok that might be a bit too much
18:56:58 <coppro> boily: also happy moving day
19:01:20 <boily> ghah! this is bright!
19:02:04 <boily> coppro: the neighbour I have never seen is moving today. there are noises and moving appliances.
19:02:38 <shachaf> `wisdom moving
19:02:39 <HackEgo> coonspirator/A coonspirator is caterpillar silk wrapped in collaborators.
19:02:56 <boily> `quote moving
19:02:58 <HackEgo> 231) <ais523> 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 <boily> `wisdom
19:18:23 <HackEgo> 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 <shachaf> cat | rnooodl, rather
19:42:48 <quintopia> boily: care to reschedule?
19:43:41 <boily> quintopia: for now I don't know exactly when. perhaps some time around July 11?
19:44:18 <quintopia> sounds good to me. did everything install okay?
19:45:34 <boily> I haven't todayed following your @massage, but it'll work.
19:46:10 <boily> (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 <boily> we should also meet sometime this summer.
19:46:58 <tswett> `quote
19:46:59 <HackEgo> 743) <Lumpio-> STOP CAPITALIZING <Lumpio-> It's making me feel weird <shubshub> the I has to be capitilized its proper grammer
19:48:13 <boily> not our proudest `quote moment there...
19:52:25 <boily> `wisdom
19:52:26 <HackEgo> something-that-isn't-in-hackego's-wisdom/It is now.
19:52:33 <boily> `wisdom
19:52:34 <HackEgo> le/rn/le/rn makes creating wisdom entries manually a thing of the past.
19:52:49 <boily> ¶ wisdom
19:52:52 <boily> `wisdom
19:52:53 <HackEgo> doesthiswork/no
19:52:58 <boily> `wisdom
19:52:59 <HackEgo> wfraatw/A WFRAATW is a well-founded recursive acronym akin to "WFRAATW".
19:59:46 -!- nycs has joined.
20:00:10 <HackEgo> [wiki] [[Special:Log/newusers]] create * Bojidar-bg * New user account
20:01:51 -!- `^_^ has quit (Ping timeout: 256 seconds).
20:02:11 <b_jonas> `? k
20:02:12 <HackEgo> K K K Ken
20:37:21 -!- TieSoul has joined.
20:39:54 <fowl> `wisdom
20:39:57 <HackEgo> ramen/拉麵是一種類型的麵條縫製從原始樹木。
20:43:16 -!- FreeFull has quit (Quit: BBS).
20:49:01 <shachaf> `culprits wisdom/ramen
20:49:03 <HackEgo> oerjan elliott boily
20:50:05 <boily> 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 <oerjan> wtf codu.org expired
21:20:10 <coppro> lol
21:20:17 <shachaf> ugh
21:20:24 <shachaf> did a squatter get it for good
21:20:33 <oerjan> and Gregor has been idle for 10 days
21:20:45 <oerjan> (and that's only because he pinged out then)
21:20:56 <shachaf> Hmm, whois is still showing it registered to Gregor.
21:21:18 <coppro> updated july 1
21:21:29 <coppro> expires june 30, 2016
21:21:29 <coppro> seems fine
21:21:41 <oerjan> aha
21:21:49 <oerjan> i guess it just hasn't propagated
21:23:48 <oerjan> i get a page with a lot of strange links and "This Domain Name Has Expired - Renewal Instructions." at the bottom
21:24:48 <oerjan> and now it refuses to reload. oh well. tunes ->
21:40:20 <pikhq> WTF.
21:40:52 -!- Patashu has quit (Ping timeout: 256 seconds).
21:40:53 <shachaf> pikhq: mountain view is that awful?
21:41:03 <pikhq> shachaf: No.
21:41:15 <pikhq> WTF on codu.org expiry.
21:41:28 <shachaf> You're not finding it awful?
21:41:36 <pikhq> I'm not in Mountain View yet.
21:41:48 <pikhq> It looks like my move is next week.
21:41:53 <oerjan> 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 <oerjan> <oren> 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 <oerjan> harald <- olav <- maud <- edward <- victoria iirc
22:11:39 <oerjan> @tell oren <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 <lambdabot> Consider it noted.
22:17:29 -!- AnotherTest has quit (Quit: ZNC - http://znc.in).
22:17:39 <oerjan> hm the swedish king is descended from victoria in two ways
22:24:18 <oerjan> @tell oren three off for spain, although their king just changed.
22:24:18 <lambdabot> 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 <boily> `? chess
22:41:42 <HackEgo> 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 <boily> @tell oren monarchy is difficult. beware the moving pineapples.
22:42:12 <lambdabot> Consider it noted.
22:43:50 <oerjan> pineapples?
22:45:07 <fowl> Hthththth
22:46:51 -!- scoofy has joined.
22:46:51 <oren> パインアップル
22:46:52 -!- atrapado has quit (Quit: Leaving).
22:54:48 <boily> oerjan: pineapples hth
22:54:50 <coppro> pikhq: have you played riichi?
22:54:58 <pikhq> No.
22:55:42 <coppro> you should
23:42:00 <boily> I seem to have accidentaly entered a ziggurat, and where's elliott.
23:43:31 <pikhq> Sixpig.
23:46:33 <boily> http://www.wattagnet.com/Six_pig__poultry_alternative_feed_ingredients.html
23:49:48 <oerjan> i do not know where elliott is, he was last sighted on the wiki by accident.
23:57:32 <HackEgo> [wiki] [[Joke language list]] M http://esolangs.org/w/index.php?diff=43369&oldid=43245 * Oerjan * (+0) /* General languages */ order
23:59:02 <shachaf> what do bananas and pineapples have in common
←2015-06-30 2015-07-01 2015-07-02→ ↑2015 ↑all