**** BEGIN LOGGING AT Wed Apr 30 03:00:02 2008 Apr 30 05:47:36 michaelnovakjr: i just had an interesting idea Apr 30 05:48:02 michaelnovakjr: what if i design the UI like Google Desktop? where the server hosts an internal HTTP server and lets you config it through a web browser? Apr 30 05:48:14 that way, the only platform-specific UI component would be the tray icon itself. Apr 30 05:48:39 jasta, thats a good idea Apr 30 05:50:47 yeah, it would simplify a lot Apr 30 05:51:05 and i don't think it really loses anything by that design Apr 30 05:51:45 The server already, as part of its basic operation, includes a robust HTTP server (provided by libsoup) Apr 30 05:52:38 so all i'd need to do is have libsoup bind two separate instances, one listening only on the local interface, and the other on all other interfaces Apr 30 05:59:27 is this your audio syncing server that user will install on their machine? Apr 30 05:59:37 yes Apr 30 06:00:35 you're writing it in Python ? Apr 30 06:00:44 no, it's all in C. Apr 30 06:00:59 why would you assume python? Apr 30 06:01:11 oh ok Apr 30 06:01:22 not sure, seems cross-platform friendly wrt C Apr 30 06:01:45 once i worked on a VPN client and the configuration was done through a web browser Apr 30 06:01:55 C is quite a bit more portable than Python, really. Apr 30 06:02:03 we had a small web server in C that just had a tray icon that would launch web browser on localhost Apr 30 06:02:14 it reduced a lot of x-platform GUI code Apr 30 06:04:03 my only concern is that this type of coding might be end up really lame in C Apr 30 06:04:36 jasta, oh it will be Apr 30 06:05:06 though at least i have a high-level API for the HTTP server. Apr 30 06:05:35 i don't see why you would torture yourself by using C for something relatively simple Apr 30 06:06:07 java would work well Apr 30 06:06:12 well because embedding python would substantially increase the build and distribution complexity. Apr 30 06:06:13 can use simpl Apr 30 06:06:14 scan fs, read tags, send out wbxml, simple gui, etc. Apr 30 06:06:16 same with java. Apr 30 06:06:25 just assume people have java Apr 30 06:06:29 official bittorrent client is in python Apr 30 06:06:42 even assuming they have it you still have to figure out where it is and how to utilize it. Apr 30 06:06:42 yeah i think python distriubtion is light Apr 30 06:08:26 i'd prefer to torture myself with C than torture myself with the distribution of this multi-language, multi-platform tool :) Apr 30 06:08:53 even writing it in Python, you'd still have to do a bunch of work to write separate UIs for each platform. Apr 30 06:09:04 ? Apr 30 06:09:13 and using Java, you'd either require Java 6 or a bunch of extra lame crud. Apr 30 06:09:29 pythons UI toolkit is cross platform i tihnk Apr 30 06:10:10 i don't think python _has_ a UI toolkit, only ports of native ones. Apr 30 06:10:23 http://wiki.python.org/moin/GuiProgramming Apr 30 06:10:43 java 1.4.2 is all you need Apr 30 06:10:45 most of these look like shit? Apr 30 06:10:51 PyQt Apr 30 06:11:12 or some Wx one Apr 30 06:11:27 wx uses native widgets i thought? Apr 30 06:11:29 None of these would be a good option. Apr 30 06:11:35 SWT definitely does (for java) Apr 30 06:11:41 wx sucks to program against, too. Apr 30 06:11:50 kw/e use c Apr 30 06:11:58 im sure it will be much simpler Apr 30 06:12:21 nah, you gotta do it in win32 assembly then Apr 30 06:12:38 oh true Apr 30 06:12:42 cant make it to easy Apr 30 06:13:13 f00f-: i thought prior to Java 6 you could not create a system tray icon with the standard runtime? Apr 30 06:13:44 well SWT includes native bindings so it has support for creating tray icon Apr 30 06:14:01 if you create the native bindings, of course. Apr 30 06:14:05 but if you dont use a native binding like SWT, then yeah, probably Apr 30 06:14:18 SWT is already there Apr 30 06:14:20 org.eclipse.swt.* Apr 30 06:14:43 you just need to bundle the *.so and *.dll with your jar files Apr 30 06:14:50 that's my point: none of these solutions are any more cross-platform. the simplest solution looks like just a web server. Apr 30 06:14:57 and it'll pick the appopriate one at runtime based on host OS/platform Apr 30 06:15:03 jasta, it is Apr 30 06:15:15 i thought you just wanted a gui for the toolbar icon Apr 30 06:15:22 written in C, with #ifdef'd bits for the small platform-specific UI code. Apr 30 06:15:48 i know that would port at least well to Windows. Apr 30 06:16:10 duey: yeah, but for that i'm fine implementing it natively for at least Linux, OS X, and Windows. Apr 30 06:16:19 since it would be really very little code. Apr 30 06:16:21 ohok Apr 30 06:16:30 the rest of the project is written in glib, so has no problem porting to those platforms without modification Apr 30 06:18:29 i actually wonder how google desktop implements this Apr 30 06:18:32 what type of templating they use Apr 30 06:20:59 the string literals are compiled right into libgdl.so? wow. Apr 30 06:21:07 did not see that coming ;) Apr 30 06:21:18 is there channel logs for this channel stored anywhere Apr 30 06:21:31 gambler: have you tried googling? otherwise, i doubt it. Apr 30 06:23:05 http://code.google.com/p/google-ctemplate/ Apr 30 06:23:06 interesting. Apr 30 06:30:40 this might just work. will need to provide some C wrappers though Apr 30 06:30:58 why not just use c++... Apr 30 06:31:09 because I hate C++ Apr 30 06:31:14 ..... Apr 30 06:31:16 and there's already 6000 lines of C written in my server. Apr 30 06:34:13 this project may be a bit unnecessary really Apr 30 06:34:22 they seem to solve a lot of problems with it that are not that difficult to solve anyway :) Apr 30 06:34:31 * jasta checks to see that their parser is at least efficient Apr 30 06:34:59 bunch of goofy portability code in here that glib makes redundant Apr 30 06:44:41 jasta, i doubt it matters if its not efficient Apr 30 06:44:46 not like your getting hit millions of times Apr 30 06:45:43 if i'm gonna futz with reusing their code i want to at least know that it's better than something i could whip up in a day ;) Apr 30 06:45:57 it does seem to use an efficient state machine parser. i suppose i will trust it. Apr 30 06:46:50 bbl Apr 30 06:46:55 sleep :) Apr 30 06:54:14 morning Apr 30 07:53:20 muthu: how are you doing? Apr 30 07:53:23 long time no see Apr 30 07:53:29 acsia: cool Apr 30 07:53:31 am doing good Apr 30 07:53:36 where were you? Apr 30 07:53:51 i'm on this channel everyday Apr 30 07:54:01 well, while working on android, I did put my real job on the side so I had to catch up a lot Apr 30 07:54:17 and decide to put all android on the side Apr 30 07:54:52 how you feel about your app? Apr 30 07:57:36 not sure anymore... Apr 30 07:57:38 :) Apr 30 07:57:52 I met chomchom btw Apr 30 07:58:18 in london, it was nice Apr 30 07:58:33 I need to get back to my app Apr 30 07:58:36 i ll do it this week end Apr 30 07:59:45 dday approaches Apr 30 08:05:21 DDAY!! Apr 30 11:08:15 May 1 - is it an holiday everywhere? Apr 30 11:08:37 muthu: i dont think everywhere Apr 30 11:08:41 but here it is Apr 30 11:08:46 see wikipedia Apr 30 11:08:47 and here it is Apr 30 11:08:51 it's written in it Apr 30 11:08:53 i'm lazy, tell me Apr 30 11:08:59 i don't remember Apr 30 11:09:03 haha Apr 30 11:09:06 lol Apr 30 11:09:17 not in the US Apr 30 11:09:20 in most of europe it is Apr 30 11:09:22 muthu: how's this day called in India? Apr 30 11:09:27 but i know it's written i checkd less than a month ago Apr 30 11:09:45 ligi: May 1 is workers day Apr 30 11:10:02 here it is "day of liberty Apr 30 11:10:06 labour Apr 30 11:10:09 i mean Apr 30 11:10:10 ^^ Apr 30 11:10:11 May 1 - Labour Day Apr 30 11:10:18 right Apr 30 11:10:33 we use different names in different states Apr 30 11:10:45 davidw: not in US? Apr 30 11:10:49 nope Apr 30 11:11:00 hmmm Apr 30 11:11:13 thought there was a labor day or something in US Apr 30 11:11:21 i know there's a long weekend in May Apr 30 11:12:19 May 5 is an holiday ? ;) Apr 30 11:13:50 ^^ Apr 30 11:14:05 depends on some judges Apr 30 11:14:07 ^^ Apr 30 11:14:31 haha Apr 30 11:14:39 the judges will be on vacation for sure Apr 30 12:23:12 hmm, ya know Apr 30 12:23:31 jasta: mornin Apr 30 12:23:44 looking at my server log here, it does sort of look like there were 4 attempts to use the app but the first 2 were unsuccessful Apr 30 12:23:56 oh oh Apr 30 12:24:04 the last 2 is ok right? Apr 30 12:24:10 there are no errors reported, they just started then disappeared. like the emulator was closed or something. Apr 30 12:24:22 and the latter 2, which happened a day or two later, worked. Apr 30 12:24:34 ok so only 2 judges tested Apr 30 12:24:54 i'm not sure how to interpret this knowing that there are supposedly 4 judges, or 5 if you might win. Apr 30 12:25:11 since this kind of indicates 2 had unsuccessful tests and therefore i didn't make it into the top 100. Apr 30 12:25:32 in other words, it's looking like my app never got retested, when it doesn't look to be my fault that the first two tests failed. Apr 30 12:25:39 hmm Apr 30 12:25:48 they may hit again Apr 30 12:25:58 yeaahhh, but what if they don't? Apr 30 12:26:11 if they don't.. your app is in trouble Apr 30 12:26:12 duey's reported 5 unique hits to his server already, since the judging started. Apr 30 12:26:33 i'd be mighty pissed if they didn't come back and retest considering my system reports no errors. Apr 30 12:26:46 i know Apr 30 12:26:50 and it would, too. error reporting is part of the protocol. Apr 30 12:27:14 the only way the server could not report an error in the session is if the remote peer simply disappeared, or the app crashed which has certainly happened during testing Apr 30 12:27:21 like, SIGSEGV or SIGILL. not my fault. Apr 30 12:27:21 i wonder what morrill has to say about this? Apr 30 12:27:29 that's what i was wondering about. Apr 30 12:27:35 did you im him? Apr 30 12:27:41 not yet, but i will today Apr 30 12:27:46 cool do that Apr 30 12:28:14 jasta: everything will work out fine .. Apr 30 12:28:14 i would be very pissed off if i lost because of emulator bugs or whatever. Apr 30 12:28:21 just give them more time Apr 30 12:28:33 easy Apr 30 12:28:42 i could never explain those first two attempts until it occurred to me just now Apr 30 12:28:54 that there are 4 total, 2 of which went nowhere. Apr 30 12:29:18 if the judges results are skewed.. the apps will be rejudged Apr 30 12:30:51 we should have done a judging app ^^ Apr 30 12:31:00 haha Apr 30 12:31:13 an app to judge the judges! Apr 30 12:31:20 muthu: you say a lot of things you just don't know, muthu. Apr 30 12:31:37 jasta: about the skewing part, i know Apr 30 12:31:42 it was clarified before Apr 30 12:32:00 by morrildl? Apr 30 12:32:04 yes Apr 30 12:32:11 its in the forums, let me find the link Apr 30 12:32:13 you mean specifically that if the app fails? Apr 30 12:32:24 or if there is a wide disparity between all the judges scores? Apr 30 12:32:36 disparity between scores Apr 30 12:32:48 and the disparity can happen if the applications fails too Apr 30 12:33:12 makes sense Apr 30 12:33:13 ^^ Apr 30 12:33:19 that does seem sensible. Apr 30 12:33:23 10.0 vs 0.0 Apr 30 12:33:28 see if you can find the link, i have to go back to bed for now Apr 30 12:33:30 big disparity Apr 30 12:33:37 hang on Apr 30 12:33:59 it was on google groups as far as i remember Apr 30 12:34:28 jasta: for the waiting time: http://ligi-tec.blogspot.com/2008/04/quadrokopter-sunday-video.html Apr 30 12:48:23 I wish RemoteCallbackList had a getCount method or something Apr 30 12:48:33 jasta: http://groups.google.com/group/android-challenge/browse_thread/thread/9a91f426422fed32/9b31c4cae6f2507a?lnk=st&q=#9b31c4cae6f2507a Apr 30 12:48:36 so that I don't have to begin a broadcast to know how many callbacks are still registered Apr 30 12:48:42 http://groups.google.com/group/android-challenge/browse_thread/thread/9a91f426422fed32/9b31c4cae6f2507a?lnk=st&q=#9b31c4cae6f2507a Apr 30 12:48:57 unless there's another way to know how many activities are still bound Apr 30 12:49:16 ok big chunk coming in Apr 30 12:49:20 This is correct. We're providing rather detailed judging guidelinesintended to help judges calibrate their scores. We also plan topost-process the results looking for outliers (such as cases where one judgegave a score that varies significantly from the others') to help make surethe results are fair.Panel size will be at least 3, depending on how many judges we have;currently the panel size is expected to be 4. Apr 30 12:51:40 additionally, it'd be nice to know if a notification is still in the status bar :\ Apr 30 14:49:47 jasta: are you there? Apr 30 14:50:10 pretty early 'there' Apr 30 14:51:05 davidw: yeah, but jasta is in a bit of a trouble Apr 30 14:51:14 worried about his app hits Apr 30 14:52:46 why/ Apr 30 14:52:59 he says he got only 2 valid hits Apr 30 14:53:17 the other 2 did not really use his app Apr 30 14:53:37 so when are they supposed to announce that anyway? Apr 30 14:53:46 may 5 Apr 30 14:53:51 oh right Apr 30 14:54:02 * davidw hopes the baby comes first... that'll give me something to do Apr 30 14:54:10 davidw: when's the date? Apr 30 14:54:20 may 3rd, officially Apr 30 14:54:26 cool, is this the first? Apr 30 14:54:29 yeah Apr 30 14:54:45 it should be exciting then Apr 30 14:54:53 the first one is always special Apr 30 14:55:09 lot of joy assured Apr 30 14:55:34 am sure you'll not really worry about the results Apr 30 15:08:22 Good morning everyone. Apr 30 15:08:38 Dougie187: good evening Apr 30 15:08:48 Hows it going in india today/ Apr 30 15:08:50 ? Apr 30 15:11:31 going great Apr 30 15:11:36 nice Apr 30 15:11:42 tomorrow is an holiday, so everyone happy mood Apr 30 15:12:03 heh Apr 30 15:12:04 Dougie187: May 1 holiday for you? Apr 30 15:12:53 nope Apr 30 15:13:11 may 5th,but we dont get anything off Apr 30 15:13:29 its mainly just an excuse to get drunk Apr 30 15:13:37 haha Apr 30 15:38:08 muthu: i went to bed, sorry Apr 30 15:38:12 that does seem promising Apr 30 15:40:12 jasta: yeah, that's the link Apr 30 15:40:28 lol, did you know Apple is having a sort of developer challenge for the iPhone? the prizes are Apple products... Apr 30 15:40:38 lol Apr 30 15:40:39 lane Apr 30 15:40:41 lame Apr 30 15:40:51 * davidw wouldn't mind winning an Android phone;-) Apr 30 15:40:58 they advertised like $100m Apr 30 15:41:06 I actually suggested that to Dan, that they give runners up coupons for phones or something Apr 30 15:41:10 lol, and their acronyms are both ADC Apr 30 15:41:30 muthu: how is that even possible? they'd need to give away hundreds of thousands of prizes Apr 30 15:41:49 iFund or something like that Apr 30 15:41:57 a mac book air Apr 30 15:41:59 maybe 5 of those. Apr 30 15:42:00 lol Apr 30 15:42:05 theres your 100 mill already Apr 30 15:42:14 haha Apr 30 15:42:25 it's a KP fund, for 'iphone stuff' Apr 30 15:42:31 and it's "up to 100mil" Apr 30 15:42:38 so that could be 100$ Apr 30 15:42:38 right Apr 30 15:43:29 don't want to get into apple closed circuit Apr 30 15:44:01 * davidw worked for Linuxcare, once upon a time, which was a KP company Apr 30 15:44:05 no bueno:-/ Apr 30 15:44:11 what is KP? Apr 30 15:44:55 Kleiner Perkins Apr 30 15:45:01 a big venture capital group in the bay area Apr 30 15:45:46 http://www.kpcb.com/initiatives/ifund/index.html Apr 30 15:49:28 bingo Apr 30 15:53:28 muthu: not really in the spirit of prize money at all. this other thing i saw is referring to prizes. Apr 30 15:53:44 this is an industry building investment fund. Apr 30 16:06:38 im excited to see who will win the ADC Apr 30 16:06:41 (not the apple one) Apr 30 16:08:45 me too Apr 30 16:09:45 heh i bet you are. Apr 30 16:10:37 Dougie187: we are all excited and waiting for the results Apr 30 16:10:56 well it doesnt matter as much to me as it does to all of you. Apr 30 16:11:02 but im excited to see the apps that come out of it Apr 30 16:13:19 i just really figured they'd be done by now Apr 30 16:13:35 and would just have some time to sit around thinking about the results before they publish them Apr 30 16:14:16 i really am more anxious to just know that my app performed as it was supposed to for the judges Apr 30 16:14:24 then i could stop stressing Apr 30 16:14:53 there's no way of we knowing that Apr 30 16:15:06 i will Apr 30 16:15:26 the server will know when it is working right Apr 30 16:16:35 jasta: then you know by now Apr 30 16:17:09 no, i dont, because as i said there were 2 incomplete attempts :) Apr 30 16:18:02 right Apr 30 16:18:09 yeah, that kind of stressed me about hte server based app I did too Apr 30 16:18:18 it's not just "turn it in and cross your fingers" Apr 30 16:18:29 it's "turn it in and hope there's nothing wrong with the server for the next month" Apr 30 16:20:10 exactly Apr 30 16:20:21 i just want to know that all the judges got to see the app the way it was intended Apr 30 16:20:24 and it looks like 2 did not Apr 30 16:20:35 but if morrildl is right, the judges will go back and retry i guess Apr 30 16:20:40 just seems like theyre running out of time Apr 30 16:21:45 so you never went bowling with goebbels either? Apr 30 16:25:47 ? Apr 30 16:26:15 so you never went bowling with goebbels either? Apr 30 16:26:26 hey dan Apr 30 16:27:03 morrildl: is the plan still to detect outliers and retest them? say, if some of the judges got errors or whatever but others did not? Apr 30 16:27:10 so you never went bowling with goebbels either? Apr 30 16:27:42 any andriod jobs avail for immediate grabs? Apr 30 16:28:04 convivial: i'm sure there are a few. have you searched? Apr 30 16:28:08 convivial, there are people out there who are interested, yeah Apr 30 16:28:19 coolies, i really needies ojne. Apr 30 16:28:26 * davidw got a nice gig by being active early on, so it worked out for me to some degree in any case Apr 30 16:28:32 convivial: well, do you know Android at all? Apr 30 16:28:41 jasta: still learning :( Apr 30 16:28:49 so you never went bowling with goebbels either? Apr 30 16:28:50 but I am from the J2ME world! Apr 30 16:28:56 so you never went bowling with goebbels either? Apr 30 16:28:56 morick: shut up, please. Apr 30 16:29:02 so you never went bowling with goebbels either? Apr 30 16:29:13 so, I am experience with mobile java but not android api per se Apr 30 16:29:23 so you never went bowling with goebbels either? Apr 30 16:29:30 convivial: android's API is a pretty significant piece of the puzzle. Apr 30 16:29:34 * davidw calls in an air strike on morick Apr 30 16:29:37 I am willing to work at 20-25 per hour Apr 30 16:29:39 so you never went bowling with goebbels either? Apr 30 16:29:52 has to be someone willing to jump at that Apr 30 16:30:00 convivial: well, go searching then. perhpas you will be able to convince some poor guy that you're qualified. Apr 30 16:30:02 convivial, look Apr 30 16:30:11 so you never went bowling with goebbels either? Apr 30 16:30:27 jasta: what do you mean by that? Apr 30 16:30:30 do we have any ops in this channel? i think it's time to show morick the door. Apr 30 16:30:35 why wouldn't I be qualified? Apr 30 16:30:45 so you never went bowling with goebbels either? Apr 30 16:30:49 I'm smart, been programming for 15 years in general Apr 30 16:30:58 done mobile programming before Apr 30 16:31:04 convivial: right, but i doubt you're qualified. Apr 30 16:31:08 call it a hunch. Apr 30 16:31:20 jasta: i don't understand what you mean by that Apr 30 16:31:25 or that last time i saw you speak in here you were trolling like a maddened fool. Apr 30 16:31:28 jasta: are yu saying i am stupid? Apr 30 16:31:32 call it that instead. Apr 30 16:31:37 so you never went bowling with goebbels either? Apr 30 16:32:46 bbl, work Apr 30 16:33:04 so you never went bowling with goebbels either? Apr 30 16:35:47 would an XML parser + dtd code generator be a good library for android? Apr 30 16:35:49 * donomo claps Apr 30 16:36:14 I noticed that asdk uses javax.sax i don't like that Apr 30 16:36:19 in j2me i used kxml Apr 30 16:36:29 convivial: aren't DTDs dead? Apr 30 16:36:45 donomo: sorry, wsdl :) Apr 30 16:36:46 ehehehe Apr 30 16:36:55 wsdl code generator Apr 30 16:37:24 jasta: the plan is to detect outliers and address them, which may or may not involve a retest Apr 30 16:37:26 I would also write a tool that can generate code from wsdl... sorry, don't inow why i say DTD Apr 30 16:37:38 oh, he left Apr 30 16:37:40 hehehe Apr 30 16:38:03 what do you guys think about my idea? Apr 30 16:38:44 or is the community happy with android XML parsing capabilities? Apr 30 16:40:51 the only response i got was to point out a typo. does that mean it's a good idea? Apr 30 16:45:52 two points for morrildl Apr 30 16:46:39 i must be on ignore Apr 30 16:46:53 i'll go to undernet android channel Apr 30 16:47:12 that guy bothers me. Apr 30 16:47:29 jasta did you read what morrildl said? Apr 30 16:47:34 yeah Apr 30 16:47:36 k Apr 30 16:47:47 morrildl: you guys on schedule still? seems like it's really getting down to the wire... Apr 30 16:48:07 jasta: so far, so good Apr 30 16:48:21 We have done the reduction down to the "first cut" 100 Apr 30 16:48:38 and those 100 are now being reviewed by the second-pass judges to narrow down to the final 50 Apr 30 16:48:43 seriously? uhhhhhh. Apr 30 16:48:51 i have had 2 judges review my app Apr 30 16:49:22 how can that be possible? Apr 30 16:49:50 well, *I* have looked at it twice personally, and I know Romain did at least once Apr 30 16:49:58 i didn't count those attempts. Apr 30 16:50:07 i counted only attempts after i knew you released the laptops to the judges. Apr 30 16:50:18 ...and there are definitely 2. Apr 30 16:50:20 JUST 2. Apr 30 16:50:57 there have been 4 attempts: 2 of which, the first two, just disappeared as though they closed the app and dismissed it while it was syncing. Apr 30 16:51:02 the other 2 continued on and used it. Apr 30 16:51:13 are you saying you didn't detect *that* as an outliar!? Apr 30 16:51:35 well you might be in the top 100 Apr 30 16:51:41 maybe it only required two attempts Apr 30 16:51:45 how could that be if 2 of the judges never even used it? Apr 30 16:52:00 maybe the other two reviews were so good it just got put in Apr 30 16:52:21 jasta, maybe they each get to pick one that goes directly to the finals Apr 30 16:52:21 i really doubt that even 2 10 point scores would outweight 2 0 point scores. Apr 30 16:52:53 jasta, maybe the judges are all deaf and don't care about music at all - they just use phones for text messaging Apr 30 16:53:08 i am really nervous about this. i fully expected to see 4 successful attempts at the very least before being written off either as the top 100 or not. Apr 30 16:53:18 jasta: I checked, and you have 4 scores, none indicating broken/incomplete Apr 30 16:53:20 jasta, have a nice glass of red wine Apr 30 16:53:39 morrildl: and none outliars? what the *HELL* Apr 30 16:54:16 jasta: they all agree with each other pretty well Apr 30 16:54:27 that is so bizarre. Apr 30 16:54:32 ouch... I'd rather think of this thing as abstract, rather than that someone could tell me in a minute or two what's up Apr 30 16:54:34 there is no one score that says "hey I blew this guy off" Apr 30 16:54:35 i swear to you there are only 2 successful usages. Apr 30 16:55:13 oh man, i am freaking out Apr 30 16:55:16 time to go to work anyway Apr 30 16:55:18 aggggh Apr 30 16:55:35 take it easy man:-) Apr 30 16:56:53 lol Apr 30 16:57:03 i would think he would be happy Apr 30 16:58:06 yeah... Apr 30 17:01:22 hi pandora-- Apr 30 17:03:55 hey hey Apr 30 17:15:30 hah... these guys, to send me a pdf, need my mailing address...:-) Apr 30 17:18:49 Dougie187: why? this sounds like bad news! Apr 30 17:19:06 How does it sound like bad news? Apr 30 17:19:13 you have 2 more things then you thought. Apr 30 17:19:16 and they could be great Apr 30 17:19:32 no, because I know that the two judges who originally connected did not complete the sync. Apr 30 17:19:46 so, does that mean they cant play with the app though? Apr 30 17:19:51 So they were reviewing an app they didn't know to be incomplete :\ Apr 30 17:19:57 It would be missing data. Apr 30 17:20:06 like album artwork and whatever. and i didn't build the UI to handle that very gracefully Apr 30 17:20:06 i think they kinda went into it knowing it would be incomplete. Apr 30 17:20:15 also, if they started playing with the app while it was syncing it would be slow as hell Apr 30 17:20:26 phase two was to make the incompleteness of each app better. Apr 30 17:20:47 what if it stopped syncing and then they played with it. Apr 30 17:20:50 like the sync failed. Apr 30 17:20:51 but that said, morrildl says they're already in the final 100. i haven't seen any connects, so it's likely i'm not in that group :( Apr 30 17:20:55 what would be the downside? Apr 30 17:21:08 I wouldnt worry yet. Apr 30 17:21:12 dont be a debbie downer. Apr 30 17:21:22 Dougie187: like i said, it oculd be missing data. like albums wouldn't have track data, or might be missing cover artwork Apr 30 17:21:28 so you'd click an album and it would do nothing Apr 30 17:21:45 jasta: are the judges into final 100? Apr 30 17:21:51 it was supposed to be atomic and the UI presents itself like that. it isn't actually, though, because content providers dont support that currently Apr 30 17:21:58 muthu: thats why dan just said Apr 30 17:21:58 jasta, he basically told you it got good reviews Apr 30 17:21:59 Does it make it so they cant see the idea and functionality of your app? Apr 30 17:22:06 davidw: he did? Apr 30 17:22:08 yes Apr 30 17:22:17 there is no one score that says "hey I blew this guy off" Apr 30 17:22:18 why do i misinterpret everything dan says? Apr 30 17:22:46 because your paranoid Apr 30 17:22:48 because you are way too wound up? Apr 30 17:22:51 but how is that necessarily good? they don't need to blow me off to give me a bad score. Apr 30 17:22:56 jasta: you are paranoid!! Apr 30 17:22:57 lol Apr 30 17:22:59 haha Apr 30 17:23:03 you are thinking they are the worst scores. Apr 30 17:23:05 just relax Apr 30 17:23:07 looks like we have a verdict;-) Apr 30 17:23:16 you wont know if you are not in the group until they let you know. Apr 30 17:23:23 until then. just think you have a chance. Apr 30 17:23:27 dont worry about your numbers. or anything Apr 30 17:23:33 Dougie187: well except that my server should liven up once more. Apr 30 17:23:35 a music player is something that must win Apr 30 17:23:36 you have 4 scores. all which agree with each other. Apr 30 17:23:52 why? maybe they dont retest apps for the reduction from 100 to 50 Apr 30 17:23:58 maybe its just evaluating the reviews again Apr 30 17:24:02 more throughly Apr 30 17:24:07 isn't this all just speculation? Apr 30 17:24:12 yes Apr 30 17:24:16 thats why im telling him to calm down Apr 30 17:24:19 going to drive yourselves nuts! Apr 30 17:24:35 * davidw wouldn't bet against google also looking to hire people who do really cool stuff Apr 30 17:24:43 no one will know until they announce it, so sit back grab a beer and take a really long nap Apr 30 17:24:44 davidw: spot on Apr 30 17:24:50 exactaly . Apr 30 17:24:56 thats what im trying to tell him Apr 30 17:24:56 probably nap until monday :) Apr 30 17:24:57 * jasta rip shis hair out and runs around Apr 30 17:25:00 dont worry about everything. Apr 30 17:25:01 there would be a lot of hires from ADC submissions Apr 30 17:25:01 that might be another consolation prize, for some people Apr 30 17:25:02 lol Apr 30 17:25:17 muthu, well, who knows with google, but I could see it Apr 30 17:25:27 maybe thats what the 250k is Apr 30 17:25:31 your starting salary. Apr 30 17:25:31 lol Apr 30 17:25:35 except that your app doesn't show coding ability..... you could be one complete hack mess and still get something to look good Apr 30 17:25:36 lol Apr 30 17:25:52 but dont they get to look through the code? Apr 30 17:25:56 no Apr 30 17:25:56 nope Apr 30 17:25:59 also, they might be looking for just an idea person Apr 30 17:26:04 yeah right Apr 30 17:26:05 i could see that Apr 30 17:26:08 they need not.. why would anyone look at code? Apr 30 17:26:08 no one wants 'idea people';-) Apr 30 17:26:14 haha Apr 30 17:26:17 lol Apr 30 17:26:18 i have an idea Apr 30 17:26:34 michaelnovakjr__: well, but that problem is persistent even through the hiring process. Apr 30 17:26:50 big companies like google screw up their interviews constantly. they structure them like a CS test, and not like a real exercise. Apr 30 17:27:04 jasta that is true Apr 30 17:27:05 heard google interview is a big mess Apr 30 17:27:19 how well you can answer CS-type questions has little bearing on how likely you are to write a 900 line function. Apr 30 17:27:29 right Apr 30 17:27:30 true Apr 30 17:27:36 i'd love to work for google :) Apr 30 17:27:41 and they have like 10 levels!! Apr 30 17:27:50 and the latter is much more detrimental to their code base than someone who writes an inefficient piece of code. Apr 30 17:27:50 and i am really anal about my code!! Apr 30 17:28:03 though they both are not good ;) Apr 30 17:28:16 i am a code optimization nerd! Apr 30 17:28:41 michaelnovakjr__: oh oh Apr 30 17:28:59 muthu, the guy at the last level breathes fire. You have to do your special move like 10 times to get by him Apr 30 17:29:08 haha Apr 30 17:29:12 lol Apr 30 17:29:28 haaa Apr 30 17:30:15 i'll hire by intution Apr 30 17:30:28 gotta like the person too though Apr 30 17:30:44 i like working with people that have a sense of humor and don't take everything you say as gospel Apr 30 17:31:03 right Apr 30 17:31:12 need some healthy discussions Apr 30 17:31:19 hate when people just nod Apr 30 17:31:33 yea, and when you crack a joke look at you as if they were stone Apr 30 17:32:14 a lot of software engineers at least around Seattle have great personalities Apr 30 17:32:17 android is the best thing to come out of google Apr 30 17:32:23 many of them are not what you'd expect. Apr 30 17:33:06 jasta, totally... i have come cross more cool developers than annoying ones Apr 30 17:34:42 any chance we know the top 100? Apr 30 17:35:05 doubt it Apr 30 17:35:19 any clues so far? Apr 30 17:35:19 it might piss off people 51-100 Apr 30 17:35:27 haha Apr 30 17:35:33 especially 51 on the list Apr 30 17:35:52 i'd choke someone if i found out i was 51 Apr 30 17:35:59 lol Apr 30 17:36:10 but who gave this top 100 idea? Apr 30 17:36:30 i thought, you pick 50 from 1788 Apr 30 17:36:41 muthu: no idea.... its 50 Apr 30 17:36:55 ok Apr 30 17:37:07 there are 100 judges Apr 30 17:37:15 that's the top 100! Apr 30 17:38:11 morrildl: We have done the reduction down to the "first cut" 100 Apr 30 17:38:11 [09:48am] morrildl: and those 100 are now being reviewed by the second-pass judges to narrow down to the final 50 Apr 30 17:38:28 oh, i missed that Apr 30 17:38:31 romainguy_: thanks Apr 30 17:39:00 keep an eye out on your severs :) Apr 30 17:39:01 morrildl: hey do you think you'll be able to leak our scoresa fter the results are out? :) Apr 30 17:39:08 or will we get them? Apr 30 17:39:08 haha Apr 30 17:39:51 lol Apr 30 17:39:53 100 filtered out of 1788.. this is getting exciting already Apr 30 17:40:02 i would think you wouldnt get your score. Apr 30 17:40:36 can someone poke me privately, if i'm in 100 :-)) Apr 30 17:40:42 haha Apr 30 17:40:53 lol Apr 30 17:41:10 it wouldn't be illegal btw Apr 30 17:41:20 what would be illegal? Apr 30 17:41:23 oh oh Apr 30 17:41:28 no poke yet!!! Apr 30 17:41:30 haha Apr 30 17:43:48 jasta: are you getting any hits now? Apr 30 17:45:39 just so you guys know. mario kart wii is really fun Apr 30 17:46:57 jasta, how about now? Apr 30 17:47:45 jasta: now? Apr 30 17:47:52 haha Apr 30 17:47:57 this is really fun Apr 30 17:48:09 uh oh, he hasn't answered Apr 30 17:48:11 you know i actually was not one of those people that obsessively watched my server Apr 30 17:48:19 i dont even have the monitor up right now Apr 30 17:48:27 jasta: now that we know Apr 30 17:48:33 you need to watch it closely Apr 30 17:48:47 nah. i'll know if it gets hit. Apr 30 17:48:59 lol Apr 30 17:49:02 you know, duey claims he got 5 hits btw ;) Apr 30 17:49:15 duey is a winner Apr 30 17:49:19 well you claim to have 2 reviews Apr 30 17:49:41 i would vote for duey's app Apr 30 17:49:43 i think its cool Apr 30 17:50:00 Dougie187: yeah, but morrildl claims i have 4. i have no idea how that is possible. Apr 30 17:50:07 i show 4 attempts, but only 2 successful ones. meh. Apr 30 17:50:54 which is duey's? Apr 30 17:51:15 duey did a cool OCR Apr 30 17:51:40 davidw: it's a translation service that lets you take a photo of some text and it'll translate it for you Apr 30 17:51:45 neat Apr 30 17:51:52 it only works with english as a source language for now, but could be trained for other languages Apr 30 17:51:57 could be a great tool for european travelers Apr 30 17:53:04 the apps are not categorized btw Apr 30 17:53:56 i know Apr 30 17:54:14 we could have 50 social networking services win. which would be *lame* :) Apr 30 17:54:19 yeah Apr 30 17:54:29 it was a surprise for me too Apr 30 17:55:06 but you know.. the judges would hate to do that Apr 30 17:55:53 yeah, i think they will protect themselves against that without it being explicitly worked into the rules Apr 30 17:56:02 doesn't help them any to do that. Apr 30 17:56:26 I don't see that in any case because it doesn't show off the phone that much Apr 30 17:56:34 loopt already does the mobile/social thing Apr 30 17:56:37 as do others Apr 30 17:58:03 you know i have a bunch of friends that work there? Apr 30 17:58:09 one of them at least is coming with me to I/O Apr 30 17:58:34 you all have me paranoid now Apr 30 17:58:50 i am greping my server logs now to see activity for the first time ever! Apr 30 17:59:41 lol Apr 30 18:01:13 lol Apr 30 18:01:20 you guys need to calm the f down Apr 30 18:10:29 i got a hit yesterday, but i can't remember if it was me! Apr 30 18:10:56 i think i was playing call of duty at that time, gggrrr Apr 30 18:12:55 lol Apr 30 18:13:07 woah Apr 30 18:13:18 they were definitely testing it on saturday Apr 30 18:14:07 michaelnovakjr__: any recent hits? Apr 30 18:14:16 the 26th Apr 30 18:14:29 ok Apr 30 18:14:37 when the 100 got finalized? Apr 30 18:14:46 no idea Apr 30 18:15:03 guess its as of today Apr 30 18:16:27 it was definitely a tester, there are only two people with the apk and neither of us sat in front of a computer saturday Apr 30 18:16:56 ok Apr 30 18:17:31 romainguy when did dan talk about the top 100? Apr 30 18:18:42 michaelnovakjr__: today Apr 30 18:19:30 i know it wasn't discussed before Apr 30 18:19:56 gr Apr 30 18:20:19 atleast it was hit recently Apr 30 18:20:47 it would be really disappointing for the losers Apr 30 18:20:54 yea Apr 30 18:21:19 i know atleast one soul which will cry Apr 30 18:21:25 :-( Apr 30 18:21:39 now i am getting antsy..... i should stay away from the irc until mondy Apr 30 18:21:53 haha Apr 30 18:22:29 it'll be hard.. but we should take it easy Apr 30 18:22:54 haha Apr 30 18:23:13 michaelnovakjr__: will you continue, if you lose? Apr 30 18:23:46 i will, funding will become difficult but i will continue.... there was another tragic storm this week that killed people in the middle of the night Apr 30 18:24:06 michaelnovakjr__: yours is such a useful app Apr 30 18:24:07 so I know my application can serve atleast some people that could really use it Apr 30 18:24:13 yeah Apr 30 18:24:37 i was a firefighter/emt before being a programmer so public service is kind of a no brainer Apr 30 18:24:46 wow Apr 30 18:25:08 firefighter / programmer - you must be something Apr 30 18:25:10 good luck Apr 30 18:25:24 thanks Apr 30 18:25:42 michaelnovakjr__ you got mario kart wii? Apr 30 18:25:50 nope Apr 30 18:25:53 xbox Apr 30 18:26:02 halo? Apr 30 18:26:21 call of duty and halo Apr 30 18:26:30 LBS has really kindled peoples interest Apr 30 18:26:36 a lot of GPS apps Apr 30 18:27:00 http://www.xixiaohong.cn/default.asp Apr 30 18:28:21 oh wait Apr 30 18:28:22 http://www.youtube.com/watch?v=fwSBLdGCjnY Apr 30 18:30:16 that's more like a movie btw Apr 30 18:32:06 do you play halo online? Apr 30 18:32:13 me? Apr 30 18:32:16 yeah Apr 30 18:32:19 yes Apr 30 18:32:26 i haven't in a while since getting Call of Duty Apr 30 18:34:08 muthu: crazy stuff this duo thing Apr 30 18:34:18 ligi: oh yeah, big time Apr 30 18:34:49 i like the twist.. very innovative Apr 30 18:35:45 michaelnovakjr: What rank are you/ Apr 30 18:39:48 Dougie187: i forget Apr 30 18:39:54 ok Apr 30 18:40:01 i am lvl 30 in Call of Duty Apr 30 18:42:32 Dougie187: do you play call of duty Apr 30 18:43:29 nope Apr 30 18:44:17 i only have halo and the orange box for my 360 Apr 30 18:44:21 and i have a wii with a bunch of wii games Apr 30 18:44:40 you're missing out. call of duty 4 is totally better than halop Apr 30 18:45:45 agreed :)) Apr 30 18:46:08 I like CoD4 sometimes Apr 30 18:46:12 other times I like Halo 3 Apr 30 18:46:15 other times I like TF2 Apr 30 18:46:20 I mostly just play WoW occasionally if I have time. Apr 30 18:46:25 * romainguy_ was talking about the solo experience only though Apr 30 18:46:35 Oh Apr 30 18:46:42 CoD4 single player > Halo 3 Singleplayer Apr 30 18:47:36 CoD 4 team deathmatch is awesome.... hardcore is better though :) Apr 30 18:47:44 Hardcore is the best Apr 30 18:47:46 Halo 3 is actually a poor solo game I found Apr 30 18:47:49 Search and Destroy Apr 30 18:47:52 anyway Apr 30 18:47:55 back to LinearLayout :) Apr 30 18:48:07 its just lame that in CoD you can't play with a guest on Live Apr 30 18:48:14 Yeah Apr 30 18:48:28 I'm loving the new Halo maps Apr 30 18:48:29 new maps are fun though :) Apr 30 18:48:39 New Sidewinder is <3 Apr 30 18:48:47 i have never played Halo (any version) for more than 20 minutes Apr 30 18:48:58 i find the interface insulting. Apr 30 18:49:02 how about CoD jasta? Apr 30 18:49:10 nope Apr 30 18:49:38 i am very particular about my first person shooters. first of all, keybaord and mouse for life. Apr 30 18:49:47 i used to compete in Quake3 tournaments hehe Apr 30 18:49:48 im not big on halo 3 single player. Apr 30 18:49:51 only multiplayer Apr 30 18:49:53 i'm ruthless ;) Apr 30 18:49:54 jasta, but the xbox controller was very nicely designed for shooter games Apr 30 18:50:07 triggers and all Apr 30 18:50:10 let me put it another way. Apr 30 18:50:45 if you designed the exact same game to be played on an xbox with a typical controller, and on a PC with a keyboard/mouse. And you put two skilled players in the arena with each, which do you think would win? Apr 30 18:51:03 And not just win. Would you think it to would be an absolute blood bath? Apr 30 18:51:08 That's a good question Apr 30 18:51:15 hm, taking into account your previous statement.... i am guessing you'd say the computer guy Apr 30 18:51:21 I've seen competitive Halo play, and I've seen competitive FPS on a PC. They are *NOTHING* alike. Apr 30 18:51:30 The Halo play is laughably slow, sloppy, and inaccurate. Apr 30 18:51:46 Competitive first-person shooters on a PC are incredible. The players reach an unreal level of skill. Apr 30 18:51:47 Halo is, but I feel CoD is a bit different Apr 30 18:52:03 twitch-sniping enemies that are the size of a small dot on the screen. things like that. Apr 30 18:52:21 sniping in halo is real Apr 30 18:52:36 like I said, I used to go to a lot of these sorts of tournaments. I'd compete in the PC FPS games, and watch the console-based ones. It was pathetic to see them side-by-side. Apr 30 18:52:40 CoD you get tired holding your gun steady, in halo its always steady Apr 30 18:53:23 I'm good relative to most people who play, but I'm nothing special in the tournaments. That said, I feel like I could, with a keyboard/mouse, beat even the top players on the console games. Apr 30 18:53:30 Proof to me at least that the interface is _ALL WRONG_. Apr 30 18:53:32 I personally thing Unreal is ridiculous Apr 30 18:53:39 too fast Apr 30 18:53:42 too too fsat Apr 30 18:53:46 fast, even Apr 30 18:54:15 I like realism games too. Like counter-strike. But again, on a PC is the only way to play it. Apr 30 18:54:24 I'm also very good at CS if anyone is curious ;) Apr 30 18:54:42 I have a huge house and somehow have collected like 10 monitors in my closet. We have big LAN parties at my house all the time hehe Apr 30 18:54:43 i can play Myst on my computer really well ;) Apr 30 18:55:03 at least one big one a year Apr 30 18:55:07 I've played CoD on computer, and honestly, I don't think I'd have much trouble if I was forced to play a PC player Apr 30 18:55:19 I think I could do well Apr 30 18:55:20 lol Apr 30 18:55:24 i like the wii a lot. Apr 30 18:55:34 too much movement for me Apr 30 18:55:40 lol Apr 30 18:55:41 poffy: Maybe that's true for CoD, I have never played it. But for the games I have seen, like Halo, Quake, Unreal, etc it would be no contest. Apr 30 18:55:47 even a mediocre player on the PC could win. Apr 30 18:56:11 even the best Halo players i've seen at these tournaments would actually miss with sniper weapons. Apr 30 18:56:20 how? Apr 30 18:56:24 Well, I think you're comparing apples and oranges Apr 30 18:56:27 sniper is so easy Apr 30 18:56:30 on halo that i Apr 30 18:56:30 s Apr 30 18:56:32 Comparing the Halo players to Unreal players Apr 30 18:56:36 that's kinda difficult Apr 30 18:56:42 poffy: Not really, some of these games, like Unreal, even have console versions. Apr 30 18:56:50 And they turn on *AUTOAIM* because otherwise it would never work Apr 30 18:57:01 For the original Halo, I own PC and Xbox version Apr 30 18:57:08 Sure if you leave auto-aim on, I bet the console player would stand a chance. Apr 30 18:57:09 I could bet I could beat PC players easily Apr 30 18:57:18 But if you give the PC player auto-aim, omg :) Apr 30 18:57:19 I don't have auto-aim on Apr 30 18:57:51 oh oh oh Apr 30 18:57:54 poffy: There's a reason the game makers do not make the two versions server compatible. Apr 30 18:57:54 I know what you're talking about Apr 30 18:57:56 the tracking Apr 30 18:58:09 I hate the Halo 3 tracking Apr 30 18:58:11 Because the PC players would dominate and piss off everyone. Apr 30 18:58:42 as a side note, i had a friend who i used to go to these things with who would usually place 1st or 2nd... Apr 30 18:58:54 his accuracy with the rail gun in Quake3 was well over 90%. Apr 30 18:59:01 to see him miss was *VERY* rare. Apr 30 18:59:17 practicing against xaero made people that good :) Apr 30 18:59:40 LPB was a title I wore with pride too Apr 30 18:59:54 but meh, my Q2/Q3 days are long over Apr 30 19:25:05 wow, this is very strange Apr 30 19:25:08 zero hits to my server Apr 30 19:25:13 lol Apr 30 19:25:16 haha Apr 30 19:25:27 you sound shocked Apr 30 19:25:27 but i sent dan a mail and he replied that my application has data from the judges... wtf?! Apr 30 19:25:41 sounds familiar Apr 30 19:25:46 zero hits total? Apr 30 19:25:47 i don't understand. it's as if they removed web access completely from the judges' emulators? Apr 30 19:25:52 nothing on the web server Apr 30 19:26:01 they didn't.... i know that for a fact Apr 30 19:26:47 my server was hit with actual data requests Apr 30 19:27:13 maybe they did from the apps that didnt need it? Apr 30 19:27:14 ionno Apr 30 19:27:39 Dougie187: good point Apr 30 19:28:04 f00f-: did you give data with your apk? Apr 30 19:28:10 yeah Apr 30 19:28:21 its possible they just used that then Apr 30 19:28:40 but there is no options to 'select' local vs remote :P Apr 30 19:28:51 local data is used as a fallback in case it can't connect Apr 30 19:28:52 so then what's the point of the data? Apr 30 19:28:55 ah Apr 30 19:29:08 for emergencies, such as this, so i hope it worked Apr 30 19:29:30 heh Apr 30 19:29:32 im sure it worked fine Apr 30 19:29:51 everyone is freaking out about their apps Apr 30 19:42:11 arrrgggh Apr 30 19:42:14 i am in such a weird mood Apr 30 19:43:26 in the last couple of days i have become excessively impatient ;) Apr 30 19:43:37 me too Apr 30 19:46:46 i think i am falling into a state of apathy Apr 30 19:47:35 that happens. Apr 30 19:48:04 if i lose the adc i'll have to find investors and charge 99 cents for the application Apr 30 19:48:13 kinda don't want to have to do that Apr 30 19:48:23 well. you might not have to as wlel. Apr 30 19:48:24 well Apr 30 19:48:32 keep in mind you might be able to put ads on the bottom. Apr 30 19:48:40 or get NOAA to adopt it Apr 30 19:49:14 i want to keep away from ads.... it seems inappropriate for this kind of app Apr 30 19:49:34 well which is more appropriate? charging for it, or putting ads on it? Apr 30 19:50:05 its tough Apr 30 19:50:23 would people have it running constantly michaelnovakjr__ ? Apr 30 19:50:30 or would they fire it up in emergencies Apr 30 19:50:58 it warns them of emergencies so its a constant thing Apr 30 19:51:25 so it has like a Service that starts up a UI when a warning needs to be shown? Apr 30 19:51:32 but the time interval can be modified so when you are plugged in at night you can run it say every minute.. and during the day you can drop it to an hour or more... or not run it at all Apr 30 19:51:39 yes Apr 30 19:52:02 there's the UI for displaying and configuring the app and then it runs based on the preferences Apr 30 19:52:25 you should make it change the time interval by itself Apr 30 19:52:41 maybe like the default is once an hour, or half hour or something Apr 30 19:52:51 i am planning on making that an option, where you can set the phone to be more responsive during high warning times Apr 30 19:52:58 yeah Apr 30 19:53:07 like every 5 minutes until an alert is over Apr 30 19:53:15 and just set it based on when the alert says its going to end Apr 30 19:53:15 or times you are less likely to be alert Apr 30 19:53:34 yeah, like have a schedule that you are awake or something on it Apr 30 19:54:19 i am an optimization nerd, so battery and memory consumption are always a top priority Apr 30 19:54:28 yeah Apr 30 19:54:44 i figured that the self-adjusting time interval would help with battery quite a bit Apr 30 19:55:13 i have made it my goal to create the application in a way where you can run it as often as you like and not worry about battery drain.... (this includes adding a push option :) ) Apr 30 19:55:32 man i cant wait for my laptop to get back. Apr 30 19:55:36 i miss it already Apr 30 19:55:44 what kind of laptop? Apr 30 19:55:47 toshiba Apr 30 19:55:50 tablet pc Apr 30 19:55:55 though i dont use the tablet much Apr 30 19:55:57 linux Apr 30 19:56:11 yeah i put ubuntu on it Apr 30 19:56:16 nice Apr 30 19:56:18 right now im using my wifes windows laptop Apr 30 19:56:28 it saddens me to use it Apr 30 19:56:29 ouch Apr 30 19:56:29 lol Apr 30 19:57:40 do we know if when the judges are testing each time they start from the install? Apr 30 19:57:56 or do they start using it after its on the emulator and continue using it? Apr 30 19:59:59 no idea. Apr 30 20:00:11 What kinda system are you running? Apr 30 20:02:51 i need call of duty to keep my mind off android Apr 30 20:04:15 lol Apr 30 20:04:27 what kinda system do you run michaelnovakjr__ Apr 30 20:05:54 linux (ubuntu) Apr 30 20:08:47 nice Apr 30 20:08:51 you up to 8.04 yet? Apr 30 20:11:06 evening all Apr 30 20:13:03 good evening Apr 30 20:19:36 Boy the waiting is killing me.... roll on monday Apr 30 20:20:54 how much longer did they say it was going to be? Apr 30 20:21:17 i guess monday Apr 30 20:21:28 huh, is it not the 5th Apr 30 20:21:33 ! Apr 30 20:21:37 no i heard monday from other people Apr 30 20:21:43 i know it is the 5th though Apr 30 20:21:55 so its supposed to be monday Apr 30 20:23:23 Any of you guys seen assembla? Found it a few weeks ago. Apr 30 20:25:44 nope Apr 30 20:25:54 lummie: i'm thinking i did not even make it to the top 100 :( Apr 30 20:26:00 lol Apr 30 20:26:04 jasta. stop it. Apr 30 20:26:08 just wait until monday Apr 30 20:26:18 It's an SVN / project management where you can have private or public projects and its free Apr 30 20:26:22 if i win, i am gonna get so sloppy drunk on Monday night Apr 30 20:26:27 there's no way i'm goin tow rok Tuesday Apr 30 20:26:37 jasta: yeah it's a kill being a doubter... Apr 30 20:27:26 I hope they announce at 9am cause it's gonna be like 3 in the afternoon here.... Apr 30 20:27:44 And it's a bank holiday, it's going to go so so slow Apr 30 20:28:25 well, a lot of us are probably not going to be in the top 50, but i hope atleast they e-mail the scores we got Apr 30 20:28:46 that way i'll atleast know where i stood Apr 30 20:28:53 So are there any more rumours of hardware yet ? Apr 30 20:29:01 i could see the people who lose getting their scores. but not the winners. Apr 30 20:29:04 jerkface03: all ways say you don't know.... Apr 30 20:32:18 only roughly 3% win Apr 30 20:32:40 michaelnovakjr why do you try to make them more pessimistic? Apr 30 20:32:44 1 in 35... sounds better Apr 30 20:32:48 haha Apr 30 20:33:47 optimist glass is half full..... pessimist glass is half empty.... android programmer, glass is designed too big and you need the mobile version.... :) Apr 30 20:34:13 haha Apr 30 20:36:29 as an aside, the glass is half full or empty is not a matter of perspective, it is a matter of causality. Apr 30 20:36:51 jasta, take a drunk picture and put it on the web "Thanks, Larry, thanks Sergey!" Apr 30 20:37:06 it is half empty is the last action performed was to drain; half full if it was to fill. Apr 30 20:37:16 as in I had a casual drink and now the glass is half empty Apr 30 20:37:30 half empty if* Apr 30 20:37:35 and.. jasta thinks about it too much Apr 30 20:37:44 lummie: Yes. Or, I poured a glass half full of juice. You didn't pour it half empty. Apr 30 20:38:04 It's a matter of order, not optimism :) Apr 30 20:38:21 the glass was too bloody big alright !!!! Apr 30 20:38:31 depends how much time you want to waste thinking about an old cliche Apr 30 20:38:46 very little, it's obvious ;0 Apr 30 20:38:51 lol Apr 30 20:38:57 still, i am gonna be soooooooo tanked Monday ;) Apr 30 20:39:01 so about that horse that bolted...... Apr 30 20:39:02 already setting it up right now Apr 30 20:39:05 walking to Teddy's Apr 30 20:39:13 *wasted* Apr 30 20:39:15 walking home ;0 Apr 30 20:39:27 can you walk home wasted, though? Apr 30 20:39:34 uhm, yes. Apr 30 20:40:12 you can get a taxi home wasted.... ? Apr 30 20:40:23 true Apr 30 20:40:25 And you have to tpye the digits in the phone and all Apr 30 20:40:34 walking is easier when drunk. it's like being on autopilot. you just *become* home. Apr 30 20:40:42 i got pulled over for walking drunk Apr 30 20:40:48 me too, actually Apr 30 20:40:51 cops harrass you Apr 30 20:41:07 you can even be ticketed for riding a bicycle drunk hehe Apr 30 20:41:07 i told them my dad george bush would be proud of me! Apr 30 20:41:15 lol Apr 30 20:41:32 i once was caught in Canada walking to the club with a bottle of whiskey in a group of friends Apr 30 20:42:03 the cop walked up to us and said sternly, "Just so you know, the fine for littering is more than the fine for public drunkenness around here. Make sure that bottle makes it to the recycling." Apr 30 20:42:20 and walked off. it was awesome ;) Apr 30 20:42:25 lol Apr 30 20:42:57 ol Apr 30 20:42:59 lol Apr 30 20:43:11 bloody l key Apr 30 20:43:21 they get you sometimes. Apr 30 20:43:35 I am not use to this keyboard yet, so I have to type a lot more carefully. Apr 30 20:43:49 though i tend not to.and then i misspell a lot of things. Apr 30 20:43:57 or replace spaces with periods. Apr 30 20:44:58 I've borrowed a mac book, whilst my acer is off for repair... Apr 30 20:45:13 keyboard is a night mare. stupid apple key.. Apr 30 20:45:18 im borrowing my wifes laptop while mine is off to repair Apr 30 20:45:29 heh its kinda like how people complain about windows keys Apr 30 20:45:38 took me hours to type a html color as theres no # key Apr 30 20:45:52 yeah Apr 30 20:45:53 lol Apr 30 20:45:53 nah this is so different Apr 30 20:46:07 just in regards to the apple key Apr 30 20:46:09 selecting text is a night mare... Apr 30 20:46:31 there is no delete key either, so if you do bootcamp its a pain in the ass to do ctrl+alt+del Apr 30 20:46:33 fn ctrl alt apple left cursor or somethign like Apr 30 20:46:39 oh yeah Apr 30 20:46:42 since the "delete" key acts as backspace Apr 30 20:47:13 I would say "don't get me started" but you already have.... Apr 30 20:47:14 and i hate the single click Apr 30 20:47:18 lol Apr 30 20:48:19 not complaining (too much) though as It's better than nothing Apr 30 20:48:33 true. Apr 30 20:48:39 I miss ubuntu though... Apr 30 20:48:44 me too Apr 30 20:48:49 thats what i was saying earlier. Apr 30 20:48:53 but at least yours is unix based. Apr 30 20:49:11 ish...... Apr 30 20:49:19 heh Apr 30 20:49:23 im stuck with windows. Apr 30 20:49:34 what would you rather have? Apr 30 20:49:47 my laptop back... Apr 30 20:49:56 lol Apr 30 20:50:08 im going to try to convert my family into ubuntu users. Apr 30 20:50:13 i think im getting my mom to do it first. Apr 30 20:50:23 my wife has already started to use it, but wont let me put it on her laptop Apr 30 20:50:27 it came back from acer repair last friday with a nice 3 inch scratch across the middle of the screen that wasn't there when I sent it! Apr 30 20:50:38 yikes. Apr 30 20:50:47 im hoping to get a new laptop out of it. Apr 30 20:50:47 lol Apr 30 20:50:50 mine is 2.5 years old. Apr 30 20:50:55 i am running 8.04.... i like it Apr 30 20:50:57 and they dont make these anymore Apr 30 20:51:03 just a few crashes every now and again Apr 30 20:51:11 yeah mine is a couple of years, but it's got a bit of life in it yet. Apr 30 20:51:15 i was using 8.04 before i sent it in Apr 30 20:51:19 mine does too Apr 30 20:51:21 if only I had $25,000 Apr 30 20:51:23 lol Apr 30 20:51:29 haha Apr 30 20:51:38 well, after taxes even if you win you won't have that! Apr 30 20:51:42 then you could get yourself a new one. Apr 30 20:51:51 a new what? Apr 30 20:51:52 no taxes to pay here.... :) Apr 30 20:51:54 whats the tax rate on a prize? Apr 30 20:51:55 how come? Apr 30 20:51:56 a new crack and prostitute habit? Apr 30 20:52:08 isn't it 50% in the states? Apr 30 20:52:19 f*** government Apr 30 20:52:20 uk there's not tax as long it isn't part of your job Apr 30 20:52:20 and... jerkface lives up to his name. Apr 30 20:52:21 lol Apr 30 20:52:23 jk Apr 30 20:52:27 i think winnings don't get taxed here (cdn) Apr 30 20:52:41 i think i just became british Apr 30 20:52:50 * lummie is spending it already.... Apr 30 20:52:59 that is not good :( Apr 30 20:53:00 Cup of tea dear... Apr 30 20:53:03 k i think its time to cook dinner Apr 30 20:53:11 yeah you can sure run yourself into a lot of debt. Apr 30 20:53:15 spending 25k before you have it Apr 30 20:53:16 lol Apr 30 20:53:21 :0 Apr 30 20:53:22 michaelnovakjr: tell you get the cheque made out to me.... Apr 30 20:53:25 hope you dont do that for phase two Apr 30 20:53:38 yea 275,000 is a lot to pay off Apr 30 20:53:41 lol Apr 30 20:53:50 anyways Apr 30 20:53:51 time to cook Apr 30 20:53:53 talk to you guys later Apr 30 20:53:57 later Apr 30 21:16:21 i already have a plan for the money if i win. Apr 30 21:16:27 i'm putting it toward a house Apr 30 21:23:00 davidw: yeah, what the hell is the deal with needing my address for this? Apr 30 21:27:12 maybe to send us the book in print? Apr 30 21:36:35 davidw is writing a book, is he? Apr 30 21:36:40 way to keep a secret jasta ;) Apr 30 21:36:42 speaking of books http://pragprog.com/titles/eband/hello-android Apr 30 21:40:25 you guys should hope we dno't change the APIs too much after the books are written :)) Apr 30 21:43:08 jerkface03: no Apr 30 21:43:23 romainguy_: yeah, i actually think writing books on Android at this stage is really unwise. Apr 30 21:44:03 jerkface03: the planetandroid dude is writing a book and wanted to send all of us an advance copy to review. Apr 30 21:44:57 i've read the first chapter and it seems geared for a novice audience, unfamiliar with Java and possibly programming in general. Apr 30 21:45:02 which is the wrong audience to target ;) Apr 30 21:45:39 so it's not just a copy&paste job of the examples on code.google.com/android? Apr 30 21:46:30 no, are those examples written that way as well? Apr 30 21:47:34 the android samples to me seem like they are targeting folks already familiar with java. they don't explain much about the non-android bits. Apr 30 21:48:00 this guy's book, on the other hand, goes into things like why you need at the beginning your layout files and such. Apr 30 22:13:04 not my book:-) Apr 30 22:13:24 it's someone's broken billing system that requires a mailing address to hand out free pdf's Apr 30 22:34:17 lame :) Apr 30 22:37:37 lol May 01 02:03:13 re May 01 02:04:06 re May 01 02:20:16 wrrrrrry May 01 02:42:22 hey jasta **** ENDING LOGGING AT Thu May 01 02:59:56 2008