IRC logs for #opendune on OFTC at 2009-09-25
⏴ go to previous day
06:29:41 *** ChanServ sets mode: +v Yexo_
13:15:32 <Xaroth> TrueBrain: no thanks :P
13:15:35 <Xaroth> don't have one of those :P
13:25:51 <Xaroth> on another note, might have somebody come on irc at some point, he seemed interested after i posted the teaser, and he does C/C++
13:26:12 <Xaroth> he's a software engineer for a financial editor
13:45:23 <TrueBrain> currently programming a live system with Django and XULRunner :p
13:45:31 <TrueBrain> (live as in: things react immediatly on eachother)
13:46:10 <glx> XULRunner is like standalone application using firefox ?
13:46:41 <TrueBrain> via a sort of DHTML and with javascript you make an application
13:46:51 <TrueBrain> it is cross-platform, and makes many things much easier :p
14:27:41 <TrueBrain> tip: never watch Bones during eating
15:30:46 <TrueBrain> no, it doesn't depend on anything :p Every episode contains images which are not for any normal person :p
16:08:40 <TrueBrain> emu_testw(&emu_ax.x, 0x8000);
16:08:42 <TrueBrain> if (!emu_flags.zf) { f__29E8_027A_0007_5A2E(); return; }
16:08:43 <TrueBrain> emu_testb(&emu_ax.h, 0x8);
16:08:45 <TrueBrain> if (emu_flags.zf) { f__29E8_0281_0012_4D00(); return; }
16:08:48 <TrueBrain> I have no idea why one is a word test, the other a byte test
16:08:57 <TrueBrain> the latter can just be: emu_ax.x, 0x0800
16:31:43 <TrueBrain> @calc 0x388 - 0x34a
16:32:05 <TrueBrain> @calc 0x34a - 0x3c6
16:32:18 <TrueBrain> @calc 0x404 - 0x3c6
16:49:45 <Xaroth> TrueBrain: first a compiler interpetation of the if, second a compiler-optimized else variant?
16:50:21 <TrueBrain> Xaroth: they are below eachother :p
16:50:30 <TrueBrain> so that is just weird ... or my interpertation of those lines os WAY off
16:51:04 <TrueBrain> in the end, it translates to: if ((emu_ax.x & 0x8000) == 0 && (emu_ax.x & 0x0800) == 0) {
16:51:34 <TrueBrain> or reading the statement, it was most likely the inverse of that :p
16:51:37 <Xaroth> if ((emu_ax.x & 0x8000) != 0 ?
16:51:58 <TrueBrain> I just don't see a clear reason why one time using testw, and the other time testb
16:53:03 <TrueBrain> it consumes the same amount of bytecode
16:58:28 <TrueBrain> this has to make you laugh :)
16:59:47 <Xaroth> that's some wierd stuff man
17:00:40 <TrueBrain> nah .. just analyzing keystrokes
17:09:47 <TrueBrain> but it looks nice, value check after value check :p
17:11:26 <Xaroth> shouldn't a simple switch fix that much easier?
17:11:53 <TrueBrain> no, you can't do ranges in switches
17:12:10 <TrueBrain> but it will clean up if I replace the registers with variables, and use 'return' as soon as the value is known :)
17:16:49 <TrueBrain> lol, there is an array like: 01, 02, 04, 08, 10, 20, 40, 80 (in hex)
17:16:55 <TrueBrain> why not just: 1 << [num]
17:23:05 <TrueBrain> guess speed .. but at other places it did use 1<< [num]
17:23:08 <TrueBrain> which is just oddddd
17:23:26 <Xaroth> different developers, no coding standard :)
17:30:54 <TrueBrain> k, lets see if my version works :p
17:31:03 <TrueBrain> always a question .. ;)
17:38:30 <TrueBrain> STUPID RETARTED NETBEANS! :(
17:38:32 <TrueBrain> lost my files ......
17:39:18 <TrueBrain> so either I need to open up raw access to xfs filesystem and find them again, or just start over tomorrow ...
17:39:51 <TrueBrain> well, normally an IDE keeps a file opened even if it is removed on disk
17:40:02 <TrueBrain> I use that sometimes to rename stuff, or to try things with compiling
17:40:10 <TrueBrain> netbeans only sometimes has the habbit to just clsoe the file
17:40:14 <TrueBrain> even so it is modified
17:40:38 <TrueBrain> completely my mistake, of course; yet it should not be so retarded
17:41:05 <TrueBrain> well, I don't feel like recovering files today, so I just start over tomorrow or what ever
17:42:27 <TrueBrain> I can't do math in hex btw :p Keeping the struct correct with the right memory positions is hard :p
21:10:47 <Xaroth> Apparently, Android uses git as VCS
21:17:28 <TrueBrain> tsss, someone abused my personal email to get votes for 'gogovlag' ... tss ...
21:19:08 <TrueBrain> no IP traces ... hmm ..
21:20:23 <TrueBrain> some stupid lameass site
21:20:30 <TrueBrain> but I was suprised someone used my email address to vote
21:20:44 <TrueBrain> I noticed that immediatly, as my emailaddress started with a capital .. no spambot ever does that :p
21:26:58 <TrueBrain> it doesn't even say on what I voted .. which annoys me :p
21:30:10 <TrueBrain> lol, 15 pages with 20 photos
21:30:15 <TrueBrain> yet there are 500 photos to watch
21:36:28 <Xaroth> maybe page 15 isn't the last?
21:36:39 <TrueBrain> possible; it just made me laugh :)
21:37:17 <TrueBrain> hmm .. it doesn't happen that often that you can't trace something that is send to yourself with your email :p
21:44:00 <TrueBrain> time to find my bed
continue to next day ⏵