--- Log opened Wed May 18 00:00:57 2016 |
00:27 | | Reiv [NSwebIRC@Nightstar-q8avec.kinect.net.nz] has joined #code |
00:27 | | mode/#code [+o Reiv] by ChanServ |
00:37 | <@celticminstrel> | Here's an even worse one. http://password-shaming.tumblr.com/post/130554774088/what-the-fuck-schawb |
00:56 | | Alek [Alek@Nightstar-9qtiqv.il.comcast.net] has quit [[NS] Quit: brb] |
01:00 | | Kindamoody is now known as Kindamoody[zZz] |
01:06 | | Derakon[AFK] is now known as Derakon |
01:07 | | ion [Owner@Nightstar-6grqph.vs.shawcable.net] has quit [Ping timeout: 121 seconds] |
01:08 | | Alek [Alek@Nightstar-9qtiqv.il.comcast.net] has joined #code |
01:08 | | mode/#code [+o Alek] by ChanServ |
01:10 | | Turaiel[Offline] is now known as Turaiel |
01:27 | <@Alek> | oh dammit. *notices the date* |
01:27 | <&McMartin> | ? |
01:31 | | catalyst [catalyst@Nightstar-bt5k4h.81.in-addr.arpa] has quit [[NS] Quit: Leaving] |
01:33 | <@Alek> | remembered that I had promised to do something for someone by this month. and it's unfinished. D: |
01:35 | < [R]> | Wow, and I'm salty my bank limits me to 8 characters |
01:36 | | catadroid [catalyst@Nightstar-du3hvs.dab.02.net] has joined #code |
01:38 | < [R]> | I don't get how they're absolutely sure the PW is in cleartext for Schawb though |
01:39 | <@Alek> | ok, found who it was supposed to be for. gnolam, is it too late to finish? D: |
01:39 | < [R]> | I mean, I could take the password given, truncate it, lower-case it, /then/ hash it and it'd be hashed, and still work as the rest of the page explains |
03:04 | <@Reiv> | Is hashing done client side before sending? |
03:08 | | JustBob [justbob@ServerAdministrator.Nightstar.Net] has joined #code |
03:08 | | mode/#code [+o JustBob] by ChanServ |
03:10 | <@Alek> | Oh, it's just Bob. >_> |
03:10 | <@Alek> | :P |
03:17 | | catadroid` [catalyst@Nightstar-tekqve.dab.02.net] has joined #code |
03:20 | | catadroid [catalyst@Nightstar-du3hvs.dab.02.net] has quit [Ping timeout: 121 seconds] |
04:23 | | Reiv [NSwebIRC@Nightstar-q8avec.kinect.net.nz] has quit [Ping timeout: 121 seconds] |
04:57 | | celticminstrel [celticminst@Nightstar-q0f7bb.dsl.bell.ca] has quit [[NS] Quit: And lo! The computer falls into a deep sleep, to awake again some other day!] |
05:01 | | crystalclaw is now known as crystalclaw|AFK |
05:04 | | Crossfire [Z@Nightstar-r9lk5l.cust.comxnet.dk] has quit [Ping timeout: 121 seconds] |
05:07 | | Derakon is now known as Derakon[AFK] |
05:20 | | Reiv [NSwebIRC@Nightstar-q8avec.kinect.net.nz] has joined #code |
05:20 | | mode/#code [+o Reiv] by ChanServ |
06:00 | | Reiv [NSwebIRC@Nightstar-q8avec.kinect.net.nz] has quit [Ping timeout: 121 seconds] |
06:06 | | Vornicus [Vorn@ServerAdministrator.Nightstar.Net] has quit [Connection reset by peer] |
06:57 | | Turaiel is now known as Turaiel[Offline] |
07:28 | | Kindamoody[zZz] is now known as Kindamoody |
08:17 | | catadroid` [catalyst@Nightstar-tekqve.dab.02.net] has quit [[NS] Quit: Bye] |
08:49 | | Kindamoody is now known as Kindamoody|afk |
10:29 | | ion [Owner@Nightstar-6grqph.vs.shawcable.net] has joined #code |
10:30 | | himi [fow035@Nightstar-v37cpe.internode.on.net] has quit [Ping timeout: 121 seconds] |
12:53 | | ErikMesoy [Erik@Nightstar-hq72t5.customer.cdi.no] has joined #code |
12:53 | | mode/#code [+o ErikMesoy] by ChanServ |
13:42 | | ErikMesoy [Erik@Nightstar-hq72t5.customer.cdi.no] has quit [Connection reset by peer] |
13:43 | | ErikMesoy [Erik@Nightstar-hq72t5.customer.cdi.no] has joined #code |
14:37 | | Crossfire [Z@Nightstar-r9lk5l.cust.comxnet.dk] has joined #code |
14:37 | | mode/#code [+o Crossfire] by ChanServ |
15:12 | | Irssi: #code: Total of 38 nicks [21 ops, 0 halfops, 0 voices, 17 normal] |
15:23 | | macdjord [macdjord@Nightstar-r9vt2h.mc.videotron.ca] has joined #code |
15:24 | | mode/#code [+o macdjord] by ChanServ |
15:26 | | mac [macdjord@Nightstar-r9vt2h.mc.videotron.ca] has quit [Ping timeout: 121 seconds] |
15:38 | | mode/#code [+o ErikMesoy] by ChanServ |
15:39 | <@ErikMesoy> | Special character density making it hard to search for explanation of what the hell I was doing in old Python code: '{:.1%}'.format(other_function()) Anyone happen to know offhand what's going on here? |
15:41 | < [R]> | Python3? |
15:42 | <@ErikMesoy> | Python2. |
15:42 | < [R]> | >>> '{:.1%}'.format((2,)) |
15:42 | < [R]> | Traceback (most recent call last): |
15:42 | < [R]> | File "<stdin>", line 1, in <module> |
15:42 | < [R]> | ValueError: zero length field name in format |
15:44 | <@ErikMesoy> | Mm. OtherFunction returns a number, and the looks-like-perl function takes a number and converts this to being displayed as a percentage |
15:45 | <@ErikMesoy> | '{:.1%}'.format(2) for example |
15:45 | <@ErikMesoy> | Ehhh, I can probably just leave this bit of magic in place with a comment saying "formats as percent" or the like. It shouldn't be important. |
15:45 | <@ErikMesoy> | (Famous last words.) |
15:51 | < [R]> | OH! |
15:51 | < [R]> | Alright |
15:51 | < [R]> | >>> '{0:.1%}'.format(0.4) |
15:51 | < [R]> | '40.0%' |
15:51 | < [R]> | I've got 2.6 |
15:51 | < [R]> | In 2.7 you can omit the field_name part, which is why I was getting an error |
16:24 | | thalass_ [thalass@Nightstar-283.o7s.158.104.IP] has quit [Ping timeout: 121 seconds] |
16:45 | | Crossfire [Z@Nightstar-r9lk5l.cust.comxnet.dk] has quit [Ping timeout: 121 seconds] |
17:14 | | celticminstrel [celticminst@Nightstar-q0f7bb.dsl.bell.ca] has joined #code |
17:14 | | mode/#code [+o celticminstrel] by ChanServ |
17:50 | <&ToxicFrog> | It seems like that would be clearer written as '%.1f%%' % other_function() |
18:04 | | gizmore [kvirc@Nightstar-3cgejp.dip0.t-ipconnect.de] has joined #code |
18:08 | | Kindamoody|afk is now known as Kindamoody |
19:06 | | Derakon [chriswei@Nightstar-5mvs4e.ca.comcast.net] has joined #code |
19:06 | | mode/#code [+ao Derakon Derakon] by ChanServ |
19:06 | | * Derakon grumbles at Visual Studio. |
19:07 | <&Derakon> | Our program runs as a plugin for another (Java) program. Our program includes both Java and C++. |
19:07 | <&Derakon> | The C++ gets built into .dll files on Windows. |
19:07 | <&Derakon> | To debug a problem in C++ code, then, I need to use Visual Studio to attach to the running process. |
19:08 | <&Derakon> | Which would be fine except that Visual Studio can't see that our DLL is loaded. |
19:08 | <&Derakon> | The .dll and .pdb files are right there. |
19:08 | <&Derakon> | And Google is exceptionally useless for this kind of problem. |
19:27 | | Vornicus [Vorn@ServerAdministrator.Nightstar.Net] has joined #code |
19:27 | | mode/#code [+qo Vornicus Vornicus] by ChanServ |
19:27 | | Vornotron [Vorn@ServerAdministrator.Nightstar.Net] has joined #code |
19:30 | | Vornotron [Vorn@ServerAdministrator.Nightstar.Net] has quit [[NS] Quit: Leaving] |
19:56 | | thalass_ [thalass@Nightstar-283.o7s.158.104.IP] has joined #code |
20:18 | | thalass_ [thalass@Nightstar-283.o7s.158.104.IP] has quit [Ping timeout: 121 seconds] |
20:23 | | Kindamoody is now known as Kindamoody|afk |
20:42 | | Kindamoody|afk is now known as Kindamoody |
21:04 | <&Derakon> | Figured it out. The program we're running uses a launcher that invokes java, and I was trying to connect to launcher.exe instead of javaw.exe. |
21:04 | <&Derakon> | The launcher does not load our DLLs. |
21:04 | <&Derakon> | That sure was a wasted morning! |
21:16 | <&McMartin> | A lesson was learned! |
21:16 | <&McMartin> | Like, a real one, in the "be keenly aware of this fact" sense |
21:16 | <&McMartin> | Also, do you guys have Process Explorer and Process Monitor to hand? |
21:16 | <&McMartin> | They're not default tools but MS distributes them |
21:16 | <&McMartin> | They are the business |
21:17 | <&McMartin> | ProcMon in particular saved my ass an implausible number of times |
21:17 | <&McMartin> | (ProcExp is basically a super-Task Manager that will also show every DLL loaded for a process and every handle it has open, including non-file handles) |
21:17 | <&McMartin> | (ProcMon is an execution/syscall tracer, more or less) |
21:19 | | gizmore|2 [kvirc@Nightstar-3cgejp.dip0.t-ipconnect.de] has joined #code |
21:19 | <&Derakon> | I was using Process Explorer, and in fact had noted in it that I had to look at javaw.exe to see my DLLs loaded. |
21:19 | <&Derakon> | However, I did not make the connection to the process I needed to attach Visual Studio to. |
21:19 | | * McMartin nods |
21:19 | <&Derakon> | Which I chalk up to my inexperience with Visual Studio and our C++ environment in general. |
21:20 | <&McMartin> | Yeah |
21:20 | <&McMartin> | I wouldn't call that a wasted morning, though |
21:20 | <&McMartin> | That's "getting up to speed with a new environemnt" |
21:20 | <&McMartin> | Which is language, OS, and tooling here, all at once, isn't it? |
21:20 | <&Derakon> | It is a morning that could have been truncated to like 15 minutes if I'd had guidance. |
21:20 | <&McMartin> | I associate you with Java work on Macs |
21:20 | <&Derakon> | (Alas, $coworker is offsite today) |
21:20 | | gizmore|3 [kvirc@Nightstar-3cgejp.dip0.t-ipconnect.de] has joined #code |
21:20 | | gizmore [kvirc@Nightstar-3cgejp.dip0.t-ipconnect.de] has quit [Operation timed out] |
21:20 | <&McMartin> | Mmm |
21:20 | <&McMartin> | Yeah, I dunno |
21:20 | <&McMartin> | Maybe I keep score differently |
21:20 | <&Derakon> | I'm mostly Java these days, yeah, though it's cross-platform. |
21:20 | <&McMartin> | Because I feel like that after I fix *any* bug |
21:20 | <&Derakon> | Heh. |
21:21 | <&McMartin> | "Oh, I could have spent five less hours on this if I'd tried the thing that worked first" |
21:21 | <&McMartin> | I might be overagressive about shutting that voice up~ |
21:21 | <&Derakon> | This is more "I could have spent five less hours on this if I could have asked my coworker a question that I know he knows the answer to." |
21:21 | | gizmore [kvirc@Nightstar-3cgejp.dip0.t-ipconnect.de] has joined #code |
21:22 | | gizmore|3 [kvirc@Nightstar-3cgejp.dip0.t-ipconnect.de] has quit [Operation timed out] |
21:22 | <&McMartin> | Also, my coding soundtrack has gotten more entertaining now that I've folded the MoO2 soundtrack fully into it |
21:23 | | gizmore|3 [kvirc@Nightstar-3cgejp.dip0.t-ipconnect.de] has joined #code |
21:23 | | gizmore|2 [kvirc@Nightstar-3cgejp.dip0.t-ipconnect.de] has quit [Ping timeout: 121 seconds] |
21:26 | | gizmore [kvirc@Nightstar-3cgejp.dip0.t-ipconnect.de] has quit [Ping timeout: 121 seconds] |
21:38 | <&jerith> | My coding soundtrack is still mostly AI War music. |
21:39 | <&jerith> | Also, I got zero actual work done today. |
21:40 | <&jerith> | I had half hour internviews scheduled at 10h30, 12h30, and 14h30. |
21:40 | <&Derakon> | I should probably check out the AI War soundtrack, since I own the game. My coding music is getting a little stale lately. |
21:40 | <&Derakon> | Jerith: ick. |
21:40 | <&jerith> | (Not a tyop. Interviewing interns.) |
21:40 | <&jerith> | Add an hour of driving each way to get to the office on a not-office-day and my productivity was shot. |
21:41 | <&jerith> | (I had expected and planned for this, but still.) |
21:41 | <@gnolam> | I am so glad I can telecommute to most things. |
21:42 | <&jerith> | gnolam: I do, four days a week. |
21:42 | <&jerith> | And my commute recently doubled. |
21:42 | <@gnolam> | (Especially support, since for some reason it's never the customers literally across the street from the office who have problems, it's always people in strange far-off countries) |
22:12 | | thalass_ [thalass@Nightstar-283.o7s.158.104.IP] has joined #code |
22:15 | | Kindamoody is now known as Kindamoody[zZz] |
22:29 | | gizmore|3 [kvirc@Nightstar-3cgejp.dip0.t-ipconnect.de] has quit [[NS] Quit: KVIrc 4.9.2 Aria http://www.kvirc.net/] |
22:43 | | Crossfire [Z@Nightstar-r9lk5l.cust.comxnet.dk] has joined #code |
22:43 | | mode/#code [+o Crossfire] by ChanServ |
23:06 | | Reiv [NSwebIRC@Nightstar-q8avec.kinect.net.nz] has joined #code |
23:06 | | mode/#code [+o Reiv] by ChanServ |
23:16 | | thalass_ [thalass@Nightstar-283.o7s.158.104.IP] has quit [Operation timed out] |
--- Log closed Thu May 19 00:00:13 2016 |