**** BEGIN LOGGING AT Sun Jul 12 02:59:57 2009 Jul 12 04:20:23 I noticed the latest gta01 kernel from shr-unstable downloads is from before mrmoku's email about OABI being disabled. Could someone post a new build with CONFIG_OABI_COMPAT enabled when they have time? (no rush, I have a working kernel, but this might help others) Jul 12 04:22:02 ( gps/gllin on gta01 requires OABI ) Jul 12 06:18:43 mrmoku|a`: probably you just need to trigger a kernel rebuild for gta01? Jul 12 07:38:19 tmzt: yep Jul 12 07:42:38 hello Jul 12 07:42:40 good Jul 12 07:42:49 I've been looking at your code Jul 12 07:42:52 looks good Jul 12 07:42:56 thanks :D Jul 12 07:43:07 there are some temporary nastinesses to get rid of still Jul 12 07:44:30 yeah Jul 12 07:44:49 I thought one of the reasons for drm was to allow fbdev to be a client Jul 12 07:45:02 it should be able to share the front buffer Jul 12 07:46:00 fbdev kind of becomes a "second-class citizen", but otherwise yes Jul 12 07:47:16 normally with KMS, you only allocate just the right amount of memory to make the kernel's framebuffer console work. in this work, we allocated about 4Mb (half of Glamo's VRAM), so that (hopefully) a non-KMS-aware DDX can still have offscreen pixmaps and acceleration Jul 12 07:47:33 what's the issue with lcd controller? Jul 12 07:47:53 then there can be a kernel option which you select if you *know* you're going to use a KMS-aware DDX, in which case KMS gets all the VRAM Jul 12 07:47:55 ah, okay Jul 12 07:47:57 hmm.. what issue? Jul 12 07:48:18 your latest commits Jul 12 07:48:40 disabling/ebabling the lcd pipe, clock, lcm, etc. Jul 12 07:48:43 I see Jul 12 07:49:04 ah, that's just to restore the settings on resume (the LCD engine gets reset) Jul 12 07:49:38 okay Jul 12 07:49:52 is the X ddx glamo specific Jul 12 07:50:07 I guess your working a dri driver for the 3d stuff Jul 12 07:50:11 but for 2d Jul 12 07:50:17 yep, but it's based on xf86-video-fbdev Jul 12 07:50:51 how do blits work? Jul 12 07:51:29 at the moment, the DDX takes control of Glamo and sends it commands. with DRI, it prepares command sequences to send to DRM Jul 12 07:51:33 (EXA) Jul 12 07:52:21 not uxa? Jul 12 07:52:53 that's what I'm wondering, you have gpu hardware to process commands Jul 12 07:53:05 I do as well, but we aren't going to use it yet Jul 12 07:53:16 just the 2d accel:blitter Jul 12 07:53:41 so I'm wondering if I should have fake commands for simple things Jul 12 07:53:46 ah, yes.. the infrastructure for accelerating blits in DRI is all there, it just hasn't been done yet Jul 12 07:53:48 like src to dest Jul 12 07:54:10 well, we don't have docs for the ati chip Jul 12 07:54:31 only a closed driver in userspace on the g1 Jul 12 07:54:56 so my goal is to get the mdp, which a simple 2d engine working first Jul 12 07:55:11 like you, converting a fb driver to drm/gem Jul 12 07:55:37 hmm.. MSM is the chip, MDP is the Android framework? Jul 12 07:55:44 it shares ram with gpu Jul 12 07:55:46 no Jul 12 07:55:52 msm is the chip family Jul 12 07:56:00 mdp is one component of the soc Jul 12 07:56:49 the lcd interface is a serial interface Jul 12 07:57:01 the lcdc is in an external chip Jul 12 07:57:24 updates are sent over this serial bus - mddi Jul 12 07:57:43 so it can do partial updates Jul 12 07:58:04 mdp and gpu - ati imageon based - share ram Jul 12 07:58:33 actually it's system ram, but th ram inside of the soc is faster - sram Jul 12 07:59:09 what mailing list are the comments from dri developers on? Jul 12 07:59:18 couldn't find them Jul 12 07:59:47 dri-devel@lists.sourceforge.net, but i normally pester then on IRC (#dri-devel) Jul 12 08:00:03 any logs? Jul 12 08:00:06 they're very helpful (particularly if you've done your homework) Jul 12 08:00:11 freenode? Jul 12 08:00:14 yep Jul 12 08:00:36 F4t, committed and building now Jul 12 08:02:27 mrmoku: hi, i had some problems yesterday with the new build Jul 12 08:02:56 tmzt: "interesting"-sounding hardware... Jul 12 08:03:03 mrmoku: gsm stopped working, restarting of xserver/rebooting didnt worked Jul 12 08:03:35 mrmoku: ophonekitd crashed and i couldnt restart it as "dbus was busy" whatever ... Jul 12 08:04:30 mrmoku: is this a known problem with teh new builds? suspending is also not reliable Jul 12 08:05:44 Weiss: yeah, it's been fun, unfortunately a lot of things are dependent on the modem firmware which has been really hard to work with Jul 12 08:07:11 MODEM firmware? :S Jul 12 08:09:47 BluesLee, no, It works perfectly for me (and others) Jul 12 08:09:55 BluesLee, did you upgrade or reflash? Jul 12 08:10:34 Weiss: yes, it boots first and provides certain system functions, this a dual core device with a shared ram interface Jul 12 08:10:44 mrmoku: i reflashed Jul 12 08:10:46 like I said, it's been fun Jul 12 08:11:03 tmzt: eek.. you make Glamo sound straightforward and trivial Jul 12 08:11:30 fortunately it has minimal involvement with graphics Jul 12 08:12:04 with 3d we have to to initialize the gpu but that's about it Jul 12 08:12:08 mrmoku: but also with the image from 3th of july gsm crashed nearly every 2nd day Jul 12 08:12:13 to tell it Jul 12 08:12:35 for 2d none of that, except clocks but there are registers for that as well Jul 12 08:12:43 so we set those manually Jul 12 08:12:50 how does your fb driver work at the moment? updates the whole screen via the serial interface? Jul 12 08:13:07 well, there are two framebuffers Jul 12 08:13:28 we update the local one and trigger dma in a kernel thread Jul 12 08:14:04 that does dma and sends I think the whole frame over the serial interface to the remote framebuffer Jul 12 08:14:05 mrmoku: the problem is that there is no feedback for instance from the shelf gadget app which shows the provider and the signal strength Jul 12 08:14:23 we could do partial updates but it's not implemented Jul 12 08:14:34 mrmoku: i have always full gsm strength?! Jul 12 08:15:58 tmzt: hmm... but there's no 2D acceleration? Jul 12 08:16:12 yeah, blitting, fills I think Jul 12 08:16:17 that's about it Jul 12 08:16:19 BluesLee, hmm.. the gadget changes for me Jul 12 08:16:58 is the serial link slow, or reasonable? Jul 12 08:18:01 slow enough that doing the whole fb each time isn't great, i guess? Jul 12 08:22:11 Weiss: well, we don't really notice Jul 12 08:22:19 it's high speed serial link Jul 12 08:22:29 mrmoku: i will try the sim of my wife Jul 12 08:22:33 not sure what speed Jul 12 08:22:40 but dma handles it for us Jul 12 08:25:27 mrmoku connman yet the old version 0.19 in repo, why ? :) Jul 12 08:27:01 tmzt: hmm, so it's a question of implementing DRM for mananging your hardware for 2D blits/fills and perhaps 3D, with KMS thrown in more-or-less for fun? Jul 12 08:28:14 von_fritz, because there is something wrong with the way we set the preferred version for connman :( Jul 12 08:28:28 PaulFertser, I found the OABI issue for gta01 I think Jul 12 08:28:32 :) i have seen Jul 12 08:29:26 von_fritz, building it manually now Jul 12 08:29:58 Weiss: yes :) Jul 12 08:30:09 kms to kill the fbdev ioctls Jul 12 08:30:19 which make things harder Jul 12 08:30:29 but Jul 12 08:30:42 android uses them for page flipping Jul 12 08:31:01 I want to have dynamic framebuffer and page flipping Jul 12 08:31:11 Ainulindale, ping Jul 12 08:31:27 planning a simlified compositor for a prject I'm working on Jul 12 08:32:05 cool :) Jul 12 08:32:30 mickeyl, ping Jul 12 08:32:34 android compatability could get a little interesting.. i guess you could allocate twice the amount of framebuffer RAM that's strictly necessary, and let it pan up and down (as it does right now?) Jul 12 08:32:45 mickeyl, did you check if the gta01 kernel of ms5.5 has OABI support? Jul 12 08:33:04 well, X as a lightweight interface, with clients using dri Jul 12 08:33:10 yes, it does Jul 12 08:33:29 so does palm pre Jul 12 08:33:59 beware: you run into an interesting stumbling point if you use DRI2 without KMS: the framebuffer has no GEM handle, so you can't easily blit to i Jul 12 08:34:03 it* Jul 12 08:34:09 and maybe an inprocess compositor/wm like wayland uses Jul 12 08:34:22 ah Jul 12 08:34:30 okay, thanks Jul 12 08:34:32 (though you could try and make something like this work: http://git.openmoko.org/?p=kernel.git;a=commitdiff;h=d8e4b9ff4dc8bf57e53fa174f977c8fb00ec4e90) Jul 12 08:36:00 with EXA, that particular kludge can't be made to work as far as i can see. with other graphics infrastructures, maybe it can Jul 12 08:39:06 tamdararam: Jul 12 08:39:20 SHR: 03seba.dos1 07shr-settings * rb60b4ca9a18a 10/shr_settings_modules/shr_pim.py: [PIM] add is_handler to known properties Jul 12 08:39:21 freesmartphone.org: 03seba.dos1 07framework * r50c3573613e4 10/framework/subsystems/opimd/pimb_sqlite_messages.py: opimd: SQLite-Messages: add missing PIMB_CAN_UPD_ENTRY_WITH_NEW_FIELD to properties Jul 12 08:39:22 freesmartphone.org: 03seba.dos1 07framework * rb66c8ba2662e 10/framework/subsystems/opimd/ (3 files): opimd: add new property PIMB_IS_HANDLER Jul 12 08:39:24 freesmartphone.org: 03seba.dos1 07framework * r16ece4ad8784 10/framework/subsystems/opimd/pimb_sqlite_messages.py: opimd: SQLite-Messages: fix poor typo... Jul 12 08:39:25 freesmartphone.org: 03seba.dos1 07framework * r6cf3986c62ac 10/framework/subsystems/opimd/ (pimd_calls.py pimd_contacts.py pimd_messages.py): opimd: cosmetic changes in _limit handling Jul 12 08:39:28 freesmartphone.org: 03seba.dos1 07framework * r834dfcad243a 10/framework/subsystems/opimd/pimd_calls.py: opimd: Calls: implement NewMissedCalls signal and make Update a bit faster Jul 12 08:39:31 freesmartphone.org: 03seba.dos1 07framework * r4209e8697945 10/framework/subsystems/oeventsd/fso_triggers.py: oeventsd: fso_triggers: add NewMissedCalls and NewMissedCallsTrigger Jul 12 08:40:23 Weiss: uxa is supposed to be similar to exa but for gem, though not for your hardware (with dedicated vram) Jul 12 08:40:33 Weiss: you don't have kms yet? Jul 12 08:49:15 i have almost implemented http://trac.freesmartphone.org/ticket/4 :) Jul 12 08:54:15 dos1: plz, when you will be doing sorting, make the possibility to select the name or sirname to be at 1st sorting position. Jul 12 08:55:17 tmzt: yeah.. UXA seems to be intel-specific. and the EXA API is quite easy.. Jul 12 08:55:28 Q-Master: hmm? Jul 12 08:55:41 Q-Master: i want to add two fields, _sortby and _sortdesc Jul 12 08:55:44 I thought it was the same api Jul 12 08:55:56 very similar, but UXA only exists in the Intel tree Jul 12 08:56:03 yeah, it's very much for share ram devices Jul 12 08:56:23 but ati/nouveu are adapting it I think Jul 12 08:56:40 hmm..really? Jul 12 08:56:57 maybe, could be remebering wrong Jul 12 08:57:18 I follow these things pretty losely Jul 12 08:57:20 in any case, i'd rather not pull a load of extra code into our codebase unless there's a large advantage over EXA Jul 12 08:57:33 exa works? Jul 12 08:57:42 dos1: when sorting the contacts it will be good if the sorting could be made by name or sirname and if it will be possibility to select the position by which they will be shown in contacts. like name, sirname or sirname,name Jul 12 08:58:21 Display name, but automatic not with a field (like windows mobile and Outlook do) Jul 12 08:58:41 though having an override per contact might be nice too Jul 12 08:58:51 tmzt: EXA works without DRM at the moment. our next step is to get "EXA-via-DRM" to work - then we have everthing that exists in the standard Xorg driver, plus the ability to have 3D/video/whatever working alongside it Jul 12 08:59:10 I think exa via gem is uxa Jul 12 08:59:44 pretty much, yep Jul 12 08:59:51 okay Jul 12 08:59:55 mrmoku: alarm in e now shows the time with too big numbers. Not fit to screen. 8) Jul 12 09:00:22 but the Intel people gave it a new name and re-wrote the insides to remove stuff that's not strictly necessary for them Jul 12 09:00:36 yeah Jul 12 09:00:48 sometimes exa is slower if I remeber right Jul 12 09:01:03 some things are faster with shm Jul 12 09:01:43 what is gem anyway, like anonymous mappings? Jul 12 09:02:09 lsof looks weird on ubuntu karmic Jul 12 09:02:33 it's an ioctl interface for managing graphics memory Jul 12 09:03:01 so each time you open the device you can map more memory? Jul 12 09:04:13 kind of.. if you google "DRM GEM" you should get the (very slightly out-of-date) documentation Jul 12 09:04:20 Q-Master, yeah, have that too Jul 12 09:04:35 sure Jul 12 09:10:52 mickeyl: ping Jul 12 09:24:54 mrmoku: ping Jul 12 09:30:25 Ainulindale, hey Jul 12 09:30:32 Ainulindale, two problems Jul 12 09:30:35 yeah Jul 12 09:30:41 Ainulindale, first, kernel for gta01 is broken Jul 12 09:30:42 I'm waking up so be slow :-) Jul 12 09:30:56 it get's build without OABI_COMPAT Jul 12 09:31:06 and I know why, but don't know how to fix it Jul 12 09:31:18 Isn't the defconfig in the recipe? Jul 12 09:31:50 linux.inc is removing OABI_COMPAT if ARM_KEEP_OABI is 0 Jul 12 09:32:06 we set that to 1 in shr-om-gta01.inc Jul 12 09:32:25 but it gets set fixed to 0 by angstrom.inc first (I think) Jul 12 09:33:26 ARM_KEEP_OABI_pn-linux-openmoko-2.6.28_om-gta01 = "1" Jul 12 09:33:26 I'll have a look Jul 12 09:33:31 is in angstrom.inc Jul 12 09:33:41 I tried to add Jul 12 09:33:42 ARM_KEEP_OABI_pn-linux-openemoko-shr-devel_om-gta01 = "1" Jul 12 09:33:42 We don't use linux-openmoko Jul 12 09:33:48 And? Jul 12 09:33:52 does not work :( Jul 12 09:34:16 the other problem is PREFERRED_VERSION for connman Jul 12 09:34:42 ahh... ok. no other problem :P Jul 12 09:35:02 is there a reason for userspace to be oabi on gat01, gps was it? Jul 12 09:35:03 if you can take a look at the gta01 kernel... Jul 12 09:35:10 tmzt, yep gps Jul 12 09:35:23 and OABI COMPAT doesn't work? Jul 12 09:35:33 not mixed I mean Jul 12 09:35:37 but at all Jul 12 09:36:02 works fine if it is enabled Jul 12 09:36:58 That's weird according to what I see it should get set properly Jul 12 09:38:46 hey all Jul 12 09:39:14 Ainulindale, it get's removed in linux.inc Jul 12 09:40:05 Where? Jul 12 09:40:41 Hmmm Jul 12 09:40:44 Maybe because of that Jul 12 09:40:45 if [ "${TARGET_OS}" = "linux-gnueabi" -o "${TARGET_OS}" = "linux-uclibcgnueabi" ]; then Jul 12 09:43:36 mrmoku, i see the new bitbake is up and running :) thanks... Jul 12 09:45:23 F4t, yep :) Jul 12 09:45:42 Ainulindale, no, i loggered that one. TARGET_OS is linux-gnueabi Jul 12 09:45:54 but I loggered ARM_KEEP_OABI too and that one is 09 Jul 12 09:45:55 -9 Jul 12 09:46:08 "loggered" ? :-) Jul 12 09:46:10 logged? Jul 12 09:46:12 oenote Jul 12 09:46:17 :) Jul 12 09:46:28 I don't get you =) Jul 12 09:46:29 s/loggered/oenoted/ Jul 12 09:46:55 I stuffed some oenote into linux.inc to see the values of those Jul 12 09:47:26 mrmoku: ARM_KEEP_OABI_pn-linux-openmoko-2.6.28_om-gta01="1" Jul 12 09:47:32 That's wrong for example Jul 12 09:47:43 (bitbake -e) Jul 12 09:48:45 wrong for our kernel, yeah Jul 12 09:48:54 yep Jul 12 09:49:13 but ARM_KEEP_OABI_pn-linux-openemoko-shr-devel_om-gta01 = "1" should be good Jul 12 09:49:43 But I have none in my env Jul 12 09:49:53 None at all Jul 12 09:51:08 Ainulindale, tried that one locally Jul 12 09:51:33 we are trying to set ARM_KEEP_OABI in conf/distro/include/shr-om-gta01.inc Jul 12 09:51:47 yeah saw that Jul 12 09:51:55 s/inc/conf/ Jul 12 09:51:55 mrmoku meant: we are trying to set ARM_KEEP_OABI in conf/distro/conflude/shr-om-gta01.inc Jul 12 09:52:01 grr Jul 12 09:52:25 though it has no effect, because angstrom.inc sets it with = to 0 Jul 12 09:53:03 freesmartphone.org: 03seba.dos1 07framework * rfbc6fb6273a4 10/framework/subsystems/opimd/pimd_messages.py: opimd: Messages: implement UnreadMessages signal Jul 12 09:53:04 freesmartphone.org: 03seba.dos1 07framework * r69d3f02d2303 10/framework/subsystems/oeventsd/fso_triggers.py: oeventsd: fso_triggers: add UnreadMessages and UnreadMessagesTrigger Jul 12 09:53:05 freesmartphone.org: 03seba.dos1 07framework * rd3a7b2221feb 10/framework/subsystems/oeventsd/fso_triggers.py: oeventsd: fso_triggers: add IncomingUssd trigger Jul 12 09:53:19 mrmoku: well is angstrom loaded before in our default conf? Jul 12 09:53:23 http://trac.freesmartphone.org/ticket/4 implemented :) Jul 12 09:53:41 If it is, our inc should be = and not ?= Jul 12 09:54:14 our inc is = Jul 12 09:54:26 the thing is the second = won't overwrite the first = , no? Jul 12 09:54:32 Yes it will Jul 12 09:54:46 hmm... then maybe angstrom.inc comes after our inc Jul 12 09:55:28 So to me we should add our kernel into angstrom.inc Jul 12 09:56:13 yep Jul 12 10:29:55 Ainulindale, have to go now... bbl Jul 12 10:35:03 good morning Jul 12 10:35:31 Ainulindale: you asked me to anwser your mail on core ML, but I don't see what mail... Jul 12 10:36:34 SHR: 03seba.dos1 07shr-settings * r380646c309dd 10/data/po/pl/ (shr-settings.mo shr-settings.po): [data] update polish translation Jul 12 10:36:44 SHR: 03seba.dos1 07shr-settings * r9afe2af7ba2d 10/data/po/shr-settings.pot: [data] update pot file Jul 12 10:52:10 freesmartphone.org: 03seba.dos1 07framework * rd178d949013d 10/framework/subsystems/opimd/docs/api_overview.txt: opimd: docs: update api overview Jul 12 11:01:09 ptitjes: That's because I didn't ask anything Jul 12 11:04:52 Ainulindale: what about changing to x11-16 engine as default? we have now theme, which looks almost exactly the same in x11-16 as default in x11 Jul 12 11:18:09 Ainulindale: ah... oki Jul 12 11:33:56 about notifing users, when it's time to upgrade or when they shouldn't - what about RSS-Messages backend for opimd, configured as default with some SHR feed? :) Jul 12 11:36:17 or even dedicated backend for notifications Jul 12 11:50:15 i wonder if we can reach milestone6 in 3 weeks ;) Jul 12 11:56:36 Hi there! Can I ask you a thing? Jul 12 11:57:32 xela929: you just did... Jul 12 11:57:42 lol XD Jul 12 11:57:52 xela929: don't ask to ask, just ask Jul 12 11:57:58 Ok :) Jul 12 11:59:27 I use SHR unstable, and I want to know if is possible to deny messages to auto-open when they arrive... Jul 12 12:01:27 xela929: i'm sure it is, I just don't kknow how :) Jul 12 12:01:45 XD Jul 12 12:03:41 Anyone knows how? Jul 12 12:03:56 try dos1 or Ainulindale maybe Jul 12 12:04:47 Zorkman, xela929: now it isn't possible Jul 12 12:05:09 except using opimd Jul 12 12:05:32 but that's because ophonekitd ignores opimd signals :P Jul 12 12:05:33 Can I use it ATM? Jul 12 12:05:42 XD Jul 12 12:05:50 Perfect XD Jul 12 12:08:18 DocScrutinizer: please look at http://trac.freesmartphone.org/ticket/393 Jul 12 12:09:12 dos1: which theme? Jul 12 12:09:15 dos1: the neo theme? Jul 12 12:09:20 if you're talking about it it's ugly Jul 12 12:09:30 Ainulindale: no, sixteen theme Jul 12 12:09:35 Ainulindale: it's in SHR feed already :P Jul 12 12:09:36 dos1: screen please? :-) Jul 12 12:09:47 dos1: I was busy last week with a convention Jul 12 12:09:49 I'm a bit outdated Jul 12 12:10:58 Ainulindale: http://scap.linuxtogo.org/index.php?page=7 Jul 12 12:11:33 Is there an elm theme too? Jul 12 12:11:37 few things still looks ugly, but look at buttons in shr-settings :P Jul 12 12:11:38 Ainulindale: yep Jul 12 12:11:48 elementary-theme-sixteen and e-wm-theme-illume-sixteen Jul 12 12:11:50 Well you know the thing Jul 12 12:11:58 Mail the ML, ask users, then go for it Jul 12 12:12:02 I'll install it myself that's for sure Jul 12 12:12:14 Ainulindale: there was topic about that Jul 12 12:12:23 As I just said, I had no time Jul 12 12:12:31 But if there was and people agreed, then good :-) Jul 12 12:12:40 but i think on community maillist... i'll check Jul 12 12:12:44 Ah and we should once and for all package the default theme properly :-) Jul 12 12:18:25 but... What is this sixteen theme? It's like the default theme..! Jul 12 12:19:59 xela929: yes, that's the point. Jul 12 12:20:14 dos1: ? Jul 12 12:20:14 <|Fate|> lol, whoo took a screenshot of mokonnect? :P Jul 12 12:20:20 xela929: it looks like default theme on x11-16 engine, so it can be faster and not ugly as default ;) Jul 12 12:22:03 I tried to open in the settings the theme selection in x11-16, but it's the same than other themes: enlightenment hangs... Then I can't see difference between this and the default theme (in the settings, it's always awful..!) Jul 12 12:22:26 xela929: change to x11 when changing theme Jul 12 12:22:34 xela929: and after that change to x11-16 Jul 12 12:22:54 xela929: and install also elementary-theme-sixteen correctly Jul 12 12:22:58 dos1: I know, I did it Jul 12 12:23:02 (set is as default) Jul 12 12:23:17 e wrench settings aren't optimized now Jul 12 12:23:18 And I saw some improvements, but it's not the same yet Jul 12 12:23:50 Ok... But I think it's still very slow... Jul 12 12:24:14 xela929: did you also change ELM_ENGINE? Jul 12 12:25:13 Yes, in /etc/profile I added at the last line "export ELM_ENGINE=x11-16" Jul 12 12:26:18 it's correct, isn't it? Jul 12 12:27:42 dos1: how do i get rid of Collected errors: Jul 12 12:27:42 * Package etk-theme-shr wants to install file /usr/share/etk/themes/default.edj Jul 12 12:27:42 But that file is already provided by package * etk-themes Jul 12 12:27:42 ? Jul 12 12:27:59 Zorkman: what did you install? Jul 12 12:28:10 Zorkman: you can --force-overwrite Jul 12 12:28:54 dos1: just a normal opkg upgrade (-test) Jul 12 12:29:23 it's been almost two weeks since I upgraded I think Jul 12 12:34:29 Zorkman: did you install assassin? Jul 12 12:37:54 <|Fate|> guys, i was wondering, did anyone manage to install flash on the openmoko? Jul 12 12:38:30 |Fate|: flash? you mean adobe flash player? Jul 12 12:38:37 <|Fate|> dos1, yea Jul 12 12:38:41 |Fate|: if yes, i had running gnash on 2007.2 Jul 12 12:38:50 F4t: it was slow as hell Jul 12 12:39:08 whats gnash? and how slow? can it run lets say gem craft? :D Jul 12 12:42:52 F4t: gnash, gnu implementation of flash player Jul 12 12:43:07 F4t: except gnash or swfdec, how would you like to run flash on neo? :P Jul 12 12:43:16 it isn't open source... Jul 12 12:43:35 so whats in the tar.gz package that adobe provides? binaries? Jul 12 12:43:58 ah crap, yea, binaries... Jul 12 12:48:14 But does swfdec work now on the FR? Jul 12 12:48:27 It's better than gnash, isn't it? Jul 12 12:49:27 xela929: better? Jul 12 12:51:42 Ehm... Isn't it? XD Jul 12 12:52:31 any ready package of either? Jul 12 12:53:30 xela929: how do you measure that? Jul 12 12:53:54 F4t: gnash has been in debian for years Jul 12 12:54:21 F4t: why do you need flash? Jul 12 12:55:12 lindi-, i want to see how the moko handles some flash games, if it does well, theres a great amount of nice flash games out there... Jul 12 12:56:12 F4t: but most of them are non-free games? Jul 12 12:56:31 lindi-, no... www.armorgames.com Jul 12 12:57:25 F4t: are we talking about free as in feereedom here Jul 12 12:57:45 oh your talking like free speach, not free beer... Jul 12 12:58:11 i dont mind, if its free only in the sense i dont need to pay for them.... Jul 12 13:04:40 dos1: nope, never installed assassin, why? Jul 12 13:05:00 any easy way to install a debian package with its dependencies on SHR distro? Jul 12 13:15:42 F4t: i kind of assumed free software would mean that on #openmoko-cdevel Jul 12 13:16:59 like i said, i dont really mind using free as in no-pay software, even if its no free as in open source... but its my personal opinion... Jul 12 13:17:14 no free = not free Jul 12 13:39:34 freesmartphone.org: 03seba.dos1 07framework * r4cb352e86f8c 10/framework/subsystems/opimd/pimb_ogsmd_calls.py: opimd: ogsmd-Calls: handle calls on multiple lines Jul 12 13:57:09 can someone test calls on multiple lines now? Jul 12 14:00:31 dos1: thanks Jul 12 14:01:01 DocScrutinizer: i've fixed opimd to handle multiple lines, now i want to fix oeventsd rule Jul 12 14:01:20 soraw ticket closed Jul 12 14:02:22 DocScrutinizer: so we have only 23 active tickets for ms6 :D Jul 12 14:02:25 no multi-line SIM here, can't test Jul 12 14:02:33 DocScrutinizer: also here Jul 12 14:03:33 moin, btw Jul 12 14:09:40 dos1: btw, to work with opimd do i need to set efl2? Jul 12 14:09:57 Q-Master: if you want to use efl2 then yes :P Jul 12 14:10:01 i'm using opimd-utils Jul 12 14:10:16 which isn't now ready, but will be soon Jul 12 14:10:56 dos1: opimd utils lacked for a dialer... do they have now? Jul 12 14:11:05 Q-Master: dialer? why for? Jul 12 14:11:44 i'm using dialer from phonegu-efl, and messages app from opimd-utils Jul 12 14:12:07 well, opimd-utils isn't phone suite Jul 12 14:12:08 dos1: to select the phones from opimd sqlite db, but not from sim Jul 12 14:12:11 that's only few test scripts ;p Jul 12 14:16:54 dos1: you seen my "ticket" for fso totally borking on inbound call during test-playback Jul 12 14:17:44 DocScrutinizer: where? Jul 12 14:17:49 i can't see it in FSO tracker Jul 12 14:17:54 dos1: I didn't do the suggested start of framworkd from shell yet Jul 12 14:18:18 dos1: (can't see) that's my point Jul 12 14:19:21 I reported here, as I can't file a bug against FSO if I'm not sure it's not a settings issue. And I can't open ticket at trac.shr Jul 12 14:19:52 I reported here in IRC several times Jul 12 14:28:42 dos1: sms notify sound during call also needs check (somewhat related topic I guess) Jul 12 14:29:08 DocScrutinizer: i think it can't be settings issue Jul 12 14:29:28 it just calls odeviced method to play sound Jul 12 14:29:41 it looks like odeviced doesn't handle few sounds played at the same time Jul 12 14:29:46 at produces traceback Jul 12 14:29:51 s/at/and/ Jul 12 14:29:51 dos1 meant: and produces traceback Jul 12 14:30:16 that's why starting frameworkd from shell is necessary before we start to talk about it Jul 12 14:33:02 well, yesterday I had another nice coremelt. Absolutely *everyting* I started immediately segfaulted :-O Jul 12 14:34:27 no idea how I managed to get there :-D Jul 12 14:35:04 DocScrutinizer: neo just tired of you. 8) Jul 12 14:35:22 well, that's mutual Jul 12 14:42:09 DocScrutinizer: i'm not able to reproduce it Jul 12 14:42:35 dos1: I wonder if you can duplicate the call-while-ringtoneTestplayback Jul 12 14:42:39 hehe Jul 12 14:42:45 telepathy Jul 12 14:43:31 DocScrutinizer: what type of ringtone are you using? Jul 12 14:43:38 with waves it works ok Jul 12 14:43:48 dos1: I used arkanoids[1] for ringtone, then during playback called the FR Jul 12 14:44:03 DocScrutinizer: in sid format? Jul 12 14:44:09 hmm, telepathy works well Jul 12 14:44:13 yup Jul 12 14:44:15 sid Jul 12 14:44:44 maybe that's why, checking it now Jul 12 14:45:47 dos1: note I seen once everything worked great until FE finished call Jul 12 14:46:06 DocScrutinizer: so i have to answer calls? Jul 12 14:46:13 yup Jul 12 14:47:43 I've seen everything falling apart on hitting "accept", as well as one time even at *end* of call Jul 12 14:48:38 DocScrutinizer: i was trying with accepting, rejecting, playing, stopping, releasing... Jul 12 14:48:45 everything works ok, even with sid :( Jul 12 14:48:55 strange. Jul 12 14:48:56 so you have to provide tracebacks on your own Jul 12 14:49:13 seems it's up to me to provide logs Jul 12 14:49:36 gnnnah, telepathy starts to nag Jul 12 14:49:40 :-D Jul 12 14:49:41 xDDDD Jul 12 14:51:37 oki, let me wake up completely. Then I'll try to create some decent tracebacks for that, and probably open ticket at fso Jul 12 14:52:09 and now i'm bbl Jul 12 14:52:10 (I hate having no more open tickets ;-) Jul 12 14:52:19 l8er Jul 12 15:13:24 dos1|away, opimd-utils is now packaged?! sweet! :) Jul 12 15:19:51 hi Jul 12 15:20:21 i patched my dbus so it won't timeout too soon when i try request for GSM -resource from frameworkd but it still doesn't work :| Jul 12 15:20:28 requesting other resources works Jul 12 15:20:53 here's my code : http://www.pastebin.ca/1492791 Jul 12 15:21:24 and that copied from fso 's tutorial so it should work ! Jul 12 15:32:30 excuse me can someone tell me how to uninstall the phone stack of SHR and put paroli? Jul 12 15:38:41 mickeyl: do you have any idea why i still can't access the GSM resource? dbus pending call now timeouts after 3 minutes but RequestResource won't return .... Jul 12 15:45:55 is there someone that can tell me the names of the phone stack software of SHR? Jul 12 15:46:38 pbaxter: the main part of SHR phone stack is ophonekitd Jul 12 15:46:48 pbaxter: just don't start it and start paroli instead, that's all. Jul 12 15:47:06 PaulFerster: i tried but cannot find an rc.local file Jul 12 15:47:06 pbaxter: no need to uninstall Jul 12 15:47:12 where do i stop ophonekitd? Jul 12 15:47:40 pbaxter: no idea, i think it's somewhere in /etc/init.d/ . Jul 12 15:47:46 pbaxter: for testing you can just kill it. Jul 12 15:48:09 ok Jul 12 15:48:11 PaulFertser: though AIUI (never used paroli) it includes a lot of other functions (pim-related) that might interfere with shr-services? Jul 12 15:48:15 thx Paul, thanks a lot Jul 12 15:49:00 DocScrutinizer: i've no idea too, but if ophonekitd is not running, there's nothing to interfere with. Jul 12 15:49:23 contacts/sms-backends? Jul 12 15:50:39 PaulFertser: I don't think opimd is stopped on ophonekitd kill Jul 12 15:51:41 and if anybody ever listened to me, opimd sms-be is supposed to remove every new sms from sim *immediately* Jul 12 15:51:42 DocScrutinizer: i thought opimd is part of the framework, so it's not supposed to be stopped that way, yes. Probably it doesn't influence paroli in any way. Jul 12 15:52:17 Or probably it does influence. Someone just needs to try, not a big deal. Jul 12 15:52:29 yup Jul 12 15:55:18 probably eventually we see a paroli hybrid shr, a phshr ;-) Jul 12 15:55:41 does the archive function in shr-settings work? Jul 12 15:56:28 supposed to. but not well documented *what* is archived Jul 12 15:57:32 e.g. we discussed lately it's not a good idea to simply archive a while sqlite-db-file as is Jul 12 15:57:47 whOle Jul 12 15:58:19 due to this won't help when table structure changed Jul 12 16:01:57 ok, thx Jul 12 16:03:08 DocScrutinizer: messages goes directly to opimd when some default backend other than SIM-Messages-FSO is specified Jul 12 16:03:17 DocScrutinizer: by default SIM-Messages-FSO is specified :P Jul 12 16:03:33 aaah, i c Jul 12 16:03:47 dos1: you're incredible :-D Jul 12 16:06:31 mickeyl: did you ever thought about creating vala binding for e_dbus? :> Jul 12 16:15:52 btw, my store informed me they can't get any replacement for my borked 16GB uSD ;-( Only option: get back my money... WTF?? Jul 12 16:17:56 seems I have to live with my half-a-dozen 4GB and 8GB cards Jul 12 16:18:40 can someone explain me why, also if i've UNinstalled shr-dialer, settings, messages and contacts, it has just arrived a message and it has opened as usual Jul 12 16:19:02 DocScrutinizer: can't you buy 16GB uSD at some other store? Jul 12 16:19:34 seems no store has them off the shelf here at my homebase Jul 12 16:20:01 ordering them takes a week or longer, if feasible at all Jul 12 16:20:14 (for the local shops) Jul 12 16:20:36 sure I could order at some webshop Jul 12 16:20:50 can someone explain me why, also if i've UNinstalled shr-dialer, settings, messages and contacts, it has just arrived a message and it has opened as usual Jul 12 16:21:30 but then *if* I encountered same issues it starts to be a PITA to get replacement Jul 12 16:21:35 pbaxter: probably ophonekitd is still running. Jul 12 16:21:53 ok Jul 12 16:22:10 yup Jul 12 16:23:01 inbound sms-notifier isn't shr-messages Jul 12 16:23:27 thx DocScrutinizer, thx PaulFertser Jul 12 16:24:31 btw I really wonder if that's a sensible design-decision Jul 12 16:25:56 DocScrutinizer: well, shr-messages isn't daemon Jul 12 16:27:42 excuse me: what does initscripts-shr do? Jul 12 16:28:07 dos1: well, but I guess it's a cleaner design to call shr-msgs app to notify (with special call parameter), rather than the daemon instantiating ophonekitd(-lib?)'s sms-screen on it's own Jul 12 16:28:31 pbaxter: provides initscripts Jul 12 16:28:50 but of shr or of whole system? dos1 Jul 12 16:29:02 pbaxter: hmm? SHR is whole system Jul 12 16:29:04 :P Jul 12 16:29:35 yes dos1 Jul 12 16:29:42 dos1: similar to clicking on a URL in e.g. mail-UA doesnt invoke webkit itself, rather it does y system("konqueror -U %s") Jul 12 16:29:52 but i'd like to make a change and putting paroli on shr Jul 12 16:30:00 so dos1 i want to remove all is not necessary Jul 12 16:30:06 DocScrutinizer, you are probably right. Jul 12 16:30:12 pbaxter: why initscripts? Jul 12 16:30:21 pbaxter: SHR apps aren't started by initscripts Jul 12 16:30:25 pbaxter, shr - shr apps + paroli = om2009 Jul 12 16:30:33 give or take Jul 12 16:30:44 pbaxter, just remove the init script in Jul 12 16:30:57 /etc/X11/Xsession.d/80ophonekitd Jul 12 16:31:12 -in Jul 12 16:31:32 but TAsn: libframeworkd-* are necessary or can i remove them? Jul 12 16:31:40 TAsn: phshr? ;-) Jul 12 16:31:44 pbaxter, you can drop them Jul 12 16:31:49 DocScrutinizer, -h? Jul 12 16:31:59 pshr Jul 12 16:32:00 ? Jul 12 16:32:01 drop meaning what TAsn? Jul 12 16:32:07 paroli hybrid shr Jul 12 16:32:09 pbaxter, remove Jul 12 16:32:11 pshr= paroli shr Jul 12 16:32:15 DocScrutinizer, :) Jul 12 16:32:16 thx TAsn Jul 12 16:32:19 np Jul 12 16:32:21 though as I said Jul 12 16:32:26 shr without shr apps isn't shr Jul 12 16:32:31 I mean it's still shr package wise Jul 12 16:32:39 though the main thing "we ship" Jul 12 16:32:43 is the apps Jul 12 16:33:03 yes i know, but i prefer shr illume and shr repo than om2009 one Jul 12 16:33:09 so trying to make something Jul 12 16:33:20 but is started into the shr team the merge with new FSO? Jul 12 16:33:21 dos1, ptitjes__, Ainulindale respond to my unstable and testing post in the ML!!! ffs :) Jul 12 16:33:32 pbaxter, merge with new fso? Jul 12 16:33:46 fso is NOT distro Jul 12 16:33:51 so you can't really merge with fso :) Jul 12 16:33:58 hehe Jul 12 16:34:01 merge meaning put new FSO under SHR Jul 12 16:34:22 they just have an awesome stable sample image ;) Jul 12 16:34:38 pbaxter, our frameworkd is usually newer than the one in fso Jul 12 16:34:38 ... Jul 12 16:34:56 but TAsn: isn't shr based on fso? Jul 12 16:35:18 pbaxter, uses fso. Jul 12 16:35:24 :) Jul 12 16:35:46 but still we build packages from the fso git more often Jul 12 16:35:51 as far as I can tell Jul 12 16:35:59 TAsn: understood Jul 12 16:36:01 go it Jul 12 16:36:04 got it* Jul 12 16:36:48 :) Jul 12 16:36:55 pbaxter, I think we have paroli in the repos Jul 12 16:37:01 so just opkg install it Jul 12 16:37:07 no.. Jul 12 16:37:11 it doesn't Jul 12 16:37:20 pbaxter: we always have the newest FSO Jul 12 16:37:30 pbaxter: as we have AUTOREV for frameworkd Jul 12 16:37:48 what does AUTOREV mean? Jul 12 16:39:09 pbaxter: so it's always newest, even without release Jul 12 16:39:13 dos1, not entirely correct Jul 12 16:39:21 as we need someone to build it ;) Jul 12 16:39:26 TAsn: yep, but that's simple explanation :D Jul 12 16:39:34 i.e we gotta issue a "mrmoku" request Jul 12 16:39:56 s/"mrmoku" request/"mrmoku request"/ Jul 12 16:39:56 :) Jul 12 16:39:57 TAsn meant: i.e we gotta issue a "mrmoku request" Jul 12 16:40:16 this is too dev-talk...i cannot understand all words Jul 12 16:40:34 what does shr-splash-dev serve in my system? Jul 12 16:41:00 dos1, respond to my mail! :) Jul 12 16:41:18 I think from now on I'll stop sending to the ML and send straight to you guys just to annoy you and make you answer ;) Jul 12 16:42:30 lol TAsn Jul 12 16:42:57 pbaxter, I'll buy a spam distributing company Jul 12 16:43:10 lol... Jul 12 16:43:22 and will just flood their mailboxes with developers discussions :) Jul 12 16:43:29 TAsn...an italian made a software for FR to use it as Bluetooth spammer Jul 12 16:43:35 lol TAsn Jul 12 16:43:43 pbaxter, lol, crazy italians :) Jul 12 16:44:07 it's funny to be in a crowdy place and receive maybe an info for something he likes Jul 12 16:44:09 lol Jul 12 16:45:16 pbaxter: if you're not dev, why are you on -cdevel channel? :>> Jul 12 16:46:12 dos1: for i can get more info here Jul 12 16:46:18 also which is the other SHR chan? Jul 12 16:46:29 well, there is #openmoko Jul 12 16:46:43 and... if you're not dev, why did you buy freerunner? :P Jul 12 16:47:30 dos1, an fr is not only for developers Jul 12 16:47:44 first of all there are IT people who can also have fun Jul 12 16:47:50 and of course graphic designers Jul 12 16:47:59 and last but not least, crazy open source dudes Jul 12 16:48:02 i'm none of these Jul 12 16:48:06 nbut i like opensource Jul 12 16:48:09 and i like to learn Jul 12 16:48:15 this why i bought it Jul 12 16:48:16 actually, most of the isaeli community are crazy open source dudes :) Jul 12 16:48:45 israeli (openmoko) community is Jul 12 16:48:46 bah. Jul 12 16:48:53 consists of* Jul 12 16:48:59 * TAsn commits a harakiri Jul 12 16:49:18 after you accidentally get it wrong the first time, it's really hard to change just one or two words to make it readable :) Jul 12 16:49:27 anyone having luck with completing the task-fso2-compliance thingy? Jul 12 16:50:04 TAsn: revert commit and resend? ;-) Jul 12 16:50:21 DocScrutinizer, I wish I could :) Jul 12 16:50:33 though this will probably mean I'll be reverting all day long Jul 12 16:50:38 as most of the time I'm dead tired Jul 12 16:50:38 ;) Jul 12 17:03:05 * mrmoku heard rumors of build requests :P Jul 12 17:04:19 TAsn and all: thanks for your help Jul 12 17:04:21 Ainulindale, you obviously did not manage to fix the kernel? Jul 12 17:04:31 pbaxter, did it work? Jul 12 17:04:42 not trying it Jul 12 17:04:52 i want to epure my SHR from all things i don't need Jul 12 17:04:55 so i need some more help Jul 12 17:05:00 pbaxter, :) Jul 12 17:05:04 maybe some *-dev pacakges Jul 12 17:05:09 just build your own image then Jul 12 17:05:13 will probably be easier Jul 12 17:05:18 just add whatever you want Jul 12 17:05:26 pbaxter, so you are looking for some ultra-light image? Jul 12 17:05:38 mrmoku, he didn't like the /dev/null approach Jul 12 17:05:48 :) Jul 12 17:05:55 TAsn: i don't know what it means Jul 12 17:06:00 what /dev/null mean? Jul 12 17:06:04 pbaxter, what do you need? Jul 12 17:06:04 pbaxter, A joke in the shr wiki Jul 12 17:06:14 ah ok Jul 12 17:06:25 is it something like rm -r / Jul 12 17:06:27 ? Jul 12 17:06:37 in the line of, yeah Jul 12 17:06:43 pbaxter: hm, are you from another planet? Jul 12 17:06:43 mrmoku: i'd need to know which packages are UNnecessary in SHR Jul 12 17:06:46 for i want to purge it Jul 12 17:06:57 PaulFertser: i'm from a not-dev-planet Jul 12 17:07:08 in my house my father is musician and my mother biologist Jul 12 17:07:10 pbaxter, so... I ask you what do you need? because we have no unnecessary packages per se Jul 12 17:07:11 so..no pc Jul 12 17:07:19 pbaxter: /dev/null is a pure userspace thing, every unix user knows about it ;) Jul 12 17:07:22 we have packages *you* might not need Jul 12 17:07:51 mrmoku: i mean some packages like *-dev which i do not need for i'm not a dev Jul 12 17:08:12 pbaxter, there are no -dev packages installed (at least should not) Jul 12 17:09:44 there are actually four -dev packages installed... which are no real -dev packages Jul 12 17:09:45 i found some shr-splash-dev Jul 12 17:10:02 and shr-splash-theme-simple-dev Jul 12 17:10:04 i found them Jul 12 17:10:18 and frameworkd-config-shr-dev Jul 12 17:10:27 and updaterc.d-dev Jul 12 17:10:38 and the x server kdrive Jul 12 17:10:48 but those are no -dev packages in the sense that you need them to develop something Jul 12 17:11:17 ok mrmoku Jul 12 17:11:18 thanks Jul 12 17:11:45 btw. I think they are empty anyway Jul 12 17:13:05 ok... I checked and those four are just plain empty Jul 12 17:13:31 and my guess would be they get installed due to wrong deps Jul 12 17:13:34 will investigate that Jul 12 17:14:18 mrmoku: great! cleaning day ;-) Jul 12 17:14:25 mrmoku: so, what was the problem with OABI? ;) Jul 12 17:14:38 PaulFertser, not *was* ... *is* :( Jul 12 17:15:03 the problem is that OE kernel builds check ARM_KEEP_OABI Jul 12 17:15:18 if it is set to 0 the OABI_COMPAT config gets wiped out Jul 12 17:15:25 if it is set to 1 it gets added Jul 12 17:15:38 we have ARM_KEEP_OABI for gta01 in some included conf file Jul 12 17:15:48 but it get's overwritten by another conf file Jul 12 17:16:10 Ainulindale wanted to sort that out today... don't know if he managed it Jul 12 17:17:09 freesmartphone.org: 03seba.dos1 07framework * r3fd21e9b756c 10/etc/freesmartphone/ogsmd/networks.tab: networks.tab: update information about CenterNet network (Poland) Jul 12 17:17:09 at least he did not commit to OE... so my guess would be no Jul 12 17:20:05 something is hogging my cpu Jul 12 17:20:09 and I can't seem to find out what Jul 12 17:20:10 bah. Jul 12 17:20:19 (not moko actually, just random ranting) Jul 12 17:20:52 TAsn, give them some time to scan your harddisk ;) Jul 12 17:21:04 :) Jul 12 17:21:11 anyway... good night story time :) Jul 12 17:21:13 bbiab Jul 12 17:21:24 bye Jul 12 17:21:24 brb Jul 12 17:30:10 yeepie Jul 12 17:30:16 freenode kills my connection again Jul 12 17:30:18 ;\ Jul 12 17:32:50 someone knows how to make paroli start full screen with only the bar of illume? Jul 12 17:39:54 duhh... fscking typo Jul 12 17:40:06 PaulFertser, might fix the OABI thing now :) Jul 12 17:40:15 :D Jul 12 17:42:02 yep :D Jul 12 17:43:11 mrmoku: do you mean that OABI thing is because of some typo? Jul 12 17:48:02 PaulFertser, no, the logical fix I was trying this morning did not work because of a typo :P Jul 12 17:48:42 * mrmoku should know how to write openmoko by now ;) Jul 12 17:50:04 guys... where is shr kernel built from, i want to check the sources and see if a patch already entered the kernel... Jul 12 17:50:23 F4t, the openmoko kernel git - andy-tracking branch Jul 12 17:50:29 F4t: what patch? Jul 12 17:50:39 link to git? Jul 12 17:50:49 PaulFertser, that windows kernel panic thingy Jul 12 17:50:52 strln() Jul 12 17:51:03 git://git.openmoko.org/git/kernel.git Jul 12 17:51:28 PaulFertser: the one you wrote (I assume) Jul 12 17:51:34 F4t: it's in :( Jul 12 17:51:46 PaulFertser: so why are you sad? :) Jul 12 17:51:47 PaulFertser, why :( Jul 12 17:51:50 lol Jul 12 17:51:58 because it was only a hack... and could be done better Jul 12 17:52:00 (IIRC) Jul 12 17:52:06 so i can safely opkg upgrade including kernel.... Jul 12 17:52:12 F4t: hopefuly :) Jul 12 17:52:37 when i say "safely" i mean the regular safety level of opkg upgrade... Jul 12 17:52:42 :) Jul 12 17:52:50 F4t: you have to shut down xorg though Jul 12 17:52:55 because of an opkg bug Jul 12 17:52:55 ;\ Jul 12 17:53:03 /etc/init.d/xserver stop Jul 12 17:53:13 k... Jul 12 17:53:31 coming soon in your local mail boxes, project euthanasia strikes back, this time: OPKG :) Jul 12 17:53:52 TAsn2, what this time? apt? Jul 12 17:53:57 or portage? Jul 12 17:54:00 :P Jul 12 17:54:06 * mrmoku is already curious about the alternatives TAsn2 offers this time ;) Jul 12 17:54:07 F4t: not portage, you can be sure about that ;) Jul 12 17:54:23 mrmoku: actually people claim apt works well Jul 12 17:54:24 rpm rpm rpm Jul 12 17:54:29 mrmoku: nah. :) Jul 12 17:54:37 we'll probably stick with the deb2 format Jul 12 17:54:51 as there are already many packages made Jul 12 17:54:56 and many dev tools Jul 12 17:55:06 and iirc OE doesn't do rpm very good Jul 12 17:55:08 TAsn2, you could just try it out (apt) Jul 12 17:55:15 mrmoku: in repos? Jul 12 17:55:24 let me see... Jul 12 17:55:37 mrmoku: people using debian on the moko claim it's reasonably fast Jul 12 17:55:42 hold on... i can install debian packages easily? Jul 12 17:55:43 and it's probably better than opkg Jul 12 17:55:54 (on SHR) Jul 12 17:56:06 F4t: maybe :) Jul 12 17:56:09 TAsn2, building it now Jul 12 17:56:15 mrmoku: cool :) Jul 12 17:56:21 all we need is a repo now Jul 12 17:56:30 we actually have debian's repo :) Jul 12 17:56:34 as I'm not sure the package index is hte same Jul 12 17:56:36 F4t: oh right Jul 12 17:56:47 but having two package managers is a *BAD* idea Jul 12 17:56:48 :) Jul 12 17:56:48 cant wait to install gnash Jul 12 17:56:57 F4t: gnash isn't that good ;) Jul 12 17:57:13 or the other one... swfdec Jul 12 17:57:23 iirc this one isn't the best either ;) Jul 12 17:57:57 Oh no, why everybody wants to play that shit instead of boycotting it? :( Jul 12 17:57:57 TAsn2, and which one is the best then? Jul 12 17:58:00 mrmoku: I can't wait to get rid of opkg Jul 12 17:58:07 since i've already mentioned the only two... Jul 12 17:58:15 PaulFertser: I favor boycotting it Jul 12 17:58:19 :D Jul 12 17:58:19 I'm strictly against flash Jul 12 17:58:26 why TAsn2? Jul 12 17:58:35 pbaxter: close standard Jul 12 17:58:42 and generally sucks Jul 12 17:58:42 F4t: i don't understand why you come here to ask help on running proprietary flash games on freerunner :/ Jul 12 17:58:42 :) Jul 12 17:59:01 lindi-: he's just trying to make the moko a better place (I assume) Jul 12 17:59:30 lindi-: and unfortunately we live in a proprietary world, and a lot of content can't be reached without flash Jul 12 17:59:35 lindi-: when i ask the same (why anybody wants to produce and use that) about the leather case i don't get much sympathy... Jul 12 17:59:39 for example pre-HTML5 youtube Jul 12 17:59:51 PaulFertser: hehe Jul 12 18:00:05 lindi-, i dont understand why everything on the freerunner has to be free? Jul 12 18:00:06 PaulFertser: I already told you, I'm also against making a leather moko case! Jul 12 18:00:07 TAsn2: youtube-dl works... Jul 12 18:00:17 PaulFertser: youtube-dl? Jul 12 18:00:20 TAsn2: you're but it looks like we're in minority even here. Jul 12 18:00:28 F4t: this is freenode, irc network for development of free software :) Jul 12 18:00:35 PaulFertser: I'm always in minority Jul 12 18:00:42 F4t: i don't understand why you want to run shit Jul 12 18:00:46 lindi-: what's your position about mp3s? Jul 12 18:00:53 F4t: on your freerunner you can have what you want. but don't ask us or except from us support to propertiary crap Jul 12 18:01:08 TAsn2: in what context? Jul 12 18:01:17 lindi-: personal usage Jul 12 18:01:37 dos1: gnash is open source Jul 12 18:01:38 ... Jul 12 18:01:46 TAsn2: well i use the free player but not the encoder Jul 12 18:01:56 lindi-: free as in beer or speech? Jul 12 18:02:01 TAsn2: speech Jul 12 18:02:21 really? isn't that a proprietary standard? Jul 12 18:02:30 TAsn2: what does that mean? Jul 12 18:02:33 I remember someone sueing OM over mp3 usage Jul 12 18:02:38 TAsn2: but format isn't Jul 12 18:02:45 TAsn2: proprietary != patented Jul 12 18:02:52 TAsn2: yes there's a patent issue Jul 12 18:02:54 PaulFertser: sorry about the mixup Jul 12 18:03:03 lindi-, do you know off-hand if opkg repos are apt compatible? Jul 12 18:03:11 lindi-: so do you agree it's almost as bad as flash? Jul 12 18:03:27 but you still use it, why? because of it's wide use ;) Jul 12 18:03:31 TAsn2: proprietary programs are much worse than free programs that are covered by patents Jul 12 18:03:44 lindi-: you got gnash Jul 12 18:03:51 TAsn2, it's even worse, because there is a better free alternative for a long time now :( Jul 12 18:03:52 TAsn2: the difference is that its practically impossible to make a free alternative to the proprietary flash player. Jul 12 18:03:58 TAsn2: but the F4t wants to play is proprietary Jul 12 18:04:01 TAsn2: +game Jul 12 18:04:20 lindi-: and what about open source flash games? Jul 12 18:04:30 are you against helping him play that? Jul 12 18:04:30 TAsn2: F4t was not interested in those afaik :) Jul 12 18:04:37 are you against helping him play that? Jul 12 18:04:39 :) Jul 12 18:04:48 TAsn2: I asked him why he wanted to run flash programs Jul 12 18:04:57 TAsn2: and when I heard the answer I got demotivated Jul 12 18:05:05 hehe :) Jul 12 18:05:14 I agree about the fact that flash sucks Jul 12 18:05:20 and I wouldn't help F4t as well Jul 12 18:05:28 though I don't like you commens Jul 12 18:05:30 TAsn2: that's entirely different issue Jul 12 18:05:31 comments Jul 12 18:05:34 TAsn2: also flash is too often mis-used. It provokes bad coders for bad architecture decisions. Jul 12 18:05:43 dos1> F4t: on your freerunner you can have what you want. but don't ask us or except from us support to propertiary crap Jul 12 18:06:08 TAsn2: that wasn't my comment :) Jul 12 18:06:14 PaulFertser: I *HATE* flash :) Jul 12 18:06:33 F4t: i don't understand why you come here to ask help on running proprietary flash games on freerunner :/ Jul 12 18:06:41 TAsn2: yep Jul 12 18:06:43 he just asked about flash Jul 12 18:06:43 :) Jul 12 18:06:50 TAsn2, hmm... bad news... did not build :( Jul 12 18:06:56 TAsn2: but the discussion started 12 hours ago :) Jul 12 18:06:56 mrmoku: hehe nvm :) Jul 12 18:07:02 TAsn2: you did not read it all Jul 12 18:07:07 lindi-: I read parts :) Jul 12 18:07:43 TAsn2: you skipped the relevant part ;) Jul 12 18:07:48 dos1, excuse me? is gnash and swfdec proprietary crap? Jul 12 18:07:51 PaulFertser: I usually do :) Jul 12 18:07:55 TAsn2: btw, i don't hate anything, at least i hope so. Jul 12 18:07:59 F4t: they were talking about you flash games Jul 12 18:08:03 i.e the usage of gnash Jul 12 18:08:12 PaulFertser: I don't hate it as well Jul 12 18:08:15 I just discourage it's use Jul 12 18:08:32 even before I got myself a moko Jul 12 18:08:47 and it suddenly hit me that adobe don't release arm plugins :) Jul 12 18:09:15 I can't understand how is it even possible that flash is so widely used though so "not-portable" Jul 12 18:09:17 and in general Jul 12 18:09:24 slow, heavy and sucks :) Jul 12 18:10:15 TAsn2, just take the fact that for example Linux Desktops make up 1% of all Desktops Jul 12 18:10:25 add some percent of Macs Jul 12 18:10:33 mrmoku: macs Jul 12 18:10:34 and cellphones Jul 12 18:10:38 ffs CELLPHONES! :) Jul 12 18:10:56 I mean, there are many cellphones out there Jul 12 18:11:13 it reminds me the era of activex Jul 12 18:12:50 Anyhow, even if I was pro-flash, fixing flash support is not and won't be at the top of my list anytime soon Jul 12 18:12:57 as we have many bugs to hunt and many issues to fix Jul 12 18:13:01 and more importantly Jul 12 18:13:34 Many emails to respond to (hem hem, testing vs unstable) Jul 12 18:14:42 dos1, sorry, lost conn, i asked help with gnash and swfdec on OM... is that proprietary software? Jul 12 18:15:01 F4t: no Jul 12 18:15:05 F4t: oh fuck, you've lost all the discussion Jul 12 18:15:12 PaulFertser: hehe yeah Jul 12 18:15:14 he lagged Jul 12 18:15:15 :) Jul 12 18:15:17 :-/ Jul 12 18:15:22 F4t: you said you wanted to run proprietary crap with gnash/swfdec Jul 12 18:15:30 F4t: because of that people don't want to help you. Jul 12 18:15:31 PaulFertser: Don't you just love israeli isps? :) Jul 12 18:15:40 PaulFertser, ye, but didnt ask help with that.... Jul 12 18:15:44 F4t: despite the fact gnash and swfdec are free. Jul 12 18:15:50 PaulFertser, i see... Jul 12 18:15:56 TAsn2: hehe Jul 12 18:15:58 PaulFertser: what's your position on helping him run youtube clips? Jul 12 18:16:11 PaulFertser, ill keep in mind people here are fanatic about this issue :) Jul 12 18:16:13 TAsn2: it's trivial, youtube-dl like everywhere else works. Jul 12 18:16:23 TAsn2: he can play the clips with mplayer Jul 12 18:16:24 PaulFertser: what's this youtube-dl thing? Jul 12 18:16:36 I have no idea what you are talking about :) Jul 12 18:16:42 *googling* Jul 12 18:16:47 I was wondering whether I could trigger the illume keyboard to popup programatically somehow? Jul 12 18:16:49 TAsn2: :D A perl script to download flv's from youtube. You can pipe the output to mplayer even. Jul 12 18:17:06 PaulFertser: suboptimal Jul 12 18:17:08 PaulFertser: isn't it python? Jul 12 18:17:16 Derick: yes, there's illume-kbd-show.c , google for it. Jul 12 18:17:21 kewl Jul 12 18:17:29 dos1: oh yes Jul 12 18:17:39 PaulFertser: it's still suboptimal Jul 12 18:17:57 TAsn2: how? No seek support? Jul 12 18:18:00 let's cross our fingers, the rise of html5 might just save us from flash Jul 12 18:18:19 PaulFertser: not only, but also the fact that it's not embedded in the browser... Jul 12 18:18:27 I heard html5 sucks :( Instead of going to semantic web they go to "fancy" web2.0 web. Jul 12 18:18:44 and xhtml 2 is dropped.... Jul 12 18:18:46 TAsn2: i don't need to abuse browser by embedding videos. Jul 12 18:18:52 fscking W3C Jul 12 18:18:53 PaulFertser: I don't care about html5, all I care about is video :) Jul 12 18:18:59 PaulFertser: :) Jul 12 18:19:05 it's sometimes useful Jul 12 18:19:07 i.e: youtube Jul 12 18:19:16 dos1: yeah :( biased towards "big" fucking players. Jul 12 18:19:35 TAsn2: i don't like youtube, it makes me sick. I can admit i use it sometimes :S Jul 12 18:19:52 I don't use it regularry as well Jul 12 18:19:56 I'm not a youtube fanboy Jul 12 18:20:04 though I like watching a funny movie once in a while Jul 12 18:20:21 or even better, streaming anime :) Jul 12 18:20:29 bleh, FSO has no "as" :-/ Jul 12 18:20:49 Derick: as? Jul 12 18:20:53 assembler Jul 12 18:21:00 Derick: do you know arm assembly Jul 12 18:21:03 ? Jul 12 18:21:05 no Jul 12 18:21:15 but gcc wants it to link that code I am compiling Jul 12 18:21:19 Derick: thought you meant an assebler, wasn't sure Jul 12 18:21:48 Derick: you are compiling on the moko? Jul 12 18:21:50 yes Jul 12 18:21:53 why? Jul 12 18:22:09 i used to do so before just fine, but shr 5.5 removed lots of packages for this :/ Jul 12 18:22:22 fso 5.5 I assume ? :) Jul 12 18:22:29 yes Jul 12 18:22:38 although I am now use shr-testing Jul 12 18:22:47 Derick: DO NOT DO THAT! Jul 12 18:22:52 hm? :) Jul 12 18:23:00 actually I meant Jul 12 18:23:08 DO **** NOT **** DO THAT! Jul 12 18:23:14 ? Jul 12 18:23:21 the testing image is amazingly old Jul 12 18:23:26 yeah, that it is Jul 12 18:23:27 and sucks terribly Jul 12 18:23:35 but everything "works" :) Jul 12 18:23:40 what would you suggest? Jul 12 18:23:44 Derick: unstable Jul 12 18:23:49 everything works better on unstable Jul 12 18:23:50 k Jul 12 18:23:56 i'll give that a shot Jul 12 18:24:29 Bah, I wont to start mirroring unstable -> testing more often Jul 12 18:24:45 i.e as suggested in the mail no one responded to, on a weekly basis :) Jul 12 18:25:06 TAsn2: i just have nothing to add :P Jul 12 18:25:21 dos1: hm.. are you against or in favor? Jul 12 18:25:30 http://build.shr-project.org/shr-unstable/images/om-gta02/shr-image-om-gta02.jffs2 and http://build.shr-project.org/shr-unstable/images/om-gta02/uImage-GTA02.bin.bin, right? (Only do this once every 5 months or so) Jul 12 18:25:30 (weekly update of testing image) Jul 12 18:25:47 I've been "porting" php and php-gtk to this platform Jul 12 18:25:56 Derick: sweet ;) Jul 12 18:26:07 it works actually much better than I expected Jul 12 18:26:26 TAsn2: i'm for Jul 12 18:27:31 dos1: do you think we should mirror when unstable works and cherry pick when unstable is somehow broken? (I'm talking about a week old unstable to "today's" testing) or do you think we should always cherry pick? Jul 12 18:28:23 those are the two questions I asked there, and the two questions in discussion :) We just need to see which of those people prefer and then decide and do. :) Jul 12 18:28:31 As it's rather easy to do Jul 12 18:28:51 TAsn2: how do you define "mirror when unstable works"? Jul 12 18:29:03 dos1: copy all the revs in autorev :) Jul 12 18:29:06 basically ;) Jul 12 18:29:27 as testing won't have autorev (probably) Jul 12 18:29:40 I mean in the "week old" autorev Jul 12 18:30:40 TAsn2: yep, testing shouldn't have any autorev Jul 12 18:31:13 so do you think copying the week old revs from unstable to testing a proper solution? Jul 12 18:31:21 NO Jul 12 18:31:23 (when unstable isn't broken) Jul 12 18:31:33 mrmoku: why not? Jul 12 18:32:01 because it might be broken (did not see your addendum yet ;) Jul 12 18:32:26 my criterium would be 'works and is unchanged for a week' Jul 12 18:32:32 excuse me to those who i have asked for help with paroli+shr but ti seems shr is good now Jul 12 18:32:40 oh, i agree with mrmoku of course Jul 12 18:32:43 but i don't like the little errors it gaves me Jul 12 18:32:44 i had that in mind ;) Jul 12 18:34:29 mrmoku: but you can never do that Jul 12 18:34:37 listen Jul 12 18:34:46 people don't update on a daily basis Jul 12 18:35:07 therefore after a week we'll hopefully have at least one user who had the system running unchanged for a week Jul 12 18:35:08 ... Jul 12 18:35:26 and therefore my solution meets your criteria Jul 12 18:35:45 TAsn2, your thinking system wide... I'm thinking in packages Jul 12 18:35:54 mrmoku: I know you are Jul 12 18:36:04 take the framework for example Jul 12 18:36:08 (opimd in specific) Jul 12 18:36:17 it changes almost every hour Jul 12 18:36:37 and after my exam period, hopefuly more packages will change in the same rate Jul 12 18:37:07 as I said, I do believe that if a bug exists we'll find it within a week Jul 12 18:37:14 as we have a pretty large userbase Jul 12 18:37:14 TAsn2, mrmoku: people, i think, are tired of flashing Jul 12 18:37:23 pbaxter: I agree Jul 12 18:37:33 that's exactly why I'm suggesting a suitable testing image Jul 12 18:37:38 for "user" use Jul 12 18:37:39 so why can't you devs try to make a system that also if there are little changes need only to 'opkg upgrade' Jul 12 18:37:44 yes Jul 12 18:37:46 no more unstable Jul 12 18:37:51 pbaxter: we can easily do that Jul 12 18:37:51 the last testing is from 2 may Jul 12 18:37:54 2 months Jul 12 18:38:01 the reason we don't is simple Jul 12 18:38:04 it's time consuming Jul 12 18:38:13 i have an eee pc and never built an image Jul 12 18:38:14 and we prefer adding fetaure than taking care about upgrade paths Jul 12 18:38:18 pbaxter: :) Jul 12 18:38:25 but can try if you tell me all commands Jul 12 18:38:33 pbaxter: no need. Jul 12 18:38:44 what do i need? Jul 12 18:38:47 because we need it Jul 12 18:38:58 pbaxter: google for start developing shr Jul 12 18:39:00 or building shr Jul 12 18:39:04 we want to have something maybe without some feautures but a little stable Jul 12 18:39:14 pbaxter: shr is stable Jul 12 18:39:20 latest unstable is STABLE Jul 12 18:39:22 TAsn2: but to make unstable become testing you to change the repo url Jul 12 18:39:26 in some sense :) Jul 12 18:39:41 TAsn2: yes but the FSO has some ittle bugs that make it sucks Jul 12 18:39:41 pbaxter: ppl will reflash to testing and just stay there... Jul 12 18:39:49 pbaxter: like which? Jul 12 18:40:17 hi all Jul 12 18:40:17 lots of bugs about suspend Jul 12 18:40:47 some when you install something that make all other things work bad Jul 12 18:41:04 mrmoku: Anyhow, if that's what you think and I haven't convinced you, please write an email about it, dos1 same goes for you, because as pbaxter said, users are tired of flashing and want a stable image. We should start going that way as SHR is somehow solid atm. there are bugs but shr is solid even if you count them. Jul 12 18:41:28 pbaxter: the suspend bugs are out of our reach Jul 12 18:41:37 we can't fix bugs in every package we maintain Jul 12 18:42:00 yes i know TAsn2 but if shr give a package named STABLE Hybrid Release, it must be STABLE Jul 12 18:42:06 We should just start building packages and make proper upgrade paths with scripts in the PACKAGE Jul 12 18:42:11 (don't want to oblige you...only i think this is what users need Jul 12 18:42:25 pbaxter: we are going this way Jul 12 18:42:34 i hear many people that are not devs or they have not time that want to sell their NEO Jul 12 18:42:38 hey guys Jul 12 18:42:43 BluesLee: hey. Jul 12 18:42:46 pbaxter is right Jul 12 18:42:49 so TAsn2: do we have a testing? Jul 12 18:42:50 well, i don't flash ;) Jul 12 18:42:51 pbaxter: as I said, latest unstable is stable Jul 12 18:42:52 hi TAsn2 Jul 12 18:42:58 ok TAsn2 Jul 12 18:43:08 pbaxter: in my pov :) Jul 12 18:43:09 TAsn2: i am not sure about that Jul 12 18:43:14 though it's not complete Jul 12 18:43:17 but latest unstale is from yesterday or the day before so too less day to know all bugs Jul 12 18:43:26 pbaxter: that's true. Jul 12 18:43:33 I can only tell you from my experience Jul 12 18:43:35 as a user Jul 12 18:43:43 that uses the moko as his only phone Jul 12 18:43:50 TAsn2: i hope we can have a testing in these days Jul 12 18:43:54 i have the one of 9th of july Jul 12 18:44:03 anyhow mrmoku as you can see, the users want it, and they deserve it. Jul 12 18:44:06 and that one is pretty unstable here Jul 12 18:44:17 I really think we should start get things going :) Jul 12 18:44:27 BluesLee: what's wrong? Jul 12 18:44:32 as we can't fix bugs we don't know about. Jul 12 18:44:48 gsm was not available Jul 12 18:44:49 never opposed to having a testing TAsn2 Jul 12 18:44:57 That's actually the biggest issue in software development :) (fixing bugs you don't know about) Jul 12 18:45:03 mrmoku: I know. Jul 12 18:45:23 TAsn2: i rebooted, restarted x nothing ... ophonekitd crashed Jul 12 18:45:39 BluesLee: already opened a bug Jul 12 18:45:40 I know Jul 12 18:45:42 known issue Jul 12 18:45:45 we have a hack aronud it Jul 12 18:45:53 TAsn2: than i tried to restart it, but it didnt as dbus was not available Jul 12 18:45:55 though we gotta find out what's wrong Jul 12 18:46:02 BluesLee: Jul 12 18:46:12 add a sleep 3 in ophonekitd's init script Jul 12 18:46:24 I'm just stating we have to decide what's next concerning this issue and hopefully ship our "first" testing image this friday Jul 12 18:46:26 TAsn2: thanx Jul 12 18:46:42 I should probably put that in my bug report ;) Jul 12 18:47:09 Hmm, why don't I suffer from that? Jul 12 18:47:13 TAsn2, what bug #? Jul 12 18:48:32 mrmoku: top in trac Jul 12 18:48:33 hm.. Jul 12 18:48:35 ok #551 Jul 12 18:48:38 551 Jul 12 18:48:40 :) Jul 12 18:48:41 yeah Jul 12 18:48:49 BluesLee: you lazy bum! :) Jul 12 18:48:53 I wrote about it in my bug report! :) Jul 12 18:49:02 where is the script located? Jul 12 18:49:04 okay Jul 12 18:49:06 i was not lazy Jul 12 18:49:19 maybe someone can help here Jul 12 18:49:33 BluesLee: j/k, don't worry. Jul 12 18:49:35 tracfeed: Ticket #551 (Ophonekitd doesn't start at boot after latest upgrade) updated Jul 12 18:49:45 anyhow, added a more descriptive comment about the hack. Jul 12 18:49:47 TAsn2: i use wifi via an usb dongle Jul 12 18:49:53 BluesLee: btw Jul 12 18:50:01 did you upgrade your way to latest unstable Jul 12 18:50:05 or flashed? Jul 12 18:50:10 as I upgraded Jul 12 18:50:11 i flashed Jul 12 18:50:14 hm.. Jul 12 18:50:22 mrmoku: no idea why you didn't get that Jul 12 18:50:29 though it seems like a race condition Jul 12 18:50:32 TAsn2, you're using abyss and fsousaged too, right? Jul 12 18:50:34 so it may be something with sim types Jul 12 18:50:34 i dont trust opkg upgrade Jul 12 18:50:38 mrmoku: aye. Jul 12 18:50:59 ophonekitd works perfectly to me ;x Jul 12 18:51:12 okay, is use networkmanager for wifi dongle and neo Jul 12 18:51:14 how old is your sim cards? Jul 12 18:51:19 TAsn2, flash or mmc? Jul 12 18:51:22 i have already asked this on #openmoko but in vain...so i am giving it a shot here as well: Jul 12 18:51:22 i installed opimd utils on upgraded shr unstable...but i can't figure out how to create new message in opimd-message...any help??? Jul 12 18:51:22 mmc Jul 12 18:51:31 TAsn2: mine is very new, 3 months Jul 12 18:51:33 TAsn2, I'm running from flash Jul 12 18:51:45 that might give a big difference for timing issues Jul 12 18:51:57 aye. Jul 12 18:52:05 dos1: what about you? Jul 12 18:52:09 BluesLee: and about you? Jul 12 18:52:14 will try with a new SIM and from mmc then... to see what happens ;) Jul 12 18:52:20 TAsn2: SD Jul 12 18:52:25 same as me Jul 12 18:52:33 hm.. dos1 is your sim new ? Jul 12 18:52:37 TAsn2: no Jul 12 18:52:41 mine is amazingly old Jul 12 18:52:46 i.e 8 years or so Jul 12 18:52:48 TAsn2: running also from flash Jul 12 18:52:56 so it's probably a bit slow Jul 12 18:52:57 hmm Jul 12 18:53:01 mrmoku: hehe we got all the test cases here Jul 12 18:53:02 TAsn2: mine ~5 years Jul 12 18:53:07 all the possible mixtures :) Jul 12 18:53:20 shit Jul 12 18:53:25 catholicon: why did you install incomplete and unsupported software? Jul 12 18:53:30 it has nothing to do with network registration Jul 12 18:53:32 catholicon: i'm author of opimd-utils Jul 12 18:53:47 catholicon: and it doesn't have function to write new message, only replying Jul 12 18:53:48 as it happens before the modem registers Jul 12 18:53:52 catholicon: and it won't be implemented soon Jul 12 18:54:02 catholicon: as i have other things to implement in opimd Jul 12 18:54:05 more important Jul 12 18:54:19 catholicon: opimd-utils isn't announced yet and it isn't phone suite Jul 12 18:54:20 dos1: i think i read it in wiki....thats no issue...i just wondered if i am missing something obvious Jul 12 18:54:32 catholicon: that's only collection of test scripts usable for opimd developers Jul 12 18:54:32 dos1: but you did package it Jul 12 18:54:34 didn't you? Jul 12 18:54:40 TAsn2: for developers Jul 12 18:54:49 i c :) Jul 12 18:54:50 dos1: just needed this confirmation :) Jul 12 18:54:51 cool. Jul 12 18:54:53 i need only one stable release Jul 12 18:54:59 TAsn2: to gain more interest in opimd... but still i'm the only opimd developer :( Jul 12 18:54:59 BluesLee: lol Jul 12 18:55:01 with this hack Jul 12 18:55:12 unstable is stable Jul 12 18:55:22 okay, i believe you Jul 12 18:55:22 dos1: fine with me as you are doing a great job ;) Jul 12 18:55:27 dos1: you are nearly done, aren't you? :) Jul 12 18:55:37 i take the latest one Jul 12 18:55:43 finished contacts and messages domain, right? Jul 12 18:55:48 TAsn2: i can show you my TODO regarding opimd (without opimd-utils tasks) Jul 12 18:55:57 btw, dos1 you merge messages in opimd, right? Jul 12 18:56:06 you don't let the other app to do that Jul 12 18:56:16 dos1: merge as in split messages Jul 12 18:56:26 TAsn2: http://pastebin.com/m63c8887f Jul 12 18:56:35 TAsn2: yep, merging split messages is done in opimd Jul 12 18:56:36 dos1: and do you have email infrastructure? :) Jul 12 18:56:42 dos1: awesome :) Jul 12 18:56:47 TAsn2: more exactly - in SIM-Messages-FSO backend Jul 12 18:56:55 really? Jul 12 18:56:59 fso does that Jul 12 18:56:59 TAsn2: i want to have, but after everything :) Jul 12 18:57:01 ? Jul 12 18:57:05 dos1: of course :) Jul 12 18:57:15 TAsn2: opimd does that in backend Jul 12 18:57:37 dos1: looking at your todo Jul 12 18:57:39 you are done Jul 12 18:57:39 :) Jul 12 18:57:43 TAsn2: add regexps to TODO Jul 12 18:57:52 (I'm talking about the basics) Jul 12 18:57:57 opimd looks and feels usable Jul 12 18:57:58 in near future Jul 12 18:58:02 we can finally write efl2 :) Jul 12 18:58:07 from start to finish Jul 12 18:58:45 dos1: btw, thanks a lot Jul 12 18:58:50 opimd was and is my #1 issue :) Jul 12 18:59:25 TAsn2: for basics the most important are: normalizing phone calls, "inteligent queries", sorting, new quering and maybe multiple fields Jul 12 18:59:41 normalizing phone calls? Jul 12 18:59:49 what's that? Jul 12 18:59:50 TAsn2: ah, not calls, numbers Jul 12 18:59:52 :D Jul 12 18:59:53 TAsn2: merging (entries, not split messages) is slow, but can be disabled Jul 12 18:59:54 oh ;) Jul 12 19:00:06 what's entries? Jul 12 19:00:10 TAsn2: that's when you're writing TODO near midnight ;) Jul 12 19:00:17 dos1: hehe, so true. Jul 12 19:00:28 actually Jul 12 19:00:34 when I write code in the middle all the night Jul 12 19:00:37 I always write a lot of Jul 12 19:00:47 :) Jul 12 19:00:50 /* FIXME: must review */ Jul 12 19:00:51 as I Jul 12 19:00:54 ;) Jul 12 19:01:00 that's a must ;) Jul 12 19:01:15 I usually wake up and erase them all without reviewing but that's another issue :) Jul 12 19:01:51 anyhow Jul 12 19:01:58 phonecalls normalizing is easy Jul 12 19:02:04 as joreg gave us the regex code Jul 12 19:03:01 TAsn2: "inteligent queries" - MessageAdded, MessageDeleted, MessageUpdated in queries (when new/edited messages matches some existing query, to update programs) Jul 12 19:03:25 TAsn2: new quering - quering by backend when possible, instead of internal cache (to make use of SQLite speed) Jul 12 19:03:25 dos1: that's not a "big issue" Jul 12 19:03:34 as queries are mostly disposable Jul 12 19:03:35 :) Jul 12 19:03:36 TAsn2: sorting - you know ;) Jul 12 19:03:46 dos1: sorting sounds important :) Jul 12 19:03:56 multiple fields - you also know ;) Jul 12 19:04:20 and fast merging at the end Jul 12 19:04:35 what about fixing the NewCall signal to conform to the tasn standards? :) Jul 12 19:06:02 (i.e send more info) Jul 12 19:06:48 TAsn2: i'll do that if some FSO guy will accept that ;) Jul 12 19:07:06 dos1: so you are telling me I should bug mickey :) Jul 12 19:07:12 TAsn2: yep :D Jul 12 19:07:19 haha will do. Jul 12 19:07:21 http://pastebin.com/m21b00516 - new todo ;) Jul 12 19:07:32 TAsn2: well, that's work for ~2 minutes ;) Jul 12 19:09:12 TAsn2: so i only need confirmation, and it'll be done almost immediately ;D Jul 12 19:09:13 dos1: I know. Jul 12 19:09:30 dos1: but arguing about it may take hours :) Jul 12 19:09:47 TAsn2, ok, installed latest image on MMC and stuffed in the new SIM from wifey :P Jul 12 19:09:53 works just fine (on first boot) Jul 12 19:10:01 mrmoku: no idea then :( Jul 12 19:12:18 mickeyl: I think the NewCall signal in the calls domain, should provide more than just a query path, it should also provide TYPE (gsm, voip, etc), direction (in/out) and answered (yes or no) as these parameters are the most common ones and let applications easily realize if this signal matters to them, without the need of further inquiring (will save ipc lags and extra work). Furthermore I think in general signals should p Jul 12 19:12:41 not requested, but reviewed, and the application needs a fast and easy way to sort the relevant stuff out. Jul 12 19:13:11 I hope you agree about both of the topics, though I care more about the former as I want to use it in pyphonelog :) Jul 12 19:13:45 I just don't think every app should "take the penalty" of getting basic data when listening to signals. Jul 12 19:14:07 dos1: the ball is in FSO's court now :) Jul 12 19:16:52 I think I should go studying now. Jul 12 19:16:59 As I have a test in a couple of days. Jul 12 19:17:00 ;\ Jul 12 19:24:03 TAsn2: good luck Jul 12 19:24:07 hmm, I just upgraded and it seems usb networking doesn't work? Jul 12 19:25:40 Derick: Jul 12 19:25:47 we changed the name on the pc to Jul 12 19:25:49 ethX Jul 12 19:25:52 instead of usb0 Jul 12 19:25:55 ah! Jul 12 19:25:57 :) Jul 12 19:26:08 different protocol? Jul 12 19:26:12 no Jul 12 19:26:17 (not that I'm aware of) Jul 12 19:26:24 just identifies differently Jul 12 19:26:29 ah, k Jul 12 19:26:41 because many sucky apps had issues with ethernet devices that identify as usb networking devices :) Jul 12 19:26:48 Derick: now we have persistent eth? names thanks to udev. Jul 12 19:28:04 i wish it'd use always the same ethX on the PC though Jul 12 19:28:19 Haha, the guy that i asked to not top-post now bottom posts without trimming :D Jul 12 19:28:34 :-/ Jul 12 19:28:46 Derick: and it does. We use persitent MAC now, so udev assignes the same eth? device every time. Jul 12 19:28:47 Derick: I think that's what PaulFertser meant. Jul 12 19:28:55 ah, cool Jul 12 19:29:04 PaulFertser: what's bottom posting without trimming? Jul 12 19:29:26 (I never got proper ML education, I admit, I'm still not entirely used to bottom posting) Jul 12 19:29:39 TAsn2: when he posts the reply after the quote and doesn't remove unnecessary lines (like mailing list name, signature etc) Jul 12 19:29:48 Although I understand it's power :) Jul 12 19:29:59 PaulFertser: sometimes I'm also too lazy to do that ;) Jul 12 19:30:23 TAsn2: use a decent editor :) Also by doing trimming yourself once you save time of many readers. Jul 12 19:30:50 PaulFertser: I use gmail ;\ Jul 12 19:31:01 anyhow I should probably start doing that. Jul 12 19:31:22 PaulFertser: any more ML common courtesy tips I should know about? Jul 12 19:34:21 TAsn2: don't swear and offend :D My experience shows most people don't like it ;) But i'll fucking continue doing that no matter what >:-| Jul 12 19:34:38 hehe Jul 12 19:34:44 I generally don't swear Jul 12 19:34:49 TAsn2: there is a http://www.netmeister.org/news/learn2quote.html ... which is what I use to post to people that ask :) Jul 12 19:35:01 actually I don't even say fuck in ML/dev-IRC-chans Jul 12 19:35:16 Derick: thanks. Jul 12 19:35:22 TAsn2: i sweared during the lectures, one of our tutors said i'm the most publically swearing person he knows. Jul 12 19:35:32 PaulFertser: hehe ;) Jul 12 19:36:17 TAsn2: now i was told i'm prohibited from swearing during the classes where i'm a tutor and that i should even tell my students to not swear too :D Jul 12 19:36:17 Derick: thanks again, looks awesome, just went over that. :) Jul 12 19:36:28 PaulFertser: haha :) Jul 12 19:36:35 can you manage that? Jul 12 19:36:51 TAsn2: not really but i can pretend Jul 12 19:37:00 hehe, good enough. Jul 12 19:37:21 Also i posted a list of swear words not to use on my html page dedicated to students. Jul 12 19:37:33 In tags :D Jul 12 19:38:51 just kick the man in the balls :D Jul 12 19:40:03 TAsn2: btw, russian obscene language is quite interesting and developed http://en.wikipedia.org/wiki/Russian_mat Jul 12 19:40:32 PaulFertser: here most of the people speak russian Jul 12 19:40:38 I work with two noisy girls Jul 12 19:40:42 that always speak russian Jul 12 19:40:43 :) Jul 12 19:40:47 TAsn2: mat? Jul 12 19:41:17 I don't think so Jul 12 19:41:24 but I don't know russian so maybe :) Jul 12 19:41:31 PaulFertser: I said that before I read the mat article Jul 12 19:41:43 it seems like you take your swear words seriously ;) Jul 12 19:42:56 TAsn2: read some older version, it has a word list with descriptions: http://en.wikipedia.org/w/index.php?title=Russian_mat&oldid=262646660 Jul 12 19:43:19 btw PaulFertser Jul 12 19:43:24 how do you say gym in russian? Jul 12 19:43:51 by gym I mean a "club" where you lift weights Jul 12 19:44:10 (I don't care about how to write in russian but only how to pronounce it) Jul 12 19:44:42 TAsn2: kachalka (colloq.) Jul 12 19:44:48 cool :) Jul 12 19:44:53 that's the word I knew Jul 12 19:44:55 thanks :) Jul 12 19:44:57 hm.. btw Jul 12 19:44:59 I knew Jul 12 19:45:01 khuy Jul 12 19:45:01 and Jul 12 19:45:10 pizda Jul 12 19:45:38 and suka Jul 12 19:45:38 :) Jul 12 19:45:59 TAsn2: kachat' here means to "pump" Jul 12 19:46:21 TAsn2: you need to memorise "bliad'" and "ebat'" and you're all set and ready for communication :D Jul 12 19:46:23 PaulFertser: so that's also from russian mat? :) Jul 12 19:46:41 PaulFertser: those sound very familliar as well Jul 12 19:46:44 wth u guys talking about, and more accurately, why? Jul 12 19:46:54 TAsn2: khuy and pizda are considered highly offensive, not usually used on radio or TV and such. Jul 12 19:46:55 F4t: you know russian, right? Jul 12 19:47:01 TAsn2: suka means female dog, it's not mat. Jul 12 19:47:12 PaulFertser: i c. was in the mat article :) Jul 12 19:47:16 TAsn2: but offensive too, though widely used, including TV series. Jul 12 19:47:42 PaulFertser, depends what series you can sometimes get "full" vocabulary... Jul 12 19:47:52 specifically russian gangster movies Jul 12 19:48:03 F4t: i'm not sure they are broadcasted on public tv. Jul 12 19:48:18 TAsn2: suka and pizda are in polish also offensive Jul 12 19:48:21 PaulFertser, they are, on non-prime time... midnight and stuff like that Jul 12 19:48:28 and looks like they means the same Jul 12 19:48:28 can you developers of openmoko-cdevel tell us or make a blog entry to know when does shr-testing come out? Jul 12 19:48:29 :P Jul 12 19:48:47 pbaxter: in future we will send notifications directly to your phone :P Jul 12 19:48:53 I can now feel at home in all the slavic countries :) Jul 12 19:48:57 btw, shouldnt there be an shr-stable? :) Jul 12 19:48:59 pbaxter: with some opimd backend :D Jul 12 19:49:00 pbaxter: hopefuly Jul 12 19:49:02 F4t: are you sure? I don't watch tv for like 2 years, but i think "khuy" and "pizda" are still "censored". Jul 12 19:49:03 this week Jul 12 19:49:04 :) Jul 12 19:49:09 but I'm promising nothing Jul 12 19:49:16 dos1: please can be serious? Jul 12 19:49:21 thx TAsn2 Jul 12 19:49:29 so this week is arriving we can get new testing? Jul 12 19:49:31 I think we should release a testing image already Jul 12 19:49:33 pbaxter: i'm serious. i'm planning to write RSS backend in opimd Jul 12 19:49:37 PaulFertser, it depends again on the raiting and the time of the movie, like you wont see exposed boobs on midday kiddy shows... same with bad language Jul 12 19:49:48 khuy... looks like chuj in polish :P Jul 12 19:49:50 pbaxter: I can vouche for him, I saw his todo Jul 12 19:50:03 F4t: are you that sure about russian public TV? Have you seen it yourself. Jul 12 19:50:17 PaulFertser: we get russian tv here Jul 12 19:50:21 at least some channels Jul 12 19:50:29 and we have the russian channel Jul 12 19:50:37 as I said, we have many russians in israel :) Jul 12 19:50:50 pbaxter: We are discussing it at the ML as we speak Jul 12 19:50:56 PaulFertser, pretty sure ive seen less then appropriate russian movies on tv... Jul 12 19:51:06 ok TAsn2 Jul 12 19:51:08 I'm not sure what will be decided, though I don't think it'll take more than this friday. Jul 12 19:51:41 btw, how can i install th green theme thingy? Jul 12 19:51:42 F4t: russians are somehow very strange. They prohibit usage of "mat" on TV but inappropriate gangster movies are quite common nevertheless. Jul 12 19:51:45 i wanna see how it looks Jul 12 19:51:48 any reason why there are no -dev packages (such as libglade-dev) ? Jul 12 19:52:04 F4t: opkg install green-theme-thingy.ipk Jul 12 19:52:11 I'm not sure about the exact name Jul 12 19:52:15 or where to get it from though. Jul 12 19:52:20 TAsn2: which theme is this? Jul 12 19:52:20 PaulFertser, its like bad language cencorship in general, though russian mat can get really colordull in comparison.... Jul 12 19:52:26 pbaxter: watch scap Jul 12 19:52:27 i mean greentheme Jul 12 19:52:38 pbaxter, watch scap Jul 12 19:52:55 never mind... needed to update the package list Jul 12 19:53:22 F4t, TAsn2 : you mean the green and black one? Jul 12 19:53:27 pbaxter: aye. Jul 12 19:53:30 ye Jul 12 19:53:32 ok got it Jul 12 19:53:35 F4t: it's funny _you_ tell _me_ about russian tv :D Jul 12 19:53:36 and when i find it? Jul 12 19:53:37 he meant it, I just tried clarifying his thoughts. Jul 12 19:53:42 where* Jul 12 19:53:54 PaulFertser, why is it funny? :) Jul 12 19:54:04 PaulFertser: you are an old dog ;) Jul 12 19:54:12 F4t: are you italian? Am i russian? Jul 12 19:54:28 those youngsters watch tv all the time nowdays Jul 12 19:54:38 ?! im confused Jul 12 19:54:46 F4t: where're you from? Jul 12 19:54:51 * TAsn2 thinks he's the youngest one here (not including dos1) Jul 12 19:54:52 TAsn2, F4t: where can i find the them we were talking about? Jul 12 19:54:59 PaulFertser, originally, mother russia... :) Jul 12 19:55:01 TAsn2: hehe ;) Jul 12 19:55:03 pbaxter: no idea, that's what F4t asked. Jul 12 19:55:10 F4t: and i still live here :D Jul 12 19:55:27 PaulFertser, ah cool... dont u watch tv at midnight? Jul 12 19:55:53 who's the youngest here? i'm from 92, someone younger, or i won? :D Jul 12 19:56:01 I think you won Jul 12 19:56:08 ur born in 92?! Jul 12 19:56:10 F4t: i don't watch tv for about 2 years. Before that i only watched 2x2 channel (mostly AdultSwim series, some drug-inspired cartoons). Jul 12 19:56:10 I don't think 93 born kids can read yet Jul 12 19:56:11 :) Jul 12 19:56:23 PaulFertser, lol Jul 12 19:56:42 F4t: yep, 1992 Jul 12 19:56:51 dos1, that would make you what? 14 y/o open source developer? Jul 12 19:56:51 dos1: you are now a senior then? Jul 12 19:56:58 17 Jul 12 19:56:59 ... Jul 12 19:57:04 maths is hard :) Jul 12 19:57:06 oh right... Jul 12 19:57:09 Derick: haha ;) Jul 12 19:57:10 ;D Jul 12 19:57:12 owned :D Jul 12 19:57:14 F4t: shesek Jul 12 19:57:27 17 is ok then :P Jul 12 19:57:30 damn im old Jul 12 19:57:32 F4t: after that i understood that it does me more bad than good, because watching is addictive and after something "acceptable" (like ATHF) i started to watch something really bad (like "Angry Kid"). Jul 12 19:57:35 that's senior year. Jul 12 19:57:58 F4t: haha yes you are ;) Jul 12 19:58:02 F4t: also TV distracted me from thoughts about life and i considered that to be a cheap cheat. Jul 12 19:58:03 I'm also old ;( Jul 12 19:58:06 too old. Jul 12 19:58:07 PaulFertser, serie names dont mean much to me, i have watched ANY tv for about 5-6 years Jul 12 19:58:17 F4t: you can look it up in WP :D Jul 12 19:58:17 ihavent* Jul 12 19:58:29 F4t: I only watch anime Jul 12 19:58:36 and actually I also watch while I work out Jul 12 19:58:44 And my favorite cartoon there was (and is) "12oz Mouse"! \o/ Jul 12 19:58:45 and sometimes late night discovery channel Jul 12 19:58:54 * dos1 is playing now with PackageKit... maybe it will help us to make SHR package manager Jul 12 19:59:13 TAsn2: probably the first anime i saw was GITS. Liked it a lot. Jul 12 19:59:15 dos1: we ain't gonna make an shr package manager! Jul 12 19:59:35 TAsn2: err, SHR frontend to package manager :P Jul 12 19:59:39 TAsn2: and my favourite anime movie is "Nasicaa of the Valley of the Wind" by H. Miyadzaki Jul 12 19:59:42 OH Jul 12 19:59:58 PaulFertser: actually Jul 12 20:00:06 TAsn2: package manager independent, there are backends for opkg, apt, yum and some others Jul 12 20:00:09 I only watched GITS once when I was way younger Jul 12 20:00:15 I should probably give it another go. Jul 12 20:00:25 dos1: sweet. :) Jul 12 20:00:29 why not then? :) Jul 12 20:00:33 is it finger friendly? Jul 12 20:00:54 btw, I know I'm talking about it quite a lot and haven't wrote a piece of code yet Jul 12 20:00:58 TAsn2: packagekit is daemon ;) i'm looking to write finger-friendly frontend :D Jul 12 20:00:59 TAsn2: i hope you saw "Bladerunner"? It's somewhat similar, i think GITS was partially inspired by that. Jul 12 20:01:15 though I'm really thinking about writing a sweet little package manager Jul 12 20:01:22 optimized for low power devices Jul 12 20:01:26 PaulFertser: I haven't Jul 12 20:01:32 actually I almost have last week Jul 12 20:01:34 though got bored Jul 12 20:01:46 TAsn2: bored by Bladerunner? Oh Jul 12 20:01:48 and watched simpsons the movie (again) Jul 12 20:01:56 PaulFertser: I'm new-age trash :) Jul 12 20:02:00 a Jul 12 20:02:12 dos1: so let me get this straight Jul 12 20:02:28 TAsn2: what's the year of your birth? Jul 12 20:02:45 you want to write a gui wrapper for a cli wrapper for a bunch of scripts that wrap around packages that in trun wrap around files? :) Jul 12 20:02:49 PaulFertser: 88 Jul 12 20:02:58 TAsn2: i'm 85, not a big difference Jul 12 20:03:00 TAsn2: Assassin in ASU was using packagekit (but assassin was a little buggy ;x) Jul 12 20:03:28 TAsn2: http://www.packagekit.org/ Jul 12 20:04:53 mrmoku: ping Jul 12 20:04:56 PaulFertser: yeah ;) Jul 12 20:05:20 ugh, I feel old :P Jul 12 20:05:21 PaulFertser: which btw means you are old Jul 12 20:05:23 as I feel old. Jul 12 20:05:24 :) Jul 12 20:05:41 Fuck, i knew that Jul 12 20:05:42 78er here... Jul 12 20:05:57 Derick: ouch. Jul 12 20:05:58 O:) Jul 12 20:06:15 PaulFertser: well you always have Derick Jul 12 20:07:06 you're all old :P Jul 12 20:07:19 that's true ;( Jul 12 20:07:21 I even don't celebrate my birthday to not think about another uselessly spent year :-/ Jul 12 20:07:21 you're as old as you feel Jul 12 20:07:22 ;) Jul 12 20:07:52 I don't think I'll live to see the day people stop using flash :( Jul 12 20:07:55 dos1: you may get there. Jul 12 20:08:22 TAsn2: what about the day when people stop using windows? Jul 12 20:08:23 OK, let's hope Jul 12 20:08:32 dos1: that'll happen soon enouh Jul 12 20:08:34 enough Jul 12 20:08:42 don't worry about that ;) Jul 12 20:08:45 ;) Jul 12 20:08:46 dos1, that'll happen... okay TAsn2 was faster :p Jul 12 20:08:55 ok, everyone cross your fingers Jul 12 20:09:00 I'm trying to connect to freenode Jul 12 20:09:03 using xchat Jul 12 20:09:06 I'll probably die Jul 12 20:09:14 but let's hope. Jul 12 20:09:43 well, when i started my IT adventure there already was Windows... so for me it's like it was everytime :( Jul 12 20:09:44 i'm connected to freenode through xchat Jul 12 20:09:48 but i also had Amiga Commodore :D Jul 12 20:09:58 with floppies Jul 12 20:10:10 dos1, pong Jul 12 20:10:26 I'm 20 , and when i started using computers, it was win 3.1 I used Jul 12 20:10:29 and soon enough Jul 12 20:10:39 and i remember flashing warning in red border "This game needs 1MB RAM memory to run" ; Jul 12 20:10:39 those disks were burning in my litter bin ;) Jul 12 20:10:40 ;) Jul 12 20:10:43 died. Jul 12 20:11:22 mrmoku: could you look at packagekit? is git version buildable? there already is recipe for that Jul 12 20:12:08 dos1, can take a look Jul 12 20:12:12 Later on I will be able to tell my kids: I used to configure my xorg.conf by hand Jul 12 20:12:17 not today though ;) Jul 12 20:12:22 going to bed now Jul 12 20:12:27 sometimes i even didn't use X :p Jul 12 20:12:34 mrmoku: version already there looks to be old as hell Jul 12 20:13:07 yep, 0.2.4 Jul 12 20:13:11 there is 0.4 branch Jul 12 20:13:25 pieterc: kids today don't need to do that anymore Jul 12 20:13:34 it does most of it work automatically... Jul 12 20:13:42 oh, there is even 0.5.0 Jul 12 20:13:59 dos1, will check that tomorrow Jul 12 20:14:10 gnight all :-) Jul 12 20:14:24 ahh, and TAsn_ I will update the Makefile for testing tomorrow Jul 12 20:14:29 to build without overlay and such Jul 12 20:14:47 we can start with what you proposed and see how it works out Jul 12 20:14:51 TAsn_, agree on that... nowadays they even buy a new computer when their system doesn't work anymore ;) Jul 12 20:14:57 anyway... gnight all :) Jul 12 20:15:08 I'm working on a 7yo computer atm :p Jul 12 20:19:22 mrmoku|away: thanks a lot :) Jul 12 20:19:38 pieterc: those damn kids, they are all alike. Jul 12 20:19:44 spoiled :) Jul 12 20:19:56 my computer is more than 7yo (I think) Jul 12 20:20:00 or maybe exactly 7yo Jul 12 20:20:08 and my laptop is ~ the same age Jul 12 20:20:16 (P3 600mhz) Jul 12 20:20:17 TAsn_: i have new laptop, but only because i won it :D Jul 12 20:20:28 dos1: won it how? Jul 12 20:20:57 TAsn_: in some contest Jul 12 20:21:10 IT contest of course Jul 12 20:21:18 figured Jul 12 20:21:22 what did you have to do? Jul 12 20:21:43 it was so suprised, cause it was very simple... Jul 12 20:22:11 TAsn_: answer to questions about hardware, Windows and Linux environments Jul 12 20:22:22 hehe cool. Jul 12 20:22:23 :) Jul 12 20:22:28 was it online? Jul 12 20:22:35 TAsn_: in first stages yes Jul 12 20:22:40 oh Jul 12 20:22:45 we have something similar here Jul 12 20:22:52 called codeguru Jul 12 20:23:01 kids under 18 are allowed to participate Jul 12 20:23:08 you first answer online questions Jul 12 20:23:17 as well Jul 12 20:23:23 never participated though Jul 12 20:23:31 as I only found out about it when I was 18+ ;\ Jul 12 20:24:43 anyhow, very cool :) Jul 12 20:24:48 I actually want a UMPC! Jul 12 20:24:55 though I can't afford it atm. ;\ Jul 12 20:25:18 as I wasted most of my money on a motorcycle license :) Jul 12 20:28:11 * dos1 is already able to do "opkg update" equivalent via packagekit interface, with indicating percentage progress Jul 12 20:28:49 TAsn_: one more funny thing about russian mat: jokes that are using mat only: http://en.wikipedia.org/wiki/Russian_jokes#Taboo_vocabulary Jul 12 20:29:43 dos1: btw I wrote myself a todo Jul 12 20:29:58 * Write a vcf -> opimd import script :) Jul 12 20:30:29 TAsn_: aren't here already people implementing that? Jul 12 20:30:33 Q-Master? Jul 12 20:30:43 dos1: it's not hard to implement... Jul 12 20:31:00 TAsn_: that's why he bugs me all the time for multiple fields support :P Jul 12 20:31:15 just a little mod to the existing vcf -> libebook :) Jul 12 20:31:27 dos1: what are the standard fields? Jul 12 20:31:42 TAsn_: needs to be specified :D Jul 12 20:31:48 I c :) Jul 12 20:31:50 I suggest Jul 12 20:31:54 but not by me, i'm only coder ;) Jul 12 20:32:18 name, surname, office, email, cellphone, homephone, workphone, fax (do people still use that?), address Jul 12 20:32:19 TAsn_: hey, after adding the sleep i get a working gsm shelf gadget (gsm strength) Jul 12 20:32:22 and that's about it ;) Jul 12 20:32:31 BluesLee: but? Jul 12 20:32:45 TAsn_: no "but" yet Jul 12 20:32:51 hehe cool :) Jul 12 20:32:54 I told you Jul 12 20:32:59 latest unstable is stable Jul 12 20:33:01 :) Jul 12 20:33:07 TAsn_: before i had always full strength Jul 12 20:33:22 i didnt used the latest one Jul 12 20:33:43 not including the bugs we sweep under the carpet Jul 12 20:33:52 BluesLee: then which? Jul 12 20:35:04 9th of july Jul 12 20:35:26 that's new enough Jul 12 20:35:27 :) Jul 12 20:35:33 what about suspend? i had problems with that too Jul 12 20:35:43 PaulFertser: I swear to god, I didn't understand any of these jokes ;) Jul 12 20:35:49 sometimes the guy doesnt suspend Jul 12 20:35:52 BluesLee: what problems? (none here) Jul 12 20:36:13 TAsn_: you can reread it or i can try to explain if you're interested. Jul 12 20:36:42 please explain the one with the construction workers Jul 12 20:36:42 maybe it does, wakes up immediately because of a gsm signal which is not shown ... dont know Jul 12 20:38:01 TAsn_: it's assumed that any sane construction worker will use lots of "mat" in such an event. Jul 12 20:38:08 oh Jul 12 20:38:09 :) Jul 12 20:38:11 okie. Jul 12 20:38:20 there is a nice theme from jesus mc cloud Jul 12 20:38:34 its fast Jul 12 20:38:50 PaulFertser: ok, reread the intro to that joke ;) Jul 12 20:39:09 a little bit too green but ist okay Jul 12 20:39:12 TAsn_: and the second joke uses the same root "khuy" in all the words yet it expresses something meaningful. Jul 12 20:39:56 PaulFertser: that's the third Jul 12 20:40:10 Ah, yes Jul 12 20:43:15 ok, i'll try to hack over packagekit Jul 12 20:43:31 looks like searching is also working Jul 12 20:43:33 ;) Jul 12 20:44:32 dos1: people generally tend to ship working software :) especially on the 0.4 branch Jul 12 20:47:14 ok, i'm off now Jul 12 20:47:16 good night Jul 12 20:47:26 night. Jul 12 21:17:50 *sigh* i hope connman fixes its shortcommings.... Jul 12 22:44:27 bye to all devs that today had loved me Jul 12 22:44:28 thanks **** ENDING LOGGING AT Mon Jul 13 02:59:57 2009