code logs -> 2019 -> Fri, 28 Jun 2019< code.20190627.log - code.20190629.log >
--- Log opened Fri Jun 28 00:00:06 2019
00:01 VirusJTG [VirusJTG@Nightstar-42s.jso.104.208.IP] has quit [[NS] Quit: Leaving]
00:01 VirusJTG [VirusJTG@Nightstar-42s.jso.104.208.IP] has joined #code
00:01 mode/#code [+ao VirusJTG VirusJTG] by ChanServ
00:14 Emmy [Emmy@Nightstar-9p7hb1.direct-adsl.nl] has quit [Ping timeout: 121 seconds]
00:52
<&ToxicFrog>
I wouldn't say it's completely unwarranted or unfair~
00:52
<&ToxicFrog>
In other news, I think I broke bitburner
00:52
<&ToxicFrog>
My new sharding code resulted in ~3300 individual SPU processes running
00:53
<&ToxicFrog>
This mean that rpc.read() never blocked, because there was always something in the pipeline, which in turn meant that it never called sleep and thus never returned control to the minloo
00:53
<&ToxicFrog>
*mainloop
00:53
<&ToxicFrog>
Sharding this finely (or, possibly, at all) may have been unwise.
01:00 Kindamoody is now known as Kindamoody[zZz]
01:12 Reiv changed the topic of #code to: Welcome to #Code! || Ask, then hang about till someone appears who can help: We have high latency, but excellent signal. || We <3 newbies. || Rants and monologues are encouraged; many cores, no waiting || Pastebin: http://pastebin.starforge.co.uk/ (Antispam question: answer 'yes') || Apparently I can edit
01:12 Reiv changed the topic of #code to: Welcome to #Code! || Ask, then hang about till someone appears who can help: We have high latency, but excellent signal. || We <3 newbies. || Rants and monologues are encouraged; many cores, no waiting || Pastebin: http://pastebin.starforge.co.uk/ (Antispam question: answer 'yes') || But not talk in here
01:12 Reiv changed the topic of #code to: Welcome to #Code! || Ask, then hang about till someone appears who can help: We have high latency, but excellent signal. || We <3 newbies. || Rants and monologues are encouraged; many cores, no waiting || Pastebin: http://pastebin.starforge.co.uk/ (Antispam question: answer 'yes')
01:25 himi [sjjf@Nightstar-1drtbs.anu.edu.au] has joined #code
01:25 mode/#code [+o himi] by ChanServ
01:35 Lamb3 [Dawg@Nightstar-52ic2g.wechall.net] has joined #code
01:57 * McMartin briefly travels through time to repeatedly stab the people who designed the BSD sockets API and those members of the POSIX committee that didn't feel the BSD proposal needed expansion
02:00
< Mahal>
reiv: that is v weird
02:47 celmin|away is now known as celticminstrel
03:06
<&ToxicFrog>
This evening's experiment, getting clojurescript to emit something that netburner will load, appears to be a failure :/
03:17 Reiv changed the topic of #code to: Welcome to #Code! || Ask, then hang about till someone appears who can help: We have high latency, but excellent signal. || We <3 newbies. || Rants and monologues are encouraged; many cores, no waiting || Pastebin: http://pastebin.starforge.co.uk/ (Antispam question: answer 'yes') || Mahal: Still true!
04:17 Reiv [NSkiwiirc@Nightstar-ih0uis.global-gateway.net.nz] has quit [[NS] Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
04:17 Reiv [NSkiwiirc@Nightstar-ih0uis.global-gateway.net.nz] has joined #code
04:17 mode/#code [+o Reiv] by ChanServ
04:19 celticminstrel [celticminst@Nightstar-6an2qt.dsl.bell.ca] has quit [[NS] Quit: And lo! The computer falls into a deep sleep, to awake again some other day!]
09:00 Vornicus [Vorn@ServerAdministrator.Nightstar.Net] has joined #code
09:00 mode/#code [+qo Vornicus Vornicus] by ChanServ
09:33 himi [sjjf@Nightstar-1drtbs.anu.edu.au] has quit [Ping timeout: 121 seconds]
09:44 Vorntastic [uid293981@Nightstar-6br85t.irccloud.com] has joined #code
09:44 mode/#code [+qo Vorntastic Vorntastic] by ChanServ
09:51 Pink [user1@Nightstar-g7hdo5.dyn.optonline.net] has joined #code
10:03 Pinkhair [user1@Nightstar-g7hdo5.dyn.optonline.net] has joined #code
10:05 Pink [user1@Nightstar-g7hdo5.dyn.optonline.net] has quit [Ping timeout: 121 seconds]
10:55
<&Reiver>
so
10:56
<&Reiver>
Turns out that having an @ or indeed a + is not enough to talk in here, you have to be /registered/
10:58 mode/#code [-M] by ChanServ
10:58
<@TheWatcher>
That's been on since a flood bullshit in April
10:58
<@TheWatcher>
Oops
11:00
<&Reiver>
ha
11:00
<&Reiver>
thank you
11:02
<@TheWatcher>
And looking at the modes for the channels I'm in, I see that #perl is apparently no longer registered! Egads!
11:45 himi [sjjf@Nightstar-v37cpe.internode.on.net] has joined #code
11:45 mode/#code [+o himi] by ChanServ
12:32 Kindamoody[zZz] is now known as Kindamoody
13:05
<@gnolam>
https://twitter.com/jgrahamc/status/1144272344803946496
13:09
<@TheWatcher>
XD That's wonderful.
14:03
<~Vornicus>
It feels like there should be a simple test for a polygon to be both convex and simple
14:07
<~Vornicus>
Ah, here we go.
14:12
<~Vornicus>
by reducing each line to a direction I can check that there's exactly one inversion in the directions cycle, that is, for every pair of adjacent edges, there's only one time when the angle changes in the opposite direction of the turning
14:14 Degi [Degi@Nightstar-06ll9q.dyn.telefonica.de] has joined #code
14:17
<~Vornicus>
And I can get a direction analogue using cross product
14:18
<~Vornicus>
and then atan2
14:18
<~Vornicus>
(because cross product on two points in homogeneous coordinates gives actually the formula of the line through the two points. attack of the hyperswank math)
14:24
<~Vornicus>
This leaves only point pairs that are Distant being an issue but I'm not terribly worried about that because I can just delete those from the list.
14:40
<~Vornicus>
--can I do this without atan2? Looks like maybe if I normalize but that's just as bad.
14:40
<~Vornicus>
Okay!
15:04 Vorntastic [uid293981@Nightstar-6br85t.irccloud.com] has quit [[NS] Quit: Connection closed for inactivity]
15:27 Kindamoody is now known as Kindamoody|out
16:03
<&ToxicFrog>
I think I've figured out how to run lua inside bitburner.
16:05 Degi [Degi@Nightstar-06ll9q.dyn.telefonica.de] has quit [Ping timeout: 121 seconds]
16:08
<~Vornicus>
you monster
19:28 Emmy [Emmy@Nightstar-9p7hb1.direct-adsl.nl] has joined #code
19:43
<~Vornicus>
okay. I have now figured out why everything is here
20:06
<~Vornicus>
the convex check has obvious advantages so I don't do the more complicated stuff. Then: far infinite means I definitely don't want to change it; left infinite or right infinite I check for *proper* convexity at the right vertex; if it's not properly convex then I can end up putting a degenerate triangle which is no fun.
20:08
<~Vornicus>
THen the final thing is the actual circumcircle check
20:12
<~Vornicus>
ALl right I feel better now.
20:20 Kindamoody|out is now known as Kindamoody
21:10 Degi [Degi@Nightstar-06ll9q.dyn.telefonica.de] has joined #code
22:47 Degi [Degi@Nightstar-06ll9q.dyn.telefonica.de] has quit [Ping timeout: 121 seconds]
22:50 * Vornicus is not sure what he's doing wrong now but it's definitely not working right. :(
23:31 Emmy [Emmy@Nightstar-9p7hb1.direct-adsl.nl] has quit [Ping timeout: 121 seconds]
23:35 ToxicFrog [ToxicFrog@ServerAdministrator.Nightstar.Net] has quit [Ping timeout: 121 seconds]
23:46 ToxicFrog [ToxicFrog@ServerAdministrator.Nightstar.Net] has joined #code
23:46 mode/#code [+ao ToxicFrog ToxicFrog] by ChanServ
23:49
<~Vornicus>
hate geometry. now, slep
23:52 Vornicus [Vorn@ServerAdministrator.Nightstar.Net] has quit [Connection closed]
--- Log closed Sat Jun 29 00:00:07 2019
code logs -> 2019 -> Fri, 28 Jun 2019< code.20190627.log - code.20190629.log >

[ Latest log file ]