code logs -> 2016 -> Wed, 15 Jun 2016< code.20160614.log - code.20160616.log >
--- Log opened Wed Jun 15 00:00:14 2016
00:23
<&McMartin>
http://arstechnica.com/security/2016/06/critical-adobe-flash-bug-under-active-at tack-currently-has-no-patch/
00:39 Derakon[AFK] is now known as Derakon
00:52
<@Reiv>
so... don't use flash, right?
00:52
<&McMartin>
Really, you should already not be using flash
00:53
<&McMartin>
But you should currently be *really* not using it~
00:53
<@Reiv>
fair
00:54
<@celticminstrel>
I currently don't seem to have a plugin process active.
00:54
<@celticminstrel>
The nice thing about the plugin process is that if a website starts auto-playing something in another tab, I can just quit the plugin.
00:55
<@celticminstrel>
s/quit/kill/
00:56 Netsplit Golgafrincham.Nightstar.Net <-> Krikkit.Nightstar.Net quits: @PinkFreud
01:02 Netsplit over, joins: @PinkFreud
01:05 catadroid` [catadroid@Nightstar-a8erfh.dab.02.net] has joined #code
01:07 catadroid [catadroid@Nightstar-p06v0q.dab.02.net] has quit [Ping timeout: 121 seconds]
02:19 McMartin [mcmartin@Nightstar-rpcdbf.sntcca.sbcglobal.net] has quit [[NS] Quit: brb]
02:47 Turaiel[Offline] is now known as Turaiel
03:12 Crossfire [Z@Nightstar-r9lk5l.cust.comxnet.dk] has quit [Ping timeout: 121 seconds]
03:13 Shady [ShadyGuru@Nightstar-ut3scg.t132.ptd.net] has quit [[NS] Quit: Yay, he's gone]
03:13 Shady [ShadyGuru@Nightstar-ut3scg.t132.ptd.net] has joined #code
03:21 VirusJTG [VirusJTG@Nightstar-055.kas.104.208.IP] has quit [Connection closed]
03:24 Vornicus [Vorn@ServerAdministrator.Nightstar.Net] has quit [Connection reset by peer]
05:10 Derakon is now known as Derakon[AFK]
05:29 McMartin [mcmartin@Nightstar-rpcdbf.sntcca.sbcglobal.net] has joined #code
05:29 mode/#code [+ao McMartin McMartin] by ChanServ
05:56 Turaiel is now known as Turaiel[Offline]
06:11 Reiv [NSwebIRC@Nightstar-q8avec.kinect.net.nz] has quit [Ping timeout: 121 seconds]
06:16 celticminstrel [celticminst@Nightstar-80kfip.dsl.bell.ca] has quit [[NS] Quit: And lo! The computer falls into a deep sleep, to awake again some other day!]
06:49 Crossfire [Z@Nightstar-r9lk5l.cust.comxnet.dk] has joined #code
06:49 mode/#code [+o Crossfire] by ChanServ
07:22 Shady [ShadyGuru@Nightstar-ut3scg.t132.ptd.net] has quit [[NS] Quit: Yay, he's gone]
07:26 Crossfire [Z@Nightstar-r9lk5l.cust.comxnet.dk] has quit [Connection reset by peer]
07:26 Crossfire [Z@Nightstar-r9lk5l.cust.comxnet.dk] has joined #code
07:26 catadroid` is now known as catadroid
07:26 mode/#code [+o Crossfire] by ChanServ
07:35 catadroid` [catadroid@Nightstar-b59chs.dab.02.net] has joined #code
07:39 catadroid [catadroid@Nightstar-a8erfh.dab.02.net] has quit [Ping timeout: 121 seconds]
10:15 VirusJTG [VirusJTG@Nightstar-6i5vf7.sta.comporium.net] has joined #code
10:15 mode/#code [+ao VirusJTG VirusJTG] by ChanServ
10:44 mac [macdjord@Nightstar-pk7ki5.cable.rogers.com] has joined #code
10:44 mode/#code [+o mac] by ChanServ
10:45 macdjord [macdjord@Nightstar-pk7ki5.cable.rogers.com] has quit [Ping timeout: 121 seconds]
10:56 catadroid` [catadroid@Nightstar-b59chs.dab.02.net] has quit [[NS] Quit: Bye]
11:37 catadroid [catadroid@Nightstar-b59chs.dab.02.net] has joined #code
11:38
< catadroid>
achievement unlocked: used enable_if and SFINAE correctly
11:39
< catadroid>
(return type of an operator[] that enables insert only when the type is default constructible, and otherwise errors)
11:39
< catadroid>
Honestly, I would rather it always errored
11:39
< catadroid>
But nevermind
12:26
< catadroid>
Bah @ people not doing orthogonal merges
12:27 * abudhabi merges catadroid orthogonally.
12:34
< catadroid>
:s
12:35 * TheWatcher tries to parse that parenthetical
12:38 Vornicus [Vorn@ServerAdministrator.Nightstar.Net] has joined #code
12:38 mode/#code [+qo Vornicus Vornicus] by ChanServ
12:47
< catadroid>
operator[] on dictionary types in C++ adds items that don't exist
12:48
< catadroid>
operator[] overloads are only allowed a single parameter
12:49
< catadroid>
So if you want to SFINAE with enable_if you should probably do it on the return type
12:49
< catadroid>
Although I guess it would also work on the parameter type
12:50
< catadroid>
Anyway, the condition of being default constructible lets me enable a mutable version only if the data type can be constructed
12:50
< catadroid>
And otherwise it falls back to a const version that checks the key exists
12:50
< catadroid>
(although this feature isn't in stl types afaik)
12:52
<~Vornicus>
sfinae?
12:53
<@TheWatcher>
Substitution failure is not an error
12:54
< catadroid>
It means that if a template instantiation is invalid, then it's silently removed from consideration rather than raising a compile error
12:55
< catadroid>
Which means that you can conditionally enable code by creating templates that are only valid when you want them to be
12:57 Crossfire [Z@Nightstar-r9lk5l.cust.comxnet.dk] has quit [Ping timeout: 121 seconds]
13:01 Netsplit Deepthought.Nightstar.Net <-> Krikkit.Nightstar.Net quits: @PinkFreud
13:35
<@simon_>
there's a guy interviewing where I work that I really don't like.
13:39 Kindamoody|afk is now known as Kindamoody
13:42 Netsplit over, joins: @PinkFreud
13:47
<@abudhabi>
simon_: And?
13:51
<@simon_>
abudhabi, and I'm thinking about how to cope with this. if he passes 1st round, I should probably tell my boss regardless of what consequence it should or might have.
13:52
<@abudhabi>
What don't you like about him?
13:54
<@simon_>
he's really cheap and was constantly nagging food and kept inviting himself to sit when I invited my girlfriend and her friends to eat at the student kitchen.
13:55
<@simon_>
I was kind of too polite to just say that he should go elsewhere and stop bugging me. when I eventually did, it didn't come out very nice.
13:55
<@simon_>
he'll probably fail the programming test, though.
13:56
<@abudhabi>
Telling your boss that you know and don't think highly of his character is probably a decent idea if he makes the test.
13:59
<@simon_>
I haven't talked to him in four years. and I don't know if others would feel the same about him.
14:00
<@simon_>
I'd hate for my own pettiness to cause them to not hire a good programmer if he is one by now. (but a funny now: I told a guy whose PhD overlapped with this guy's, and his remark was: lol)
14:00
<@simon_>
I taught this guy in one Haskell course, and apparently he's quite good with theory of algorithms and kinda crappy as a programmer. but a full PhD programme probably changed that a bit. :)
14:00
<@simon_>
s/funny now/funny note/
14:02 Netsplit Kakrafoon.Nightstar.Net <-> Krikkit.Nightstar.Net quits: @PinkFreud
14:02
<@simon_>
we just had a staredown. at least the feeling is mutual. :P
14:02
<@abudhabi>
He's clearly a bad fit for the team.
14:02 Netsplit over, joins: @PinkFreud
14:05 catadroid` [catadroid@Nightstar-k6fper.dab.02.net] has joined #code
14:09 catadroid [catadroid@Nightstar-b59chs.dab.02.net] has quit [Ping timeout: 121 seconds]
14:18 * TheWatcher readsup
14:18
<@TheWatcher>
Yeah, there are plenty of good programmers out there
14:20
<@TheWatcher>
No point in keeping quiet and trying to put up with someone you know you won't work well with - which will impact the team - just on the off-chance that he may have improved his programming skills (I note that I know several CS PhD students who are horrible programmers, so I wouldn't bank on it doing anything)
14:23 Xon [Xon@Nightstar-j72.ku7.252.119.IP] has quit [Ping timeout: 121 seconds]
14:25 Xon [Xon@Nightstar-j72.ku7.252.119.IP] has joined #code
14:25 mode/#code [+o Xon] by ChanServ
14:36
<@simon_>
okay, thanks.
14:45
<@simon_>
so it turns out this guy said "I'm not gonna work with that guy." and pretty much left the interview. wow. I feel like I should write him an email and say that I'm sorry we still have that effect on each other, but that it's probably for the better.
14:45
<@simon_>
(because he was given a tour of the premises and noticed me)
14:46
<@TheWatcher>
Well, problem solved.
14:46
<@TheWatcher>
Now you just need to avoid the inevitable ninja assassins.
14:47
<@simon_>
yes, and I get to be the good guy. and also, I get to let go of some of my childish "I don't like him!" attitude because I'm no longer contested at my workplace.
14:47
<@simon_>
being a grown-up is awesome!
15:30 celticminstrel [celticminst@Nightstar-80kfip.dsl.bell.ca] has joined #code
15:30 mode/#code [+o celticminstrel] by ChanServ
15:38
<@abudhabi>
Damn. The no-ip.org guys figured out that my older hostname was from before the time one needed to reconfirm them. Now it, too, gets the notifications.
15:38 Netsplit Deepthought.Nightstar.Net <-> Krikkit.Nightstar.Net quits: @PinkFreud
15:39 Netsplit over, joins: @PinkFreud
15:40 Kindamoody is now known as Kindamoody|afk
15:40
<@TheWatcher>
abudhabi: huh/
15:40
<@TheWatcher>
?
15:43
<@abudhabi>
Free hostnames. Reconfirm every month, or get deleted.
15:43
<@TheWatcher>
Huh
15:44
<@TheWatcher>
Set up a script to reconfirm it?~
15:45
<@abudhabi>
Have to beat a captcha.
16:16 catadroid` [catadroid@Nightstar-k6fper.dab.02.net] has quit [Ping timeout: 121 seconds]
16:19 catadroid [catadroid@Nightstar-ij65bh.dab.02.net] has joined #code
16:23 Crossfire [Z@Nightstar-r9lk5l.cust.comxnet.dk] has joined #code
16:23 mode/#code [+o Crossfire] by ChanServ
16:52 Crossfire [Z@Nightstar-r9lk5l.cust.comxnet.dk] has quit [Ping timeout: 121 seconds]
17:24 Shady [ShadyGuru@Nightstar-ut3scg.t132.ptd.net] has joined #code
18:46 Derakon[AFK] is now known as Derakon
19:45 Shady [ShadyGuru@Nightstar-ut3scg.t132.ptd.net] has quit [Ping timeout: 121 seconds]
20:45 Shady [ShadyGuru@Nightstar-ut3scg.t132.ptd.net] has joined #code
21:17 Netsplit Deepthought.Nightstar.Net <-> Krikkit.Nightstar.Net quits: @PinkFreud
21:18 Netsplit over, joins: @PinkFreud
21:38 Kindamoody|afk is now known as Kindamoody
21:57 Reiv [NSwebIRC@Nightstar-q8avec.kinect.net.nz] has joined #code
21:57 mode/#code [+o Reiv] by ChanServ
22:18 catadroid` [catadroid@Nightstar-bt5k4h.81.in-addr.arpa] has joined #code
22:18 catadroid [catadroid@Nightstar-ij65bh.dab.02.net] has quit [The TLS connection was non-properly terminated.]
23:03 Reiv [NSwebIRC@Nightstar-q8avec.kinect.net.nz] has quit [Ping timeout: 121 seconds]
23:14 Kindamoody is now known as Kindamoody[zZz]
23:36 Reiv [NSwebIRC@Nightstar-q8avec.kinect.net.nz] has joined #code
23:36 mode/#code [+o Reiv] by ChanServ
--- Log closed Thu Jun 16 00:00:29 2016
code logs -> 2016 -> Wed, 15 Jun 2016< code.20160614.log - code.20160616.log >

[ Latest log file ]