--- Log opened Mon Oct 27 00:00:51 2008 |
00:07 | | * Finerty shoots number theory in the bitch. |
00:12 | | DBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
00:12 | | C_tiger [~c_wyz@Nightstar-8414.hsd1.ca.comcast.net] has joined #code |
00:13 | | DiceBot [~Reiver@Nightstar-14540.xdsl.xnet.co.nz] has quit [Ping Timeout] |
00:13 | | Reiver [~reaverta@Nightstar-14540.xdsl.xnet.co.nz] has quit [Ping Timeout] |
00:14 | | DBot is now known as DiceBot |
00:17 | <@ToxicFrog> | Ding 1! |
00:17 | <@ToxicFrog> | I am now a tetrahedron! |
00:17 | <@Finerty> | Yay! |
00:18 | | * Finerty pokes at 21. |
00:18 | <@Finerty> | ...oh, duh. that one's not hard, I have the divisor function written. |
00:19 | | Reiver [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
00:19 | | mode/#code [+o Reiver] by ChanServ |
00:25 | | * ToxicFrog finally gets around to building the lua bignum library |
00:34 | | * Serah nibbles on TF. |
00:39 | <@ToxicFrog> | meep |
00:39 | | * ToxicFrog licks Serah |
00:46 | <@Finerty> | ..okay what? |
00:47 | <@Finerty> | Problem 21. For some reason, I am not getting one of the five pairs of amicable numbers under 10,000. |
00:49 | <@Finerty> | ...it's getting 986 for 1210's restricted divisor function. why is this? |
00:50 | <@Finerty> | ....because my factorization thing was wrong and stopped when left with a square of a prime. |
00:50 | | * Finerty fixes that so it filters using <= instead of <. |
00:57 | <@ToxicFrog> | 24: 1 minute 7 using a non-memoized, iterator-based permuter. |
01:00 | <@ToxicFrog> | Let's see how it does if I change that to list based with memoization. |
01:11 | <@ToxicFrog> | As it turns out, not really worth it. |
01:11 | <@ToxicFrog> | Iterators: 1:07, 100KB |
01:11 | <@ToxicFrog> | Memoized lists: 0:56, 470MB |
01:12 | <@ToxicFrog> | As speed/size tradeoffs go, that one's not really worth it. |
01:12 | | * Finerty knows how to do that one better; the trick is to use a variable-base number system. |
01:13 | <@GeekSoldier> | haha. |
01:15 | <@ToxicFrog> | o.O |
01:15 | <@ToxicFrog> | Do tell. |
01:15 | <@Finerty> | Okay, so, you know how many permutations of k elements there are, right? |
01:16 | <@ToxicFrog> | Yes. |
01:16 | <@ToxicFrog> | k!, IIRC |
01:16 | <@Finerty> | Okay, so you know, from that, how many permuations of k+1 elements there are that start with each element, right? |
01:17 | <@ToxicFrog> | Yes. |
01:17 | <@Finerty> | So for instance there's 24 permutations of 1,2,3,4, and 24 permutations of 1,2,3,4,5 that start with 1. |
01:18 | <@Finerty> | Therefore, we know that the fifth digit from the right has a place value of 24. |
01:20 | <@ToxicFrog> | If I followed that right, the placevalues from right to left of the first five digits would be 0, 1, 2, 6, 24? |
01:20 | <@Finerty> | yep. |
01:20 | <@ToxicFrog> | And by "variable base" you mean "each digit is in a different base"? |
01:20 | <@Finerty> | Yep. |
01:23 | <@ToxicFrog> | And thus, the problem now becomes "express 1e7 in this format"? |
01:23 | <@Finerty> | So what you can then do is go through, pick the 'digit' with an appropriate value, use that as an index into an array, pop that item from the array and place it in the appropriate location. |
01:24 | <@ToxicFrog> | waitwaitwait |
01:24 | <@ToxicFrog> | "with an appropriate value"? |
01:24 | <@Finerty> | Using The Price Is Right |
01:25 | <@Finerty> | Starting on the left: find the largest number which, when multiplied by that place value, will give a number no larger than the target value. |
01:25 | <@ToxicFrog> | Right. |
01:25 | <@ToxicFrog> | Ok, makes sense. |
01:27 | <@ToxicFrog> | That just leaves the digit => symbol map. |
01:27 | <@Finerty> | Which is what you use the array popper for. |
01:28 | | Attilla [~The.Attil@Nightstar-9469.cdif.cable.ntl.com] has quit [Quit: <Insert Humorous and/or serious exit message here>] |
01:31 | <@ToxicFrog> | I think it's just symbol(place, value) == inputstring[place+value], zero-indexed |
01:32 | <@Finerty> | Nope. |
01:33 | <@ToxicFrog> | ...what is it, then? |
01:33 | <@Finerty> | Starting at the left: symbol[place] = inputstring.pop(value[place]) |
01:33 | <@ToxicFrog> | ('place' is from the left here, BTW - place 0 is the MSB) |
01:33 | <@Finerty> | You have to remove used symbols |
01:33 | <@ToxicFrog> | Oooh right |
01:39 | <@Finerty> | so you're getting 2 6 6 2 5 1 2 2 0 0 as your indexes (that last one you'll be dividing by zero, but there's only one possibility anyway)... |
01:40 | <@Finerty> | Which obviously has duplicates in it. |
01:40 | <@Finerty> | mmm, except this is zero-indexed stuff, so the real number is 999999 |
01:41 | <@Finerty> | 2 6 6 2 5 1 2 1 1 0 |
01:46 | <@Finerty> | All this is nine divmods and ten array pops, which is absurd speed. |
01:55 | <@Finerty> | ...probably better to do right-to-left, that way you don't have to calculate the factorial all the way out. A little trickier, though - you have to mod with the place value above to see your excess, and the divmod stuff doesn't work out exactly as hoped. |
01:56 | <@Finerty> | ...because it's actually easier, and you use smaller numbers. holy shit that's cool. |
02:29 | | Vash [~Vash@Nightstar-26661.dsl.sndg02.sbcglobal.net] has joined #code |
03:00 | | Reiver [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
03:01 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
03:03 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
03:08 | | Reiver [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
03:08 | | mode/#code [+o Reiver] by ChanServ |
03:14 | | Reiver [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
03:16 | | gnolam [lenin@Nightstar-1382.A163.priv.bahnhof.se] has quit [Quit: Immanentizing the Eschaton] |
03:16 | | DBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
03:17 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
03:17 | | DBot is now known as DiceBot |
03:21 | | Reiver [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
03:21 | | mode/#code [+o Reiver] by ChanServ |
03:32 | | Reiver [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
03:35 | | Finerty is now known as Vornicus |
03:41 | | Reiver [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
03:41 | | mode/#code [+o Reiver] by ChanServ |
05:01 | | Reiver [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
05:01 | | DBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
05:02 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
05:03 | | DBot is now known as DiceBot |
05:07 | | Reiver [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
05:07 | | mode/#code [+o Reiver] by ChanServ |
05:08 | | * Vornicus tries to figure out how to do 23 in less time. |
05:52 | <@Serah> | Twentythree? |
05:53 | <@Vornicus> | Project Euler, problem 23 |
05:54 | <@Vornicus> | Consider the Abundant Numbers: numbers for which the sum of their proper divisors (for 24: 1 2 3 4 6 8 12 are proper divisors) is greater than the number itself. |
05:55 | <@Vornicus> | Now, it has been shown that only some numbers below 20,000 or so cannot be expressed as the sum of two abundant numbers |
05:55 | <@Vornicus> | The problem asks you to figure out what those numbers are. |
05:56 | <@Vornicus> | With 6,000 abundant numbers in that range, though, trying a brute force method is a bit of a pain - 36,000,000 results from the minkovsky sum, then reduced drastically as you filter duplicates. |
05:57 | <@Serah> | Bit of pain + computer + patience = olution! |
05:57 | <@Vornicus> | Yeah, but these problems are all suppsoed to be solvable in under a minute or so of computer work, and this feels like a lot more than a minute. |
06:00 | <@Serah> | More powerful CPU? |
06:01 | <@Vornicus> | I can probably filter in a couple directions to halve or quarter the number of things to look at. |
06:03 | <@Vornicus> | (currently I test a + b; I could restrict to a < b, and a + b < limit, which adds additional checks to the generation of trials, but can reduce the field drastically if I sort the items.) |
06:09 | <@Serah> | Yeah, can't you also sort out all odd numbers? |
06:10 | <@Vornicus> | Why would I be able to do that? |
06:11 | <@Serah> | No wait, the above was an example. |
06:11 | <@Serah> | I thought for a minute 1, 2, three, 4, 6, 8, and 12 was the only legal divisors. |
06:11 | <@Serah> | Nevermind. |
06:12 | <@Serah> | Actually you should be able to eliminate some divisors which are less likely to produce the desired result. |
06:13 | <@Serah> | Although we want certain not less likely. |
06:13 | <@Serah> | This is the sort of thing that requires me having slept. |
06:14 | <@Serah> | Although I would likely brute force it. |
06:14 | <@Serah> | With my old box, when I slept. |
06:14 | <@Serah> | But I will sleepflee now. |
06:14 | <@Serah> | Byes Vorn! |
06:14 | | Serah [~Z@Nightstar-5401.atm2-0-1041217.0xc329e232.boanxx12.customer.tele.dk] has quit [Quit: Be right back, got some smiting and righteous justice to attend to.] |
06:15 | <@Vornicus> | Yeah, brute forcing is probably the answer, but I should probably break out bisect and see if I can't drastically reduce the number of trials; at a guess I can hit 1/4 the number of things. |
06:27 | | AnnoDomini [~farkoff@Nightstar-29528.neoplus.adsl.tpnet.pl] has joined #Code |
06:27 | | mode/#code [+o AnnoDomini] by ChanServ |
06:40 | | Vornicus is now known as Vornicus-Latens |
07:03 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
07:03 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
07:03 | | ReivDamnit [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
07:04 | | Reiver [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
07:06 | | ReivDamnit [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
07:08 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
07:27 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
07:31 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
07:35 | | Reiver [~reaverta@Admin.Nightstar.Net] has joined #Code |
07:35 | | mode/#code [+o Reiver] by ChanServ |
07:41 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
07:47 | | DBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
07:48 | | Reiver [~reaverta@Admin.Nightstar.Net] has quit [Ping Timeout] |
07:48 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
07:48 | | DBot is now known as DiceBot |
07:54 | | Reiver [~reaverta@Admin.Nightstar.Net] has joined #Code |
07:54 | | mode/#code [+o Reiver] by ChanServ |
08:04 | | Reiver [~reaverta@Admin.Nightstar.Net] has quit [Ping Timeout] |
08:04 | | DBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
08:05 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
08:06 | | DBot is now known as DiceBot |
08:11 | | Reiver [~reaverta@Admin.Nightstar.Net] has joined #Code |
08:11 | | mode/#code [+o Reiver] by ChanServ |
08:16 | | Reiver [~reaverta@Admin.Nightstar.Net] has quit [Ping Timeout] |
08:24 | | Reiver [~reaverta@Admin.Nightstar.Net] has joined #Code |
08:24 | | mode/#code [+o Reiver] by ChanServ |
08:26 | | You're now known as TheWatcher |
08:32 | | Reiver [~reaverta@Admin.Nightstar.Net] has quit [Ping Timeout] |
08:32 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
08:34 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
08:39 | | Reiver [~reaverta@Admin.Nightstar.Net] has joined #Code |
08:39 | | mode/#code [+o Reiver] by ChanServ |
08:49 | | Attilla [~The.Attil@Nightstar-9469.cdif.cable.ntl.com] has joined #code |
08:49 | | mode/#code [+o Attilla] by ChanServ |
09:29 | | Attilla [~The.Attil@Nightstar-9469.cdif.cable.ntl.com] has quit [Connection reset by peer] |
09:30 | | Attilla [~The.Attil@Nightstar-9469.cdif.cable.ntl.com] has joined #code |
09:30 | | mode/#code [+o Attilla] by ChanServ |
09:39 | | Reiver [~reaverta@Admin.Nightstar.Net] has quit [Ping Timeout] |
09:46 | | Reiver [~reaverta@Admin.Nightstar.Net] has joined #Code |
09:46 | | mode/#code [+o Reiver] by ChanServ |
09:50 | | Vash [~Vash@Nightstar-26661.dsl.sndg02.sbcglobal.net] has quit [Quit: *poofs into nothingness*] |
11:44 | | Vornicus-Latens [~vorn@ServicesOp.Nightstar.Net] has quit [Ping Timeout] |
12:28 | | gnolam [lenin@Nightstar-1382.A163.priv.bahnhof.se] has joined #Code |
12:28 | | mode/#code [+o gnolam] by ChanServ |
12:54 | | Attilla [~The.Attil@Nightstar-9469.cdif.cable.ntl.com] has quit [Connection reset by peer] |
12:54 | | Attilla [~The.Attil@Nightstar-9469.cdif.cable.ntl.com] has joined #code |
12:54 | | mode/#code [+o Attilla] by ChanServ |
13:42 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
13:42 | | Reiver [~reaverta@Admin.Nightstar.Net] has quit [Ping Timeout] |
13:43 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
13:48 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
13:50 | | Reiver [~reaverta@Admin.Nightstar.Net] has joined #Code |
13:50 | | mode/#code [+o Reiver] by ChanServ |
13:50 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
13:57 | | Reiver [~reaverta@Admin.Nightstar.Net] has quit [Ping Timeout] |
13:58 | | DBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
13:59 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
13:59 | | DBot is now known as DiceBot |
14:04 | | Reiver [~reaverta@Admin.Nightstar.Net] has joined #Code |
14:04 | | mode/#code [+o Reiver] by ChanServ |
14:09 | | Vornotron [~vorn@Admin.Nightstar.Net] has joined #code |
14:10 | | Vornotron is now known as Vornicus |
15:16 | | MyCatVerbs [~mycatverb@Nightstar-13709.lurkingfox.co.uk] has quit [Operation timed out] |
15:16 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
15:17 | | MyCatVerbs [~mycatverb@Nightstar-13709.lurkingfox.co.uk] has joined #code |
15:17 | | mode/#code [+o MyCatVerbs] by ChanServ |
15:21 | | Reiver [~reaverta@Admin.Nightstar.Net] has quit [Ping Timeout] |
15:21 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
15:29 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
15:33 | | Reiver [~reaverta@Admin.Nightstar.Net] has joined #Code |
15:33 | | mode/#code [+o Reiver] by ChanServ |
15:33 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
16:06 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
16:07 | | Reiver [~reaverta@Admin.Nightstar.Net] has quit [Ping Timeout] |
16:10 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
16:16 | | Reiver [~reaverta@Admin.Nightstar.Net] has joined #Code |
16:16 | | mode/#code [+o Reiver] by ChanServ |
16:19 | <@gnolam> | Reasons to Buy an EEE PC, #7: Telling people you're going downtown to buy some 'EEE'. |
16:19 | <@Shoukanjuu> | >__> |
16:32 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
16:35 | | Reiver [~reaverta@Admin.Nightstar.Net] has quit [Ping Timeout] |
16:37 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
16:46 | | Reiver [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
16:46 | | mode/#code [+o Reiver] by ChanServ |
17:46 | | C_tiger [~c_wyz@Nightstar-8414.hsd1.ca.comcast.net] has quit [Quit: And away she goes!] |
18:12 | | Reiver [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
18:21 | | Reiver [~reaverta@Admin.Nightstar.Net] has joined #Code |
18:21 | | mode/#code [+o Reiver] by ChanServ |
18:21 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
18:21 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
18:45 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
18:47 | | Reiver [~reaverta@Admin.Nightstar.Net] has quit [Ping Timeout] |
18:47 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
18:55 | | Reiver [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
18:55 | | mode/#code [+o Reiver] by ChanServ |
19:03 | | Reiver [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
19:09 | | C_tiger [~c_wyz@Nightstar-8414.hsd1.ca.comcast.net] has joined #code |
19:10 | | Reiver [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
19:10 | | mode/#code [+o Reiver] by ChanServ |
19:13 | | Reiver [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
19:16 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
19:22 | | Reiver [~reaverta@Admin.Nightstar.Net] has joined #Code |
19:22 | | mode/#code [+o Reiver] by ChanServ |
19:26 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
19:45 | | You're now known as Chris |
19:46 | | You're now known as TheWatcher |
19:49 | | Reiver [~reaverta@Admin.Nightstar.Net] has quit [Ping Timeout] |
19:49 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
19:52 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
19:57 | | Reiver [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
19:57 | | mode/#code [+o Reiver] by ChanServ |
20:03 | | Vash [~Vash@Nightstar-27854.dsl.sndg02.sbcglobal.net] has joined #code |
20:19 | | * gnolam hates on Firefox. |
20:19 | <@Shoukanjuu> | Oh no you didn't! |
20:21 | <@gnolam> | Oh yes I did. Piece of crap software. :P |
20:23 | <@gnolam> | Hah, success! |
20:23 | | * gnolam can has regular KDE on the EEE PC. |
20:25 | <@gnolam> | Now, for a suitably offensive background picture... |
20:29 | <@Shoukanjuu> | :P |
20:35 | < Vash> | ... |
20:35 | < Vash> | Interesting. |
20:35 | <@AnnoDomini> | gnolam: Going to 4chan, eh? |
20:36 | <@Shoukanjuu> | AD: What |
20:37 | | * Vash goes ponder some more about what cookies to make later |
20:37 | <@gnolam> | Try SYN cookies. I hear they're tasty. |
20:37 | <@AnnoDomini> | Shoukanjuu: Offensive pictures. 4chan. |
20:37 | <@Shoukanjuu> | 4chan isn't *all* offensive pictures. |
20:38 | <@Shoukanjuu> | there's still the rare sane person there, who posts on topic, is a sniper who is credit to the team, and never touches the offensive portions of the site :P |
20:53 | | Reiver [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
20:54 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
20:58 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
21:00 | | Reiver [~reaverta@Admin.Nightstar.Net] has joined #Code |
21:00 | | mode/#code [+o Reiver] by ChanServ |
21:04 | <@gnolam> | I think I'll have to put xubuntu on this thing. |
21:05 | | Reiver [~reaverta@Admin.Nightstar.Net] has quit [Ping Timeout] |
21:05 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
21:05 | <@McMartin> | gnolam: Might as well wait three days and get the latest edition. |
21:06 | <@gnolam> | ? |
21:07 | <@McMartin> | 8.10 comes out in three days. |
21:07 | <@gnolam> | Ah. |
21:08 | <@McMartin> | (I don't know if Xubuntu gets a full spin each release or not, but I *think* it does.) |
21:12 | | * gnolam pokes Chernobyl with a spoon. |
21:13 | <@AnnoDomini> | Have you gotten to finishing that report site of yours? |
21:13 | | Reiver [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
21:13 | | mode/#code [+o Reiver] by ChanServ |
21:15 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
21:20 | | AbuDhabi [~farkoff@Nightstar-28062.neoplus.adsl.tpnet.pl] has joined #Code |
21:21 | | AnnoDomini [~farkoff@Nightstar-29528.neoplus.adsl.tpnet.pl] has quit [Ping Timeout] |
21:22 | <@gnolam> | Nyet, tovarishch. |
21:22 | <@gnolam> | (I went with http://www.lysator.liu.se/~gnolam/temp/CoASoviet-1024-600.png as a wallpaper, BTW) |
21:23 | | Reiver [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
21:23 | | DBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
21:23 | <@gnolam> | I did write a bit on it, but I haven't published any of it yet. |
21:24 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
21:24 | | DBot is now known as DiceBot |
21:29 | | DBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
21:29 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
21:30 | | DBot is now known as DiceBot |
21:31 | | Reiver [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
21:31 | | mode/#code [+o Reiver] by ChanServ |
21:38 | | Reiver [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
21:46 | | Reiver [~reaverta@Admin.Nightstar.Net] has joined #Code |
21:46 | | mode/#code [+o Reiver] by ChanServ |
21:53 | | Reiver [~reaverta@Admin.Nightstar.Net] has quit [Ping Timeout] |
21:55 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
22:00 | | Reiver [~reaverta@Admin.Nightstar.Net] has joined #Code |
22:01 | | mode/#code [+o Reiver] by ChanServ |
22:08 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
22:08 | | Reiver [~reaverta@Admin.Nightstar.Net] has quit [Ping Timeout] |
22:15 | | Reiver [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
22:15 | | mode/#code [+o Reiver] by ChanServ |
22:30 | | crem [~moo@Nightstar-28703.adsl.mgts.by] has quit [Ping Timeout] |
22:31 | | crem [~moo@Nightstar-28703.adsl.mgts.by] has joined #code |
22:57 | | AbuDhabi [~farkoff@Nightstar-28062.neoplus.adsl.tpnet.pl] has quit [Quit: Also, Power Dome A is now the roost of a truly ancient Deep Crow.] |
23:03 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
23:03 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
23:05 | | Reiver [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
23:07 | | * gnolam discovers WiFi signal strength maps of his campus. |
23:07 | <@gnolam> | Neat! |
23:12 | | Reiver [~reaverta@Admin.Nightstar.Net] has joined #Code |
23:12 | | mode/#code [+o Reiver] by ChanServ |
23:17 | | Reiver [~reaverta@Admin.Nightstar.Net] has quit [Ping Timeout] |
23:20 | | DBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
23:20 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
23:21 | | DBot is now known as DiceBot |
23:26 | | Reiver [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
23:26 | | mode/#code [+o Reiver] by ChanServ |
23:33 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
23:34 | | You're now known as TheWatcher[T-2] |
23:35 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
23:36 | | Reiver [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
23:39 | | You're now known as TheWatcher[zZzZ] |
23:45 | | Reiver [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
23:45 | | mode/#code [+o Reiver] by ChanServ |
23:48 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
23:51 | | Reiver [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has quit [Ping Timeout] |
23:52 | | DiceBot [~Reiver@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
23:57 | | Reiver [~reaverta@Nightstar-6973.xdsl.xnet.co.nz] has joined #Code |
23:58 | | mode/#code [+o Reiver] by ChanServ |
--- Log closed Tue Oct 28 00:00:50 2008 |