--- Log opened Mon Aug 06 00:00:24 2007 |
00:17 | | Forjadon [~Forjadon@Nightstar-10147.ue.woosh.co.nz] has quit [Ping Timeout] |
02:28 | | Serah [~Z@87.72.35.ns-3885] has quit [Connection reset by peer] |
02:28 | | Serah [~Z@87.72.35.ns-3885] has joined #Code |
02:29 | | mode/#code [+o Serah] by ChanServ |
02:47 | <@Vornicus> | Gnarg. So anyway, I need to rejigger my schema to have simple primary keys. |
02:48 | <@ReivZzz> | ok. |
02:50 | <@Vornicus> | (because composites don't really work with any existing ORMs) |
02:51 | <@Vornicus> | (which /fucking blows/) |
02:51 | | * ToxicFrog patpats |
02:52 | | * Pi points and laughs at Vornicus |
02:53 | <@Vornicus> | :( |
02:59 | | * Vornicus wants Visio. |
03:02 | <@Vornicus> | also, /me <3 Finder, and its "go to folder" thing. |
03:07 | <@Vornicus> | ...ooh, tricky one. |
03:08 | <@Vornicus> | In Seafarers, there is a "gold" terrain that, when it produces resources, produces any kind you want it to. |
03:13 | | ReivZzz is now known as ReivOut |
03:13 | | ReivOut is now known as ReivClass |
03:26 | <@Vornicus> | And in C&K, a city can produce different resources from a settlement - on Mountain, Pasture, and Forest terrains, the second resource is Coin, CLoth, or Paper, respectively, as opposed to the usual Ore, Wool, or Wood. |
03:34 | <@Vornicus> | that second one isn't too horribly hard, now that I think about it, but. |
05:33 | | ReivClass is now known as Reiver |
05:50 | <@Vornicus> | nor the first, if I do it right. |
05:50 | <@Vornicus> | meh |
05:50 | <@Vornicus> | I will have to burn that bridge when I come to it, I think. |
05:52 | <@Reiver> | Just make sure your design is sufficiently modular to allow the rules to get yoinked like that, and you'll be fine |
05:53 | <@Vornicus> | Yeah. |
06:31 | | Forj [~Forj@Nightstar-10147.ue.woosh.co.nz] has joined #code |
06:34 | | Forjadon [~Forjadon@Nightstar-10147.ue.woosh.co.nz] has joined #code |
06:34 | | mode/#code [+o Forjadon] by ChanServ |
06:49 | | Forjadon is now known as ChalcyLaptop |
06:55 | | Netsplit Blargh.CA.US.Nightstar.Net <-> Troika.TX.US.Nightstar.Net quits: @Pi, DiceBot, @Vornicus, @Raif, +KarmaBot, @EvilDarkLord, @Serah, @jerith, @Chalcedon, @ToxicFrog, (+2 more, use /NETSPLIT to show all of them) |
06:56 | | Netsplit over, joins: EvilDarkLord, Chalain, Raif, jerith, Vornicus, KarmaBot, Reiver, DiceBot, Pi, ToxicFrog (+2 more) |
06:56 | | RBot [~Reiver@Nightstar-2315.ubs-dsl.xnet.co.nz] has joined #Code |
06:56 | | ServerMode/#Code [+v KarmaBot] by DeepThought.NY.US.Nightstar.Net |
06:56 | | mode/#code [+o AnnoDomini] by ChanServ |
06:56 | | mode/#code [-o ChalcyLaptop] by ChanServ |
06:56 | | mode/#code [-o TheWatcher[zZzZ]] by ChanServ |
06:56 | | DiceBot [~Reiver@Nightstar-2315.ubs-dsl.xnet.co.nz] has quit [Ping Timeout] |
06:57 | | RBot is now known as DiceBot |
07:57 | | KarmaBot [~fark.off@87.72.35.ns-3885] has quit [Connection reset by peer] |
07:57 | | Serah [~Z@87.72.35.ns-3885] has quit [Connection reset by peer] |
07:58 | | KarmaBot [~fark.off@87.72.35.ns-3885] has joined #Code |
07:58 | | mode/#code [+v KarmaBot] by ChanServ |
08:01 | | Serah [~Z@87.72.35.ns-3885] has joined #Code |
08:01 | | mode/#code [+o Serah] by ChanServ |
08:03 | | You're now known as TheWatcher |
08:03 | | mode/#code [+o TheWatcher] by ChanServ |
09:00 | < Vornicus> | ...it is worky! |
09:00 | < Chalcedon> | yay? |
09:01 | | * Vornicus can use Python instead of Ruby! |
09:01 | < Chalcedon> | yay! |
09:02 | | * Vornicus is so freaking glad, as he loves him some Python |
09:17 | | Chalcedon is now known as ChalcyCleaning |
09:26 | < Reiver> | YEY VORN |
09:26 | < Reiver> | (Why were you using Ruby to start with?) |
09:31 | < Vornicus> | Because it had Rails. |
09:32 | < Vornicus> | Python has Django, which is similar, but earlier I had trouble getting it to run. |
09:41 | < Reiver> | Man |
09:41 | < Reiver> | It sounds like Rails is like, Rubys whole selling point. |
09:54 | < Vornicus> | Essentially |
09:54 | < Vornicus> | Ruby is a scary language in a lot of ways, in particular in the programmer's ability to change classes on the fly - and, at that, that the programmer is /encouraged/ and sometimes /required/ to do so. |
09:57 | < Reiver> | Good Ideas, Dangerous In Practice? |
09:58 | < Vornicus> | Essentially, yeah |
09:58 | < Vornicus> | I mean, sure, it's really convenient to be able to add a specific ability to the standard array class, for instance |
09:59 | | * EvilDarkLord hoorays, can now read Vorn's code too :) |
09:59 | < Vornicus> | but to /have to/ change the behavior of regular numbers to add a class that handles complex numbers? |
09:59 | < Vornicus> | It's bad evil and wrong. |
09:59 | < Reiver> | *nod* |
10:02 | < Vornicus> | (which is something that Lua and Python get right - in both, you can make 5 * Complex(15, 2) work via a method on the Complex class, which presumably you control. |
10:03 | < Vornicus> | (though Python has a complex type built in; hell, it even has a literal) |
10:04 | < Vornicus> | (which is Damn Convenient) |
10:07 | < Vornicus> | There are some things Ruby does right - allowing underscores in numeric literals so you can go 31_556_926 and actually read it (number of seconds in a year) |
10:08 | < Vornicus> | also I'm somewhat a fan of regex-as-literal, but that's also in Perl and I can kinda live without it. |
10:09 | < Vornicus> | Anyway |
10:09 | < Vornicus> | It is bedtime. |
10:10 | < ChalcyCleaning> | nini Vorn |
10:13 | <@AnnoDomini> | Hm. Anybody know if there's a way to check if you're opped from under mIRC scripts? |
10:13 | | * Vornicus knows that Schlock can do it, but isn't sure how. |
10:14 | <@AnnoDomini> | Ah, here it is. A subfunction of $comchan... How does that make sense? |
10:15 | | ChalcyCleaning is now known as Chalcedon |
10:17 | <@AnnoDomini> | Which doesn't do what I need. :/ |
11:23 | | ChalcyLaptop [~Forjadon@Nightstar-10147.ue.woosh.co.nz] has quit [Ping Timeout] |
--- Log closed Mon Aug 06 11:53:34 2007 |
--- Log opened Mon Aug 06 11:54:20 2007 |
11:54 | | TheWatcher [~chris@Nightstar-29731.dsl.in-addr.zen.co.uk] has joined #code |
11:54 | | Irssi: #code: Total of 15 nicks [11 ops, 0 halfops, 1 voices, 3 normal] |
11:54 | | mode/#code [+o TheWatcher] by ChanServ |
11:56 | | Irssi: Join to #code was synced in 110 secs |
--- Log closed Mon Aug 06 12:02:22 2007 |
--- Log opened Mon Aug 06 12:03:12 2007 |
12:03 | | TheWatcher [~chris@Nightstar-29731.dsl.in-addr.zen.co.uk] has joined #code |
12:03 | | Irssi: #code: Total of 15 nicks [11 ops, 0 halfops, 1 voices, 3 normal] |
12:03 | | mode/#code [+o TheWatcher] by ChanServ |
12:04 | | Irssi: Join to #code was synced in 95 secs |
--- Log closed Mon Aug 06 12:10:13 2007 |
--- Log opened Mon Aug 06 12:10:17 2007 |
12:10 | | TheWatcher [~chris@Nightstar-29731.dsl.in-addr.zen.co.uk] has joined #code |
12:10 | | Irssi: #code: Total of 15 nicks [11 ops, 0 halfops, 1 voices, 3 normal] |
12:10 | | mode/#code [+o TheWatcher] by ChanServ |
12:10 | | Irssi: Join to #code was synced in 29 secs |
12:23 | | Chalcedon [~Chalcedon@Nightstar-10147.ue.woosh.co.nz] has quit [Quit: Gone] |
12:32 | | Forj [~Forj@Nightstar-10147.ue.woosh.co.nz] has quit [Quit: Gone] |
12:54 | | AnnoDomini [~farkoff@Nightstar-6902.neoplus.adsl.tpnet.pl] has quit [Ping Timeout] |
13:00 | | AnnoDomini [~farkoff@Nightstar-29551.neoplus.adsl.tpnet.pl] has joined #Code |
13:57 | <@ToxicFrog> | AnnoDomini: both NAMES and WHOIS will get you that info |
13:58 | < AnnoDomini> | I don't want to fiddle with RAW, you know. |
13:58 | < AnnoDomini> | And I've solved the problem with $nick(). |
15:43 | | gnolam [lenin@Nightstar-13557.8.5.253.se.wasadata.net] has joined #Code |
15:43 | | mode/#code [+o gnolam] by ChanServ |
16:56 | | mode/#code [+o AnnoDomini] by ChanServ |
17:06 | | ToxicFrog [~ToxicFrog@Admin.Nightstar.Net] has quit [Client exited] |
17:06 | | ToxicFrog [~ToxicFrog@Admin.Nightstar.Net] has joined #code |
17:06 | | mode/#code [+o ToxicFrog] by ChanServ |
17:13 | | You're now known as TheWatcher[afk] |
17:41 | <@Pi> | /if <nick> isop <channel> { do_stuff } else { etc } |
17:41 | <@Pi> | See also /help /if |
17:57 | | Reiver is now known as ReivSLEP |
18:14 | | AnnoDomini is now known as Lerhir |
18:37 | | Lerhir [~farkoff@Nightstar-29551.neoplus.adsl.tpnet.pl] has quit [Connection reset by peer] |
18:40 | | AnnoDomini [~farkoff@Nightstar-29551.neoplus.adsl.tpnet.pl] has joined #Code |
18:40 | | mode/#code [+o AnnoDomini] by ChanServ |
18:41 | | AnnoDomini is now known as Lerhir |
18:42 | | You're now known as TheWatcher |
19:14 | | Otto_Flick [lenin@Nightstar-13557.8.5.253.se.wasadata.net] has joined #Code |
19:16 | | gnolam [lenin@Nightstar-13557.8.5.253.se.wasadata.net] has quit [Ping Timeout] |
19:21 | | Forj [~Forj@Nightstar-10147.ue.woosh.co.nz] has joined #code |
19:24 | | Otto_Flick is now known as gnolam |
19:50 | | Forj [~Forj@Nightstar-10147.ue.woosh.co.nz] has quit [Quit: Gone] |
21:40 | | Chalcedon [~Chalcedon@Nightstar-10147.ue.woosh.co.nz] has joined #code |
21:41 | | mode/#code [+o Chalcedon] by ChanServ |
21:46 | | You're now known as TheWatcher[T-2] |
21:51 | | You're now known as TheWatcher[zZzZ] |
21:51 | | Raif [~corvusign@Nightstar-5406.hsd1.ca.comcast.net] has quit [Connection reset by peer] |
21:52 | | Raif [~corvusign@Nightstar-5406.hsd1.ca.comcast.net] has joined #Code |
21:53 | | Raif [~corvusign@Nightstar-5406.hsd1.ca.comcast.net] has quit [Killed (NickServ (GHOST command used by Raif_))] |
21:53 | | Raif_ [~corvusign@Nightstar-5406.hsd1.ca.comcast.net] has joined #Code |
21:53 | | Raif_ is now known as Raif |
22:23 | | Chalcedon is now known as ChalcyAFK |
22:24 | | Lerhir is now known as AnnoDomini |
22:57 | | ChalcyAFK is now known as Chalcedon |
--- Log closed Tue Aug 07 00:00:30 2007 |