--- Log opened Mon Apr 30 00:00:03 2007 |
00:08 | <@ToxicFrog> | RAID6 is cooler. |
00:08 | <@ToxicFrog> | Being based upon a generalization of the equations that govern RAID5 to any amount of parity, then degeneralized to 2-parity. |
00:08 | | Serah [~Z@87.72.36.ns-26407] has joined #Code |
00:08 | | mode/#code [+o Serah] by ChanServ |
00:08 | <@ToxicFrog> | A RAIDn that supports any number of parity disks would be even cooler, though. |
00:25 | | You're now known as TheWatcher[T-2] |
00:28 | <@Serah> | This bøx is becoming increasingly arcane. |
00:28 | <@Serah> | Even to me. |
00:29 | | You're now known as TheWatcher[zZzZ] |
00:35 | | Serah [~Z@87.72.36.ns-26407] has quit [Quit: Don't try to read the quit message, that is impossible. Instead only realize the truth; "there is no quit message" and you will see it is not you who read the quit message but the quit message who reads you.] |
01:10 | | * Raif casts it. |
01:11 | <@Vornicus> | to what? |
01:11 | <@Raif> | void*, bitch. |
01:12 | <@Vornicus> | nuuuu |
01:12 | <@Raif> | As with all design problems, void* makes it all better. |
01:12 | <@Vornicus> | :( |
01:12 | <@Vornicus> | Is this more wisdom from the WinOffice team or something? |
01:12 | | * Raif laughs much like Big D in Legend. |
01:12 | <@Raif> | Actually, no... we don't cast much of anything to void*. |
01:13 | <@Raif> | We will however cast a BYTE* to just about any structure you can imagine. |
01:13 | <@Vornicus> | :( |
01:14 | <@Raif> | Actually, that's pretty elegant, considering how many structures there are and how horrible "foo.a = GetWord(rgb); foo.b = GetByte(rgb); ..." would be. |
01:15 | <@Raif> | Most of that shit is in either file save or file read. |
01:15 | <@Vornicus> | Well, okay, but I still think a thing like Python's struct would be nicer - and less Endian-madness-ing |
01:15 | <@Raif> | The stuff that isn't is what you must fear, grasshopper. |
01:16 | <@Raif> | I found a fun bug the other day... we have two structs, STRUN and STRUNO (O being a suffix for 'old' meaning Excel95 or earlier) |
01:16 | <@Vornicus> | Subtly different? |
01:16 | <@Raif> | We were casting a BYTE* to a STRUN*, which is a header (same size on both structs) and then an array of pairs. |
01:17 | <@Raif> | In the new the pairs are 4 bytes (two words). The old are 2 bytes. |
01:17 | <@Raif> | Guess what the bug was? :) |
01:17 | <@Raif> | Yeah, we shipped with that in 11, btw. :) |
01:17 | <@Raif> | Excel 95, as a file format, should die ANYWAY, but backcompat is king, unfortunately. |
01:19 | <@Vornicus> | It was supposed to be reading strunos? something else was reading struns as strunos? |
01:20 | <@Raif> | Bingo. The bug was on loading an Excel 95 file, and we exploded most spectacularly. |
01:20 | <@Vornicus> | ah so |
01:21 | <@Raif> | Because the struct looked something like "struct STRUNO { <member variables>; PAIR_THINGO[]; };" |
01:22 | | Thaqui [~Thaqui@Nightstar-17830.jetstream.xtra.co.nz] has joined #code |
01:22 | | mode/#code [+o Thaqui] by ChanServ |
01:22 | <@Raif> | Also, god help us, I am the Biff8 and prior expert now for the mac, it seems. |
01:23 | <@Vornicus> | Biff8? |
01:23 | <@Raif> | (Biff8 == Excel11 and prior. The format first surfaced in Excel8) |
01:24 | <@Vornicus> | I thought it was new and improved Usenet lamer |
01:24 | <@Raif> | Haha |
01:24 | <@Raif> | Naw, it's the 8th incarnation of Biff from Back to the Future. |
01:25 | <@Raif> | Anyway, I mention this just to put the fear into you... 'cause you're probably one of our users. :P |
01:26 | <@Vornicus> | I'm still on the original MS Office X. |
01:26 | <@Raif> | Being that I don't know shit (being relatively new to the team) it's kinda scary when I go to look for help on the file format and ask who I should talk to, and everybody goes "uhh... we just send all this stuff to you.") |
01:28 | <@Vornicus> | Which I think was 9. Copyright says 2001, version says "v.X", and I should probably see if there's any service packs. |
01:28 | <@ToxicFrog> | God forbid the file formats be clearly documented anywhere~ |
01:28 | <@Raif> | Office X was 10. |
01:28 | <@Vornicus> | There's also 2004. |
01:28 | <@Raif> | Frog: Yeah, google has better documentation on some of our products than we do. :P |
01:28 | <@Vornicus> | Which I think was based on 2003, which I thought was 10. |
01:28 | <@Raif> | 2004 is 11. |
01:29 | <@Raif> | 2008 is 12. |
01:29 | <@ToxicFrog> | (as for struct() - man, I don't even want to think about implementing that in C) |
01:29 | <@Vornicus> | Ah, ok, so Office for Mac is on a higher number than, yeah |
01:29 | <@Vornicus> | okay. |
01:29 | <@Raif> | 2003 is the windows version of Mac OFfice 2004. |
01:29 | <@Vornicus> | TF: it's a ... function, you send it pointers to the right things. |
01:29 | <@Raif> | We add a year to our release dates, because the usual cycle is off by 6-8 months. |
01:29 | <@ToxicFrog> | Vornicus: exactly. |
01:30 | | Janus [~Cerulean@Nightstar-10302.columbus.res.rr.com] has quit [Quit: Jouets de Dieu, jouets de jouets, les jouets de me, na?tre Clair enfant voire.] |
01:31 | <@Vornicus> | Raif: I m... wait, Winoffice 2007 is Office 12. Why did I think it was 11? |
01:31 | <@Raif> | 'cause you're crazy. |
01:32 | <@Raif> | But the really fun thing is that WinOffice is jumping Office13 entirely and the next version will be Office14. |
01:32 | <@Raif> | That shit irritates me. |
01:32 | <@Vornicus> | Why? |
01:32 | | Thaqui [~Thaqui@Nightstar-17830.jetstream.xtra.co.nz] has quit [Ping Timeout] |
01:32 | <@Raif> | 13. |
01:32 | | * Vornicus throws things at them for being tards |
01:32 | <@Raif> | Triskadecaphobia, I believe the term is. |
01:35 | | Thaqui [~Thaqui@Nightstar-17830.jetstream.xtra.co.nz] has joined #code |
01:35 | | mode/#code [+o Thaqui] by ChanServ |
02:03 | | ReivClass is now known as Reiver |
02:17 | | gnolam [lenin@Nightstar-13557.8.5.253.se.wasadata.net] has quit [Quit: Z?] |
03:14 | | Chalcedon is now known as ChalcyAFK |
03:20 | | ChalcyAFK is now known as Chalcedon |
05:55 | | MahalGone is now known as mahal |
05:55 | | mahal is now known as Mahal |
06:16 | <@Mahal> | Help |
06:16 | <@Mahal> | HTML for superscript please |
06:17 | <@Vornicus> | sup |
06:17 | <@Vornicus> | subscript is sub. |
06:18 | <@Mahal> | danke |
06:23 | | Forjadon [~Forjadon@Nightstar-2310.ue.woosh.co.nz] has joined #code |
06:23 | | mode/#code [+o Forjadon] by ChanServ |
06:33 | | Serah [~Z@87.72.36.ns-26407] has joined #Code |
06:33 | | mode/#code [+o Serah] by ChanServ |
07:14 | | gnolam [lenin@Nightstar-13557.8.5.253.se.wasadata.net] has joined #Code |
07:14 | | mode/#code [+o gnolam] by ChanServ |
07:49 | | Thaqui [~Thaqui@Nightstar-17830.jetstream.xtra.co.nz] has quit [Ping Timeout] |
07:51 | | Thaqui [~Thaqui@Nightstar-17830.jetstream.xtra.co.nz] has joined #code |
07:51 | | mode/#code [+o Thaqui] by ChanServ |
08:13 | | Thaqui [~Thaqui@Nightstar-17830.jetstream.xtra.co.nz] has left #code [Leaving] |
08:17 | | Chalcedon [~Chalcedon@Nightstar-2310.ue.woosh.co.nz] has quit [Quit: Gone] |
08:25 | | You're now known as TheWatcher |
08:38 | | Thaqui [~Thaqui@Nightstar-17830.jetstream.xtra.co.nz] has joined #code |
08:38 | | mode/#code [+o Thaqui] by ChanServ |
09:06 | <@McMartin> | Hmm. New version of I7 is out. |
09:06 | <@McMartin> | I think I'm at the point where I'm not going to upgrade until WSIF is done. |
09:20 | <@McMartin> | "This build once again fixes all bugs reported up to 22 April, but in fact few were found in 4S08; and it removes a hole in the type-checking system, to do with phrases to make decisions, but this will have affected few users. The main aim is an across-the-board reform of how actions are handled and implemented in Inform." |
09:23 | < Reiver> | ...Yeah, possibly best to leave it alone. |
10:30 | | Vornicus is now known as Vornicus-Latens |
10:36 | | Thaqui [~Thaqui@Nightstar-17830.jetstream.xtra.co.nz] has quit [Quit: again with the restarts] |
10:55 | | Forjadon [~Forjadon@Nightstar-2310.ue.woosh.co.nz] has quit [Quit: Leaving] |
10:55 | | Mahal is now known as MahalBed |
11:52 | | MahalBed is now known as mahal |
11:56 | | mahal is now known as MahalBedd |
14:26 | | crypto [~ichrispa@Nightstar-10496.dip.t-dialin.net] has joined #code |
14:45 | | crypto [~ichrispa@Nightstar-10496.dip.t-dialin.net] has quit [Quit: using sirc version 2.211+KSIRC/1.3.12] |
14:54 | | jerithcell [~jerith@Nightstar-24602.mtn.co.za] has joined #code |
14:55 | < jerithcell> | erlang irc bot - who's in? |
15:02 | | jerithcell [~jerith@Nightstar-24602.mtn.co.za] has quit [Client exited] |
15:36 | | You're now known as TheWatcher[afk] |
15:38 | | GeekSoldier [~Rob@Nightstar-3050.pools.arcor-ip.net] has joined #code |
15:52 | | You're now known as TheWatcher |
15:52 | | KarmaBot [~karma.bot@Nightstar-28874.neoplus.adsl.tpnet.pl] has quit [Connection reset by peer] |
15:54 | | KarmaBot [~karma.bot@Nightstar-28874.neoplus.adsl.tpnet.pl] has joined #Code |
15:54 | | GeekSoldier_ [~Rob@Nightstar-3050.pools.arcor-ip.net] has joined #code |
15:55 | | GeekSoldier [~Rob@Nightstar-3050.pools.arcor-ip.net] has quit [Ping Timeout] |
15:55 | | GeekSoldier_ is now known as GeekSoldier |
16:51 | | Reiver is now known as ReivZzz |
17:09 | | You're now known as TheWatcher[afk] |
17:21 | | ReivZzz is now known as ReivSLEP |
17:55 | | GeekSoldier_ [~Rob@Nightstar-4578.pools.arcor-ip.net] has joined #code |
17:56 | | GeekSoldier [~Rob@Nightstar-3050.pools.arcor-ip.net] has quit [Ping Timeout] |
18:26 | | You're now known as TheWatcher |
19:11 | | MahalBedd is now known as Mahal |
19:13 | | GeekSoldier_ is now known as GeekSoldier |
19:31 | | AnnoDomini [~farkoff@Nightstar-28874.neoplus.adsl.tpnet.pl] has quit [Ping Timeout] |
19:31 | | KBot [~karma.bot@Nightstar-29074.neoplus.adsl.tpnet.pl] has joined #Code |
19:32 | | KarmaBot [~karma.bot@Nightstar-28874.neoplus.adsl.tpnet.pl] has quit [Ping Timeout] |
19:32 | | KBot is now known as KarmaBot |
19:37 | | AnnoDomini [~farkoff@Nightstar-29074.neoplus.adsl.tpnet.pl] has joined #Code |
19:37 | | mode/#code [+o AnnoDomini] by ChanServ |
19:52 | | Mahal is now known as MahalGone |
19:53 | | Chalcedon [~Chalcedon@Nightstar-2310.ue.woosh.co.nz] has joined #code |
19:53 | | mode/#code [+o Chalcedon] by ChanServ |
20:11 | | Chalcedon is now known as ChalcyAFK |
20:23 | | GeekSoldier [~Rob@Nightstar-4578.pools.arcor-ip.net] has quit [Quit: Did anyone see my lost carrier?] |
22:24 | | You're now known as TheWatcher[T-2] |
22:28 | | You're now known as TheWatcher[zZzZ] |
22:49 | | Janus [~Cerulean@Nightstar-10302.columbus.res.rr.com] has joined #Code |
23:55 | | ChalcyAFK is now known as Chalcedon |
--- Log closed Tue May 01 00:00:03 2007 |