**** BEGIN LOGGING AT Sun Jun 12 02:59:56 2011 Jun 12 03:23:39 SpeedEvil, fresh food works better for me. Jun 12 03:23:55 I don't do well at "Use up what's in storage" Jun 12 03:25:13 GAN900: I mean stuff like pasta and flour and oil and bacon - stuff that's going to be quite edible for 6 months, and I'm unlikely to stop eating. Jun 12 03:25:41 Ah, yeah. Jun 12 03:26:01 I tend to stock up on such when it goes buy-one-get-one. Jun 12 03:26:21 Recently got 26Kg of pasta, as it was half price. Jun 12 03:26:26 Which helps too. Jun 12 03:29:46 Cooking for one is still the worst, though. Jun 12 03:30:23 yeah. Hence my other defence - cooking _massive pots of delicious stuff, and portioning it. Jun 12 03:32:45 I never bother to freeze cooked stuff. So it usually means three days of eating the same thing. Jun 12 03:32:59 good morning Jun 12 03:33:18 spent all night trying to get libpurple-twitter-protocol working Jun 12 03:33:53 some dood called mikage has an oauth version 0.8.0 Jun 12 03:34:07 trying to hack it into compiling Jun 12 03:34:11 in esbox :x Jun 12 03:35:49 There's no libdouche? Jun 12 03:36:13 I'm incredibly disappointed by the open source community. Jun 12 03:36:26 mm? Jun 12 03:38:00 waah nvm time for a reefa then bed o/ Jun 12 03:54:39 all hail to B-52's party mix!! Jun 12 03:55:16 GAN900: But if you do it right, that's 3 (or 15) days spread out at one a week Jun 12 03:56:17 (stil pondering if hunger or 11°C is worse ;-P) Jun 12 03:57:33 so please stop talking food or I'll gonna shake Jun 12 04:15:05 SpeedEvil, yeah, but I fail. Jun 12 04:15:33 * DocScrutinizer epically Jun 12 04:16:31 * DocScrutinizer considers "cooking" another coffee, the only thing ever "cooked" here Jun 12 06:40:19 word Jun 12 06:40:21 hi Jun 12 06:44:10 word Jun 12 06:50:25 Moo Macer Jun 12 06:51:01 mooo Jun 12 07:06:38 super moo Jun 12 07:49:21 wow, netsplit Jun 12 07:50:52 wb Jun 12 08:30:21 good morning Jun 12 08:42:52 morning Venemo Jun 12 08:42:58 morning lardman Jun 12 08:53:20 morning Venemo lardman Jun 12 08:53:30 hey hiemanshu :) Jun 12 09:25:16 If you have a Boolean expression broken down into a tree structure, can one economise on finding the element states knowing the exact Boolean conditions Jun 12 09:25:45 yes is the answer, but it means evaluating the state of each child element individually and then using that to save evaluating the next one Jun 12 09:26:07 hmm, sorry for the noise, started making sense when I started writing it down Jun 12 09:31:47 is XOR useful for Proximus? Jun 12 10:08:04 right onto rules and how they should be conveyed to the proximus daemon Jun 12 10:08:23 I'm thinking DBus for the comms, as that will also allow external apps to easily use the service Jun 12 10:08:46 in terms of the rules: textual rules like SQL statements is my first thought Jun 12 10:08:49 any other ideas? Jun 12 10:10:17 * lardman wonders about shortcuts to parser writing and establishing a syntax Jun 12 10:13:52 lardman: What would you like to parse? Jun 12 10:15:58 RST38h: rules Jun 12 10:16:02 ;) Jun 12 10:16:07 hang on a tick let me find the link Jun 12 10:16:32 http://wiki.maemo.org/Proximus Jun 12 10:17:19 also need to establish names of conditions (like wifi_connected) and also allow users to provide their own Jun 12 10:17:29 lardman:Ok, first hint: you do not want syntax that will require your parser to back up and reconsider. Jun 12 10:17:37 either via DBus commands, or by providing plugins Jun 12 10:17:47 ok Jun 12 10:18:20 I should be able to split everything out using brackets for the grouping, then split on boolean operators Jun 12 10:18:22 lardman: Second hint: const char *SkipWS(const char *P), const char *Match(const char *P,const char *Word), const char *GetInt(const char *P,int *N) Jun 12 10:18:41 lardman: And your parse will look like this: Jun 12 10:18:52 const char *Parse(const char *P) { Jun 12 10:19:03 P = P? SkipWS(P):0; Jun 12 10:19:14 P = P? Match(P,"keyword"):0; Jun 12 10:19:26 P = P? GetInt(P,&Arg):0; Jun 12 10:19:27 ... Jun 12 10:19:32 return(!!P); Jun 12 10:19:49 Am I making myself clear? =) Jun 12 10:19:53 hmm Jun 12 10:19:54 ;) Jun 12 10:20:01 I will sit down and have a look at that Jun 12 10:20:37 Basically, you want todevelop a bunch of functions that match keywors and extract args Jun 12 10:20:39 I'm hopful that the parsing should be quite simple, as it will require brackets and Boolean ops to break up things Jun 12 10:20:45 yes Jun 12 10:20:50 Andthen use them in a simple linear fashion I have shown above Jun 12 10:21:02 So that it stays very clear and easy tomodify Jun 12 10:21:04 sounds like a sound plan Jun 12 10:21:14 Well, it worked for me, multiple times. Jun 12 10:21:53 ok, so what about using brackets for grouping and to contain fn arguments? Jun 12 10:22:03 same brackets, or would I be wise to use different ones? Jun 12 10:22:19 goes like this: Jun 12 10:23:03 const char *Parse(const char *Text,const char *Terminators) Jun 12 10:23:18 when you encounter a bracket, you do this: Jun 12 10:24:43 if(*P=='[') { P=Parse(P+1,"]");P = P? P+1:0; } Jun 12 10:24:55 I.e. your parser becomes recursive Jun 12 10:25:23 Upper level gets called as Parse(Text,0) (i.e. no additional terminating symbols to match) Jun 12 10:26:02 ok Jun 12 10:26:14 Same goesfor all other types of brackets Jun 12 10:26:53 * lardman wonders if Qt has a parser inbuilt already Jun 12 10:26:55 Shit, can I somehow develop for Android *without* Eclipse???? Jun 12 10:27:06 lardman: hehehe Jun 12 10:27:24 * lardman has to go to a midwife's appointment, bbl to continue Jun 12 10:27:39 RST38h: read up on what functions are still not removed in Bionic Jun 12 10:27:54 What is Bionic? Jun 12 10:28:32 the replacement for glibc Jun 12 10:29:35 it's google incompatible libc Jun 12 10:34:04 * ZogG is away: going for few weeks to army Jun 12 10:34:26 * RST38h is moreconcerned about how tocompile the damn project Jun 12 11:59:49 MohammadAG: pong (sry, summer parties + metal festivals lead to a lot of lag) Jun 12 12:00:14 (morning everyone !) Jun 12 12:00:32 \o Jun 12 12:24:50 In marble, what's the left-most button of those 4 good for? the one with 3 roads and an 'i' in the middle. It's always greyed out. Also, how can I most easily send my gps coordinates via sms? Jun 12 12:41:22 Can I install CSSU in the scratchbox or will it damage my environment? Jun 12 12:51:41 gri: hold on, why can't you just copy it? Jun 12 12:52:15 kerio: You mean compiling everything myself? Jun 12 12:52:23 no, i mean Jun 12 12:52:29 what's your scratchbox environment? Jun 12 12:52:30 isn't it a VM? Jun 12 12:52:37 It is Jun 12 12:53:02 so copy it Jun 12 12:53:04 I just wanted to ask if anyone ever tried before wasting time Jun 12 12:53:05 and try to install cssu Jun 12 12:53:14 Info Notice: Next week, the MeeGo N900 Community edition will be testing direct import of Maemo contacts Jun 12 12:53:53 so testing meego for day to day use will be much easier since all your favourite people will be on the device :) Jun 12 13:26:02 yawn Jun 12 13:28:19 http://twitpic.com/5adya1 Jun 12 13:29:03 Another twitter client? Jun 12 13:29:54 no just trrying to get the ibpurple pluginn working Jun 12 13:30:09 ah Jun 12 13:30:36 :) Jun 12 13:50:46 what would be the normal way of triggering some event on the 2nd of every month? Jun 12 13:50:57 within an application written using Qt Jun 12 13:52:06 apparently a QTimer can last ~24 days, so doing weekly events is doable, but things longer than that would presumably use some sort of shorter timer which resets itself as it gets closer? Jun 12 13:52:14 lardman, does Qt have signals/slots for the female menstrual cycle? Jun 12 13:52:19 like the 770's timer iirc which couldn't even manage 24h Jun 12 13:52:33 lcuk: I thought that was like 28 days?! Jun 12 13:53:07 lardman, IT CAN BE AS LONG AS I SAY IT CAN BE! Jun 12 13:53:10 anyway any thoughts? Jun 12 13:53:26 when I asked about similar, isn't there the shell script "at" command Jun 12 13:53:36 but I heard it was not implemented on maemo Jun 12 13:53:44 well there's crond too Jun 12 13:53:49 I have in the past just had an app running Jun 12 13:54:00 with an icon in the thing near the clock Jun 12 13:54:20 and a sleep 1hr/check the date Jun 12 13:54:40 speaking of which, I need to fix liqcalendar Jun 12 13:54:40 yeah I guess I'll have to do something like that Jun 12 13:55:30 lardman, problem with that is Jun 12 13:55:36 if user closes it Jun 12 13:55:56 if they close it that's fine as it needs to be left running Jun 12 13:56:06 lardman: cron? Jun 12 13:56:07 that is the point Jun 12 13:56:07 and if they shut it down they obviously don't want the functionality Jun 12 13:56:25 fusi[n901]: yeah Jun 12 13:56:29 * lcuk would hope the functionality would be sustained Jun 12 13:56:36 just closing window Jun 12 13:56:44 this is a daemon Jun 12 13:56:52 so they would have to kill it explicitly Jun 12 13:56:53 then that is ok Jun 12 13:57:10 is this the windows/linux app? Jun 12 13:57:11 ah ye u said crond yer Jun 12 13:57:13 or specifically maemo Jun 12 13:57:31 the interesting point then becomes whether to start a single timer for each event, or to use some timer which is a factor of the desired timers Jun 12 13:57:55 id use asingle timer Jun 12 13:58:01 less resiurce Jun 12 13:58:03 lcuk: maemo Jun 12 13:58:27 but im not a Dr :p Jun 12 13:58:51 fusi[n901]: well I am, and I'm asking too :) Jun 12 13:59:24 hehe Jun 12 13:59:32 to use a single timer which is e.g. a daily (assuming I have both daily, weekly and monthly events) would make the logic more complex Jun 12 13:59:54 but that's trading off against the extra resource use of timer per event Jun 12 14:00:05 could wrap it Jun 12 14:00:11 probably best to go with the easiest case first Jun 12 14:00:23 kiss eh Jun 12 14:00:27 fusi[n901]: sure, but Qt probably does that already anyway Jun 12 14:00:50 fair point Jun 12 14:01:24 rightio Jun 12 14:01:42 time for me tocrack on with this oauth Jun 12 14:01:46 toodlepip Jun 12 14:01:53 cu :) Jun 12 14:03:04 hi guys Jun 12 14:03:31 does anyone know how to get the damn signond service running on the sbox env? Jun 12 14:31:31 ok i give up ... trying to develop for maemo absolutely sucks Jun 12 14:31:48 what a bunch of complete fucking idiots nokia are Jun 12 14:31:54 outty Jun 12 14:34:30 lol Jun 12 14:34:32 oh Jun 12 14:34:43 Well he's not tried developing for Meego yet Jun 12 14:34:58 and from what RST38h says Android is a step worse even than that Jun 12 14:42:04 I quite fancy a croissant Jun 12 14:42:12 slightly ot I know Jun 12 14:59:13 Hi. There's info missing in the maemo SDK install page - the scratchbox shell script also requires you to specify a path for scratchbox to be installed to. Jun 12 15:02:37 FIQ: it's a wiki, fix it :) Jun 12 15:34:00 Wacky. Jun 12 15:34:11 I just got a banner ad from nokia pointing me to a n900 on contract Jun 12 15:34:37 http://www.nokiadirect.co.uk/Pay-Monthly/sc521/p26078.htm Jun 12 15:35:24 :D Jun 12 15:35:55 I think it's a cockup, not reality though Jun 12 15:36:04 It does say in-stock on the page - but ... Jun 12 15:36:07 shame, I need to get luke a new phone soon Jun 12 15:36:21 wtf Jun 12 15:36:37 i hope it is a cockup Jun 12 15:36:54 bought this simfree only couple of months ago Jun 12 15:37:04 300quid Jun 12 15:37:13 and im on tmob Jun 12 15:37:19 and due an upgrade Jun 12 15:37:32 tried to get b4 but there were none anywhere Jun 12 15:38:00 took me ages to find one on theorder.co.uk as clearance Jun 12 15:38:51 why? Jun 12 15:39:01 mine cost the same Jun 12 15:39:05 £25/month Jun 12 15:39:10 on shitty tmobile Jun 12 15:39:32 It's not showing any more. Jun 12 15:39:38 On the nokia shop Jun 12 15:39:45 (not the nokia direct site) Jun 12 15:40:16 nokiadirect is a sort of frontend i guess Jun 12 15:41:17 hmm Jun 12 15:41:21 mmm Jun 12 15:41:27 just wondering, what is vdso exactly? Jun 12 15:41:41 the maemo SDK didn't work if i didn't put vdso32=0 as boot option Jun 12 15:41:45 a nasty infection i hear Jun 12 15:41:46 but what IS it? Jun 12 15:41:55 :p Jun 12 15:42:02 (x86_64, that is) Jun 12 15:42:06 nfi soz Jun 12 15:44:22 waaah dead batt Jun 12 15:44:32 o/ x Jun 12 16:31:18 Hm, trying to reflash my N900, but I'm gettitng the "Unable to enumerate USB buses!" error from flasher. I've blacklisted cdc_phonet and rmmoded it (since it was already loaded), but this doesn't seem to help. Are there any other possible causes for this message? Jun 12 16:31:54 you're root? Jun 12 16:31:57 Yup Jun 12 16:32:10 And you've plugged it directly in, not a hub? Jun 12 16:32:14 Some have reported issues Jun 12 16:32:16 Hm Jun 12 16:32:27 Directly plugged in, though it's plugged to a USB3 port, I just realised.. Jun 12 16:32:32 Let me try a USB2 one Jun 12 16:33:28 Nope, same message Jun 12 16:34:19 Nope, same message Jun 12 16:34:28 oops, up+enter in wrong window.. Jun 12 16:35:43 I assume you've googled the error? Jun 12 16:36:27 Yeah, I did. Only found references to the cdc_phonet module and libusb being outdated Jun 12 16:36:38 It seems my libusb is up-to-date at least Jun 12 16:36:43 Sorry - no great ideas - it's always just worked for me. Jun 12 16:37:04 You could post your n900 to me with a stamped addressed envelope, I'd flash it, and return it. :) Jun 12 16:37:40 I think I'll try flashing it from some other computer instead, that'd probably be cheaper.. :P Jun 12 16:42:46 <_trine> FireFly, I dont want to state the obvious but you have kept the 'u' key pressed when you boot the n900 havent you? Jun 12 16:42:57 I did Jun 12 16:43:28 <_trine> do you see the usb icon in the top righthand corner of the n900 Jun 12 16:43:53 Yep, seems to be there Jun 12 16:44:15 <_trine> well that means its waiting for the flasher Jun 12 16:44:58 Huh, apparently running flasher after it's in flasher-waiting mode seems to work Jun 12 16:45:04 Hopefully I didn't screw anything up Jun 12 16:45:22 <_trine> well that should be it Jun 12 16:45:39 <_trine> sudo /usr/bin/flasher-3.5 -F -f -R Jun 12 16:46:07 <_trine> or there is a different methos for using on a 64 bit computer Jun 12 16:46:13 <_trine> method* Jun 12 16:48:02 ~flash Jun 12 16:48:02 i heard flashing is http://wiki.maemo.org/Updating_the_tablet_firmware Jun 12 16:48:42 * _trine flashes but his zip gets stuck :P Jun 12 17:02:52 I'd like to know which funny fool started to call the content of a linux rootfs "firmware" Jun 12 17:03:52 Blurring the lines. Jun 12 17:04:40 <_trine> DocScrutinizer, probably people like me who flash routers Jun 12 17:04:47 indeed Jun 12 17:06:07 one of the criteria of firmware is that it's impossible to alter it by user except for using a special flasher(-device). Evidently the N900 can alter his own "firmware" without needing special means Jun 12 17:07:01 <_trine> well my routers are an halfway house in that respect Jun 12 17:07:36 <_trine> insomuch as you flash the firmware and it then creates rootfs_data Jun 12 17:07:51 I'd happily call NOLO and cal firmware code and config data Jun 12 17:09:20 maybe tht's been unparsable Jun 12 17:09:39 NOLO and cal I'd happily call firmware code and config data Jun 12 17:11:13 <_trine> well we haven't heard any screams of anguish so FireFly must have succeeded Jun 12 17:11:28 obviously cmt has a firmware by all metrics Jun 12 17:11:29 Indeed Jun 12 17:11:40 Thanks for the help btw Jun 12 17:11:46 <_trine> np Jun 12 17:12:59 <_trine> I only operate on extremely low level problems Jun 12 17:13:01 <_trine> :) Jun 12 17:13:12 and iirc our rootfs *has* firmware for WLAN and BT chip Jun 12 17:21:28 wow, the guy minting the title of that article was really ahead of his time regarding nomenclature ;-) >>Opler, Ascher: Fourth-Generation Software. In: Datamation. 13, Nr. 1, Januar 1967<< Jun 12 18:20:33 /msg thp Hello, i read on some google group and other obscur mailing list that you was trying to package pyapps for webos, does this app can be distributed by the hp webos store ? Jun 12 18:20:36 grrrr Jun 12 18:21:01 hehe :) Jun 12 18:21:02 Hello Jun 12 18:24:03 hey Jun 12 18:24:30 testing it over my NDS Jun 12 18:25:11 not so bad ... dev palm pré : 277,227409 euros Jun 12 18:28:09 can anyone tell me if i can shut off the automaticilly-checking-for-updates thing? Jun 12 18:28:12 it's really annoying Jun 12 18:28:39 I read about this Jun 12 18:28:46 apparently you cant, but you can change the interval Jun 12 18:29:57 gconftool -s --type int /apps/hildon/update-notifier/check_interval Jun 12 18:29:57 oh Jun 12 18:30:05 changing it to every century seems fair Jun 12 18:30:14 once every century* Jun 12 18:30:16 just remove the applet Jun 12 18:30:59 removing the applet disables the check Jun 12 18:32:05 and the applet is named...? Jun 12 18:37:14 FIQ: see customizing_maemo wikipage Jun 12 18:38:20 I think removing applets indiscriminately isn't recommended Jun 12 18:39:10 Well, I just incerased it Jun 12 18:39:20 you might face side effects you can't relate to the applet removal and you won't know how to deal with those Jun 12 18:39:36 the check time, i mean Jun 12 18:39:40 to 8640000 (didn't know it readed in minutes at first) Jun 12 18:43:41 please check the wiki page - there's some upper value that mustn't get exceeded Jun 12 18:48:15 i know it's an int, it is specified in the command Jun 12 18:48:33 and i take that as it is an 32-bit signed int Jun 12 18:48:45 and i seems to be correct, when i checked the wiki Jun 12 18:51:20 yeah, signed is one of the keywords, plus I seem to recall the applet and system blowing chunks on some arbitrary upper limit exceeded - I might be wrong Jun 12 18:53:07 there also might be issues this int being represented binary coded decimal somewhere, so sth like a max of 9999 for a value of bitsize sufficient for 32768... whatever, you'll see Jun 12 18:56:02 in tech speak we call this 4.5 digits Jun 12 19:13:49 * MohammadAG gives KDE a try, Gnome sucks on Ubuntu 11.04 Jun 12 19:14:43 Moo all Jun 12 19:16:55 also I love ubuntu forums, rm -rf ~/.gconf2/apps/whatever was posted as rm -rf ~/ .gconf Jun 12 19:17:11 luckily I noticed the space and CTRL^C'd quickly, I'm guessing I lost some stuff though Jun 12 19:17:16 moo RST38h Jun 12 19:17:37 nice advice! Jun 12 19:21:25 MohammadAG: how's KDE then? Jun 12 19:24:07 KDE is awesome Jun 12 19:24:33 only problem with KDE, they haven't fixed the KWin, Intel issue, so it won't run on my desktop :/ Jun 12 19:24:43 s/desktop/laptop/ Jun 12 19:24:43 hiemanshu meant: only problem with KDE, they haven't fixed the KWin, Intel issue, so it won't run on my laptop :/ Jun 12 19:39:33 lardman, seems fun to use Jun 12 19:39:42 transitions are quite neat Jun 12 19:43:25 does that require something to be installed? Jun 12 19:44:38 sudo apt-get install kubuntu-desktop Jun 12 19:45:26 is there any program on N900 which can encrypt my text file? Jun 12 19:48:21 encrypt like...? ROT-13? Jun 12 19:48:37 thanks MohammadAG Jun 12 19:50:18 andre__: something which can password protect the file. Jun 12 19:50:43 andre__: i want to save personal info in the text file like bank accnt numbers etc Jun 12 19:50:57 I remember that there was some tool that I once tested... hmm, what was the name... Jun 12 19:51:14 passwordsafe maybe? Jun 12 19:51:25 andre__: pySafe? Jun 12 19:51:29 hmm, not exactly what you are looking for Jun 12 19:52:38 there's a built-in program named gpg Jun 12 19:54:57 psycho_oreos: ah, gpg would do it. thanks for the reminder Jun 12 19:55:04 nw Jun 12 19:56:22 uh, gpg is built in? Jun 12 19:56:55 afaik it is, its required at least by apt-get Jun 12 19:57:24 crap. and I never realized. sigh :-( Jun 12 19:57:38 andre__: me too :) Jun 12 19:57:48 * andre__ closes https://bugs.maemo.org/show_bug.cgi?id=4192 Jun 12 19:57:49 04Bug 4192: GPG/PGP support Jun 12 19:57:55 we all learn someting new Jun 12 19:58:11 ah damn, that ticket is only about email. Jun 12 19:58:14 * andre__ shuts up Jun 12 19:59:14 I'd guess so, for apt at least Jun 12 20:00:19 lol Jun 12 20:01:37 * lardman restarts to see the kde goodness, bbl Jun 12 20:28:32 MohammadAG: stay away from buntkuh, it's for lusers Jun 12 20:29:30 real men don't use buntkuh, hell they refuse to even touch it Jun 12 20:34:47 :((( Jun 12 20:37:57 GAN900: what do you expect when a billionaire "buys" (read hijacks) linux to form it to sth where he's the emperor? Jun 12 20:39:45 DocScrutinizer: Is "buntkuh" some form of 12 year old's "humorous" slagging off of Ubuntu? Jun 12 20:40:07 >>of course each fresh CD-RW you buy at any shop now comes with a install copy of buntkuh, but we're not forcing anyone to anything, you're still free to use the distro you like<< Jun 12 20:41:03 Jaffa: is it your age and the unwillingness to wear glasses that makes you think you need to insist in my age being 12? Jun 12 20:42:07 Jaffa: no, it's just a common error my auto spellchecker does each time I try to write buntkuh Jun 12 20:42:13 see, did it again Jun 12 20:45:59 DocScrutinizer: I didn't say you were 12, I asked if "buntkuh" was the sort of thing a 12 year old would come up with when trying to rearrange the letters of Ubuntu to be close to "but[t] cunt". Jun 12 20:47:00 buntkuh is an unusual other German word for fleckvieh, a checkered cow Jun 12 20:48:20 also there's the idiom of "known like a colored cow" in german, which is "bunte kuh" Jun 12 20:48:45 Ah, I see. Jun 12 20:50:04 so you see my spellchecker has quite a bit if wit Jun 12 20:50:12 of* Jun 12 20:52:11 especially since there's the notorious Kubuntu which sounds like "Kuh bunt (uh)" here Jun 12 20:56:01 whatever... http://xkcd.com/424/ Jun 12 20:59:19 and anyway, google buntkuh, google fleckvieh is your friend Jun 12 21:01:49 DocScrutinizer, sorry, no other sane systems Jun 12 21:04:17 awesome forum software replacing *each* "ass" by *** X-P http://www.foonews.info/de-sci-biologie/2851718-buntkuh.html Jun 12 21:07:12 hahaha Jun 12 21:13:16 hello world Jun 12 21:13:17 DocScrutinizer, that is cl***ic Jun 12 21:13:26 * timeless is getting to love BlackBerry Jun 12 21:13:34 or in the terms of other software: that is clbuttic Jun 12 21:13:49 timeless, do you have a raised eyebrow? Jun 12 21:13:57 lcuk: makes for some h***le when reading Jun 12 21:14:05 Unlike my n8, there's a Google Mobile App for BlackBerry (there used to be one for Symbian, but I think Google dropped it) Jun 12 21:14:14 lcuk: why do you ask? Jun 12 21:14:55 there used to be one for j2me too Jun 12 21:14:56 did you not expect a polished experience? Jun 12 21:15:05 lcuk: oh Jun 12 21:15:10 i had no expectations to be honest Jun 12 21:15:25 i mean, i had a basic hope "it has to be better than Symbian" Jun 12 21:15:29 good approach Jun 12 21:15:56 * timeless didn't pay *any* attn to rim news until after joining Jun 12 21:16:35 most things are much better here Jun 12 21:16:54 unfortunately i've found a couple of apps which don't seem quite interested in dying and i'm not quite sure yet how to kill them Jun 12 21:16:59 but i'm sure i'll figure it out Jun 12 21:19:56 oh, unlike my n8, the BlackBerry Torch has a green button that one can use for search in google apps... Jun 12 21:20:18 * timeless chuckles @nokia's lack of a green button and how that totally ruined google's clever ui for voice search) Jun 12 21:24:26 green button? Jun 12 21:24:33 buttons are so yesterday Jun 12 21:26:20 Yeah - this is the interface of the future. He's writing an email. http://www.youtube.com/watch?v=UYFDYX4i2EY Jun 12 21:31:10 grr Jun 12 21:32:01 LOL, maybe for mobile this interface is better? http://www.youtube.com/watch?v=WcaslP9ODAk&feature=related Jun 12 21:32:39 anyone know why i'm getting a 1% fee while trying to send money from paypal[finland] to paypal[USA/Canada]? Jun 12 21:32:45 SpeedEvil: the one you suggested is a bit hard to use e.g. in subway ;-) Jun 12 21:33:10 kerio: i'll have to find a picture of the ui at some point, or take a photo, i might actually have a photo of it in my n8 gallery on facebook Jun 12 21:33:16 if you haven't looked at the gallery, please do :) Jun 12 21:33:17 timeless: currency conversion? Jun 12 21:33:51 doc: nope, i have currency in EUR and USD and my recipient accounts can all take USD and i set up the CA one to take EUR Jun 12 21:34:11 paypal points me to https://www.paypal.com/fi/cgi-bin/webscr?cmd=_display-fees Jun 12 21:34:18 but there's no sign of a 1% fee anywhere in it Jun 12 21:34:19 so put it away with tag "paypal sucks" Jun 12 21:34:27 DocScrutinizer: Even ideal for multitouch Jun 12 21:36:08 timeless: you know paypal can freeze your account any time, as long as they like, and reject all your complaints with "please sort it out with your neighbour" Jun 12 21:36:25 i know Jun 12 21:36:29 so far i haven't had a problem w/ it Jun 12 21:36:36 and i've managed >40k USD w/ it Jun 12 21:36:48 (downpayment on my Finnish apartment) Jun 12 21:37:56 well, you're lucky Jun 12 21:38:07 can happen to everyone Jun 12 21:38:28 and there's basically nuttin you can do against it Jun 12 21:39:10 they can steal your money, ruin your business, and laugh at your face while doing that - any time they like Jun 12 21:39:20 I'm not a business Jun 12 21:39:35 Doing business using PayPal would be a different story Jun 12 21:39:49 the landlord of your appartment in Finland obviously been though Jun 12 21:39:57 ? Jun 12 21:40:15 I own the property, surely that makes me my own landlord? Jun 12 21:40:21 But I'd rather be screwed by PayPal than each of my Banks in each of the countries in which I've resided Jun 12 21:40:24 ok, whatever Jun 12 21:40:40 At least PayPal speaks English Jun 12 21:40:47 sure Jun 12 21:40:50 and is mostly honest and has reasonable documentation Jun 12 21:40:56 even its horror stories are public! Jun 12 21:41:03 the same can not be said for my Finnish banks Jun 12 21:41:03 yeah Jun 12 21:41:31 which have been incredibly dishonest and whose dirty laundry is either private or enciphered in an indecipherable language for which no particularly good translation tools exist :) Jun 12 21:42:02 I'd not let my friggin paypal account grow to any 4 digit amount anyway Jun 12 21:44:14 the interest rate on a US based PayPal account (when established as a Money Market) was considerably better than anything I could get at a bank Jun 12 21:44:14 paypal is too big, with too few real human beings involved into the process, and not bound to any jurisdiction that would help me out when the IT goes mad Jun 12 21:44:27 and its fee structure was much much much better, as was my abilitity to use it as a liquid account. Jun 12 21:44:47 Heck, I could have gotten a credit card for it to enable me to draw its funds directly. Jun 12 21:45:41 that's all fine as long as it works. If something fails you're screwed Jun 12 21:46:00 * timeless shrugs Jun 12 21:46:08 placing all your eggs in one basket is never a good idea Jun 12 21:46:09 try to get back your 1% Jun 12 21:46:17 my eggs are spread across a number of baskets Jun 12 21:46:17 try to get an explanation about it Jun 12 21:46:39 yeah, i just set a "message" asking about it Jun 12 21:46:47 you'll get text templates forever Jun 12 21:47:15 "please read https://www.paypal.com/fi/cgi-bin/webscr?cmd=_display-fees" Jun 12 21:47:17 we'll see Jun 12 21:47:24 * timeless sighs Jun 12 21:47:36 it turns out i was trying to confirm the wrong bank account :o Jun 12 21:47:37 in other news Jun 12 21:50:25 KDE isn't as bad as I thought it'd be Jun 12 21:51:04 MohammadAG: when was the last time you used it, what did you expect, why are you trying it, and how's it doing? Jun 12 21:51:31 last time I used it, umm, not sure, kubuntu 9.10 or 8.10 I'd say Jun 12 21:51:48 I expected a slow UI since I thought it was bloated Jun 12 21:52:11 I'm trying cause Unity isn't good as a desktop, at least for something that's not a netbook Jun 12 21:52:21 last major slowdown was KDE4, after that computers have gotten faster Jun 12 21:52:30 it's going to stay as my default desktop manager for quite a while Jun 12 21:56:01 ShadowJK: heh Jun 12 21:56:56 this was the last one I tried http://www.ubuntugeek.com/images/kde4.png Jun 12 21:57:00 so yeah, I guess it was KDE 4 Jun 12 21:57:28 I actually tried openSUSE as a kid and didn't know KDE/Gnome stuff, I remember I liked it Jun 12 21:58:42 you must be pretty young Jun 12 21:58:56 KDE4 been a rather nasty complete nuke of old KDE, then rebuild everything, which hasn't been done on same level of professionally like KDE1..3 Jun 12 21:59:55 last time I tried KDE was in 1999, when dragging windows around corrupted parts of the wallpaper Jun 12 21:59:57 KDE4 still sucks for me, compared to KDE3 Jun 12 22:00:10 Choom, that sounds like KDE4.0 actually.. Jun 12 22:00:27 kde4.5foo actually Jun 12 22:00:28 whats the keyb shortcut to detach from a screen again? Jun 12 22:00:30 Also, scrolling in the konsole (terminal application) corrupted glyps all over the screen :-) Jun 12 22:00:42 err, 4.3.5 Jun 12 22:01:27 ooh, wasn't for me Jun 12 22:01:27 fusi[n901]: ctrl-a d Jun 12 22:02:15 ShadowJK: 1999 sounds like KDE1.0 beta sth Jun 12 22:02:29 or like KDE4 yeah Jun 12 22:02:52 corruption when moving windows sounds like KDE4 Jun 12 22:02:53 :P Jun 12 22:02:57 i guessed it but thankyou :) Jun 12 22:03:39 KDE4.3 still occasionally corrupting my taskbar here, when switching windows Jun 12 22:04:05 ~lart KDE4 Jun 12 22:04:05 * infobot judo chops KDE4 Jun 12 22:04:28 KDE 4.3? Jun 12 22:04:33 DocScrutinizer: get the latest :P Jun 12 22:04:34 plasma, phonon, a pile of other useless crap Jun 12 22:04:48 well atleast 4.5 Jun 12 22:05:24 urgh, stupid mouse Jun 12 22:08:02 funny enough I osted a shortstory ranting fairy tale about KDE, on another freenode chan just some 2h ago. Alas in German Jun 12 22:08:09 posted* Jun 12 22:09:15 hiemanshu: I'd have preferred to stay with KDE3 until they reach some state of maturity with that friggin kde4 effort Jun 12 22:09:30 DocScrutinizer: Jun 12 22:09:36 DocScrutinizer: KDE 4.6 is pretty mature Jun 12 22:09:49 *much* *much* better than 4.3 Jun 12 22:10:11 Ubuntu is back to not resuming Jun 12 22:10:13 Kill me. Jun 12 22:10:43 * hiemanshu puts a generade in GAN900's mouth, and hides behind a cover Jun 12 22:10:49 grenade* Jun 12 22:12:27 hiemanshu: in quite some aspects this whole kde4 story reminds me on maemo->meego Jun 12 22:12:48 DocScrutinizer: same with GNOME 2.32 to 3 Jun 12 22:17:08 Didn't gerbick already leave once? Jun 12 22:18:43 ? Jun 12 22:21:11 * DocScrutinizer honestly considers switching to some LTS distro, SLES or whatever Jun 12 22:21:56 I don't need compiz, you know Jun 12 22:22:18 I want my uptime exceed one year Jun 12 22:22:42 shit has to work, not to deliver eyecandy Jun 12 22:23:44 DocScrutinizer: CentOS 5 Jun 12 22:23:52 DocScrutinizer: KDE 3.5.4 Jun 12 22:25:01 there's been a time ~2years ago where I was able to switch off the touchpad of this friggin laptop by clicking on a script icon I made. 3 years ago synaptics applet worked and disabled touchpad automatically when starting typing. Now it's fsckdup Jun 12 22:25:17 DocScrutinizer: We intend to support CentOS 5 until Mar 31st, 2014 Jun 12 22:25:23 so another few years Jun 12 22:26:00 sounds like I'd love it then Jun 12 22:28:01 alas it means a complete "restart" on all my desktop environment Jun 12 22:28:38 DocScrutinizer: and there are qt 4.6/7 packages too (named differently so they dont interfere with default ones) Jun 12 22:28:41 sth I tried to avoid as much as possible, which gave me the uncomfortable situation I'm in now Jun 12 22:29:36 figure: there are custom kbd-shortcuts I defined on KDE2 when it been fresh Jun 12 22:29:54 I'm still using those Jun 12 22:30:58 it's not the 30min to install a fresh OS, it's the weeks to do all those little tweaks to your environment that drives me mad Jun 12 22:31:44 I should've changed to centOS when they forced me to KDE4 Jun 12 22:31:46 if you dont distro hop, that really shouldn't be an issue Jun 12 22:32:22 as KDE4 did a decent job on nuking 80% of those tweaks and hacks Jun 12 22:32:28 well I built the packages for Fedora myself, and used KDE 3 for a while Jun 12 22:34:17 I'm still unsure if khotkeys for example is a legacy from my kde3 install or meanwhile supported on kde4 as well Jun 12 23:02:21 So I downloaded Maemo SDK the other day for compiling things for Maemo. I sometimes compiles things at desktop, and it usually weorks fine. Now, I tried to compile node.js for Maemo, with following error: sb_gcc_wrapper (g++): /scratchbox/compilers/cs2007q3-glibc2.5-arm7/bin/sbox-arm-none-linux-gnueabi-g++: No such file or directory Jun 12 23:02:30 Am I doing something wrong? Jun 12 23:02:46 works* Jun 12 23:03:04 you don't usually compile .js Jun 12 23:03:08 It happens in the make step of it Jun 12 23:03:15 node.js is a framework... Jun 12 23:03:27 http://nodejs.org/ Jun 12 23:03:52 ah Jun 12 23:06:35 Also, the SDK is shipping with some really outdated version of python (2.3.4), how come? Jun 12 23:07:35 Hm, weird Jun 12 23:08:00 Tried to tab into that, and the file for sure exists Jun 12 23:09:59 I think there's sth weird about trying to compile .js, no matter what it actually is Jun 12 23:10:25 >.> Jun 12 23:10:38 Did you check the link? Jun 12 23:10:45 Maybe he meant that hte software is called "dot js", not that he was trying to compile a file ending with ".js" Jun 12 23:10:46 Or what i told Jun 12 23:10:51 indeed Jun 12 23:11:00 mhm Jun 12 23:11:20 Anyway, the file indeed exists so why does make say that it doesn't? Jun 12 23:12:55 well, obviously in sb_gcc_wrapper there exists a problem accessing the file scratchbox/compilers/cs2007q3-glibc2.5-arm7/bin/sbox-arm-none-linux-gnueabi-g++ in the way it tries to do. So the error msg may be slightly off, that's not unseen Jun 12 23:14:58 hmmm Jun 12 23:15:02 it seems to be a symlink Jun 12 23:15:09 to something non-existent Jun 12 23:15:15 that could be the problem as well Jun 12 23:15:16 Generally I have no clue what's going on when using scratchbox Jun 12 23:16:00 :nod: a stale symlink probably won't work for any purpose Jun 12 23:16:24 let's see Jun 12 23:16:44 the symlink point to a relative place that it takes for granted is in the PATH, but isn't Jun 12 23:16:56 i found a binary file in the same path for where it points to Jun 12 23:17:10 that's probably it, but... why does it even do that? Jun 12 23:17:12 what got a symlink to deal with $PATH? Jun 12 23:17:27 lrwxrwxrwx 1 root root 26 Jan 11 2010 /scratchbox/compilers/cs2007q3-glibc2.5-arm7/bin/sbox-arm-none-linux-gnueabi-g++ -> arm-none-linux-gnueabi-g++ Jun 12 23:17:34 probably that Jun 12 23:20:21 resolving a symlink the OS doesn't look for $PATH Jun 12 23:22:11 if there's no real file at the location the either relative or fqn symlink points to, then there happened sth odd either to the symlink on creation time, or to the dest file after symlink got created Jun 12 23:24:07 well, I've never used eihter scratchbox or maemo sdk before, the problem could be at my side Jun 12 23:24:27 but well, I followed the instructions per wiki page, so I don't know why it happens.. Jun 12 23:24:28 probably sth during installation went wrong Jun 12 23:26:19 hmm Jun 12 23:26:35 now I actually tried running it from command line just to see Jun 12 23:26:39 jr@halley:~> ll /scratchbox/compilers/cs2007q3-glibc2.5-arm7/bin/sbox-arm-none-linux-gnueabi-g++ Jun 12 23:26:41 then it seems to have worked Jun 12 23:26:41 lrwxrwxrwx 1 root root 26 16. Mai 2010 /scratchbox/compilers/cs2007q3-glibc2.5-arm7/bin/sbox-arm-none-linux-gnueabi-g++ -> arm-none-linux-gnueabi-g++ Jun 12 23:27:22 so I probably just mis-interpreted the point Jun 12 23:28:00 So, it's not the problem, it's just the make that fail for some unknown reason Jun 12 23:28:28 jr@halley:~> ll /scratchbox/compilers/cs2007q3-glibc2.5-arm7/bin/arm-none-linux-gnueabi-g++ Jun 12 23:28:30 -rwxr-xr-x 2 root root 181088 11. Jan 2010 /scratchbox/compilers/cs2007q3-glibc2.5-arm7/bin/arm-none-linux-gnueabi-g++ Jun 12 23:29:18 indeed it looks the same here Jun 12 23:31:55 pfrrrt /scratchbox/compilers/bin/sb_gcc_wrapper is an ELF Jun 12 23:32:22 NFC sorry Jun 12 23:33:00 I guess it's SB's way to tell you "don't try to compile javascript" or whatever ;-) Jun 12 23:33:30 (no, I didn't check that link) Jun 12 23:33:54 I suggest a test with "hello world" Jun 12 23:36:50 I vaguely recall somebody trying to build something on buildhost that was like converting python script to c to machine code using something written in python. It failed, and I wasn't amazed it did Jun 12 23:37:44 crosscompiling is a bit special sometimes Jun 12 23:37:47 it's not JS, it's a JS engine ;_; Jun 12 23:37:52 whatever Jun 12 23:38:12 what's the source language? Jun 12 23:39:10 C++ Jun 12 23:39:18 hmm, should work Jun 12 23:40:26 as mentioned above, make sure the environment is basically functional, by testing a "hello world" build Jun 12 23:41:23 then maybe ask for help of somebody feeling "at home" in SB, like MohammadAG ;-D Jun 12 23:42:52 tried to compile hello world in C++, that worked Jun 12 23:48:44 hmm Jun 12 23:50:37 tried strace'ing this friggin wrapper? Jun 12 23:52:29 wait, isn't SB compiler running in a changeroot? so maybe there's really no file like /scratchbox/compilers/cs2007q3-glibc2.5-arm7/bin/sbox-arm-none-linux-gnueabi-g++ Jun 12 23:53:17 well, I've never used SB or maemo SDK before, so... well, I don't know Jun 12 23:53:18 NFC why this wouldn't show up when compiling "hello world" Jun 12 23:54:22 you "logged in" to SB? Jun 12 23:54:56 I've been logged into it all the time Jun 12 23:55:15 sorry, I give up Jun 12 23:55:20 MohammadAG: ping Jun 12 23:55:51 (SB noob here too) Jun 12 23:55:59 heh Jun 12 23:57:06 I even had to look for my post-it note where I noted how to log in to SB Jun 12 23:57:49 as you can see from my ls I posted above, it's been >12months since I last touched that beast Jun 13 00:02:51 what gets used for meego development, in place of scratchbox? Jun 13 00:04:12 hey flailingmonkey - long time no post from you :-) Jun 13 00:04:16 so FIQ|n900 you did /scractchbox/login before trying the compile? Jun 13 00:04:25 yes Jun 13 00:04:33 flailingmonkey: meego sdk aka qt-creator Jun 13 00:04:48 as it would be compiled to my own system in other cases :p Jun 13 00:04:56 ofc :D Jun 13 00:04:58 (if i don't do something very scary) Jun 13 00:05:11 flailingmonkey: I *think* meego is using OBS which is some suse build thing. for buildserver, nfi about local build Jun 13 00:05:19 sb does the scary stuff for you, wich is why it's scray ;) Jun 13 00:05:26 DocScrutinizer: hey, yeah :) school took over Jun 13 00:05:44 sb > madde Jun 13 00:05:54 oh hai MohammadAG Jun 13 00:06:13 hai Jun 13 00:06:23 So I downloaded Maemo SDK the other day for compiling things for Maemo. I sometimes compiles things at desktop, and it usually weorks fine. Now, I tried to compile node.js for Maemo, with following error: sb_gcc_wrapper (g++): /scratchbox/compilers/cs2007q3-glibc2.5-arm7/bin/sbox-arm-none-linux-gnueabi-g++: No such file or directory Jun 13 00:06:32 DocScrutinizer: oh right, OBS. I just hope its a major improvement from SB Jun 13 00:06:47 it's not imo Jun 13 00:07:14 FIQ|n900, sudo /etc/init.d/scratchbox-core start Jun 13 00:07:26 it is started Jun 13 00:07:35 i'm logged into scratchbox and all Jun 13 00:07:50 doesn't matter, I have to do that even if login works Jun 13 00:08:06 ease of development (as in not having to spend hours to get the tools just working at all) is always a huge influencer for attracting devs. too bad it seems to be very difficult to do :p Jun 13 00:08:27 MohammadAG: how would you tell you did? Jun 13 00:08:29 I installed sb when I was a noob Jun 13 00:08:43 I couldn't install OBS, instructions are a nightmare Jun 13 00:08:57 MohammadAG: is there some `mount` or other cmd showing of init.d/sb-core been started? Jun 13 00:09:10 uh, wait a minute, i don't even have a scratchbox-core daemon there (or in where my architecture actually places daemons as well) Jun 13 00:09:28 sbctl or something Jun 13 00:09:41 on the N900 so not sure what it's called Jun 13 00:09:47 but it's on the host system Jun 13 00:09:56 sbox_ctrl I think Jun 13 00:09:57 it's generally better to diagnose first, rather than to suggest fixes Jun 13 00:10:00 :-) Jun 13 00:10:23 I'm using arch, in which daemons is placed in /etc/rc.d but i don't have any SB core there Jun 13 00:11:06 well, maybe that's first trail of the bugger ;-) Jun 13 00:11:09 FIQ|n900: only because arch normally places stuff there, are you sure sb installer didn't put it elsewhere? :D Jun 13 00:11:21 I guess SB isn't meant to get installed on arch Jun 13 00:11:30 not sure about arch, I used debs Jun 13 00:11:32 merlin1991: indeed Jun 13 00:11:45 afaik SB is for "debian based systems" Jun 13 00:11:48 there is SB for arch in repositories Jun 13 00:12:06 nfc Jun 13 00:12:16 I'm the noob here :-P Jun 13 00:12:35 but I just used the shellscript to make sure it installed something that worked... but it didn't, i guess Jun 13 00:12:36 FIQ|n900: Jun 13 00:12:44 sudo /scratchbox/sbin/sbox_ctl start Jun 13 00:13:01 according to http://wiki.maemo.org/Documentation/Maemo_5_Final_SDK_Installation#Starting_Scratchbox_on_non-Debian_based_systems Jun 13 00:13:24 arch? /etc/rc.d/ Jun 13 00:13:31 that worked Jun 13 00:13:46 Hurrian, yeah, i looked there, no scratchbox_ctrl Jun 13 00:13:59 but merlin1991s thing worked Jun 13 00:14:13 less /scratchbox/sbin/sbox_ctl for LULZ Jun 13 00:14:26 * merlin1991 would like to, but can't Jun 13 00:14:46 stupid us based supplier for the new motherboard Jun 13 00:15:28 I suggested `mount` for a reason Jun 13 00:15:59 hm, nope, still failing Jun 13 00:16:05 if sb_ctl start been executed, there should be quite a number of unique bindmounts Jun 13 00:18:39 FIQ|n900: do you see those SB bindmounts in your `mount` output - on *host* PC, not in SB terminal Jun 13 00:19:12 nope, it didn't seem to change anything Jun 13 00:19:21 :nod: Jun 13 00:20:54 scratchbox/sbin/sbox_ctl should do those bindmounts - of course you need to run it outside of SB, and prior to login Jun 13 00:21:54 the bindmounts can't work from inside SB, they probably also will fail when not run as root Jun 13 00:22:41 that's why sudo /scratchbox/sbin/sbox_ctl start Jun 13 00:22:55 that's what i did, outside scratchbox Jun 13 00:23:13 face it, sb for maemo isn't meant for arch :D Jun 13 00:23:26 and no new mounted "volumes" when you issue a `mount` right after that? Jun 13 00:23:58 no errors thrown? Jun 13 00:24:12 just nuttin sounds a bit odd Jun 13 00:25:20 hm Jun 13 00:25:26 hehe Jun 13 00:25:33 there are new mountpoints there Jun 13 00:25:38 aaaah Jun 13 00:25:53 (i runned df -h before and it didn't show anything more than the usual) Jun 13 00:26:16 df isn't supposed to show bindmounts? Jun 13 00:26:25 * FIQ|n900 dunno Jun 13 00:26:30 yes Jun 13 00:26:32 But well, they're mounted Jun 13 00:26:33 that'S why I suggested `mount` Jun 13 00:26:38 df show free disk space Jun 13 00:26:44 bindmounts have no affect on space Jun 13 00:26:52 Indeed Jun 13 00:27:06 I'm tired (as stated before), i guess Jun 13 00:27:21 Anyway, so there are bindmounts Jun 13 00:27:39 so log in Jun 13 00:28:01 MohammadAG: could you pastebin something like `mount | grep scratchbox` so FIQ can compare? Jun 13 00:29:13 Still, it fails with the compile because of the same as before Jun 13 00:29:40 http://paste.debian.net/119659/ Jun 13 00:29:43 are you in the x86 or the fremantle target? Jun 13 00:29:50 also did you install the nokia binaries? Jun 13 00:30:25 http://paste.pocoo.org/show/405336 Jun 13 00:30:35 I did Jun 13 00:30:43 @ merlin1991 Jun 13 00:30:52 and, i'm in FREMANTLE_ARMEL Jun 13 00:31:38 * merlin1991 is out of ideas Jun 13 00:32:03 hmm Jun 13 00:32:27 why do DocScrutinizer have 2 sets of bindmounts, one for root, one for normal user, and i just one? Jun 13 00:32:48 Pretty sure that's irrelevant, just wondering Jun 13 00:32:49 I was just wondering as well Jun 13 00:32:58 o.O Jun 13 00:33:18 I bet because the sb debian installer runs it as a service under root, and on logon runs the script again for the user Jun 13 00:33:24 looks like some weird bug in `mount` Jun 13 00:33:45 I didn't log in Jun 13 00:33:52 see my pastebin Jun 13 00:33:53 I think you did Jun 13 00:34:07 on logon as in log into user Jun 13 00:34:22 system user, not sb user Jun 13 00:36:16 http://paste.debian.net/119660/ Jun 13 00:37:26 Oh, by the way, why is an outdated version of Python provided in the SDK? Jun 13 00:37:31 python 2.3.4 Jun 13 00:38:32 hmm Jun 13 00:38:42 i wonder Jun 13 00:39:03 aaah, SB users root and jr Jun 13 00:39:07 yeah Jun 13 00:39:15 and user maybe as well Jun 13 00:39:20 maybe I should try to install the scratch provided in AUR Jun 13 00:39:33 s/scratch/scratchbox/ Jun 13 00:39:33 FIQ|n900 meant: maybe I should try to install the scratchbox provided in AUR Jun 13 00:39:45 and reinstall maemo SDK Jun 13 00:39:54 but i'm pretty sure nothing will improve tbh Jun 13 00:40:04 FIQ|n900: I created a user in SB, called jr Jun 13 00:40:09 you don't need to Jun 13 00:42:50 FIQ|n900: (python) I think python is the version available when maemo SB been "built" - you could update it from inside SB Jun 13 00:47:37 FIQ|n900: I meanwhile checked that nodejs thing's page, sounds nice Jun 13 00:48:48 though I still fail to figure a real usecase for it on N900 ;-) Jun 13 00:52:58 it's not the end of the world if i don't manage to get it to compile... but as far as i see, it seems that the wrapper just doesn't work - and that it will give other things problems as well Jun 13 00:53:14 but i want it! Jun 13 00:55:35 nodejs is nice for doing things through callbacks rather than threads just sitting and waiting around, "evented I/O" Jun 13 01:02:14 i freaking love my n900 Jun 13 01:02:54 i need one badly Jun 13 01:03:09 D: Jun 13 01:03:14 first one got stolen Jun 13 01:03:20 theyre really good :p Jun 13 01:03:23 heh Jun 13 01:03:32 indeed Jun 13 01:03:44 oh nhoes Jun 13 01:03:54 that sucks dood Jun 13 01:04:13 bastards Jun 13 01:04:29 :) Jun 13 01:04:33 :( Jun 13 01:04:35 gonna b hard to get onethese day Jun 13 01:04:52 i only found mine thru clearance sale on theorder.co.uk Jun 13 01:04:54 i've found a few used ones Jun 13 01:05:00 300 reddies tho Jun 13 01:05:05 all had problems, still searching for one Jun 13 01:05:11 D: Jun 13 01:05:18 amazon has supply of them Jun 13 01:05:26 $$$$ Jun 13 01:05:38 oh u mean in us Jun 13 01:05:43 at what price ? Jun 13 01:05:45 where u at user0 Jun 13 01:05:52 usa? Jun 13 01:06:33 ah Jun 13 01:06:37 mm Jun 13 01:06:58 is price a factor Jun 13 01:07:13 yes ofcourse Jun 13 01:07:27 you could always steal one.. Jun 13 01:07:31 outside the us, but shipping shouldnt cost much Jun 13 01:08:12 try looking on theorder.co.uk Jun 13 01:08:21 they might still have some Jun 13 01:08:40 ur in the eu ye so they will prolly ship Jun 13 01:08:55 i must go smoke this thing now Jun 13 01:09:04 tally bai and gl o/ x Jun 13 01:11:16 it was listed at $400 USD Jun 13 01:13:15 >>Some of the Nokia applications shipped with the final SDK use a hard coded path for user home directory which presents a problem since the default username on the device differs from the username on the developer’s machine.<< (from http://wiki.maemo.org/Documentation/Maemo_5_Final_SDK_Installation#Upgrading_from_Maemo_5_Beta2_SDK ) Jun 13 01:13:43 * DocScrutinizer just wonders if this might have made some devels @ Nokia start to think about their cncept Jun 13 01:14:07 hardcoded usernames, omfg Jun 13 01:15:00 maybe we could also get hardcoded allowable serial # of device? Jun 13 01:15:45 hardcoded IMEI maybe, hardcoded kbd layout - there are lots of nice things you could hardcode Jun 13 01:18:11 hardcoded IMEI :D Jun 13 01:43:55 hey, you made me touch that whole stuff again, just to see how hard it can get to get sth running Jun 13 01:44:07 just about to download the nokia blobs Jun 13 01:50:10 nice Jun 13 01:50:16 good luck to you with that DocScrutinizer :p Jun 13 01:55:28 hehe Jun 13 01:59:51 wondering what to start to put this Xephyr thing to some life and purpose Jun 13 02:07:55 meh, this took some time to set up the friggin localizations Jun 13 02:14:04 YEEEEHAAAAAAA!!!! tracker eating my laptop CPU :-P I FEEL AT HOME X-P Jun 13 02:14:59 trackerd[12713]: GLIB CRITICAL ** Tracker - Could not open directory 'file:///home/jr/MyDocs/.camera': No such file or directory Jun 13 02:15:00 Initializing tracker-extract... Jun 13 02:16:13 damn, that's indeed amazing, running maemo in Xephyr - should've done that before ;-P Jun 13 02:21:37 wdgt_va_24h_time X-P Jun 13 02:22:28 for that I had to go thru 20min of localization installs? :-D Jun 13 02:37:05 docscrutinizer, using cordia? Jun 13 02:37:37 what's cordia? Jun 13 02:37:56 duh, that hildon-on-meego thing? Jun 13 02:38:00 yeah Jun 13 02:38:21 nah, running "maemo" in Xephyr/SB on my laptop Jun 13 02:39:01 just wondering why there's "not enough free memory to install application" xchat, in HAM Jun 13 02:39:22 I guess /opt isn't properly linked Jun 13 02:39:25 all the localization strings were fine when i installed Maemo 5 Scratchbox Target Jun 13 02:39:45 or the x86 pkg of xchat not properly optified, or whatever Jun 13 02:40:10 did you separate usr or home? Jun 13 02:40:24 scratchbox is bitchy, had to redo my system for it Jun 13 02:40:25 switching system lang to Deutsch gave me all the nice wdgt_foo_bar labels everywhere Jun 13 02:41:21 I didn't separate anything yet, just an af-sb-init start or what it's called Jun 13 02:41:27 ran* Jun 13 02:42:14 I should try to install CSSU ;-P Jun 13 02:42:50 ctl-shift-X doesn't work for xterm Jun 13 02:43:05 as Xephyr grabs ctrl-shift :-P **** ENDING LOGGING AT Mon Jun 13 02:59:57 2011