code logs -> 2018 -> Sat, 01 Sep 2018< code.20180831.log - code.20180902.log >
--- Log opened Sat Sep 01 00:00:43 2018
00:50 celticminstrel [celticminst@Nightstar-v1qb0r.dsl.bell.ca] has joined #code
00:50 mode/#code [+o celticminstrel] by ChanServ
00:57 Derakon[AFK] is now known as Derakon
01:05 Jessikat [Jessikat@Nightstar-agkbuf.dab.02.net] has joined #code
01:09 Jessikat`` [Jessikat@Nightstar-54g.klt.132.82.IP] has quit [Ping timeout: 121 seconds]
01:14 Vornicus [Vorn@ServerAdministrator.Nightstar.Net] has joined #code
01:14 mode/#code [+qo Vornicus Vornicus] by ChanServ
01:20 Pink [user1@Nightstar-g7hdo5.dyn.optonline.net] has joined #code
01:21 Pinkhair [user1@Nightstar-g7hdo5.dyn.optonline.net] has quit [Ping timeout: 121 seconds]
02:06 crystalclaw [crystalclaw@Nightstar-12q9ui.xyz] has quit [Ping timeout: 121 seconds]
02:06 crystalclaw [crystalclaw@Nightstar-12q9ui.xyz] has joined #code
02:06 mode/#code [+o crystalclaw] by ChanServ
02:49 Degi [Degi@Nightstar-q4bjcn.dyn.telefonica.de] has quit [Ping timeout: 121 seconds]
04:26 Pinkhair [user1@Nightstar-g7hdo5.dyn.optonline.net] has joined #code
04:28 Pink [user1@Nightstar-g7hdo5.dyn.optonline.net] has quit [Ping timeout: 121 seconds]
05:07 Vornicus [Vorn@ServerAdministrator.Nightstar.Net] has quit [Ping timeout: 121 seconds]
05:11
<&McMartin>
Oh hey. My Atari coding video didn't fail after all. It failed later, after I'd finished doing the bits I'd intended to do.
05:12 Vorntastic [uid293981@Nightstar-6br85t.irccloud.com] has joined #code
05:12 mode/#code [+qo Vorntastic Vorntastic] by ChanServ
05:22
<&McMartin>
Man, this DSL is so wildly unacceptable
05:23 celticminstrel [celticminst@Nightstar-v1qb0r.dsl.bell.ca] has quit [[NS] Quit: And lo! The computer falls into a deep sleep, to awake again some other day!]
05:24 celticminstrel [celticminst@Nightstar-v1qb0r.dsl.bell.ca] has joined #code
05:24 mode/#code [+o celticminstrel] by ChanServ
05:24 celticminstrel is now known as celmin|sleep
05:25 macdjord|wurk is now known as macdjord|slep
05:31 celmin|sleep [celticminst@Nightstar-v1qb0r.dsl.bell.ca] has quit [[NS] Quit: KABOOM! It seems that I have exploded. Please wait while I reinstall the universe.]
05:36
<~Vorntastic>
???
05:42 Derakon is now known as Derakon[AFK]
05:50 himi [sjjf@Nightstar-v37cpe.internode.on.net] has quit [Ping timeout: 121 seconds]
07:14
<&McMartin>
Vorntastic: https://www.youtube.com/watch?v=PisFfIlaF5Q
07:14
<&McMartin>
I got a livecoding session in spite of myself
07:14
<&McMartin>
But it took 2 hours to upload on this terrible DSL
07:18
<~Vorntastic>
Aha
07:18 Vornicus [Vorn@ServerAdministrator.Nightstar.Net] has joined #code
07:18 mode/#code [+qo Vornicus Vornicus] by ChanServ
07:18
<~Vorntastic>
(I'll look later, on mobile data now)
07:24 Vornicus [Vorn@ServerAdministrator.Nightstar.Net] has quit [Ping timeout: 121 seconds]
07:35 Jessikat` [Jessikat@Nightstar-7t8j9t.dab.02.net] has joined #code
07:36 himi [sjjf@Nightstar-v37cpe.internode.on.net] has joined #code
07:36 mode/#code [+o himi] by ChanServ
07:38 Jessikat [Jessikat@Nightstar-agkbuf.dab.02.net] has quit [Ping timeout: 121 seconds]
08:37 Jessikat [Jessikat@Nightstar-5dv16h.cable.virginm.net] has joined #code
08:37 Jessikat` [Jessikat@Nightstar-7t8j9t.dab.02.net] has quit [The TLS connection was non-properly terminated.]
08:45
<~Vorntastic>
Ok. Tests to make: is_inside needs to make sure in, out, on-edge in both dimensions, zero-area triangles of finite, half-infinite, and full-infinite type, in both dimensions. Triangle creations need to do the validation I've already written; I need to improve it to allow general polygons, and figure out how to detect that a polygon is simple too.
08:48
<~Vorntastic>
I should rejigger the corrections setup so i can test insertion in isolation
08:48
<&McMartin>
Are you coding in pen and paper here or do you have some kind of Lua devenv on your phone?
08:48
<~Vorntastic>
I am taking notes on irc
08:49
<&McMartin>
Aha, OK.
08:49
<~Vorntastic>
But yeah if I were coding it would be pen and paper. This, I have done
08:50
<&McMartin>
yase
08:50 Kindamoody is now known as Kindamoody|afk
08:55
<~Vorntastic>
This will also help prevent the kind of stack overflow shit I had when the code was wrong because I can better track what edges I've already attempted corrections on
09:03
<~Vorntastic>
--not that I feel that I can create the scenario where it might happen - especially any more - to test that it doesn't
09:04
< Pinkhair>
Can't just convert polygons to triangles and test those?
09:07
<~Vorntastic>
Mm. Trick is, the kinds of failure I am envisioning could make triangulation actually fail in infinite loop type ways
09:16
<~Vorntastic>
And the simple polygon test needs to be done as a whole.
09:22
<~Vorntastic>
Also convexity and simplicity are meaner. ... Oh. Simple is easy if I know it's convex: cycle around to find the first edge where I've changed from negative to non-negative slope, do it again from there, if the next one I find is different it's complex
09:29
<~Vorntastic>
(other things I'm testing are basically referential integrity - for instance, do all edges I get to by following edge.next refer to the same face? Does the loop of edges close correctly? Etc etc etc. Triangulation comes later technically)
09:51 Jessikat [Jessikat@Nightstar-5dv16h.cable.virginm.net] has quit [[NS] Quit: Bye]
10:19
<&McMartin>
Wow, OK, YouTube crunches that video but good
10:20
<&McMartin>
From half a gig to 77MB
10:20
<&McMartin>
I need to start ffmpegging these before uploading
10:53 Degi [Degi@Nightstar-dl2gva.dyn.telefonica.de] has joined #code
11:03 Emmy [Emmy@Nightstar-9p7hb1.direct-adsl.nl] has joined #code
11:12
<~Vorntastic>
Oh, I need tests for clipping to make sure it clips on the right side for distance edges
11:13
<~Vorntastic>
Distant*
12:03 Degi [Degi@Nightstar-dl2gva.dyn.telefonica.de] has quit [Ping timeout: 121 seconds]
12:31
<~Vorntastic>
Though I am reminded of chalain who would go hide in the bathroom and write code on his Palm. The office started calling it the loo-a
13:43 Emmy [Emmy@Nightstar-9p7hb1.direct-adsl.nl] has quit [Ping timeout: 121 seconds]
15:18 Alek [Alek@Nightstar-o723m2.cicril.sbcglobal.net] has quit [Connection closed]
15:22 Vornicus [Vorn@Nightstar-sjaki9.res.rr.com] has joined #code
15:22 mode/#code [+qo Vornicus Vornicus] by ChanServ
17:42 Vorntastic [uid293981@Nightstar-6br85t.irccloud.com] has quit [[NS] Quit: Connection closed for inactivity]
18:45 Kindamoody|afk is now known as Kindamoody
19:20 Degi [Degi@Nightstar-dl2gva.dyn.telefonica.de] has joined #code
20:16 Alek [Alek@Nightstar-o723m2.cicril.sbcglobal.net] has joined #code
20:16 mode/#code [+o Alek] by ChanServ
20:16 macdjord|slep is now known as macdjord
20:20 Vornicus [Vorn@Nightstar-sjaki9.res.rr.com] has quit [Ping timeout: 121 seconds]
20:24 Emmy [Emmy@Nightstar-9p7hb1.direct-adsl.nl] has joined #code
20:42 Alek [Alek@Nightstar-o723m2.cicril.sbcglobal.net] has quit [Ping timeout: 121 seconds]
20:45 Alek [Alek@Nightstar-o723m2.cicril.sbcglobal.net] has joined #code
20:45 mode/#code [+o Alek] by ChanServ
21:56 Alek [Alek@Nightstar-o723m2.cicril.sbcglobal.net] has quit [Connection closed]
22:00 Alek [Alek@Nightstar-o723m2.cicril.sbcglobal.net] has joined #code
22:00 mode/#code [+o Alek] by ChanServ
22:28 Pinkhair [user1@Nightstar-g7hdo5.dyn.optonline.net] has quit [Ping timeout: 121 seconds]
23:43 Emmy [Emmy@Nightstar-9p7hb1.direct-adsl.nl] has quit [Ping timeout: 121 seconds]
23:56 celticminstrel [celticminst@Nightstar-v1qb0r.dsl.bell.ca] has joined #code
23:56 mode/#code [+o celticminstrel] by ChanServ
--- Log closed Sun Sep 02 00:00:44 2018
code logs -> 2018 -> Sat, 01 Sep 2018< code.20180831.log - code.20180902.log >

[ Latest log file ]