code logs -> 2016 -> Mon, 19 Dec 2016< code.20161218.log - code.20161220.log >
--- Log opened Mon Dec 19 00:00:23 2016
--- Day changed Mon Dec 19 2016
00:00
<@Reiv>
Is there a way to run it, he asks feeling like an idiot
00:01
<&McMartin>
For the first, VICE is the C64 emulator of choice, but it is kind of complicated to get set up
00:01
<&McMartin>
For the second, I think Nestopia is still the best-of-breed NES emulator on Windows but I do not know where the best place to get it is
00:02
<&McMartin>
http://vice-emu.sourceforge.net/index.html#download - you would want the non-SDL one
00:03
<&McMartin>
However, then you also have to make it load the PRG file, etc. etc. which is rife with more Excitement than it really should be...
00:03
<&McMartin>
... though with autostarting PRGs VICE will at least do the LOAD "*",8,1 thing for you
00:05
<&McMartin>
Looks like nestopia.sourceforgef.net is a thing and also got ported
00:05
<&McMartin>
... it looks like it also shifted to github, so, I dunno
00:06 Irssi: #code: Total of 35 nicks [32 ops, 0 halfops, 0 voices, 3 normal]
00:14 himi [sjjf@Nightstar-dm0.2ni.203.150.IP] has joined #code
00:15 mode/#code [+o himi] by ChanServ
01:42 celmin|out is now known as celticminstrel
05:39 catadroid` [catalyst@Nightstar-sg55eg.dab.02.net] has joined #code
05:39
< Vornotron>
apparently my dude is supposed to wait 3 1/2 days to collect the star for 15-A
05:41 catadroid [catalyst@Nightstar-j3krfr.dab.02.net] has quit [Ping timeout: 121 seconds]
05:49
< Vornotron>
and 24ish days to collect the star for 15-B
06:02 himi [sjjf@Nightstar-dm0.2ni.203.150.IP] has quit [Ping timeout: 121 seconds]
06:04
<&McMartin>
My 19b solution is incredibly inefficient, but I'd rather just let that run while I raid the pirate fortress for Zora eggs
06:04 catadroid` is now known as catadroid
06:24
<&McMartin>
OK, that's *too* inefficient
06:24 * McMartin recodes it, solves 19b in 0.355 seconds of runtime
06:24
<&McMartin>
Sadly, that puts me at #107 for solvers. :(
06:33
< Vornotron>
no points for you today :(
06:34
<&McMartin>
Nope :(
06:35 * Vornotron is still quite proud of his heuristic in #11.
06:36
<&McMartin>
My newly-optimized 19b solution is dumb and evil and I'm not sure whether to be proud of or ashamed of it.
06:38
<&McMartin>
I think the plan is now: take shower; drink peppermint tea; finish Zora Egg quest
06:39
<@celticminstrel>
Yum, peppermint tea.
06:40 Linux [Linux@Nightstar-s6br14.wi.charter.com] has joined #code
06:43 Linux [Linux@Nightstar-s6br14.wi.charter.com] has quit [[NS] Quit: ]
08:26 Kindamoody[zZz] is now known as Kindamoody
08:33 catadroid [catalyst@Nightstar-sg55eg.dab.02.net] has quit [[NS] Quit: Bye]
09:04 Kindamoody is now known as Kindamoody|afk
09:21 celticminstrel [celticminst@Nightstar-h4m24u.dsl.bell.ca] has quit [[NS] Quit: And lo! The computer falls into a deep sleep, to awake again some other day!]
10:28 Vornotron [Vorn@ServerAdministrator.Nightstar.Net] has quit [Ping timeout: 121 seconds]
11:27 Tarinaky [Tarinaky@Nightstar-ak1gaj.programmingresearch.com] has joined #code
11:27 mode/#code [+o Tarinaky] by ChanServ
11:28
<@Tarinaky>
I have a problem. I'm trying to debug 'full stack' a set of javascript (despite not actually knowing Javascript) and a web server (in C++) at the same time.
11:29
<@Tarinaky>
I'm not sure how to find the part of my C++ program that handles the HTTP/Post request I think is being made by the javascript.
11:29 RobinStamer [rstamer@genoce.org] has quit [[NS] Quit: No Ping reply in 180 seconds.]
11:29
<@Tarinaky>
(Suffice to say I didn't write any of this code, and the person who did is unavailable)
11:29
<@Tarinaky>
I need a suggestion for a debug tool to solve this problem.
11:32 [R] [rstamer@Nightstar-d7h8ki.org] has joined #code
11:32 mode/#code [+ao [R] [R]] by ChanServ
11:44
<&ToxicFrog>
Tarinaky: if you have a test instance of the server that you're the only person connecting to, connect a debugger, break on accept(), and then stepN a bunch until you can orient yourself?
11:47
<@Tarinaky>
What do you mean by break on accept?
11:48
<@Tarinaky>
Oh I think I see what you mean...
11:48
<@Tarinaky>
It doesnt seem to be hitting that breakpoint :/
11:49
<@Tarinaky>
I'm navigating about the website clicking buttons and it's not breaking >.<
11:49
<&ToxicFrog>
Huh. Neat.
11:53
<&ToxicFrog>
What webserver or server library are you using? Does it have a debug mode that will report stacks to the client on error? or is it not that kind of error?
11:55
<@Tarinaky>
Qt. I don't have an error to work with - I'm just trying to grok the code.
11:55
<@Tarinaky>
Or rather, find the code I need to grok.
12:31
<&ToxicFrog>
Wait, Qt has an HTTP server built in now?
12:31
<&ToxicFrog>
I guess I shouldn't be surprised.
12:32
<@TheWatcher>
At this point it's probably easier to ask what Qt /doesn't/ include~
12:32
<@TheWatcher>
(emacs, actually....)
12:38 [R] [rstamer@genoce.org] has quit [Operation timed out]
12:43 * TheWatcher arghs, beats the dragons out of his HTML again
12:44
<@TheWatcher>
Damned dov, get into everything.
13:01
<@gnolam>
divahkin?
13:03 [R] [rstamer@Nightstar-d7h8ki.org] has joined #code
13:03 mode/#code [+ao [R] [R]] by ChanServ
14:43
<@Tarinaky>
Apparently the problem is I needed to break on 'accept4', not 'accept'.
14:43
<@Tarinaky>
Which is probably helpful to know for the future.
14:59 celticminstrel [celticminst@Nightstar-h4m24u.dsl.bell.ca] has joined #code
14:59 mode/#code [+o celticminstrel] by ChanServ
15:51 celticminstrel is now known as celmin|away
16:03 VirusJTG [VirusJTG@Nightstar-055.kas.104.208.IP] has quit [Connection closed]
16:40 Emmy [Emmy@Nightstar-9p7hb1.direct-adsl.nl] has joined #code
16:40 mode/#code [+o Emmy] by ChanServ
16:56 VirusJTG [VirusJTG@Nightstar-6i5vf7.sta.comporium.net] has joined #code
16:56 mode/#code [+ao VirusJTG VirusJTG] by ChanServ
17:27 Emmy [Emmy@Nightstar-9p7hb1.direct-adsl.nl] has quit [Connection closed]
17:28 Emmy [Emmy@Nightstar-9p7hb1.direct-adsl.nl] has joined #code
17:28 mode/#code [+o Emmy] by ChanServ
17:29 Emmy [Emmy@Nightstar-9p7hb1.direct-adsl.nl] has quit [[NS] Quit: Leaving]
17:29 Emmy [Emmy@Nightstar-9p7hb1.direct-adsl.nl] has joined #code
17:29 mode/#code [+o Emmy] by ChanServ
17:47 Vornicus [Vorn@ServerAdministrator.Nightstar.Net] has joined #code
17:47 mode/#code [+qo Vornicus Vornicus] by ChanServ
18:26 catalyst [catalyst@Nightstar-bt5k4h.81.in-addr.arpa] has joined #code
18:53 celmin|away is now known as celticminstrel
18:55 Tarinaky [Tarinaky@Nightstar-ak1gaj.programmingresearch.com] has quit [Connection closed]
20:53 Kindamoody|afk is now known as Kindamoody
21:14
<@abudhabi>
[R]: No. If I'm to pay for it, I'll just code it and host it myself.
22:18 Vorntastic [Vorn@Nightstar-uhn82m.ct.comcast.net] has joined #code
22:20 Vornlicious [Vorn@Nightstar-quk3ol.sub-174-199-3.myvzw.com] has joined #code
22:22 Vorntastic [Vorn@Nightstar-uhn82m.ct.comcast.net] has quit [Ping timeout: 121 seconds]
23:02 himi [sjjf@Nightstar-dm0.2ni.203.150.IP] has joined #code
23:02 mode/#code [+o himi] by ChanServ
23:11 Kindamoody is now known as Kindamoody[zZz]
23:21 ion_ [Owner@Nightstar-6grqph.vs.shawcable.net] has quit [Ping timeout: 121 seconds]
23:37 Emmy [Emmy@Nightstar-9p7hb1.direct-adsl.nl] has quit [Ping timeout: 121 seconds]
--- Log closed Tue Dec 20 00:00:42 2016
code logs -> 2016 -> Mon, 19 Dec 2016< code.20161218.log - code.20161220.log >

[ Latest log file ]