←2016-09-10 2016-09-11 2016-09-12→ ↑2016 ↑all
00:00:44 <shachaf> Taneb: Which series?
00:00:56 <shachaf> Or which part?
00:05:33 -!- DHeadshot has quit (Ping timeout: 240 seconds).
00:11:52 -!- carado has quit (Ping timeout: 260 seconds).
00:13:43 <quintopia> ooh i like zachtronics games
00:35:43 -!- oerjan has joined.
00:39:12 -!- hppavilion[1] has quit (Ping timeout: 240 seconds).
00:53:05 -!- augur has quit (Remote host closed the connection).
01:17:30 -!- Cale_ has joined.
01:17:32 -!- Cale_ has quit (Read error: Connection reset by peer).
01:18:10 -!- Cale_ has joined.
01:18:27 -!- Cale has quit (Disconnected by services).
01:18:35 -!- Cale_ has changed nick to Cale.
01:19:00 <oerjan> @ask Taneb was it DWFO?
01:19:00 <lambdabot> Consider it noted.
01:19:24 <izabera> `? dwfo
01:19:28 <HackEgo> dwfo? ¯\(°​_o)/¯
01:19:51 <oerjan> `learn DWFO is the Doctor Who Fan Orchestra.
01:19:55 <HackEgo> Learned 'dwfo': DWFO is the Doctor Who Fan Orchestra.
01:20:32 <oerjan> it happened to be announced today on a forum i know Taneb sometimes reads
01:53:21 <izabera> clang -Weverything enables the weirdest warnings
01:53:28 <izabera> warning: variable length array used [-Wvla]
01:53:38 <izabera> warning: format string is not a string literal [-Wformat-nonliteral]
01:53:39 <izabera> printf(format, val);
01:54:09 <izabera> warnings about padding in structs
01:54:42 <izabera> how am i supposed to do these things? o.o
01:57:41 -!- hppavilion[1] has joined.
02:01:29 <zzo38> Then enable only the warnings you will need.
02:04:02 <izabera> but it found a bug :(
02:04:40 <izabera> 1 real bug, 3 harmless-but-ok-lets-change-it bugs and about 180 bogus warnings
02:10:49 <zzo38> Then enable everything and then selectively disable the warnings that you don't want.
02:18:09 -!- augur has joined.
02:21:39 <izabera> make -B CC=clang 'CFLAGS=-Weverything -O1 -D_FORTIFY_SOURCE=2 -Wno-disabled-macro-expansion -Wno-missing-prototypes -Wno-padded -Wno-reserved-id-macro -Wno-date-time -Wno-shorten-64-to-32 -Wno-format-nonliteral -Wno-sign-conversion -Wno-vla -Wno-conversion -Wno-switch-enum -Wno-cast-qual -Wno-unused-macros'
02:23:04 <izabera> make -B CC=clang 'CFLAGS=-Weverything -O1 -D_FORTIFY_SOURCE=2 -Wno-disabled-macro-expansion -Wno-missing-prototypes -Wno-padded -Wno-reserved-id-macro -Wno-date-time -Wno-shorten-64-to-32 -Wno-format-nonliteral -Wno-sign-conversion -Wno-vla -Wno-conversion -Wno-switch-enum -Wno-cast-qual -Wno-unused-macros -pedantic -std=c11'
02:24:07 <izabera> that kind of defeats the point of -Weverything -_-
02:26:11 <oerjan> izabera: i thought the point of -Weverything was to have an option that includes warnings which frequently give false positives; otherwise you use -Wall.
02:32:27 <izabera> it's funny because it also warns about stuff i didn't write
02:32:41 <oerjan> fiendish
02:32:44 <izabera> e.g. glibc does this in stdio.h #define stderr stderr
02:33:05 <izabera> and -Wdisabled-macro-expansion warns because it's a recursive macro
02:39:21 -!- Phantom_Hoover has quit (Read error: Connection reset by peer).
02:41:03 -!- Frooxius has quit (Ping timeout: 240 seconds).
02:50:32 -!- hppavilion[1] has quit (Ping timeout: 240 seconds).
02:50:39 <zzo38> Why does glibc do that in stdio.h?
02:52:42 <pikhq> Because ISO C requires stderr to be a macro.
03:28:48 <zzo38> O, OK
03:29:03 -!- `^_^v has joined.
03:29:36 <zzo38> Why is that, though? What exactly is caused by it being a macro in this way?
03:30:25 <zzo38> I can understand why it might say that it MAY be a macro, but I don't know why it should say that it MUST be a macro.
03:33:47 -!- `^_^v has quit (Ping timeout: 265 seconds).
03:54:04 <pikhq> My guess is some notable body of pre-ISO C code relied on it, and the ISO standard committee wanted to avoid breaking working code if at all possible.
03:54:30 <pikhq> (the latter isn't part of the guess, just explanation for why the former matters as rationale)
03:54:52 <izabera> how do you rely on that?
03:54:56 <izabera> #ifdef stderr ?
03:55:39 <pikhq> Yeah.
03:56:02 <pikhq> I will grant it's really dumb, but that's still what I'm guessing.
04:10:39 -!- hppavilion[1] has joined.
04:18:09 * hppavilion[1] . o O ( If we want to specifically refer to a man who is married, could we say "Missus Consort"? )
04:30:32 -!- hppavilion[1] has quit (Ping timeout: 240 seconds).
04:33:05 <zzo38> I think I might have seen vertical interval timecode signals on an old TV set that I no longer have. I did see they were some sort of time signal, and perhaps that is what it is.
04:33:27 <zzo38> (I only found the description on Wikipedia today. It was a long time ago that I saw it on TV, though.)
04:59:00 -!- oerjan has quit (Quit: leaving).
05:06:21 <zzo38> Someone has told me some of my suggested optimizations for Z-code are extreme.
05:21:32 <\oren\> https://youtu.be/MpPSPQq7oas?t=3m38s
05:23:20 <\oren\> "You can't break this plane. You can land this plane on its fuselage, jack it up, put down the landing gear and then you can take off again."
05:58:39 <zzo38> Do you think this meaning code sharing is OK? http://zzo38computer.org/fossil/tavern.ui/raw/tavernc-parser.c?name=6156d70564da7cdfced7aa6cc25350dac895ea1b
05:59:37 <zzo38> (Search for "share_meanings")
06:22:18 -!- Melvar` has joined.
06:23:42 -!- idris-bot has quit (Ping timeout: 250 seconds).
06:24:54 -!- Melvar has quit (Ping timeout: 276 seconds).
06:39:19 -!- astslash has joined.
06:40:56 -!- astslash has quit (Client Quit).
06:40:58 -!- hppavilion[1] has joined.
06:41:03 -!- atslash has joined.
06:45:55 -!- atslash has quit (Ping timeout: 255 seconds).
06:46:54 -!- atslash has joined.
07:06:30 -!- rntz has quit (Ping timeout: 276 seconds).
07:20:29 -!- digin4 has joined.
07:22:30 <hppavilion[1]> Went to https://en.wikipedia.org/wiki/Spanish_Inquisition
07:22:39 <hppavilion[1]> Page was about the Spanish Inquisition
07:22:43 <hppavilion[1]> Exactly as expected
07:24:34 <hppavilion[1]> I want to run SETI@yourfriendshouse
07:25:43 <shachaf> You seem to have confused this IRC channel with Twitter.
07:25:51 <int-e> meh I just found this ViewPattern: (urlEncode -> query) ... and I don't like it.
07:26:21 <pikhq> My experience with Twitter is the only mode of interaction it has is retweets.
07:26:24 <pikhq> Nothing like IRC at all.
07:26:45 <shachaf> Perfect for this variety of joke, I think.
07:27:09 -!- atslash has quit (Read error: Connection reset by peer).
07:27:14 <shachaf> int-e: Why not?
07:27:29 <int-e> hmm, slightly surreal: http://sprunge.us/SIPH
07:27:38 -!- atslash has joined.
07:28:12 <shachaf> It's like Garfield minus Garfield.
07:28:15 <hppavilion[1]> @shachaf what? What's this 'IRC' you speak of?
07:28:15 <lambdabot> Unknown command, try @list
07:28:34 <int-e> shachaf: it's elegant but a pattern match should not modify data... perhaps prepare it into something digestible... but to my mind url encoding is an important "effect" in some vague sense.
07:29:10 <hppavilion[1]> int-e appears to have me muted...
07:29:18 <hppavilion[1]> :,(
07:29:44 <shachaf> int-e: What about f s | let query = urlEncode s = ...?
07:29:48 <int-e> shachaf: I can see a few advantages (the non-URL-encoded thing isn't even in scope) so perhaps I'll grow to like the pattern.
07:30:06 <shachaf> I like the idea of not even naming a thing that you would only use once anyway.
07:53:01 <hppavilion[1]> When I see the sentence "Every farmer who owns a donkey beats it."
07:53:07 <hppavilion[1]> I can't really see the ambiguity
07:53:23 <hppavilion[1]> And I always end up interpreting it as "Every farmer who owns a donkey masturbates"
07:53:59 <shachaf> int-e has a point.
08:13:21 <hppavilion[1]> I'm looking at https://meta.wikimedia.org/wiki/Friends_of_gays_should_not_be_allowed_to_edit_articles... and I think I got linked there from Uncyclopedia... but I don't actually see why it exists...
08:13:47 <hppavilion[1]> Oh, it's meant to be humorous
08:13:48 <hppavilion[1]> I see
08:14:25 <hppavilion[1]> I thought the title was the /argumentum ad absurdum/ of various proposals, but that the content would be serious
08:17:11 -!- carado has joined.
08:31:11 <myname> protip: if you want people to click on your links, do not add dots at the end of them
08:32:14 <myname> how did you find out it's humorous? because it is obvious pr because of the banner at the top telling so?
08:35:38 -!- AnotherTest has joined.
08:40:05 -!- MoALTz has joined.
08:44:15 -!- atslash has quit (Quit: This computer has gone to sleep).
08:50:52 -!- Lotus_eater has joined.
08:54:21 <Taneb> @messages-loud
08:54:21 <lambdabot> oerjan asked 7h 35m 20s ago: was it DWFO?
08:54:57 <Taneb> @tell oerjan It is not DWFO, it's one being organized by a couple of people in my uni called "STVN"
08:54:57 <lambdabot> Consider it noted.
08:55:29 <shachaf> @tell Taneb hi Taneb
08:55:40 <Taneb> @messages-loud
08:55:41 <lambdabot> You don't have any messages
08:55:48 <Taneb> ...
08:55:52 <Taneb> shachaf, how
08:58:14 -!- Lotus_eater has left ("Leaving").
08:59:18 <shachaf> Taneb: ask oerjan hth
08:59:46 <Taneb> @ask oerjan hth (shachaf told me to)
08:59:46 <lambdabot> Consider it noted.
09:03:25 -!- MoALTz has quit (Quit: Leaving).
09:03:38 -!- digin4 has quit (Quit: Leaving).
09:05:15 -!- AnotherTest has quit (Ping timeout: 264 seconds).
09:10:57 <hppavilion[1]> muuuuuuuuuuuuuuuurduuuuuuuuuuuuuuuuuuuuur
09:10:59 -!- hppavilion[1] has quit (Quit: Leaving).
09:22:59 -!- atslash has joined.
09:25:30 <int-e> `? hth
09:25:32 <HackEgo> hth is help received from a hairy toe. It is not at all hambiguitous.
09:36:35 -!- hppavilion[1] has joined.
09:36:41 <hppavilion[1]> Good job, Jefferson *
09:37:06 <hppavilion[1]> Your YouTube channel is "JeffersonAirplneVEVO", and the icon is just the default "J"
09:37:15 <hppavilion[1]> (And this is a VERIFIED channel)
09:45:47 <int-e> Darn, no fireworks on Schlockmercenary today, just a huge teaser...
09:49:13 <Slereah> Schlock mercenary?
09:49:18 <Slereah> Haven't read that in like ten years
09:49:44 <Slereah> oerjan said 4d 9h 13m 51s ago: <Slereah> Is there a way to implement combinators using C# delegates without getting stack overflows <-- i suspect this is when you need a trampoline.
09:49:49 <Slereah> what is a trampoline*
09:56:34 <shachaf> quoting people who use <-- is very confusing
09:56:43 <shachaf> though this is really a flaw in the <-- convention
09:56:49 <shachaf> scownvention
10:01:27 <hppavilion[1]> shachaf: Why doesn't a second layer of <-- fix it?
10:03:53 <int-e> Hmm, I failed to come up a with a funny way of suggesting that hth stands for heads-tails-heads, a possible outcome from flipping three coins.
10:04:45 <int-e> `? tht
10:04:47 <HackEgo> tht? ¯\(°​_o)/¯
10:05:26 <shachaf> Fortunately the standards for wisdom/ are very low.
10:05:59 <int-e> "World Journal of Research and Review" ... who makes up the names of all those crap pay-for-publishing journals?
10:10:22 <int-e> `learn THT is short for tails-heads-tails, a possible outcome of flipping three coins. It's the opposite of HTH.
10:10:25 <HackEgo> Learned 'tht': THT is short for tails-heads-tails, a possible outcome of flipping three coins. It's the opposite of HTH.
10:11:11 <shachaf> What was that puzzle about what combination of three coin flips is more likely to come up first?
10:12:34 <int-e> something about HHH and TTT having a tendency to clump together
10:14:23 <int-e> So I'd expect to wait the longest for those two, followed by HTH and THT, followed by the other four that can't overlap with themselves. let me check the math...
10:22:51 -!- centrinia has joined.
10:24:36 -!- centrinia has quit (Read error: Connection reset by peer).
10:28:31 <int-e> And if I did that correctly, the expected values are 14 for HHH and TTT, 10 for HTH and THT, and 8 for the others.
10:29:18 -!- Frooxius has joined.
10:30:23 <FireFly> expected number of flips before they occur?
10:30:34 <int-e> for the first time, yes.
10:31:06 <int-e> it was a manual computation though, so feel free to verify the numbers yourself
10:36:08 <int-e> [from #haskell] "<Cooler> well don't you want IO to somehow capture the physical world?" ... in a cage, perhaps?
10:44:52 -!- idris-bot has joined.
10:48:33 -!- Phantom_Hoover has joined.
10:49:59 <hppavilion[1]> Oh, another bad earthquake
10:50:06 <hppavilion[1]> Just like the last time I opened Google news
10:59:32 -!- hppavilion[1] has quit (Ping timeout: 240 seconds).
11:01:09 -!- hppavilion[1] has joined.
11:02:02 * hppavilion[1] . o O ( Is clonecest (especially including gender-inverted clonecest) considered creepy? )
11:22:52 -!- MoALTz has joined.
11:52:13 <fizzie> Maybe you should stop doing it, if it causes earthquakes.
11:57:12 -!- hppavilion[1] has quit (Ping timeout: 240 seconds).
12:07:17 <int-e> ouch I hope none of the punsters on here see this: http://www.mezzacotta.net/pomh/?comic=65
12:09:37 -!- `^_^v has joined.
12:17:23 -!- `^_^v has quit (Quit: This computer has gone to sleep).
12:20:17 -!- `^_^v has joined.
12:37:12 <HackEgo> [wiki] [[Vitsy]] https://esolangs.org/w/index.php?diff=49706&oldid=47284 * VTCAKAVSMoACE * (+280) Added infobox
12:42:55 <HackEgo> [wiki] [[User:VTCAKAVSMoACE]] N https://esolangs.org/w/index.php?oldid=49707 * VTCAKAVSMoACE * (+295) Creation
13:03:01 <HackEgo> [wiki] [[TRUE]] M https://esolangs.org/w/index.php?diff=49708&oldid=37355 * LegionMammal978 * (+27)
13:39:41 -!- `^_^v has quit (Quit: This computer has gone to sleep).
13:42:01 -!- lambdabot has quit (Quit: brb).
13:46:46 -!- lambdabot has joined.
14:17:45 -!- augur has quit (Remote host closed the connection).
14:25:03 -!- Phantom_Hoover has quit (Read error: Connection reset by peer).
14:26:26 -!- Phantom_Hoover has joined.
15:26:12 -!- `^_^v has joined.
15:40:14 -!- Zarutian has joined.
15:49:14 -!- atslash has quit (Ping timeout: 260 seconds).
15:50:05 -!- atslash has joined.
15:52:19 <Taneb> `? abelian group
15:52:21 <HackEgo> abelian group? ¯\(°​_o)/¯
15:57:59 <int-e> `` cd wisdom; grep -r abelian .
15:58:06 <HackEgo> No output.
15:58:14 <int-e> `` cd wisdom; grep -ri abelian .
15:58:16 <HackEgo> No output.
16:33:48 -!- DHeadshot has joined.
16:35:25 <FireFly> int-e: :D
16:35:30 <FireFly> good comic
16:37:41 -!- Melvar` has changed nick to Melvar.
16:45:29 -!- `^_^v has quit (Quit: This computer has gone to sleep).
16:47:04 -!- `^_^v has joined.
17:08:02 -!- izabera has changed nick to izalove.
17:14:55 -!- `^_^v has quit (Quit: This computer has gone to sleep).
17:30:30 -!- DHeadshot has quit (Ping timeout: 276 seconds).
17:36:49 -!- AnotherTest has joined.
17:51:24 -!- heroux_ has joined.
17:55:05 -!- heroux has quit (Ping timeout: 265 seconds).
17:55:09 -!- heroux_ has changed nick to heroux.
18:03:10 -!- heroux has quit (Read error: Connection reset by peer).
18:08:39 -!- heroux has joined.
18:15:24 -!- heroux has quit (Read error: Connection reset by peer).
18:18:59 -!- heroux has joined.
19:33:52 -!- Sgeo_ has quit (Ping timeout: 240 seconds).
19:38:31 <zzo38> int-e: Then why do you write it on here?
19:43:52 <int-e> I do it for the irony
20:11:11 <shachaf> `? int-e
20:11:12 <HackEgo> int-e är inte svensk. Hen kommer att spränga solen. Hen står för sig själv.
20:12:36 <int-e> I may need help for that second part
20:16:44 <int-e> or perhaps I could claim that I succeeded billions of years ago
20:22:32 <\oren\> http://www.orenwatson.be/KSP/P_20160911_151408.jpg <- this is the shit
20:25:16 -!- Sprocklem has quit (Ping timeout: 244 seconds).
20:50:04 -!- Sgeo has joined.
20:50:48 -!- Frooxius has quit (Ping timeout: 250 seconds).
20:51:43 -!- Frooxius has joined.
20:57:23 <izalove> how do i set the license on github so that the api knows about it?
20:59:21 <izalove> ah i'm stupid
20:59:27 <izalove> no wait
20:59:44 <izalove> ok there should be a license field in the reply
20:59:47 <izalove> but i don't see it
21:00:46 <izalove> found it
21:01:12 <izalove> it's in https://api.github.com/repos/username/reponame/license
21:15:19 -!- DHeadshot has joined.
21:19:06 -!- Sprocklem has joined.
21:29:14 -!- augur has joined.
21:29:57 -!- MoALTz has quit (Quit: Leaving).
21:43:26 -!- augur has quit (Remote host closed the connection).
21:46:31 -!- augur has joined.
22:00:19 -!- Sprocklem has quit (Quit: brb).
22:07:29 -!- DHeadshot_ has joined.
22:08:15 -!- DHeadshot has quit (Ping timeout: 264 seconds).
22:27:00 -!- AnotherTest has quit (Ping timeout: 250 seconds).
22:28:01 -!- Zarutian has quit (Quit: Zarutian).
22:31:01 <zzo38> Do you have a scanned or retyped copy of the instructions on the envelope of a IBM flowcharting template?
22:41:58 -!- B1ood6od has joined.
22:42:11 -!- B1ood6od has quit (Changing host).
22:42:11 -!- B1ood6od has joined.
22:43:56 <_46bit> It would be fun to make an IRC channel where a bot with multiple nicks performans plays.
23:05:16 -!- B1ood6od has quit (Ping timeout: 252 seconds).
23:07:08 -!- B1ood6od has joined.
23:36:53 -!- lleu has joined.
23:36:56 -!- lleu has quit (Read error: Connection reset by peer).
23:41:49 -!- hppavilion[1] has joined.
23:51:33 -!- Frooxius has quit (Ping timeout: 240 seconds).
23:56:52 -!- hppavilion[1] has quit (Ping timeout: 240 seconds).
←2016-09-10 2016-09-11 2016-09-12→ ↑2016 ↑all