code logs -> 2012 -> Tue, 31 Jul 2012< code.20120730.log - code.20120801.log >
--- Log opened Tue Jul 31 00:00:29 2012
00:09
< Rhamphoryncus>
Mmm pointer sorting
00:12
< iospace>
i saw that as snorting
00:12
< iospace>
in which i went "wtfux"
00:13 Nemu [NeophoxProd@Nightstar-cf3aa501.asahi-net.or.jp] has quit [Ping timeout: 121 seconds]
00:15
< Rhamphoryncus>
porter sorting isn't much better
00:15
< Rhamphoryncus>
Damnit, I typoed that as snorting because ofyou x_x
00:17 cpux|2 is now known as cpux
00:25 You're now known as TheWatcher[T-2]
00:28 You're now known as TheWatcher[zZzZ]
00:39
< iospace>
Rhamphoryncus: my work here is done ^_^
00:39
< Rhamphoryncus>
heh
01:22 Ariii_ [Ariii@Nightstar-f695463f.cicril.sbcglobal.net] has quit [Client closed the connection]
02:10 Derakon is now known as Derakon[AFK]
04:06 iospace is now known as iospacedout
04:18 Kindamoody[zZz] is now known as Kindamoody
04:19 Derakon[AFK] is now known as Derakon
05:09 Derakon is now known as Derakon[AFK]
05:28 Derakon[AFK] is now known as Derakon
06:11 Kindamoody is now known as Kindamoody|breakfast
06:54 Derakon is now known as Derakon[AFK]
07:30 Attilla [Obsolete@Nightstar-eb948e96.as43234.net] has joined #code
07:33 Kindamoody|breakfast is now known as Kindamoody
07:35 himi [fow035@D741F1.243F35.CADC30.81D435] has quit [Operation timed out]
07:50
< Rhamphoryncus>
Yeesh. I am sick of dealing with this geodesic grid crap
07:52
< Rhamphoryncus>
Maybe I should be doing some preprocessing in python :P
08:07
< Rhamphoryncus>
Hell, I should have used python from day 1 and translated to C++ only after this was set in stone
08:13
<~Vornicus>
Quite.
08:31 Syloq_Home [Syloq@NetworkAdministrator.Nightstar.Net] has quit [[NS] Quit: ]
08:36
< Rhamphoryncus>
augh. 3-way split isn't 3-way. It's 6-way x_x
08:36
<&McMartin>
SCIENCE
08:40
< Rhamphoryncus>
So many special cases you start to wonder if it'd be quicker to grab a pencil and just draw it, frame by frame :P
08:40 * Rhamphoryncus bitches the night away
08:51 Syloq_Home [Syloq@NetworkAdministrator.Nightstar.Net] has joined #code
08:52
<~Vornicus>
3-way split isn't 3-way?
08:59 Kindamoody is now known as Kindamoody|gaming
09:16 Rhamphoryncus [rhamph@Nightstar-5697f7e2.abhsia.telus.net] has quit [Ping timeout: 121 seconds]
09:17 Rhamphoryncus [rhamph@Nightstar-5697f7e2.abhsia.telus.net] has joined #code
09:36 himi [fow035@Nightstar-5d05bada.internode.on.net] has joined #code
09:36 mode/#code [+o himi] by ChanServ
09:36 You're now known as TheWatcher
09:46 Reiver [Reiver@5B433A.F67240.73FC65.96DB0D] has joined #code
09:50 Syloq_Home [Syloq@NetworkAdministrator.Nightstar.Net] has quit [Client closed the connection]
09:50 Vash [Vash@Nightstar-e8057de2.wlfrct.sbcglobal.net] has quit [[NS] Quit: I lovecraft Vorn!]
09:53 Reiver [Reiver@5B433A.F67240.73FC65.96DB0D] has quit [Ping timeout: 121 seconds]
09:54 ToxicFrog [ToxicFrog@ServerAdministrator.Nightstar.Net] has quit [Operation timed out]
09:57 ToxicFrog [ToxicFrog@ServerAdministrator.Nightstar.Net] has joined #code
09:58 Reiver [Reiver@5B433A.3CF6C7.02B04D.229F41] has joined #code
09:59 Syloq_Home [Syloq@NetworkAdministrator.Nightstar.Net] has joined #code
10:08 RichyB [MyCatVerbs@Nightstar-3b2c2db2.bethere.co.uk] has joined #code
10:09 Reiver [Reiver@5B433A.3CF6C7.02B04D.229F41] has quit [Ping timeout: 121 seconds]
10:25 Reiver [Reiver@5B433A.F67240.33BD13.6A6758] has joined #code
10:27 McMartin [mcmartin@Nightstar-7d790d29.pltn13.sbcglobal.net] has quit [Operation timed out]
10:27 McMartin [mcmartin@Nightstar-7d790d29.pltn13.sbcglobal.net] has joined #code
10:27 mode/#code [+ao McMartin McMartin] by ChanServ
10:37 Nemu [NeophoxProd@Nightstar-56e891ec.asahi-net.or.jp] has joined #code
11:32 Kindamoody|gaming is now known as Kindamoody
11:38 iospacedout is now known as iospace
11:45 ReivLappy [quassel@5B433A.F67240.33BD13.6A6758] has joined #code
11:55 Reivles [quassel@Nightstar-3762b576.co.uk] has joined #code
12:04 ReivLappy [quassel@5B433A.F67240.33BD13.6A6758] has quit [Client closed the connection]
12:12 Kindamoody is now known as Kindamoody|lunch
12:40 iospace is now known as iofficespace
13:06 Kindamoody|lunch is now known as Kindamoody
13:19 Rhamphoryncus [rhamph@Nightstar-5697f7e2.abhsia.telus.net] has quit [Client exited]
13:19 * TheWatcher knucklecracks, starts performing yet more unspeakable acts with javascript
13:20
< RichyB>
Unspeakable acts like... writing it?
13:20
<@TheWatcher>
Pretty much!
13:27
< RichyB>
function preorder(f, node) { while (node !== null) { f(node); if (node.firstChild) { preorder(f, node.firstChild); } node = node.nextSibling; } } /* might be correct */
13:30
< sshine>
RichyB, don't you only traverse one side of the tree?
13:30
< sshine>
preorder() is only called on the first child.
13:31
< RichyB>
The invocation of preorder on the first child will, before returning, call f() on all of its rightward siblings
13:31
< RichyB>
the while loop and node=node.nextSibling
13:32
< RichyB>
there's a clearer version of that, I think, which is
13:33
< RichyB>
function preorder_rec(f, node) { f(node); (node.firstChild !== null) && preorder(f, node.firstChild); (node.nextSibling !== null) && preorder(f, node.nextSibling); }
13:33
< RichyB>
but it recurses along the siblings as well as down the tree, when you only ever really needed to recurse down
13:34
< sshine>
right.
13:34
< sshine>
the recursive definition makes more sense to me. that's what university does to someone!
13:34
< RichyB>
Me too, TBH.
13:34
< RichyB>
That's what Haskell does to a person.
13:35
< RichyB>
Come to think of it, the recursive definition is tail-recursive. Pity JS interpreters don't eliminate tail calls.
13:36
< sshine>
how can a tree-traversal function be tail-recursive?
13:36
< RichyB>
The preorder(f, node.nextSibling) call is in tail position.
13:36
< sshine>
right.
13:36
< RichyB>
The preorder(f, node.firstChild) call isn't.
14:13 Alek [omegaboot@Nightstar-56dbba0f.in.comcast.net] has quit [Ping timeout: 121 seconds]
14:15 Alek [omegaboot@Nightstar-56dbba0f.in.comcast.net] has joined #code
14:15 mode/#code [+o Alek] by ChanServ
14:21 Kindamoody is now known as Kindamoody|out
--- Log closed Tue Jul 31 14:47:04 2012
--- Log opened Tue Jul 31 14:48:05 2012
14:48 TheWatcher [chris@Nightstar-3762b576.co.uk] has joined #code
14:48 Irssi: #code: Total of 30 nicks [5 ops, 0 halfops, 0 voices, 25 normal]
14:48 mode/#code [+o TheWatcher] by ChanServ
14:48 Irssi: Join to #code was synced in 43 secs
14:49
< ToxicFrog>
At one of these points I need to try out cljs.
14:51 mode/#code [+ao ToxicFrog ToxicFrog] by ChanServ
14:55 Reiver [Reiver@5B433A.F67240.33BD13.6A6758] has quit [Connection reset by peer]
15:07 Syloq_Home [Syloq@NetworkAdministrator.Nightstar.Net] has quit [Client closed the connection]
15:16 Syloq_Home [Syloq@NetworkAdministrator.Nightstar.Net] has joined #code
15:36 Attilla [Obsolete@Nightstar-eb948e96.as43234.net] has quit [Ping timeout: 121 seconds]
15:41 Attilla [Obsolete@Nightstar-429b0f61.as43234.net] has joined #code
15:45 Attilla [Obsolete@Nightstar-429b0f61.as43234.net] has quit [Ping timeout: 121 seconds]
15:49 Attilla [Obsolete@Nightstar-429b0f61.as43234.net] has joined #code
16:23
< iofficespace>
hmm... grounding htis pin
16:39
<&ToxicFrog>
HTTP status cats: http://www.flickr.com/photos/girliemac/sets/72157628409467125/with/6509400929/
17:41 Syloq_Home [Syloq@NetworkAdministrator.Nightstar.Net] has quit [Client closed the connection]
17:50 Syloq_Home [Syloq@NetworkAdministrator.Nightstar.Net] has joined #code
18:12
<&McMartin>
Yay 204
18:16
<&McMartin>
Also 405
18:17
<~Vornicus>
My favorite I think is 304
18:17
<~Vornicus>
and 411
18:18
<&McMartin>
417 is pretty great too
18:18 Syloq_Home [Syloq@NetworkAdministrator.Nightstar.Net] has quit [Client closed the connection]
18:18
<&McMartin>
... 418 is vaguely inexplicable but OK
18:20
<&McMartin>
... 500 is good just for the cat's expression
18:24
< Moltare>
The 418 error code was the result of an April Fools gag RFC, I believe
18:25 Syloq_Home [Syloq@NetworkAdministrator.Nightstar.Net] has joined #code
18:26
<&ToxicFrog>
McMartin: as it says in the description, 418 I'M A TEAPOT was described in RFC 2324 on April Fool's and has since been implemented in a few servers.
18:26
<&McMartin>
For servers that are teapots?
18:27
<&ToxicFrog>
For coffee brewers with HTTP interfaces, actually.
18:27
< Namegduf>
I made a servlet I commented out return 418.
18:28
< Namegduf>
(It was sticking around because it had a purpose... it was just related to the backup restore system and you're not supposed to touch that unless you're reading the document which will, amongst other things, tell you to uncomment the servlet)
18:42 Vash [Vash@Nightstar-e8057de2.wlfrct.sbcglobal.net] has joined #code
18:42 mode/#code [+o Vash] by ChanServ
18:46
< iofficespace>
yay i finally got these pins to ground properly!
19:13
< gnolam>
What was the problem?
19:27 Syloq_Home [Syloq@NetworkAdministrator.Nightstar.Net] has quit [Client closed the connection]
20:29 Kindamoody|out is now known as Kindamoody
20:34 Nemu_ [NeophoxProd@Nightstar-55d158b3.asahi-net.or.jp] has joined #code
20:36 Nemu [NeophoxProd@Nightstar-56e891ec.asahi-net.or.jp] has quit [Ping timeout: 121 seconds]
20:48 Kindamoody is now known as Kindamoody[zZz]
21:38
< Tarinaky>
I think I need to kill this project. Is there a general rule of thumb as to when you can end a project and still call it a success without lying?
21:42
< RichyB>
Did it achieve anything at all?
21:42
< RichyB>
If so, yes! Laud current achievements, elect to "Maintain ongoing stability instead of searching for further incremental improvements."
21:45
< gnolam>
"Project successfully achieved a proof of concept."
--- Log closed Tue Jul 31 22:06:16 2012
--- Log opened Tue Jul 31 22:06:24 2012
22:06 TheWatcher [chris@Nightstar-3762b576.co.uk] has joined #code
22:06 Irssi: #code: Total of 24 nicks [6 ops, 0 halfops, 0 voices, 18 normal]
22:06 mode/#code [+o TheWatcher] by ChanServ
22:06 jerith [jerith@Nightstar-bf52129d.slipgate.za.net] has joined #code
22:06 froztbyte [froztbyte@Nightstar-dc394964.za.net] has joined #code
22:06 mode/#code [+ao jerith jerith] by ChanServ
22:07 Irssi: Join to #code was synced in 43 secs
22:09 Derakon[AFK] [Derakon@Nightstar-a3b183ae.ca.comcast.net] has joined #code
22:09 Attilla [Obsolete@Nightstar-429b0f61.as43234.net] has joined #code
22:12 ShellNinja [abudhabi@Nightstar-34271be2.adsl.inetia.pl] has joined #code
22:35 himi [fow035@Nightstar-5d05bada.internode.on.net] has quit [Ping timeout: 121 seconds]
22:55
< iofficespace>
i swear to god, staring at PCBs is going to make me go crosseyed
23:16
< gnolam>
Depending on the kind of PCB, that might actually be a symptom.~
23:17
< iofficespace>
a PCB for a SBC
23:17
< iofficespace>
i'm also referring to the .pcb file
23:17
< gnolam>
(And I was referring to polychlorinated biphenyls ;))
23:22
< iofficespace>
heh
--- Log closed Wed Aug 01 00:00:04 2012
code logs -> 2012 -> Tue, 31 Jul 2012< code.20120730.log - code.20120801.log >

[ Latest log file ]