IRC log of #maemo for Thursday, 2010-12-16

DocScrutinizerI'm not even sure if A2DP is crypted OTA00:00
*** jophish has quit IRC00:00
DocScrutinizeror addressed at a particular peripheral (headphones)00:00
_trineI have a set of Nokia Bluetooth Stereo Headset BH-905 and I think they are very good00:00
lardmanit's not crypted00:01
DocScrutinizerafaik everything is crypted on BT OTA00:01
lardmanunless by hw00:01
asj_DocScrutinizer: ah, in bluez 4 anyways, rfcomm and l2cap are just sockets you can open, like tcp, udp.  a2dp is over avdtp which is over l2cap.  So if you wanted to do all the work yourself it would seem possible.  The crypting is done lower down, once paired you don't have to worry about it.00:01
DocScrutinizersure that's done in BT hw00:01
*** messerting has left #maemo00:01
_trineit would be nice if both myself and my wife godd listen at the same time00:01
jacekowskii'm pretty sure bt is not encryptec00:01
jacekowskibecause there are bt sniffers that just work00:01
_trinegodd // could00:02
jacekowskiand strong encryption would make it complicated00:02
DocScrutinizerexactly, the crypting is quite likely done in BT hw, and the pairing is nothing but negotiating a crypto key00:02
DocScrutinizerso you can't pair 2 headsets if this isn't implemented in BT chip firmware00:03
jacekowskithen how bt sniffers work00:03
DocScrutinizerI dunno00:03
*** benh has quit IRC00:03
DocScrutinizerdo they?00:03
*** habmala has quit IRC00:03
DocScrutinizernever seen any00:03
jacekowskiyes, you just switch it on and you can sniff00:04
DocScrutinizerif they listen to the key negotiation then it's simple00:04
jacekowskinot really00:04
jacekowskiif you can sniff openssh connection from start that doesn't mean you can decrypt it00:05
lardmanhttp://www.tomshardware.co.uk/forum/32519-23-secure-bluetooth-encryption00:05
DocScrutinizerif you tell a sniffer the 4 digit pin shared secret, then it's just that simple00:05
*** jrocha has quit IRC00:06
asj_well, and if it's 4 digits what's the brute force time to try 1000 combinations?00:06
jacekowski1ms00:07
asj_do you have anything to back that up?00:07
*** rute has quit IRC00:09
jacekowskiwell, modern cpu can do couple millions md5 hashes per second00:09
jacekowskiand cheap bluetooth in phone can connect in miliseconds00:10
asj_the connect time per spec is ~6seconds00:11
asj_only bluetooth LE is ms range00:11
DocScrutinizerlardman: thanks :-)00:12
nomisI don't get how all this throwing around with numbers is supposed to help with recovering a session key. Even millions of md5 hashes won't help there.00:12
*** rd has quit IRC00:12
lardmanDocScrutinizer: not sure that's the best ref ever mind you00:13
DocScrutinizerlardman: nevertheless it's good enough to support my thoughts00:13
ds3what pin? BT doesn't use a pin00:13
lardmanhmm must be getting late, am having troubles working out how to efficiently take a list of integers and make them contigous but still ordered00:13
derfWhat the gekk does it mean for integers to be contiguous?00:14
lardmanwell 1 and 200 are integers00:14
DocScrutinizerand now - as it seems A2DP is NOT sent in plain text either (freq hopping always taking place) - it's impossible to pair multiple devices if the BT firmware doesn't explicitly support that00:14
derflardman: Okay, I don't have to revoke your mathematics credentials so far.00:15
*** SpeedEvil has quit IRC00:15
lardmanbut they don't have a spacing of 100:15
lardmanso I'd like to reduce that list to 1,200:16
lardmanwhich is how I was defining contiguous integers00:16
lardmanin my odd engineeringy way ;)00:16
derfI thought perhaps you meant contiguous in RAM.00:16
lardmanno, just in the ether00:16
DocScrutinizerdepending on how fast the BT chip can switch status&config, you might mux 2 p2p A2DP sessions00:17
*** Juozapas has left #maemo00:17
derfBut, I don't see how what you're saying is at all useful.00:17
lardmanwell I need to sort plugins into priority order, accounting for the fact that new plugins might be added and old ones removed00:17
derfn=length_of_list(l); for(i=1;i<n;i++)l[i]=l[0]+i; does what you want.00:17
lardmanso I need to add, keeping what I can of the existing order, then remove any gaps and repeats00:17
lardmanthey are not ordered to begin with though00:18
*** benh has joined #maemo00:18
derfAdd a qsort() before that then.00:18
DocScrutinizerlardman: you're talking about the good old BASIC line# renumbering :-D00:18
lardmanhmm, Qt has a qsort, well that saves me doing that then, all good00:19
DocScrutinizer(from the times where basic programs had line numbers)00:19
lardmanI seem to remember that you could assign any old number to the lines though?00:19
*** Free_maN has quit IRC00:20
DocScrutinizerderf: =l[0]+(i*skew)00:20
DocScrutinizerlardman: yes, and they had not to be 'contiguous', but were executed strictly in ascending order00:21
DocScrutinizerbtw COBOL did the same00:22
DocScrutinizerin very old standards00:22
DocScrutinizerCOBOL65 or sth :-P00:22
lardmanwhat I neglected to say is that while I need to sort one array, I need to know the sorted order of the original indices so that I can also rearrange some other related arrays00:23
lardmanso qSort() is out, and I'll have to diy I guess00:24
DocScrutinizereh?00:24
*** fab has quit IRC00:25
DocScrutinizerI'd suggest a pointer in each record of table A, pointing to corresponding records in tables B..n00:25
*** baraujo has quit IRC00:26
lardmanthese are QLists00:26
DocScrutinizerthe you still can use any sort of sort of^H^H you like00:26
DocScrutinizerso what? isn't a QList a linked list of QObjects?00:26
lardmanyes, but afaiu it can't contain both a numeric value (which I want to sort) and some sort of pointer so I can keep track of how my other lists need to be reordered00:27
lardmanI may be wrong though00:27
*** mardi has quit IRC00:28
lardmanhastable I guess00:28
DocScrutinizernah, not the list holds the pointers, the objects have to00:28
DocScrutinizeryou instantiate a new Qobject that inherits the original Qobject plus the pointer(s)00:29
lardmanI'm not sure how that will remain sortable though, ah I guess as long as it has a < operator it will be00:30
lardmanseems like overkill mind you00:30
DocScrutinizerthen you define the sort function, which is taking the "line number" out of each QList.Qobject and creates a sorted QList, then you discard the original list00:30
*** briglia has quit IRC00:31
DocScrutinizerth enew QList has the Qobjects sorted and still they have each a pinter to their counterpart in another set of objects00:32
*** renatofilho has quit IRC00:32
DocScrutinizer(overkill) well if you're using objects then you need to do OO, and also use object properties00:34
lardmanyeah but I'm only using objects because that's the way Qt likes to handle everything00:35
DocScrutinizera paradigm break is always causing headache00:35
*** setanta has quit IRC00:35
DocScrutinizeronce you understand that what you call an object is actually just a pointer, you get a clearer idea of the actual overhead involved00:37
*** mairas has quit IRC00:38
DocScrutinizerso a QList is a linked list of address pointers00:39
*** Choom has quit IRC00:40
*** Choom has joined #maemo00:40
*** zap has quit IRC00:41
DocScrutinizers/is a/is just a simple00:43
lardmanit is simple, but requires me to subclass the QList, which I can't be arsed to do00:44
DocScrutinizerwouldn't it just be enough when you carefully design the objects in that list?00:45
lardmanotoh it might make sense to combine all my data in a single object to save time00:45
DocScrutinizeryes, exactly00:45
lardmannot at this time of night no :)00:46
DocScrutinizerhmm, have to get up in 6h00:47
DocScrutinizermight actually be better to *be* up in 6h :-P00:48
lardmanit's also debatable whether the having a single list would be quicker as I need to search over two of the data types00:48
derfIf you're using a linked list, it will be slow.00:49
derf-= The End =-00:49
DocScrutinizeryou can create a second list from the first one, as a result of sorting it by second criterion00:49
lardmanQList is not a linked list00:49
lardmanit's an array of pointers00:50
derfWell, DocScrutinizer said it was. I don't know a damn thing about Qt.00:50
DocScrutinizerouuff00:50
DocScrutinizerwell, in the end it doesn't matter how it's built internally00:51
lardmananyway the added hassle of making my own type, implementing searching across more than one element of that type, etc., is why I'm happy to stick with a QList until such time as it looks too this that the other or slow00:51
DocScrutinizerthat's the nice thing about OO00:51
derfI mean, you're talking about a list of plugins.00:52
derfPeople are going to have, what, a dozen of them?00:52
lardmanquite, so it really makes no odds other than personal satisfaction00:52
derfWake me when you have a hundred thousand, at least.00:52
DocScrutinizeryeah, academic problem00:52
*** andre__ has quit IRC00:53
*** geaaru has quit IRC00:56
*** rcg has quit IRC00:58
*** mitsutaka has quit IRC00:59
*** piggz has quit IRC00:59
*** me|kor has quit IRC01:00
*** me|kor has joined #maemo01:01
*** MadViking has quit IRC01:04
*** hannesw__ has joined #maemo01:05
*** ToJa92 has quit IRC01:08
*** hannesw_ has quit IRC01:08
*** edisson has quit IRC01:08
*** jpinx-eeepc has quit IRC01:11
*** SpeedEvil has joined #maemo01:11
*** MadViking has joined #maemo01:13
*** nox- has joined #maemo01:15
*** Psi has quit IRC01:17
*** Psi has joined #maemo01:17
*** kkb110 has quit IRC01:18
*** BCMM has quit IRC01:20
*** Natunen has quit IRC01:26
*** otep has joined #maemo01:30
*** edisson has joined #maemo01:31
*** edisson has quit IRC01:35
*** millenomi has quit IRC01:38
*** lardman has quit IRC01:40
*** Termana has joined #maemo01:47
Termanagood morning01:47
*** kimitake has joined #maemo01:49
*** pcacjr has quit IRC01:54
*** Rarok has quit IRC01:56
*** Modeless has joined #maemo01:59
lcuklardman|gone, i miss vb collections :P02:02
MohammadAGmorning Termana02:02
*** Modeless has quit IRC02:03
*** dneary has quit IRC02:04
*** trbs has quit IRC02:05
*** xim_ has quit IRC02:07
*** BabelO has quit IRC02:07
*** kakashi_ has quit IRC02:10
*** Termana_ has joined #maemo02:12
pupnikminitube is broken here... it plays a few seconds then skips to the next video02:12
pupnikis mytube working again?  alternatives?02:13
*** Termana has quit IRC02:14
*** mitsutaka has joined #maemo02:16
*** jpinx-eeepc has joined #maemo02:21
*** Termana_ is now known as Termana02:28
*** arno0ob has quit IRC02:30
*** arno0ob has joined #maemo02:31
Psianyone used a 32gb microsd card in the n900?02:35
*** kthomas has quit IRC02:37
*** kthomas has joined #maemo02:37
*** FireFly has quit IRC02:39
pupnikprobably02:39
MohammadAGpupnik, cuteTube02:41
pupnikty MohammadAG02:46
*** mreggen has quit IRC02:53
*** githogori has joined #maemo02:53
*** ebzzry_ has joined #maemo02:54
*** ebzzry_ is now known as ebzzry02:54
*** FIQ has quit IRC02:55
*** ||jess| has quit IRC02:57
*** luke-jr has quit IRC03:00
*** luke-jr has joined #maemo03:01
*** Bash has quit IRC03:02
*** tchan1 has quit IRC03:02
*** mardi has joined #maemo03:15
*** ||jess| has joined #maemo03:23
*** dolp has quit IRC03:24
*** FIQ|n900 has joined #maemo03:26
*** aloisiojr has quit IRC03:33
*** Chiku01 has joined #maemo03:35
*** Chiku|dc has quit IRC03:38
*** Chiku has joined #maemo03:38
DocScrutinizerpupnik: http://meego.gitorious.org/maemo-multimedia/pulseaudio-modules-meego/blobs/master/src/common/optimized.c#line193   #line211  and a special goodie: #line369,37003:41
*** Chiku01 has quit IRC03:41
*** Svavel has quit IRC03:44
*** Chiku has quit IRC03:44
*** Chiku has joined #maemo03:45
*** felipe` has quit IRC03:47
*** ||jess| has quit IRC03:48
*** Chiku|dc has joined #maemo03:50
*** Chiku has quit IRC03:52
*** Gorroth_ has quit IRC03:53
*** Gorroth has joined #maemo03:53
*** Gorroth has quit IRC03:53
*** Gorroth has joined #maemo03:53
*** Gorroth has quit IRC03:53
*** Gorroth has joined #maemo03:53
*** eggonlea has joined #maemo03:54
*** wizL has quit IRC03:56
*** KMFDM has quit IRC03:58
MohammadAGDocScrutinizer, technically, if I compile a zImage with the same patchset as a different one, shouldn't modules load fine?03:59
DocScrutinizerumm, yes?04:00
*** shamus has quit IRC04:00
DocScrutinizerdon't they?04:00
*** kimitake is now known as kimitake_idle04:01
DocScrutinizeras long as kernel is technically same patchlevel and has same version-magic04:01
MohammadAGk, now I'm certain meego has a fail repo system04:02
DocScrutinizerhaha04:02
MohammadAGI applied patches, first of all the modem failed to get patched, second, the lp5whatever.h file was missing04:02
MohammadAGand of course, no instructions on how to build a kernel, only cryptic messages in a .spec file04:03
MohammadAGyou need to figure out the rest yourself04:03
*** shamus has joined #maemo04:05
MohammadAGDocScrutinizer, have a look at it http://meego.gitorious.org/meego-os-base/kernel-source/trees/master04:05
DocScrutinizeryou think I need some more to feel depressed? Not really04:06
DocScrutinizerbtw gitorious is slow like tmo04:07
MohammadAGgitorious is fine04:07
DocScrutinizereven gave a "GURU ERROR:" pfffft04:07
MohammadAGlol04:07
MohammadAGworking fine for me, weird04:07
DocScrutinizergot better since an hour04:08
*** Wizzup has quit IRC04:08
MohammadAGfunny thing is, you ask for help in #meego, and everybody's too busy to help04:08
MohammadAGso, they open sourced the OS, and ruined the documentation04:09
DocScrutinizerAHAAAA! the missing documentation - now everything becomes clear and bright: http://meego.gitorious.org/maemo-multimedia/pulseaudio-modules-meego/blobs/master/src/voice/module-meego-voice.c#line31304:09
*** kW has quit IRC04:10
MohammadAGwhy is each line commented out with a /* */?04:10
MohammadAG// is enough :/04:10
*** Modeless has joined #maemo04:11
derfSome of us still believe C++ comments in C are heresey.04:11
*** kW_ has joined #maemo04:11
ieatlintyes, reject c99... c89 is the only true c04:12
derfI will also accept ISO C90.04:12
ieatlinti suspect that can be turned into a t-shirt04:12
*** hannesw__ has quit IRC04:12
*** kW_ has quit IRC04:13
derfOf course, the real problem is that MSVC still doesn't support C99, though it does support that particular feature.04:13
ieatlintheh, so does gcc in c89 mode04:13
DocScrutinizerREM we need 17 more different methods to make lines a comment04:14
DocScrutinizer# don't you think so?04:14
DocScrutinizer.     *    maybe even COBOL style as well04:15
ieatlintsounds like a fantastic idea04:16
*** kW_ has joined #maemo04:16
*** kW_ has quit IRC04:18
*** kW_ has joined #maemo04:19
*** merlin1991 has quit IRC04:25
*** NishanthMenon has quit IRC04:32
*** flo_lap has joined #maemo04:35
*** kW_ has quit IRC04:35
*** kW_ has joined #maemo04:36
*** kW_ has quit IRC04:37
*** florian has quit IRC04:39
*** kW_ has joined #maemo04:44
*** nox- has quit IRC04:47
*** b-man` has quit IRC04:48
*** b-man` has joined #maemo04:51
*** kW_ has quit IRC04:52
*** t_s_o has quit IRC04:52
*** kW_ has joined #maemo04:53
*** kkb110 has joined #maemo04:57
*** benh has quit IRC05:02
*** kW_ has quit IRC05:02
*** benh has joined #maemo05:03
*** kW_ has joined #maemo05:03
*** hcm has joined #maemo05:04
*** pcfe has quit IRC05:06
*** hcm_ has quit IRC05:07
*** tackat has joined #maemo05:07
*** pcfe has joined #maemo05:08
*** pcfe has quit IRC05:08
*** pcfe has joined #maemo05:08
*** mrlanrat has joined #maemo05:16
*** mrlanrat has left #maemo05:17
*** straind` has joined #maemo05:22
*** valdyn has quit IRC05:22
*** Corsac has quit IRC05:22
*** kW_ has quit IRC05:23
*** valdyn has joined #maemo05:23
*** straind has quit IRC05:24
*** Corsac has joined #maemo05:24
*** stonda has quit IRC05:24
*** Wamanuz has quit IRC05:24
*** stonda has joined #maemo05:24
*** Wamanuz2 has joined #maemo05:24
*** tackat has quit IRC05:25
*** tackat has joined #maemo05:25
*** Sickki has quit IRC05:25
*** Jartza has quit IRC05:25
*** Bleadof has quit IRC05:25
*** jjo_ has quit IRC05:25
*** Jartza has joined #maemo05:25
*** jjo_ has joined #maemo05:25
*** kuuntelija has joined #maemo05:26
*** Sickki has joined #maemo05:27
*** kW_ has joined #maemo05:30
*** maybeArgh has joined #maemo05:30
*** X-Fade_ has joined #maemo05:30
*** X-Fade has quit IRC05:32
*** kkb110 has quit IRC05:32
*** maybeWTF has quit IRC05:34
*** Jay_BEE has joined #maemo05:36
Jay_BEEhi.05:37
comawhitehi05:37
comawhitemobile develop is complex05:43
FauxFauxHow did you know Jay_BEE was going to ask if mobile development was easy?!05:43
Jay_BEEuhh...05:44
*** bigbrovar has joined #maemo05:45
*** kW_ has quit IRC05:46
*** Suiseiseki has quit IRC05:48
*** kW_ has joined #maemo05:49
*** Suiseiseki has joined #maemo05:49
*** crashanddie_ has quit IRC05:50
*** kW_ has quit IRC05:50
*** Wizzup has joined #maemo05:51
*** Natunen has joined #maemo05:52
*** kW_ has joined #maemo05:52
*** pupnik has quit IRC05:53
*** pupnik has joined #maemo05:56
*** rute has joined #maemo05:56
*** dockane_ has joined #maemo06:00
*** dockane has quit IRC06:02
*** kW_ has quit IRC06:04
*** kW_ has joined #maemo06:06
*** dolppp has joined #maemo06:07
*** asj__ has joined #maemo06:09
*** asj_ has quit IRC06:11
*** kW_ has quit IRC06:14
*** dolppp has quit IRC06:15
*** swc|666 has joined #maemo06:34
*** atompower has joined #maemo06:38
*** atompower has left #maemo06:43
*** Killman has joined #maemo06:52
*** Killman has left #maemo06:54
*** tackat has quit IRC06:55
*** tackat has joined #maemo06:59
*** pupnik has quit IRC07:08
*** pupnik has joined #maemo07:10
*** bmidgley_ has joined #maemo07:11
*** z4chh has joined #maemo07:26
*** lcuk has quit IRC07:27
comawhiteFauxFaux, that wasn't meant for Jay_BEE07:28
comawhiteI was just saying it because I'm frustrated at it07:28
Jay_BEEi believe FauxFaux was having fun07:29
comawhitehehe07:29
comawhiteugh I wish they'd update cmake to 2.807:29
comawhite:(07:29
*** DocScrutinizer has quit IRC07:34
*** timeless_mbp has quit IRC07:34
*** DocScrutinizer has joined #maemo07:34
*** comawhite is now known as comawhite|laptop07:34
*** comawhite|laptop is now known as comawhite|lappy07:34
*** DocScrutinizer-8 has quit IRC07:34
*** felipe` has joined #maemo07:39
ieatlintoooh, google just taught me a new word... "penultimate" .. now i can sound even more bombastic07:41
*** Termana has quit IRC07:41
*** DocScrutinizer-8 has joined #maemo07:48
*** DocScrutinizer-8 has joined #maemo07:48
*** tchan has joined #maemo07:55
*** mikki-kun has quit IRC08:00
*** MadViking has quit IRC08:02
*** Malin_ has quit IRC08:07
*** Termana has joined #maemo08:27
*** Modeless has quit IRC08:30
*** slonopotamus has joined #maemo08:37
slonopotamusso, there is dbus activation that startups services ondemand. now, is there dbus DEactivation so service will stop when nobody it connected to it via dbus?08:41
slonopotamusmorning, btw08:41
*** Termana has quit IRC08:44
*** FireFly|n900 has quit IRC08:48
*** Termana has joined #maemo08:48
*** croppa has joined #maemo08:48
*** bigbrovar has quit IRC08:53
*** ferdna has quit IRC08:53
slonopotamusother question -- anyone knows threaded mail reader for n900? :)08:53
*** jo-erlend has quit IRC08:55
*** Guest21321 has joined #maemo08:57
*** me|kor has quit IRC08:58
*** FireFly|n900 has joined #maemo08:59
*** rmoravcik has joined #maemo09:00
*** Guest21321 has quit IRC09:00
*** rmoravcik has left #maemo09:02
*** KMFDM has joined #maemo09:02
*** bigbrovar has joined #maemo09:04
*** bigbrovar has quit IRC09:04
*** slonopotamus has quit IRC09:05
*** rmoravcik has joined #maemo09:05
*** fab has joined #maemo09:09
*** lcuk has joined #maemo09:11
*** drj_cro has joined #maemo09:12
*** dazo_afk is now known as dazo09:14
*** tekojo has joined #maemo09:19
*** flo_lap has quit IRC09:21
*** ppenz has joined #maemo09:24
*** Natunen has quit IRC09:27
*** timeless_mbp has joined #maemo09:27
*** DerSaidin has quit IRC09:30
*** larsivi has joined #maemo09:31
*** DerSaidin has joined #maemo09:31
*** millenomi has joined #maemo09:36
*** Dragnslcr has quit IRC09:36
*** jpe has joined #maemo09:37
*** eMHa has quit IRC09:39
*** PhonicUK has joined #maemo09:39
*** Dragnslcr has joined #maemo09:39
*** bigbrovar has joined #maemo09:40
*** geaaru has joined #maemo09:40
*** X-Fade_ is now known as X-Fade09:42
*** X-Fade has joined #maemo09:42
*** benh has quit IRC09:44
*** delphi has joined #maemo09:46
*** redeemarried has quit IRC09:46
*** gaveen has joined #maemo09:47
*** hannesw__ has joined #maemo09:47
alteregoI think thp's blog post is a bit off. What core apps use Qt? I can't think of one that would require backwards maintainability.09:50
*** kwek has joined #maemo09:51
*** redeeman has joined #maemo09:51
*** zap has joined #maemo09:52
*** tugrik has quit IRC09:56
*** harbaum_ has joined #maemo09:56
*** nicu has joined #maemo09:56
*** RobbieThe1st has joined #maemo09:58
*** dneary has joined #maemo10:02
* DocScrutinizer51 waves. bbl10:02
*** andrei1089 has joined #maemo10:05
*** |187| has joined #maemo10:08
*** trumee is now known as trumee_away10:08
*** bigbrovar_ has joined #maemo10:11
*** bigbrovar has quit IRC10:12
*** Wikier has joined #maemo10:12
*** |187| has quit IRC10:13
*** lardman has joined #maemo10:16
*** crashanddie has joined #maemo10:16
*** crashanddie has joined #maemo10:16
*** svillar has joined #maemo10:17
*** Retrocz has joined #maemo10:19
*** dneary has quit IRC10:20
*** trupheenix has joined #maemo10:22
*** tackat has quit IRC10:22
*** andrenarchy has joined #maemo10:22
*** mardi has quit IRC10:23
*** ftrvxmtrx has quit IRC10:24
*** avs has joined #maemo10:24
*** andrei1089 has quit IRC10:27
*** jrocha has joined #maemo10:28
*** Retrocz has quit IRC10:30
*** bergie has joined #maemo10:31
*** calvaris has joined #maemo10:33
*** b-man` has quit IRC10:34
*** vanadismobile has joined #maemo10:36
*** janin has quit IRC10:40
*** vanadismobile has quit IRC10:40
Termana114 tabs, 4.6 vaccinations provided, 11.4 books donated, 0.6 person's clean water provided, 1.1 square feet of shelter provided and 11.4 trees planted10:41
TermanaFeel the burn of my chrome for a cause10:41
*** janin has joined #maemo10:41
*** tekojo_ has joined #maemo10:45
*** tekojo has quit IRC10:46
*** tekojo_ is now known as tekojo10:46
*** tekojo has joined #maemo10:46
*** drj_cro has quit IRC10:46
*** andrei1089 has joined #maemo10:48
*** Jay_BEE has quit IRC10:49
*** benh has joined #maemo10:49
*** mikki-kun has joined #maemo10:49
*** eMHa has joined #maemo10:50
*** dazo is now known as dazo_afk10:50
*** C-S-B has quit IRC10:51
*** achipa has joined #maemo10:53
*** achipa has joined #maemo10:53
*** FIQ|n900 has quit IRC10:54
*** gaveen has quit IRC10:55
*** SmilybOrg has joined #maemo10:55
*** Termana_ has joined #maemo10:56
*** Termana has quit IRC10:56
*** Termana_ is now known as Termana10:56
*** dos1 has joined #maemo10:57
*** SmilyOrg has quit IRC10:58
*** dneary has joined #maemo11:00
*** spiritd has joined #maemo11:00
*** dvaske has joined #maemo11:01
*** kkb110 has joined #maemo11:02
*** Natunen has joined #maemo11:03
*** deegee__ has joined #maemo11:05
*** iDont has joined #maemo11:06
*** gaveen has joined #maemo11:07
*** iDont has quit IRC11:09
thpalterego: i'm not talking about core apps requiring qt - do i?11:10
*** gomiam has joined #maemo11:11
*** zap has quit IRC11:11
thp..or backwards maintainability for that matter.11:12
*** andrenarchy has left #maemo11:14
*** MacDrunk has joined #maemo11:15
*** ftrvxmtrx has joined #maemo11:16
*** pupnik has quit IRC11:16
*** pupnik has joined #maemo11:16
*** FIQ|n900 has joined #maemo11:16
*** MacDrunk has quit IRC11:16
ebzzryIs there a way to send mail from the command line on Maemo 5?11:17
spiritdhttp://www.simplehelp.net/2008/12/01/how-to-send-email-from-the-linux-command-line/11:18
spiritd?11:18
spiritddunno11:18
*** Dialekt has joined #maemo11:19
*** RST38h has quit IRC11:19
*** RST38h has joined #maemo11:22
ebzzryspiritd: Sorry, no. That's not it.11:23
ieatlintyou can use dbus to create a new email and fill in the recipient, subject, body (and attach any files)... but would require pressing the send button still11:24
*** kthomas has quit IRC11:25
*** scoobert2on has quit IRC11:26
*** FIQ|n900 has quit IRC11:26
*** tackat has joined #maemo11:28
*** drj_cro has joined #maemo11:29
*** _berto_ has joined #maemo11:31
alteregothp: seemed like it, with the mention of a qt legacy package. I can't see the use if all packages that use it are open.11:32
*** timeless_mbp has quit IRC11:33
ebzzryieatlint: where can I get more information on that?11:38
*** user____ has joined #maemo11:38
ieatlintum, i think it's on the wiki... will check11:39
ieatlintif not, i have an old piece of code i can probably find where i did it11:39
*** trupheenix has quit IRC11:39
ieatlinthttp://wiki.maemo.org/Phone_control#Messaging has a very basic example11:39
*** murrayc has joined #maemo11:41
*** florian_kc has joined #maemo11:43
*** florian_kc has quit IRC11:43
*** florian_kc has joined #maemo11:43
*** SmilyOrg has joined #maemo11:43
*** florian_kc is now known as florian11:44
*** SmilybOrg has quit IRC11:47
*** Flanbix has quit IRC11:49
*** simeoni has joined #maemo11:51
*** infobot has quit IRC11:51
user____apt-get update; apt get install apt; gives package apt is not available but the following packages replaces it, apt-utils, etc. I already have apt-utils and apt-get remove apt would remove apt-utils as well... i have some nokia repos, extras, extras-devel and extras-devel-testing in my sources.list. how can I resolve this?11:52
*** Flanbix has joined #maemo11:53
*** andrei1089 has quit IRC11:56
DocScrutinizer51resolve what?11:57
thpalterego: where was a qt legacy package mentioned in the blog post?11:57
*** trupheenix has joined #maemo11:59
*** infobot has joined #maemo12:00
user____DocScrutinizer51: apt-get upgrade wants to upgrade apt but it doesn't work. sorry forgot to mention that :)12:00
*** andrei1089 has joined #maemo12:02
DocScrutinizer51probably apt-get upgrade no good idea anyway12:02
*** kthomas_vh has joined #maemo12:02
user____DocScrutinizer51: apt is the only package left12:03
*** lardman has quit IRC12:03
*** The_Fellow1 has joined #maemo12:07
*** ||jess| has joined #maemo12:07
*** kthomas_vh has quit IRC12:07
*** swc|666 has quit IRC12:08
*** kthomas_vh has joined #maemo12:08
*** polymar has joined #maemo12:10
*** retro|cz has joined #maemo12:14
*** FireFly|n900 has quit IRC12:17
*** kuuntelija has quit IRC12:18
*** Natunen has quit IRC12:19
*** lfod- has quit IRC12:20
*** Venemo has joined #maemo12:22
*** hurbu has joined #maemo12:22
*** user____ has quit IRC12:23
*** Sicelo has joined #maemo12:24
Venemohi guys12:24
*** zap has joined #maemo12:25
*** baraujo has joined #maemo12:27
*** Sicelo has quit IRC12:28
*** kW_ has joined #maemo12:28
*** andrei1089 has quit IRC12:30
*** viggi has quit IRC12:35
*** Natunen has joined #maemo12:35
spiritdwhere can I download official firmware for n900 with EN localization12:37
jacekowski~flashing12:39
infobotsomebody said flashing was http://wiki.maemo.org/Updating_the_tablet_firmware12:39
jacekowskiall links are there12:39
*** mikki-kun has quit IRC12:40
*** kuuntelija has joined #maemo12:41
*** Malin_ has joined #maemo12:42
*** trupheenix has quit IRC12:42
spiritdjacekowski thx12:43
*** lizardo has joined #maemo12:43
*** mardi has joined #maemo12:46
*** dazo_afk is now known as dazo12:47
*** mardi has quit IRC12:51
*** BCMM has joined #maemo12:52
*** trupheenix has joined #maemo12:52
*** FIQ|n900 has joined #maemo12:53
*** woodong50_______ has joined #maemo12:54
*** PhonicUK has quit IRC12:54
*** viggi has joined #maemo12:55
*** woodong50_______ has quit IRC12:56
*** Khertan_ has joined #maemo12:56
Khertan_Morning everyone !12:57
pupnikservus Khertan_12:59
Khertan_servus humillimus Domine spectabilis pupnik13:01
*** benJIman has quit IRC13:01
chem|stgorillapod mobile works!13:02
pupnikty, learned something today13:02
MohammadAGmorning13:05
*** vanadismobile has joined #maemo13:07
*** lardman|gone is now known as lardman13:07
RST38hhttp://steve-yegge.blogspot.com/2010/12/haskell-researchers-announce-discovery.html13:07
*** benJIman has joined #maemo13:08
*** jpinx-eeepc has quit IRC13:09
Venemomorning MohammadAG :)13:10
*** timeless_mbp has joined #maemo13:11
*** ZZzzZzzz1 has quit IRC13:11
RobbieThe1stRST38h: That's surprisingly funny13:12
*** timeless_mbp has quit IRC13:13
*** timeless_mbp has joined #maemo13:13
*** setanta has joined #maemo13:15
pexiare there applications that will make n900 act as a bluetooth keyboard & mouse remote controlling htpc/ps3?13:15
pexilike logitech dinovo13:15
pexi+mini13:15
MohammadAGmorning Venemo :)13:15
retro|czWhere I should copy jazz jackrabit files on NOKIA N900 (openjazz) ?13:15
retro|czTried everything :(13:15
*** jpinx-eeepc has joined #maemo13:15
pexihttp://www.logitech.com/en-us/keyboards/keyboard/devices/384813:15
VenemoMohammadAG: interested in the latest version?13:16
lcukpexi, bluemaemo afaik13:16
pexiofc dinovo is great but also in price :)13:16
retro|czhttp://maemo.org/downloads/product/Maemo5/wolf3d/ - copy files to MyDocs13:16
retro|czI have no folder MyDocs on Nokia N900 :(13:16
*** croppa has quit IRC13:17
*** spiritd has quit IRC13:17
*** jayne has quit IRC13:17
marmouteretro|cz: because your n900 is plugged13:17
retro|czmarmoute, so how can I copy files there ?13:17
pexilcuk, thanks13:17
retro|czmarmoute, using USB cabel to copy13:17
MohammadAGVenemo, sure :)13:18
pexisadly no win media center support13:18
VenemoMohammadAG: ok, moment :)13:18
*** dos1 has quit IRC13:20
*** jayne has joined #maemo13:21
*** jayne has quit IRC13:21
*** jayne has joined #maemo13:22
pexioh. media center version works13:23
pexigreat13:23
pexi:)13:23
Khertan_MohammadAG: did you have a patched version of MfE which works with gmail email ?13:23
Khertan_:)13:23
MohammadAGisn't MfE closed? :P13:23
*** ZZzzZzzz1 has joined #maemo13:23
marmouteretro|cz: the MyDocs director is the one mounted13:24
*** juhjokel has joined #maemo13:24
Khertan_MohammadAG: maybe13:24
Khertan_:(13:24
phellarvMohammadAG: Like that has stopped you before ;-P13:24
retro|czmarmoute, ok13:24
Khertan_MohammadAG: so maybe time to start an open source implementation working with modest ?13:24
Khertan_:)13:24
MohammadAGmediaplayer's OSS implementation in progress :P13:25
* MohammadAG removes the 's13:25
Khertan_grrr i got a sync error, nothing visible in modest, but got email notification13:25
* MohammadAG uses Nokia Messaging tbh13:25
*** FireFly|n900 has joined #maemo13:25
*** hurbu has quit IRC13:28
*** delphi has quit IRC13:29
*** tackat has quit IRC13:31
*** Ryback_ has joined #maemo13:32
*** Ryback_ has joined #maemo13:32
*** mikki-kun has joined #maemo13:35
*** nicu has quit IRC13:35
*** Ian-- has quit IRC13:42
*** Ian-- has joined #maemo13:46
*** mitsutaka has quit IRC13:46
*** marciom has joined #maemo13:47
RST38h"Wikileaks To Leak 5000 Open Source Java Projects With All That Private/Final Bullshit Removed "13:47
pupnikwow, http://blog.mises.org/13673/using-the-mises-catalog-with-android/13:49
RST38h?13:54
Venemoalterego: ping13:54
*** xMolatzen_dux has joined #maemo13:55
xMolatzen_duxhi13:55
Venemohello13:55
*** mairas has joined #maemo13:57
*** tackat has joined #maemo13:59
*** briglia has joined #maemo14:02
X-FadeMohammadAG: Yes, it works :)14:04
MohammadAGX-Fade, lol14:04
MohammadAGX-Fade, push email? :P14:04
pupnikRST38h: they have been open-sourcing economics books for 10 years14:04
pupnikmaking deals with publishers, copyright holders14:05
MohammadAGX-Fade, assuming I had no typos, this should launch a terminal the dbus way14:05
*** pcacjr has joined #maemo14:05
*** pcacjr has joined #maemo14:05
*** FIQ|n900 has quit IRC14:05
MohammadAGX-Fade, shouldn't it have imported the package by now?14:09
*** trupheenix has quit IRC14:10
trxwhere should i look for keyboard hooks, i want to simulate Fn button being pressed all the time in my app...14:11
trxany idea?14:11
MohammadAGcan't you just use normal key codes?14:11
MohammadAGif so, http://talk.maemo.org/showpost.php?p=650625&postcount=514:12
trxyes, but im incapable of setting the "shift" state to pressed all the time14:12
trxhmm14:13
*** The_Tall1 has joined #maemo14:13
trxfor Fn button key code i got 22814:13
trx(the blue arrow)14:13
MohammadAGno longer have the binary to check :P14:13
trxdoesnt matter anyways14:14
trxi can detect it being pressed14:14
trxthe problem is14:14
trxmy text field (gtk based) doesnt behave like other programs14:14
trxkeyboar wise14:15
trxeg, when you pres the blue arrow once, next key u press will be like u were holding the arrow14:15
trxin my text field14:15
trxyou have to hold the arrow and press the key14:15
trxso im trying to simulate that behavior manualy...14:16
trxsorry for my english btw...14:16
trx(and my general typing :P)14:16
*** trupheenix has joined #maemo14:16
*** FireFly|n900 has quit IRC14:17
*** Rhoruns has joined #maemo14:17
MohammadAGhildon.Entry?14:23
*** t_s_o has joined #maemo14:27
*** bigbrovar_ has quit IRC14:28
*** linuxplatform has joined #maemo14:29
*** zutesmog has left #maemo14:30
*** FireFly|n900 has joined #maemo14:32
*** Bash has joined #maemo14:34
*** FireFly has joined #maemo14:37
*** kthomas_vh_ has joined #maemo14:38
*** linuxplatform has quit IRC14:39
*** kthomas_vh has quit IRC14:40
MohammadAGwasn't there a way to hide a desktop icon?14:40
*** vanadismobile has quit IRC14:42
*** edisson has joined #maemo14:43
*** MadViking has joined #maemo14:43
*** drako- has joined #maemo14:44
*** linuxplatform has joined #maemo14:45
*** dneary has quit IRC14:47
*** marciom has quit IRC14:47
*** comawhite|lappy is now known as comawhite14:48
*** RobbieThe1st has quit IRC14:48
*** marciom has joined #maemo14:48
trxMohammadAG tried adding NoDisplay=true in .desktop file?14:48
MohammadAGyeah, already found it14:48
*** svillar has quit IRC14:49
*** drako- has quit IRC14:50
*** PhonicUK has joined #maemo14:50
*** Termana has quit IRC14:51
*** andre__ has joined #maemo14:52
*** andre__ has quit IRC14:52
*** andre__ has joined #maemo14:52
*** bergie has quit IRC14:54
*** mardi has joined #maemo14:55
*** drako- has joined #maemo14:56
*** diegohcg has joined #maemo15:05
trx[13:25] <MohammadAG> hildon.Entry? nope, a custom memo box called SynEdit15:07
*** NishanthMenon has joined #maemo15:08
*** johndo has joined #maemo15:10
*** FIQ|n900 has joined #maemo15:10
MohammadAGtrx, why custom?15:10
*** sar3th|away is now known as sar3th15:10
trxbecause it supports code highlighting, code folding, macros, etc..15:11
trxvery powerfull..15:11
*** dos1 has joined #maemo15:12
trxu will see my app as soon as i figure out how to pack a .deb file :/15:12
*** xMolatzen_dux has left #maemo15:12
trxim new to linux programming15:12
pupnikforget the deb, share a tarball15:13
trxok15:14
*** renato has joined #maemo15:14
pupniki'm just suggesting it :_15:15
pupnikof course normal users want a .deb15:15
johndoanybody knows if there have power settings changed in pr1.3?15:15
johndomy device consumes twice the power when it's idle since i upgraded to 1.315:15
*** ploum has joined #maemo15:16
johndowith 1.2 i lost about 10% battery per day when idle and now at least 20% :(15:16
trxpupnik yeah, ill give u a link, just to check it out it is in dev stage, i plan to add alot more options15:16
*** dos1 has quit IRC15:17
*** dos1 has joined #maemo15:18
*** willer_ has quit IRC15:19
trxhttp://www.devbin.org/txpad.tar.gz15:19
trxif anyone wants to check it out so far..15:19
*** gaveen has quit IRC15:21
*** Venemo has quit IRC15:21
*** willer has joined #maemo15:22
*** Venemo_N900 has joined #maemo15:22
*** mardi has quit IRC15:22
*** willer is now known as willer_15:22
*** Rhoruns has quit IRC15:22
pupnikcongrats trx15:23
trxty15:23
lcuktrx, how does it perform compared to pygtkedit? (which has afaik an editing widget which is c based and does what yours does, or similar at least)15:24
trxi havent really tested pygtkedit much15:25
trxi wanted to create an ui which would be similar to ui i am used to15:26
trxlike delphi's code editor15:26
*** BCMM has quit IRC15:26
MohammadAGlcuk, and it uses a normal hildon widget afaik15:27
trxand add things that would speed up my work..15:27
*** marciom has quit IRC15:27
lcuktrx, of course15:27
lcukMohammadAG, it might do, but its been customised up to do code layout and afaik colorizing15:28
lcukask Khertan_15:28
*** chenca has joined #maemo15:28
MohammadAGlcuk, yep, I know, I use it ;)15:28
MohammadAGlcuk, actually, switched to Khteditor, kinda snappier15:29
lcuksure, i was just mentioning like for like though15:29
libbenfrals: Isnt fmms supposed to connect to internet like the most other apps do when you tap on a new incomming mms?15:30
libbennow i have to activate it manually first15:30
*** mairas has quit IRC15:31
*** ricki8024 has joined #maemo15:31
*** ricki8024 has quit IRC15:32
*** javispedro has joined #maemo15:32
comawhitewould it be wrong to have some parts of my application require portrait mode while others use Landscape?15:32
SpeedEvilno15:33
*** Openfree has joined #maemo15:33
SpeedEvilIf it's appropriate to the interface, it's just fine IMO.15:33
MohammadAGmorning javispedro15:34
SpeedEvilYou probably want to consider if there are ways round it15:34
*** jas4711 has quit IRC15:34
javispedromorning15:34
*** ricki8024 has joined #maemo15:35
*** Sicelo has joined #maemo15:35
Venemo_N900morning javispedro15:35
*** valeriusN has joined #maemo15:36
*** lardman is now known as lardman|gone15:36
*** frade has joined #maemo15:36
*** tackat has quit IRC15:37
comawhiteSpeedEvil, yeah, because I will have some views there just display a list of items that the user can select. see the server list, channel list, user list and thought it'd be better to display it using Portrait rather than Landscape for it15:37
*** tackat has joined #maemo15:37
comawhiteAnd wondered if user's be annoyed at that15:37
javispedroyes, they will be annoyed, but they bought a n900 so they will be used to being annoyed already.15:39
*** jpinx-eeepc has quit IRC15:39
comawhitejavispedro, hahah15:40
comawhiteI guess I could always make it use both15:40
*** mikki-kun has quit IRC15:41
comawhitebut now i'm going to try and get some more sleep15:42
*** jpinx-eeepc has joined #maemo15:42
*** mhlavink has quit IRC15:43
*** mlpug has joined #maemo15:44
*** cameris has joined #maemo15:44
camerishi. does somebody know of an gnupg2 port for the n810?15:45
*** mitsutaka has joined #maemo15:45
*** svillar has joined #maemo15:46
*** trupheenix has quit IRC15:47
*** trupheenix has joined #maemo15:47
*** trupheenix has quit IRC15:49
*** drj_cro has quit IRC15:50
*** vcgomes has joined #maemo15:50
camerisis gnupg2 available for n810? only know that it is for n900.15:51
*** machia has quit IRC15:51
*** trupheenix has joined #maemo15:51
*** machia has joined #maemo15:52
* javispedro sighs15:52
*** marciom has joined #maemo15:52
*** bergie has joined #maemo15:54
RST38hEHLO javispedro15:54
javispedroheya15:55
alteregotest & vote please :) http://maemo.org/packages/package_instance/view/fremantle_extras-testing_free_armel/xbox360-media-remote/1.0-1maemo2/15:55
MohammadAGwhat do I get in return?15:55
javispedroa botsnacK!15:56
alteregoMohammadAG: you ow me :P15:56
alteregoowe .. :P15:56
MohammadAGyou're right lol15:56
alteregobbl15:56
MohammadAGalterego, does it work?15:56
RST38hAn XBox360 maybe?15:56
MohammadAGactually15:57
alteregoyeah, see tmo thread for possible issues15:57
MohammadAGsince I'm against testing's policy15:57
MohammadAGImma vote up15:57
MohammadAGothers said it works15:57
alteregomainly "buttons too small"15:57
javispedrohah. "A method of operating a video game box via a wireless transceiver" is now patented.15:57
MohammadAGvoted based on others' opinions :P15:57
alteregoFine for me I may rejig iface for 1.1 ...15:58
MohammadAGthe N900's IR isn't a transceiver, see what I did there?15:58
alteregokthxbye bbl15:58
MohammadAGlol15:58
javispedrofscked patent system15:58
javispedroGranted December 7, 201015:59
* javispedro sighs15:59
*** tackat has quit IRC16:01
*** florian has quit IRC16:02
* javispedro sighs and sighs16:02
javispedro4 times in half an hour.16:03
javispedrobad day...16:03
*** gomiam has quit IRC16:03
*** aloisiojr has joined #maemo16:04
*** mikki-kun has joined #maemo16:05
GAN900What?16:05
*** FIQ|n900 has quit IRC16:05
*** MadViking has quit IRC16:05
*** lardman has joined #maemo16:05
javispedroGAN900: I just shouldn't have read tmo today ;)16:06
GAN900Haha16:06
GAN900That's ALWAYS true.16:06
*** jpinx-eeepc has quit IRC16:08
*** tackat has joined #maemo16:09
johndois there anywhere an archive of older maemo packages available?16:09
johndoneed the previous version of htop16:10
jacekowskinope16:10
jacekowskiit's gone16:10
johndobummer16:10
*** jpinx-eeepc has joined #maemo16:10
MohammadAGsource sould be there16:11
RST38hjavispedro: Check out this one instead: http://steve-yegge.blogspot.com/2010/12/haskell-researchers-announce-discovery.html16:11
RST38hjavispedro: And this: http://steve-yegge.blogspot.com/2010/07/wikileaks-to-leak-5000-open-source-java.html16:11
* javispedro lols at the second headline16:12
* javispedro bookmarks16:12
javispedrowho is behind it? onion news network should hire him16:13
SpeedEvilRST38h: :) I wrote a haskel program once.16:13
Khertan_lcuk, MohammadAG ?16:15
MohammadAG?16:15
Khertan_you say my nickname but i didn't have the historic :)16:16
MohammadAGoh, <lcuk> trx, how does it perform compared to pygtkedit? (which has afaik an editing widget which is c based and does what yours does, or similar at least)16:16
javispedroLeague Of Java Programmers For Deprecating The Living Shit Out Of Everything16:17
Khertan_oh :)16:17
MohammadAGdoes anyone know how to open a file with its default handler from terminal?16:17
Khertan_Hum ... PyGTKEditor 2.x use a c widget ... 3.x do it in python only :)16:17
MohammadAGa hildon widget right?16:18
MohammadAGor is it custom?16:18
* MohammadAG wonders when wikileaks will hold Maemo 5's source code16:19
*** mhlavink has joined #maemo16:19
Khertan_hildon widget ... TextArea ... if i remember well and coloration highlighting is done with python and gtk.TextArea methods16:19
javispedroMohammadAG: s:/source code/documentation/16:19
*** BCMM has joined #maemo16:19
RST38hjavispedro: yea, it does look like an Onion-Technology piece =)16:20
MohammadAGjavispedro, when you have the source code, why do you care about docs?16:21
javispedrobecause docs sounds more surrealist16:21
javispedroand thus more likely to happen =)16:21
MohammadAGjavispedro, and if the docs don't exist?16:23
MohammadAGisn't the gamecube as powerful as a PS2? sorta?16:23
javispedroMohammadAG: feel free to laugh at the thread.16:23
javispedroMohammadAG: the NGC is slightly more powerful.16:23
MohammadAGhahahaha16:24
MohammadAGthere :P16:24
javispedroMohammadAG: I mean at the NGC emulator request thread =)16:24
MohammadAGI know16:24
MohammadAGthat's why I asked about ti :P16:24
MohammadAGit*16:24
*** user__ has joined #maemo16:24
*** user__ is now known as MaKa16:24
*** avs has quit IRC16:25
* javispedro notes it is SDL GL so it would probably run as is if built under sbox and run under preenv16:25
MohammadAGjavispedro, 600MHz aren't enough to run it16:26
javispedroso someone could build it, report it goes up to 11111^12 fps16:26
javispedroMohammadAG: I know16:26
javispedrothen release it, post a faked video, get some press.16:26
javispedroand watch the desesperate lemmings16:27
* javispedro wants some revenge today16:27
MohammadAGthen a C&D16:27
lardmananyone know how to remove arrays in a QSettings object?16:28
lardmanjust wondering if remove()ing the base name will remove the entire array16:28
javispedro"OMG! Gamecube on my N900! But it runs out of memory before the first frame! But it works on the video! So that means I just need to overclock more to get it to work!!"16:29
chem|stinsurance comp. wants me to ship in "all" my n900 periferals with the device, or they will charge a discount on the returning16:29
MohammadAGhttp://www.engadget.com/2010/12/16/nokia-ups-the-ante-on-apple-adds-13-more-patents-to-the-24-alre16:29
MohammadAGjavispedro, RST38h ^16:29
chem|stthose companies suck16:29
*** FIQ|n900 has joined #maemo16:29
*** FIQ|n900 has joined #maemo16:29
*** MaKa has quit IRC16:29
*** FIQ has joined #maemo16:30
*** bergie has quit IRC16:30
chem|stwhat they gonna do with the stuff? sell it on ebay? or even bin it?16:30
johndois there any equivalent of the build-essential package on maemo?16:31
javispedronope16:31
javispedroon the sdk you have maemo-sdk-dev but it is way larger16:32
johndosdk is a bit overkill only to build a package from source16:32
MohammadAGI thought there was a build-essential package16:32
*** Venemo has joined #maemo16:32
javispedroyou want to build a package ON device?16:32
johndojavispedro: what do you mean? i want to compile it from source16:33
javispedroMohammadAG: you are right indeed. in SDK too.16:33
* MohammadAG has an on-device SDK16:33
javispedros/too/only16:33
jacekowskijohndo: then you need SDK16:33
jacekowskijohndo: scratchbox is a minimum you need16:33
* MohammadAG would share it, but Nokia legal might rape my ass16:34
jacekowskiMohammadAG: does it fit?16:34
jacekowskihmm, you have that extended /home16:34
MohammadAG-rw-r--r--    1 user     root    1073741824 Oct 18 01:35 /home/user/MyDocs/maemo-sdk-v1_2.img.ext216:34
MohammadAGsimple chroot16:35
javispedroor use a partition on sdk card16:35
javispedro*sd16:35
* MohammadAG prefers to keep everything under one image16:35
MohammadAGI asked X-Fade to ping them, not sure if he did though16:35
RST38hMohammadAG: remember how SCO moved from Technology to Litigation sector and how it went? =)16:36
*** MaKa has joined #maemo16:36
*** javispedro has quit IRC16:38
johndojacekowski: scratchbox is only available for pc, not for the n900?16:39
jacekowskiyep16:40
jacekowskiyou can download all -dev packages16:40
jacekowskiand gcc16:40
johndoso i can't compile a package on the n900??16:40
jacekowskidownload compiler16:40
jacekowskiand -dev packages16:41
jacekowskibut it will take quite a bit of space16:41
johndohmm16:41
Venemo_N900you can, but these things'll eat your rootfs16:41
johndosigh16:41
MohammadAGor you can make a chroot image16:41
MohammadAGRST38h, what's SCO? :P16:42
johndoi guess i have to live with that broken htop :(16:42
MohammadAGwhich source do you want compiled?16:42
SpeedEvilbroken how?16:42
johndohtop, previous version16:42
MohammadAGlink?16:42
johndocant change fonts anymore16:42
*** MaKa has quit IRC16:43
johndohttp://repository.maemo.org/extras-devel/pool/fremantle/free/source/h/htop/htop_0.8.3-1maemo2.dsc16:43
SpeedEviljohndo: If downloading the compiler, I recommend enabling the tools repo, copying /' onto /home/user/chroot - or whatever - removing tools repo.16:43
*** dneary has joined #maemo16:43
SpeedEvilThen chroot into that directory, and install build-essentials16:43
Venemo~seen Arkenoi16:44
infobotarkenoi is currently on #maemo, last said: 'RST38h, ah, nice thing'.16:44
VenemoArkenoi: ping.16:44
MohammadAGFailed to fetch http://repository.maemo.org/extras-devel/pool/fremantle/free/source/h/htop/htop_0.8.3.orig.tar.gz  MD5Sum mismatch16:45
Arkenoihuh?16:45
johndoMohammadAG: nice :/16:45
*** ricki8024 has quit IRC16:46
*** ricki8024 has joined #maemo16:47
MohammadAGbuilding16:47
MohammadAGdone16:48
MohammadAGhttp://mohammadag.xceleo.org/public/maemo/debfiles/htop_0.8.3-1maemo2_armel.deb johndo16:48
*** ppenz has quit IRC16:48
johndoMohammadAG: i try it, thank you16:51
MohammadAGyw16:51
*** SmilybOrg has joined #maemo16:53
*** mardi has joined #maemo16:55
*** SmilyOrg has quit IRC16:56
*** maybeArgh has quit IRC16:57
*** ab[out] has quit IRC16:58
*** jpinx-eeepc has quit IRC16:58
*** Sicelo has quit IRC16:59
*** davyg has joined #maemo17:00
*** SmilybOrg has quit IRC17:01
*** SmilybOrg has joined #maemo17:01
*** msanchez has joined #maemo17:02
*** arno0ob has quit IRC17:07
*** lbt is now known as lbt_17:07
*** lbt_ is now known as lbt_away17:07
*** lbt_away is now known as lbt17:07
*** blackthorne has joined #maemo17:11
*** spiritd has joined #maemo17:15
*** Zuccace has quit IRC17:16
*** Zucca has joined #maemo17:16
yaccHmmm, how the &%§ does one authorize a new contact in the "Chat/SMS" non-app of the n900?17:16
*** mikki-kun has quit IRC17:17
Choomusually you get a notification asking about that17:17
*** SmilyOrg has joined #maemo17:18
*** SmilybOrg has quit IRC17:21
*** maybeArgh has joined #maemo17:21
*** harbaum_ has quit IRC17:24
*** Openfree has quit IRC17:24
*** larsivi has quit IRC17:24
*** bigbrovar has joined #maemo17:25
*** The_Tall1 has quit IRC17:29
*** hannesw_ has joined #maemo17:30
*** scoobertron has joined #maemo17:31
*** hannesw__ has quit IRC17:33
*** bmidgley_ has quit IRC17:38
*** murrayc has quit IRC17:40
*** tekojo has quit IRC17:40
*** bergie has joined #maemo17:42
*** scoobertron has quit IRC17:43
*** trupheenix has quit IRC17:44
*** avs has joined #maemo17:45
*** FIQ|n900 has quit IRC17:46
*** cameris has left #maemo17:48
*** diegohcg has quit IRC17:50
*** diegohcg_ has joined #maemo17:50
*** diegohcg_ is now known as diegohcg17:50
*** linuxplatform has quit IRC17:51
*** vanadis has joined #maemo17:52
*** mitsutaka has quit IRC17:55
*** l13tl3 has joined #maemo17:57
*** l13tl3 has quit IRC17:57
*** trupheenix has joined #maemo17:58
DocScrutinizer51yup, 3G and IRC, while riding on a train, cuts thru battery like cookies17:59
*** achipa has quit IRC18:00
*** juhjokel has quit IRC18:02
*** sheepbat has quit IRC18:02
ShadowJKtry gsm :D18:02
VenemoDocScrutinizer51: yeah... experienced it myself :)18:03
VenemoDocScrutinizer51: however for barely covered areas, EDGE and IRC sucks the battery too18:03
pupnikcan irc servers cache/burst their sent data?18:04
pupniktha twould help a lot18:04
*** iDont has joined #maemo18:04
pupnikuser settable from 2-20 seconds for e.g.18:04
*** mitsutaka has joined #maemo18:05
DocScrutinizer51pupnik: *somebody* was developing sth like that. I planned to patch my ZNC same way, but haven't got to it yet18:07
DocScrutinizer51even 45s would be fine. 2s absolutely worthless with UMTS18:08
*** frade has quit IRC18:08
MohammadAGIRC checks for data every 2s?18:08
DocScrutinizer51nah18:08
* MohammadAG usually lags 15s, so he'd be fine with 15s bursts18:09
*** ferdna has joined #maemo18:09
DocScrutinizer51IRC sends data packets at arbitrary points in time18:09
*** Venemo has quit IRC18:09
pupnikDocScrutinizer51 thanks, i didn't think of doing it on my own machine18:10
DocScrutinizer51UMTS stays active for quite some seconds after transfer18:10
pupnikahhh18:10
pupnikto get fancy, your proxy should reduce the cache time when you're typing and increase it if you're idle18:11
DocScrutinizer51yep18:11
dnearyHi18:12
DocScrutinizer51was on my specs18:12
dnearyAnyone find my hand-off email useful?18:12
dnearyFelt like it was redundant, since most of the stuff I've documented was done many moons ago18:12
*** l13tl3 has joined #maemo18:13
Venemo_N900dneary: what email?18:13
dnearyVenemo_N900, "Preparing the hand-over" on maemo-community18:14
*** mikki-kun has joined #maemo18:14
dnearyUseful information anyone interested in community docs should read18:14
*** Venemo has joined #maemo18:14
Venemo_N900can you give me a link?18:14
dnearyVenemo_N900, Ehm... http://lmgtfy.com/?q=maemo-community+%22Preparing+the+hand-over%22&l=118:17
lcukdneary, actually offering web links when discussing mail really adds context :P18:17
dnearylcuk, But lmgtfy is so handy!18:18
DocScrutinizer51nah, lmgtfy is too much overhead. can't be arsed to invoke that here in on the train, via shaky 2G18:18
*** eMHa has quit IRC18:19
lcukhttp://www.gossamer-threads.com/lists/maemo/community/6394218:19
yaccDocScrutinizer51, that's why you don't enable 3G usually, especially when you know that you are far away from a recharge opportunity ;)18:20
*** Venemo has quit IRC18:20
DocScrutinizer51yacc: I'm far away from 3G, sitting on a mains outlet and N900 charging :-P18:21
yaccDocScrutinizer51: Luckily, the N900 has a changeable battery, and there are external charger for your secondary pack, ...18:21
*** Venemo has joined #maemo18:21
yaccAlthough, if I knew that I'll be taking a long voyage, I'd probably upgrade to 3-4 BL-5J instead of the 2 that I've got now :)18:22
DocScrutinizer51E here18:22
DocScrutinizer51318:23
yacclol.18:23
DocScrutinizer51German ICE train just fine - 230V socket on each seat18:23
DocScrutinizer51they even have crappy hotspot on board, for several bucks/day18:24
sp3000now you just need the pants with integrated chargers18:25
DocScrutinizer51eh: the nokia wallwart fits into my jacket pocket18:25
*** kwek has quit IRC18:28
yaccDocScrutinizer: Well, the old ICEs have been all replaced then I guess.18:28
yaccDocScrutinizer51, that leaves only ICs with 4 outlets per couch ;)18:29
*** arno0ob has joined #maemo18:31
DocScrutinizer51actually 2, but you hardly ever meet anybody else using even one of them18:31
*** ftrvxmtrx has quit IRC18:32
*** Khertan_ has quit IRC18:34
*** zap has quit IRC18:35
*** Venemo has quit IRC18:37
*** blackthorne has quit IRC18:38
*** Venemo has joined #maemo18:39
* ShadowJK is making pants with integrated charger18:40
*** rmoravcik has quit IRC18:40
lardmanI hate QLists18:40
*** FIQ|n900 has joined #maemo18:42
zeenixlardman: i'm sure the feeling is mutual18:44
*** mairas has joined #maemo18:45
*** Venemo has quit IRC18:45
*** vanadis has quit IRC18:48
Venemo_N900lardman: why is that?18:48
Venemo_N900lardman: the QLists have been nice to me so far18:48
MohammadAGShadowJK, that would be awesome18:51
*** eMHa has joined #maemo18:51
*** FIQ|n900 has quit IRC18:52
Venemo_N900~MohammadAG18:52
infobotit has been said that mohammadag is your father18:52
Venemo_N900lol18:52
Venemo_N900MohammadAG: why are you my father? :D18:54
*** Venemo has joined #maemo18:54
chem|stShadowJK: a jacket with solarcharger would be nice too18:54
ShadowJKNo sun this time of year :)18:54
ShadowJKActually I saw half of it over the trees across the lake at noon today :D18:54
chem|stShadowJK: doesn't matter solar chargers work on "light" not only "sun"18:54
SpeedEvilI want to make a proper mobile charger.18:55
SpeedEvilchem|st: they really don't18:55
SpeedEvilchem|st: Output in indirect light will typically be 1/10th or less outdoors18:55
SpeedEvilIndoors - not right next to a window - forget it.18:55
SpeedEvilProper charger - thing the size of a n900.18:56
Venemo_N900nah18:56
SpeedEvilYou open it out, then put it on hte floor, and step on it 150 times, like a car foot-pump, and it's charged, and can charge the n90018:56
chem|stSpeedEvil: mmh all my solar powered gadgets work when I turn on the light in my room...18:56
Venemo_N900just make a fusion reactor small enough to fit into the N90018:56
SpeedEvilchem|st: if you mean solar calculators, the amount of power they use is truly insanely small18:56
chem|stVenemo_N900: there are powersources you dont want to pay...18:57
SpeedEvilYour typical calculator will use around a microamp at 3V18:57
ruteis there a way to enter in all my contact from my pc and sync them to my n900? typing them in 1 by 1 is going to take forever.18:57
SpeedEvilerr - 1.5v18:57
SpeedEvilThe n900 needs around a million times this to charge18:57
chem|stand uses 1/4x1" solar field...18:57
MohammadAGVenemo_N900, I wanted it to say I AM YOUR FATHER, but it failed18:58
ShadowJK10%-20% of rated power when the sun is shining directly towards the panel at the correct angle, but blocked by clouds, sounds about right to me. The amount of power you'd get from just "light" is probably smaller :)18:58
Venemo_N900MohammadAG: hehe18:58
*** `Ika_Musume has joined #maemo18:59
*** colliery has joined #maemo18:59
MohammadAGdoes anyone know how to export a partition other than mmcblk0p1 via USB?18:59
Venemo_N900MohammadAG: but you can't be my father18:59
chem|stShadowJK: that's where I come from... I do not expect high grade 24.8% efficiency on a solar-jacket!18:59
lardmanVenemo_N900: I've got 3 lists, one containing QStrings, one containing bools and one containing ints19:00
lardmanthe QString and bool ones are fine, but the one containing ints changes when I pass it to other classes19:01
* SpeedEvil has been doing research on solar panel possibilities in scotland.19:01
* SpeedEvil wishes that governmental incentives were sane19:01
chem|stbut 2 10x3" solarpanels on the shoulderpads should be enough to supply at least enough power to extend the life to some more hours!19:01
Venemo_N900lardman: interesting.19:01
lardmanzeenix: yes, I'm sure the feeling is mutual ;)19:01
lardmanI've been arsing about passing pointers to lists, by ref, etc., and they still change19:02
ShadowJKhm, N810 light meter says 5 lux in my room right now19:03
SpeedEvillardman: You're looking at about 6W in the hot desert sun - or maybe 1W outside in diffuse light, if lucky19:03
SpeedEvil5 lux is on the order of 1/100th of a watt per square meter.19:03
ShadowJKYeah I just figured out if it was the Sun and not CFL I'd need a 850 square meter solar panel19:04
ShadowJKto charge N900 :)19:04
ShadowJKor about 9000 square feet19:05
SpeedEvilThe above idea - car-footpump type - is problematic only mechanically alas.19:05
SpeedEvilPackaging and gearboxes are hard.19:05
*** slonopotamus has joined #maemo19:05
ShadowJKya :/19:05
lcuklardman, why 3 lists out of interest19:06
slonopotamuscan dbus service somehow detect when clients connect/disconnect to it?19:06
lcukare they holding different aspects of the same set of objects19:06
lardmanyeah name, priority and whether it's enabled19:06
lcukie each object has a {string,int,bool}19:06
spiritdquick question... i have new N900... should I install latest firmware if i want use devel packages like aircrack, hostmode, etc.?19:06
lardmanI thought this would be a quick and dirty way to test before moving onto incorporate that data in the plugins themselves19:07
*** ArGGu^^ has quit IRC19:08
*** colliery has quit IRC19:10
DocScrutinizer51lcuk: I suggested that yesterday19:10
lardmanI thought it would be finished yesterday too!19:10
DocScrutinizer51spiritd: h-e-n hostmode will install all it needs19:12
DocScrutinizer51well at least you don't really need to 'update firmware'19:12
*** felipec has joined #maemo19:12
*** jrocha has quit IRC19:13
spiritdDocScrutinizer ... apt-get upgrade do the same?19:13
*** trupheenix has quit IRC19:13
*** mikki-kun has quit IRC19:13
spiritdDocScrutinizer ... i dont know... i am using debian on my server... so ... i have N900 for 3 hours...19:14
spiritdbtw i am getting failed catalouges19:14
DocScrutinizer51never do apt-get upgrade. It usually breaks your system19:14
spiritdlol :)19:14
lardmanwhat signal is emitted when the arrow-where-close-button-would-be button is pressed for a Qt window?19:16
lardmanstacked window that is19:16
*** polymar has quit IRC19:16
MohammadAG[54256.091125] mmc0: cover is open, card is now inaccessible19:17
MohammadAG[54256.283905] mmc0: card aaaa removed19:17
MohammadAGlardman, it's just an X button19:17
*** bigbrovar has quit IRC19:17
lardmanI can't see where it's created though and what's attached to it19:18
*** Venemo_N900 has quit IRC19:18
MohammadAGlardman, QMainWindow?19:18
lardmanyes19:19
MohammadAGthe arrow is just the way Maemo makes a stacked window19:19
MohammadAGon a normal PC it's just an X button, and clicking it would hide() the window19:19
spiritdDocScrutinizer so how can i update my system?19:19
MohammadAGspiritd, you don't need to19:19
MohammadAGbut if want to, go to App manager and click update19:20
*** NooBmonk3y has joined #maemo19:20
GAN900The paranoid schizophrenics are out in force.19:20
lardmanMohammadAG: but is there a hide event signal emitted?19:20
* Arkenoi wonders what is updated in calendar-home-widget and fbreader almost daily, no visual changes :-)19:20
*** ArGGu^^ has joined #maemo19:21
lardmanhttp://news.sky.com/skynews/Home/video/Ohio-USA-Lake-Erie-Lighthouse-Covered-In-Ice/Video/20101231585660819:22
MohammadAGlardman, there are none, see this http://www.qtcentre.org/threads/21184-close-window-signal19:22
lardmanlooks like someone's been trying to make a cake19:22
* NooBmonk3y wakes up to the word cake!19:23
NooBmonk3yevenin!19:23
Venemohello NooBmonk3y :)19:23
NooBmonk3yhey Ven19:23
NooBmonk3y:)19:23
lardmanhi NooBmonk3y19:23
NooBmonk3yhey hey!19:24
lardmanMohammadAG: so presumably the QMainWindow::closeEvent(event); does the hiding?19:24
*** jpinx-ee1pc has joined #maemo19:24
MohammadAGI think so :)19:24
lardmanI'll test, thanks19:24
*** arno0ob has quit IRC19:24
* MohammadAG thinks he borked his microSD19:24
MohammadAGhey NooBmonk3y19:25
NooBmonk3yhey Mo :)19:25
NooBmonk3yeveryone having a gd day?19:25
lardmanhideEvent() might also work19:25
MohammadAGwith all respect, I wonder who's the idiot who made the magnet disable a damn microSD card19:25
NooBmonk3yMohammadAG,  some idiot who earns a lot probably19:26
lardmanthe assumption is that the cache can be written before you can rip the back off and unclip the card19:26
*** jrocha has joined #maemo19:27
*** retro|cz has quit IRC19:27
GAN900lardman, is that a challenge?19:28
MohammadAGGAN900, you can trick with a magnet anyways19:28
lardmanGAN900: a subconscious challenge from the N900 hw engineers ;)19:28
*** bergie has quit IRC19:28
*** slonopotamus has quit IRC19:29
MohammadAGok19:31
MohammadAGso either my microSD card is broken19:31
DocScrutinizer51MohammadAG: actually magnet ENables the uSD19:31
MohammadAGor my microSD reader in the N90019:31
MohammadAGDocScrutinizer51 I know19:31
MohammadAGis the microSD reader replaceable?19:31
DocScrutinizer51and I'd think that's rather smart19:32
*** marcel_ has joined #maemo19:32
MohammadAGDocScrutinizer51, I'd think not, I already broke one battery cover19:33
spiritdMohammadAG what firmware you have?19:33
spiritdi found on my 2.2009.51-119:34
MohammadAGupgrade, though you don't have to19:34
MohammadAGVersion of 'sw-release': RX-51_2009SE_20.2010.36-2_PR_MR019:34
MohammadAGfact of the day: with the MeeGo initrd image, if the battery is low, neither the eMMC or the uSD are recognized19:34
*** achipa has joined #maemo19:36
*** achipa has joined #maemo19:36
Venemohehe19:36
*** mairas has quit IRC19:36
pupnikmy PC motherboard shows up as having a 'Gigabyte' access point during wlan scan19:36
pupnikbut linux doesn't have a driver it seems19:37
pupnikweourd19:37
MohammadAGhow do I disable Ubuntu's stupid automount?19:38
DocScrutinizer51haha19:39
spiritdMohammadAG this? RX-51_2009SE_20.2010.36-2_PR_COMBINED_MR0_ARM.bin19:39
DocScrutinizer51you love h-e-n mount better?19:39
*** tackat has quit IRC19:39
MohammadAGDocScrutinizer51, yes19:40
DocScrutinizer51spiritd: simply update what Hildon AppManager offers you to update19:40
MohammadAGspiritd, also yes19:40
lardmanbbl19:40
*** lardman has quit IRC19:40
*** TeringTuby has joined #maemo19:41
spiritdDocScrutinizer ... i want install some "good" firmware... because i dont want backup all the stuff after i will the N900 with contacts19:41
*** piggz has joined #maemo19:41
spiritd*fill19:41
DocScrutinizer51:shrug:19:42
spiritd:)19:43
DocScrutinizer51well, flashing for sure is faster than SSU19:43
*** rcg has joined #maemo19:44
*** kkb110 has quit IRC19:44
*** TeringTuby has quit IRC19:45
DocScrutinizer51anyway you understand it's a linux system, and the only true 'firmware' is that for wlan chip, and maybe BT, and the modem19:46
*** Wikier has quit IRC19:46
*** dneary has quit IRC19:46
*** t_s_o has quit IRC19:46
spiritdDocScrutinizer ... yeah ...19:46
spiritdwell but update whole firmware is better than apt-get upgrade right?19:47
spiritdupdating firmware is more stable ... ?19:47
spiritdjust guessing... using logic... no experience :)19:47
DocScrutinizer51so there's no diff in result from flashing and from SSU, except SSU keeps your data untouched19:47
spiritdDocScrutinizer well my phone is new so... no data19:48
Venemothen reflash19:48
DocScrutinizer51the go for flashing if you're in a hurry. Go for SSU via HAM to learn about that process19:48
spiritd"learn about proccess" how its different from upgrading debian from console? :))19:49
spiritdpc19:49
DocScrutinizer51yes19:49
*** geaaru has quit IRC19:49
*** florian has joined #maemo19:49
*** florian has joined #maemo19:49
DocScrutinizer51console apt-get upgrade is deprecated19:50
*** raulfh has joined #maemo19:50
spiritdDocScrutinizer and what use app manager for upgrade? ... i mean what command19:51
Venemostart app manager, click update19:51
spiritdye ... but what that actually does19:52
Venemoit starts apt-worker, which does its job19:52
MohammadAGsomething with apt-worker19:52
raulfhwhere can I find a big picture of harmattan components?19:52
spiritdso apt-worker... hmm thy19:53
*** mairas has joined #maemo19:53
spiritdman apt-worker :)19:53
* MohammadAG waits for disappointment19:53
spiritddont have apt-worker in PR1.119:53
DocScrutinizer51haha19:54
DocScrutinizer51raulfh: on wiki19:54
Venemomaybe there's just no manpage for it19:54
MohammadAGspiritd, it's in /usr/libexec19:54
MohammadAGjust use app manager19:54
*** felipec has quit IRC19:54
MohammadAGit doesn't only use apt-worker19:54
spiritdMohammadAG :/ ... cli <319:54
MohammadAGit changes UBIFS compression (javispedro found that one I think)19:55
MohammadAGthen flash your device :P19:55
spiritdyy installing nokia updater19:55
Venemospiritd: if you love the CLI, then either reflash, or do apt-get dist-upgrade19:55
Venemospiritd: see19:55
MohammadAGVenemo, don't suggest the latter19:55
Venemo~flashing19:55
infoboti heard flashing is http://wiki.maemo.org/Updating_the_tablet_firmware19:55
MohammadAGsometimes it breaks stuff ;)19:55
*** andre__ has quit IRC19:56
spiritdVenemo ... already reading that19:56
raulfhDocScrutinizer51: only for fremantle, but not for harmattan19:57
raulfhin addition, there' s no architectural overview19:57
*** ftrvxmtrx has joined #maemo20:00
*** ToJa92 has joined #maemo20:01
*** jrocha has quit IRC20:02
*** marciom has quit IRC20:03
*** spiritd has quit IRC20:03
*** marciom has joined #maemo20:04
*** igagis has joined #maemo20:05
*** javispedro has joined #maemo20:07
*** Flipi|BNC is now known as Flipi20:07
*** trbs has joined #maemo20:08
*** timeless_mbp has quit IRC20:09
*** spiritd has joined #maemo20:10
spiritdflashing20:11
spiritdbtw teamspeak 3 client available?20:12
spiritdi found only x86 bnaries20:12
ZogGMohammadAG ping20:13
*** trumee_away is now known as trumee20:13
derfspiritd: I think someone ported mumble. I doubt you'll find teamspeak.20:13
MohammadAGpong20:14
*** jrocha has joined #maemo20:14
*** felipec has joined #maemo20:14
ZogGMohammadAG at community chan >20:15
*** chx has quit IRC20:16
BCMMWTF@ the guy asking the HEN beta thread if the kernel support OSS...20:16
lcukBCMM, links help add context20:16
MohammadAGhttp://talk.maemo.org/showthread.php?t=65232&page=5620:17
MohammadAGBCMM, I doubt he means Open Source Software20:17
BCMMlcuk: http://talk.maemo.org/showpost.php?p=898180&postcount=559 , but it won't make it make much more sense20:17
BCMMMohammadAG: i realise he means the open sound system, that's the WTF20:18
BCMMcan't tell if he thinks that's still the normal way to access a microphone, or if he's just trying to start an OSS/ALSA flamewar20:19
*** calvaris has quit IRC20:20
peetahhello, writing on the ext3 partition of external mmc corrupt it, while writing on the vfat partition does not, according to e2fsck and fsck.vfat20:21
peetahdoes it ring a bell to anyone ?20:21
*** iDont has quit IRC20:21
*** chenca has quit IRC20:21
peetahwriting on both partitions with another device does not corrupt file systems20:21
BCMMout of interest, what makes GTK and Qt apps look similar on maemo?20:22
*** drako- has left #maemo20:22
*** chx has joined #maemo20:22
*** l13tl3_ has joined #maemo20:23
VenemoBCMM: QGtkStyle20:24
VenemoBCMM: or, if you want more details, QMaemo5Style, which is derived from QGtkStyle20:24
*** pcacjr has quit IRC20:24
BCMMVenemo: that's the thing where Qt uses the GTK style, right?20:24
Venemoright20:24
MohammadAGtry -style cleanlooks :P20:25
Venemoit's mostly the same thing that happens when you use KDE or Qt apps on a Gnome desktop20:25
*** l13tl3 has quit IRC20:26
*** mairas has quit IRC20:26
*** Vanadis_ has quit IRC20:26
*** Vanadis has joined #maemo20:26
*** FIQ|n900 has joined #maemo20:28
*** FIQ|n900 has joined #maemo20:28
*** ploum has quit IRC20:29
peetahnobody is aware of any software problem with writing on ext3 fs on the external mmc ?20:32
*** felipec has quit IRC20:32
*** thiyag has joined #maemo20:32
peetahI would like to be sure that my problem is not a hardware failure of the n900 mmc reader since I don't have this issue with other readers and the same card20:33
ZogGVenemo лву шы умшд20:33
ZogGkde is evil20:33
ZogGwhy Qt means for most people KDE20:33
VenemoZogG: that's why I use Gnome20:33
ZogGVenemo, gnome is less evil now, but it was ugly for a long time (as KDE btw) until ubuntu popularity20:33
ZogGbut gnome is evil too20:34
ZogGxfce4 FTW20:34
ZogGoh yeah oh yeah20:34
Venemowhy is gnome evil?20:35
ZogGVenemo i didn't like the politics, of depending everything on everything20:37
ZogGyou want gtk app you get half gnome20:37
ZogGit';s like KDE is Qt, you want somwething Qt, you get half KDE that needs other half20:37
spiritdy20:38
wmaroneZogG: funny, there are no kde chunks on my N900...20:38
*** thiyag is now known as GasCan20:38
ZogGwmarone not talking about maemo20:39
ZogGwe talking about desktop20:39
wmaronewell, if you want a KDE or Gnome app, you get KDE and Gnome. nothing to do with the toolkit.20:41
Venemohehe20:41
Venemoanyway, I prefer the Gnome desktop. it's the simplest to use20:41
ZogGwmarone that's my point20:41
Venemobut I use some KDE apps too, for example Konversation is a great IRC client20:41
ZogGi hate both them for this20:41
ZogGbut now gnome is going less dependies20:42
ZogGVenemo xchat is more than enuf for me20:42
*** ploum has joined #maemo20:42
ZogGthere is only one app i couldn't change20:42
Venemowhat's that?20:42
ZogGKDE's cd writer20:42
ZogGk3b20:43
ZogGbut heard after kde4 it's shitty too =)20:43
Venemohehe20:43
*** mardi has quit IRC20:43
Venemonah KDE is nice. it has all the effects and stuff20:43
Venemobut it's hard to find settings&stuff in it20:43
Venemognome is dead easy to use20:44
ZogGuseless effects for most cases and it's ugly20:44
ZogGit's like mac os style but in windows me way =)20:44
ZogGit's too much and too cheap20:44
ZogGdon't liek it20:44
ZogGall this round coners things and shinny stuff =)20:45
VenemoKDE is too resource hungry20:45
*** mikki-kun has joined #maemo20:45
*** kkb110 has joined #maemo20:45
*** zap has joined #maemo20:45
*** Flipi is now known as Flipi|BNC20:47
*** Flipi|BNC is now known as Flipi20:49
*** user__ has joined #maemo20:50
*** kkb110 has quit IRC20:50
*** marciom has quit IRC20:51
*** Flipi is now known as Flipi|BNC20:52
*** marciom has joined #maemo20:53
BCMMZogG: rounded corners and shiny stuff are configurable...20:53
*** user__ has quit IRC20:53
BCMMZogG: and i don't consider requiring mono, of all things, to be reducing dependencies20:55
*** swc|666 has joined #maemo20:55
*** lolloo has joined #maemo20:55
*** lolloo has quit IRC20:56
VenemoBCMM: what do you have against Mono?20:57
*** lolloo has joined #maemo20:57
*** lolloo has quit IRC20:58
*** lolloo has joined #maemo20:59
*** lolloo has quit IRC20:59
*** avs has quit IRC20:59
*** lolloo has joined #maemo21:00
*** sar3th is now known as sar3th|away21:01
lollooI guess N900 photos app doesn't support GIF images! wtf.21:04
*** MikeK has joined #maemo21:04
lolloois N900 for real?21:05
*** dazo is now known as dazo_afk21:05
lolloohehe21:05
wolf^it can show gifs, but cannot into preview21:07
lolloomine doesnt! it shows me a broken Icon!21:08
lolloolame21:08
*** guysoft42 has quit IRC21:08
lollooeven the worst nokia phone can show GIF properly21:08
lolloowhy N900 no? so bad!21:09
*** guysoft42 has joined #maemo21:09
lolloois there a merical to fix this lame problem?21:09
mikki-kunwhat is moe annoying than seeing your hardware for your internet is at the post which you should pick up tomorrow?21:15
*** t_s_o has joined #maemo21:15
lolloono GIF support. do you call that internet hardware?21:16
mikki-kungoing there and feeling lucky they already hand it out today but then having a non-functional line!21:16
mikki-kuni am like having the keys to a porsche 911!21:16
lollooN900 missing so much.21:16
mikki-kunno, i even have the porsche21:16
mikki-kunbut there are no streets to drive it!21:16
*** NooBmonk3y has quit IRC21:17
lollooput wings and fly21:17
*** scoobertron has joined #maemo21:17
*** GasCan has quit IRC21:17
*** scoobert1on has joined #maemo21:18
mikki-kuni don't drink red bull21:19
lolloodont drink it pour it in ur car21:19
*** paroneayea has quit IRC21:20
*** thiyag has joined #maemo21:21
johndoin which directory the desktop shortcuts are stored?21:21
*** paroneayea has joined #maemo21:21
MohammadAG/usr/share/applications/hildon/21:21
*** msanchez has quit IRC21:21
*** jrocha has quit IRC21:22
johndoMohammadAG: i mean the ones i have added to my homescreen21:22
*** geaaru has joined #maemo21:23
MohammadAGthey're in gconf afaik, not a directory21:24
*** fab has quit IRC21:28
*** timeless_mbp has joined #maemo21:30
*** timeless_mbp has quit IRC21:30
*** timeless_mbp has joined #maemo21:30
*** piggz has quit IRC21:30
*** fab has joined #maemo21:35
*** fab has quit IRC21:41
*** jukey has joined #maemo21:45
*** jukey has left #maemo21:45
spiritdi cant see search button in pr1.3 app manager21:45
spiritdis it somewhere else? or bug?21:45
lcukspiritd, enter a category and type21:45
lcuksearch as you keypress21:46
spiritdi set All21:46
spiritdthen taskbar... Refresh, Log, App cat, Restore app21:46
*** fab has joined #maemo21:48
*** wizL has joined #maemo21:48
spiritd:/21:48
spiritdwtf21:48
spiritdhttp://talk.maemo.org/showthread.php?t=5376821:50
*** jukey has joined #maemo21:50
*** jukey has left #maemo21:51
*** ||jess| has quit IRC21:51
*** _berto_ has quit IRC21:52
*** fab has quit IRC21:52
*** chx is now known as chx_lunch21:54
*** ||jess| has joined #maemo21:54
*** thiyag has left #maemo21:57
*** BabelO has joined #maemo21:58
*** BabelO has quit IRC21:58
*** BabelO has joined #maemo21:58
*** jukey has joined #maemo22:00
*** bakarat has joined #maemo22:00
spiritdwhat are you using for browsing / structure?22:01
*** Dialekt has left #maemo22:01
bakaratok, i just got the n900 (bit late to the party i know), and it seems awesome except for one thing: how do you rotate the screen? it seems stuck in landscape?22:01
spiritdis there some nautilus or whatever22:01
*** simeoni has quit IRC22:01
spiritdbakarat... i am new too... and i heard its landscape only22:01
*** `Francesca_Lucch has joined #maemo22:02
nid0bakarat - most of the system is landscape only22:02
*** Vanadis_ has joined #maemo22:02
spiritdjust use "site:talk.maemo.org keyword" in google22:02
nid0certain applications work in portrait, the phone and browser being examples22:02
bakaratok silly question, where is the phone one? :P22:02
nid0its the application in your applications list named "phone"22:03
spiritdnid0 what are you using for browsing files22:03
*** Svavel has joined #maemo22:03
johndois there any option to hide the bottom bar of an osso-xterm?22:03
johndofor a single one, not in general22:03
Venemojohndo: no, but you can hide the top bar with the fullscreen button22:04
*** jukey has left #maemo22:04
*** `Ika_Musume has quit IRC22:05
johndoVenemo: yes, but i rather would like to hide the bottom bar22:05
*** Vanadis has quit IRC22:05
bakarati seem to recall the n800 had the ability to "intelligently" switch on and off wifi/gps, i'm guessing that's still the case?22:05
bakarator if i "enable" gps, is it like always on?22:05
bakarat(thinking of battery)22:05
Venemobakarat: nope, it is only powered if there's something that needs it22:06
bakaratah sweet22:06
*** Rhoruns has joined #maemo22:06
Venemobakarat: there's a status bar icon (depicting a satellite antenna) shown when the GPS module is active22:06
bakaratVenemo, ah thanks22:07
*** Sicelo has joined #maemo22:07
bakarati started the browser btw, how do you swtich to portrait?22:07
johndobakarat: there's also an autodisconnect package which monitors wifi and gsm connections22:07
johndobakarat: it automatically switches when you turn the device22:08
Venemobakarat: menu/options/settings/"enable rotation"22:08
*** sessi has joined #maemo22:08
johndoor your version is too old22:08
bakaratVenemo, ah ok hehe22:08
*** sessi is now known as simeoni22:08
bakaratjohndo, well, fresh from the store22:09
bakaratso probably slightly outdated :P22:09
Venemobakarat: maybe reflash with the latest software22:09
Venemosee22:09
Venemo~flashing22:09
infobotextra, extra, read all about it, flashing is http://wiki.maemo.org/Updating_the_tablet_firmware22:09
spiritdguys what are you using for file browsing?22:10
spiritdi d like some 2 panel browser22:10
bakaratVenemo, i'll leave that for the weekend, need to get it set up quickly atm :P22:12
Venemobakarat: it only takes a few minutes22:12
*** lardman has joined #maemo22:12
bakaratfor reasons i can not fathom, i can not find the "menu/options/settings/enable rotation" thingy anywhere22:14
*** bbee2 has joined #maemo22:15
*** bbee has quit IRC22:15
johndobakarat: you also can update it with the program manager22:15
Venemobakarat: it's added in the latest software22:15
Venemobakarat: see your current version in Settings22:16
Venemobakarat: settings/about product22:16
bakaratVenemo, 2.2009.51-122:17
johndoyou need to be registered on maemo.org even to file bug reports only, don't you?22:17
johndobakarat: "slightly" outdated :)22:17
bakaratjohndo, :D22:17
spiritdi updated via Nokia Updater22:17
spiritdfast and easy22:17
Venemobakarat: that's too old.22:17
johndoafaik this version does not have portrait mode for browser22:18
Venemobakarat: on that, the browser doesn't support portait22:18
bakaratah k22:18
bakaratVenemo, johndo can i update with the program manager in this version or is it reflash-only? :P22:18
*** diegohcg has quit IRC22:19
johndoi have upgraded mine with the programm manager22:19
johndobut in two steps as there were 2 updates over time22:19
Venemobakarat: you can update with the app manager22:19
bakaratVenemo, sweet22:19
bakaratis it more like the debian update: it just works(TM) or more like ubuntu: TIAS?22:20
johndobakarat: more like debian for me (at least so far)22:21
johndomaybe backup you configs nevertheless, just in case ;)22:21
bakaratjohndo, as easy as cp /etc ... ? :P22:22
bakaratbut either way, nothing is really configured yet and i read that there is always a "reset to factory settings" thingy22:23
johndobakarat:there's an backup application22:23
bakarato nice22:23
*** dragly has quit IRC22:23
*** dragly has joined #maemo22:23
bakaratbtw, i have read conflicting information: some claim that an upgrade path to meego will be provided, others deny it22:24
bakaratany idea which one is true? :P22:24
nid0there will be no officially-provided upgrade by nokia22:24
bakarato22:24
nid0unless they have a *massive* change of heart22:24
nid0but the community is working on a release22:25
bakaratwhat exactly is the future of maemo after meego?22:25
nid0basically, nothing22:25
bakarati mean, does it keep evolving away from meego?22:25
nid0no22:25
bakaratah k22:25
nid0maemo's eol, meego's the replacement22:25
pupnikhow long did you use Windows XP bakarat22:25
pupnikhow many years22:25
bakaratpupnik, at work, still using it (shiver), at home not so long :P22:25
pupnikdid a year go by and suddenly you felt you needed a new operating system for your desktop?22:25
bakaratmade the switch to linux many years ago22:26
bakaratpupnik, no, that's entirely accurate :p22:26
pupnikok.. well then you understand how maemo5 "just works" now22:26
pupniklol22:26
bakaratmy n810 was also basically install some much needed apps when i bought it and just leave it alone after that22:26
bakarat:D22:26
bakaratuntil the damn touch screen died on me22:26
bakarat*snif*22:27
pupnikmaemo5 will be a great OS for as long as you care to use the n90022:27
*** kakashi_ has joined #maemo22:27
johndopupnik: the question is how long we will get security updates for maemo proprietary stuff22:27
Arkenoijohndo, we *never* got any22:27
pupniksecurity updates aren't an issue.  and nokia's proprietary stuff never gets developed much anyway22:27
Arkenoiwe have buggy flash and no one cares22:27
Arkenoithough it has remote code execution vulnerability22:28
pupnikthere you go Arkenoi22:28
*** Noma_ has quit IRC22:28
*** Noma_ has joined #maemo22:28
johndoo.O22:28
pupnikwelcome to "Flash is a Trojan"22:28
bakarati'm gonna go downstairs, wifi is horrible here22:28
bakaratthanks for all the feedback :)22:28
pupniksend her to me and she will appreciate you22:28
pupnikcheers bakarat22:28
* pupnik sings ~I'll be harder than your husband.... to get along with~22:29
pupnikJudge Duncan Ouseley to release Assange tonight/nowish22:31
*** BluesLee has joined #maemo22:31
nid03 hours ago-ish22:31
nid0walked out of court at 622:31
RST38h<yawn>22:31
*** marcel_ has quit IRC22:31
SpeedEvilhttp://b3ta.com/board/10280035 - made me lol for no good reason. (thread of images about Mr Assange)22:33
pupnik`oh22:33
*** dneary has joined #maemo22:34
*** mlpug has quit IRC22:36
*** mpoirier has quit IRC22:36
*** croppa has joined #maemo22:37
johndowhat's the camera-ui process for? only to start camera app when i open the lense cover?22:38
johndolooks like that's eating my battery22:39
*** mpoirier has joined #maemo22:39
MohammadAGdsmetool -k /usr/bin/camera-ui22:39
MohammadAGyou need the start the camera manually22:40
johndoso that's a known problem?22:40
*** dvaske_ has joined #maemo22:41
BluesLeeMohammadAG: hi, do you know if someone compiled kernel modules for dvb-usb compatible with the power kernel?22:43
johndoMohammadAG: does -k also deactivate the process completely (after reboot) or does it only kill it?22:43
MohammadAGBluesLee, nope :/22:44
MohammadAGjohndo, install togglecamera if you want22:44
MohammadAGactually, don't22:44
MohammadAGit'll move camera-ui22:44
*** tchan1 has joined #maemo22:44
*** larsivi has joined #maemo22:44
MohammadAGjohndo, have a look at /etc/X11/Xsession.post/17camera-ui22:44
* johndo just wonders why the heck camera-ui wakes up that often now in pr1.322:46
DocScrutinizerbug22:46
*** tchan has quit IRC22:46
DocScrutinizershouldn't22:46
DocScrutinizerhow do you tell it does?22:47
johndoDocScrutinizer: and i guess it's a nokia proprietary program which never gets fixed ^^22:47
johndoby powertop22:47
*** l13tl3_ has quit IRC22:47
MohammadAGindeed shouldn't22:47
MohammadAGmine's quiet22:47
DocScrutinizerso you're sure it's the same process ID, not camera-ui respawning die to immediate segfault or sth?22:48
DocScrutinizers/die/due22:48
DocScrutinizerBluesLee: does your old dvd-stick have working OSS drivers?22:49
*** FIQ|n900 has quit IRC22:49
DocScrutinizerwaitwaitwait. johndo do you by any chance have installed flashlight-extra?22:50
johndoDocScrutinizer: good question .. let me watch pid for a while22:50
DocScrutinizerflashlight-extra was *EVIL* on my system, it borked almost everything, and eaten my CPU22:51
DocScrutinizerincl camera-ui22:51
johndoDocScrutinizer: no, but i have something for using flash leds as a torch22:52
DocScrutinizerthat's flashlight22:52
johndoDocScrutinizer: it's flashlight-applet22:52
DocScrutinizerthen there's flashlight-extra that errr, avoids camera-ui coming up when you open lens slider, or sth22:52
DocScrutinizerhad to nuke that one22:53
johndodsmetool -t to (re)start a service?22:54
*** setanta has quit IRC22:54
* johndo would be happy when flashlight is the problem22:55
johndothis battery draining starts to annoy me22:55
johndo2 days of light usage and the battery is down22:55
johndowhich lasts a week before the upgrade22:55
DocScrutinizerumm22:56
BluesLeeDocScrutinizer: good question, afaik it uses dvb-usb-wt220u-02.fw22:56
*** svillar has quit IRC22:56
MohammadAGflashlight-applet is fine22:56
DocScrutinizerfind out if it works at all on your desktop PC, find out which drivers it needs, get the source and feed it to SB22:57
MohammadAGI edited it to show when the cover is closed, that way I can start the flash, open the lens, and camera-ui would fail to start so I'd be happy22:57
DocScrutinizercool22:57
BluesLeeDocScrutinizer: it works on my desktop like a charm with mplayer22:58
*** hannesw_ has quit IRC22:59
*** tackat has joined #maemo22:59
*** BCMM has quit IRC22:59
johndoeeek, when i start camera-ui with dsmetool -t is runs twice :(23:00
johndo*it23:00
BluesLeeDocScrutinizer: dvb_usb_dtt200u, dvb_usb, dvb_core and i2c_core seem to be used ... i will have a look into scratchbox23:00
johndois '-t' the wron option?23:00
BluesLeethis is what i need i guess :http://wiki.maemo.org/Documentation/Maemo_5_Developer_Guide/Kernel_and_Debugging_Guide/Maemo_Kernel_Guide#Compiling_External_Kernel_Modules23:00
*** dvaske_ has quit IRC23:00
*** andrei1089 has joined #maemo23:01
*** b-man` has joined #maemo23:01
*** FLaT` has joined #maemo23:01
*** lizardo has quit IRC23:02
*** BluesLee has quit IRC23:02
DocScrutinizerjohndo: you shouldn't mess arounf with dsmetool at all23:03
johndoDocScrutinizer: someone told me to do :P23:03
dotblankAny played with clutter yet?23:03
dotblankany one*23:03
DocScrutinizerdsmetool is just for restarting processes in case they get killed or segfault or terminate by any other reason23:03
johndoDocScrutinizer: at least my device even reaches C4 now23:04
*** z4chh has quit IRC23:04
DocScrutinizerjohndo: you're sure? I've only seen MohammadAG tell you how to STOP it23:04
johndostill only 3.4% in C423:04
*** hannesw_ has joined #maemo23:04
johndoright :)23:04
johndoDocScrutinizer: but i wanted to watch the pid of camera-ui, so i had to restart it23:05
johndoso what's the "right" way to restart it? boot??23:05
DocScrutinizerthe easiest and safest way, yes23:05
DocScrutinizeror execute that  /etc/X11/Xsession.post/17camera-ui script23:06
johndogah, must have missed the "winxxx" part in my system version ;)23:06
johndoDocScrutinizer: ok, i try the latter23:06
johndowhat is IRQ 2103?23:08
johndowakes up 70 times per second23:08
DocScrutinizernfc23:09
SpeedEvilUnfortunately, you don't care about wakeups or interrupts.23:10
SpeedEvilThere is no nice breakdown of what you do care about23:10
DocScrutinizerSpeedEvil: that's rather cryptic a statement23:11
SpeedEvilSorry - got distracted23:11
johndoSpeedEvil: i would like to not care about all that stuff, but since i upgraded to 1.3 my battery dies way too fast and i really would like to find the reason ;)23:11
SpeedEvil389 interrupts a second.23:11
SpeedEvilIf these are 1/389th of a second - then that's bad.23:11
*** javispedro has quit IRC23:11
SpeedEvilIf they are all one after each other 10us apart - you don't care23:11
SpeedEvilAs they have the same impact as one interrupt from a powerupse POV23:12
DocScrutinizeryep23:12
*** andrei1089 has quit IRC23:12
SpeedEvilSame with wakeups23:12
DocScrutinizerbtw poweupse is a nice new word23:12
DocScrutinizer:-D23:12
SpeedEvilA wakeup from C4 is enormously more costly than one from C223:13
steinexso i have it, the iphone 423:13
steinexoh yes.23:13
*** FLaT` has quit IRC23:13
DocScrutinizeryes23:13
steinexyes23:14
DocScrutinizerSpeedEvil: we'd need a powerdebug kernel23:14
johndoDocScrutinizer: that script to restart camera-ui, call it as root? or user?23:14
DocScrutinizerroot23:14
DocScrutinizeraiui23:15
DocScrutinizernormally it's caled by X23:15
DocScrutinizerX is root23:15
DocScrutinizeragain aiui23:15
SpeedEvilMost stuff is started as user under X though23:15
DocScrutinizerhmm23:15
johndohmm :)23:15
* SpeedEvil needs to reflash his device.23:16
*** nicu has joined #maemo23:16
SpeedEvilCamera is not working, and I'm unsure if it's a hardware issue or not23:16
*** nicu has quit IRC23:16
DocScrutinizererrr, isn't that kinda related topic?23:16
johndoSpeedEvil: do you have the driver for bleen900 installed?23:16
johndo*blessn90023:17
SpeedEviljohndo: no23:17
johndook, that screwed up the camera for me after upgrade to 1.323:17
SpeedEvilI think it was broken before I installed fcam23:17
*** dneary has quit IRC23:17
SpeedEvilI'm on 1.223:17
DocScrutinizerI'm on 1.2 too, and that camera gave me black screen today, in both mbarcode and camera-ui23:18
SpeedEvilOdd23:18
SpeedEvilCamera gives internal error when i try to start it23:18
johndohmm, maybe i should have stayed with 1.2 too :(23:18
johndono benefits so far, but a lot of trouble with 1.323:18
DocScrutinizeron second try camera-ui did work23:19
*** jrocha has joined #maemo23:19
DocScrutinizerjohndo: alas Nokia managed to make it impossible for the normal user to stay on 1.2. You can't install any -devel or -testing app anymore23:20
DocScrutinizerwell, a lot off then at least don't work under 1.2 anymore. So even your backups are worthless23:20
johndoDocScrutinizer: because of Qt4.7 i guess?23:20
DocScrutinizeryep23:21
DocScrutinizerand because of missing repo split23:21
DocScrutinizerfor those devel and testing repos23:21
SpeedEvilhmm - it was just after I uninstalled that flashlight-camera-ui thing23:21
SpeedEvilOn reflection23:22
johndowell, they don't seem to understand the debian repository structure properly anyway :(23:22
DocScrutinizerif at least they had promoted all pkgs in testing/devel to maemo-1.2 proper then, same time they rolled out 1.323:22
johndosome repos don't even have proper tags so that you could set preferences23:23
johndono wonder they switched to rpm with meego :(23:23
*** BabelO_ has joined #maemo23:24
*** BabelO_ has quit IRC23:24
*** BabelO_ has joined #maemo23:24
*** merlin1991 has joined #maemo23:25
*** BabelO has quit IRC23:26
*** luke-jr_ has joined #maemo23:26
SpeedEvilPhew - looking like a software problem.23:28
SpeedEvilNow I've reinstalled stock kernel, I don't have audio again, but camera works.23:28
*** choppa has joined #maemo23:28
SpeedEvilIf I install power kernel, audio works, but camera dies. :)23:28
*** luke-jr has quit IRC23:29
johndoDocScrutinizer: no need to restart camera-ui manually, after i use camara app camera-ui is back again ... running twice!?23:29
DocScrutinizerLOL23:29
*** FIQ has quit IRC23:30
DocScrutinizerI seem to recall that's normal a lot of those processes run twice23:30
MohammadAGSpeedEvil, fcamera?23:30
SpeedEvilMohammadAG: uninstalled it now23:30
SpeedEvilMohammadAG: That doesn't explain why sound is dead23:30
*** baraujo has quit IRC23:31
MohammadAGSpeedEvil, it should work23:31
MohammadAGbut you need the latest version, get it using23:31
MohammadAGapt23:31
MohammadAGSpeedEvil, decoders-support?23:31
DocScrutinizerseems sound is flawed or dead on my pk + h-e-n as well23:31
* MohammadAG blames libflac823:32
DocScrutinizerthough I've not really tested23:32
johndoso h-e-n is still experimental?23:32
SpeedEvilMohammadAG: MohammadAG i've not been screwing with decoders support23:32
*** renato has quit IRC23:32
DocScrutinizerjohndo: sure it's experimental23:32
DocScrutinizerit's a beta23:32
DocScrutinizeror was it alha?23:33
DocScrutinizeralpha even23:33
*** Smily has joined #maemo23:33
SpeedEvilPulseaudio isn't started even23:33
DocScrutinizer\o/23:33
johndoand i already bought an usb adapter for it xd23:34
*** `Francesca_Lucch has quit IRC23:34
*** luke-jr_ has quit IRC23:34
MohammadAGSpeedEvil, libflac8, for suer23:34
MohammadAGsure*23:34
*** luke-jr_ has joined #maemo23:34
SpeedEvilhow would that have died?23:34
*** panattan has joined #maemo23:34
MohammadAGpulseaudio attempts to load a module from /opt before it's mounted23:35
DocScrutinizeroh THAT idiocy23:35
DocScrutinizerMOVE that TO / THEN!23:35
SpeedEvilyeah - I haven't done anytjong wird with decoder packages I don't think though23:36
*** SmilyOrg has quit IRC23:36
MohammadAGhttp://talk.maemo.org/showpost.php?p=874014&postcount=3523:36
MohammadAGcp /opt/maemo/usr/lib/libFLAC.so.8.2.0 /usr/lib/libFLAC.so.8.2.023:36
*** chx_lunch is now known as chx23:36
*** johnsq has joined #maemo23:37
johnsqHi23:37
DocScrutinizerwill those pains in the neck ever learn about what may go to /usr, and what needs to stay on root-fs?23:37
SpeedEvilOdd - I wonder what moved it23:37
SpeedEvilit was working23:37
SpeedEvilAnd why it works with kernel-power23:38
*** flat has joined #maemo23:38
*** davyg has quit IRC23:38
DocScrutinizerTHIS HAS TO BE IN /lib, B23:38
*** flat is now known as Guest2809423:38
MohammadAG/usr/ is on rootfs :P23:38
*** lolloo has quit IRC23:38
DocScrutinizerNOT /usr/lib!!!23:38
DocScrutinizerFSCK it isn't -PER DEFINITION23:38
*** Guest28094 is now known as flat`23:39
MohammadAGit is - on maemo23:39
*** me|kor has joined #maemo23:39
DocScrutinizerMohammadAG: I'll come over kick your ass if you don't stop telling shit23:40
DocScrutinizerREAD THAT!23:40
DocScrutinizer~optification23:40
infobotit has been said that optification is a inventive duct tape workaround to reclaim space in fs root, done due to the fact the partitioning is FUBAR, or http://wiki.maemo.org/Documentation/Maemo_5_Developer_Guide/Packaging,_Deploying_and_Distributing/Installing_under_opt_and_MyDocs, or ""OMG - I wish somebody had looked into FHS and moved /usr to eMMC"", or http://www.pathname.com/fhs/pub/fhs-2.3.html#PURPOSE2 bullet1,2 and fhs-2.3.html#PURPOSE16 sentence323:40
Venemo:D23:40
MohammadAGDocScrutinizer, /usr is on rootfs on maemo :P23:41
*** dos1 has quit IRC23:41
MohammadAGthat's a fact, not shit :P23:41
*** tackat has quit IRC23:41
*** DocScrutinizer has left #maemo23:41
MohammadAGo_O23:41
b-man`???O_o23:42
Venemolet's hope he didn't have a heart attack.23:42
*** benh has quit IRC23:42
MohammadAGhe's probably coming over23:42
b-man`XD23:42
Venemo:D23:42
b-man`MohammadAG: lock your doors and windows xD23:43
MohammadAGhttp://pastebin.com/efU7xu8t <-- at least this says /usr is on rootfs23:43
Venemoemail us when he's knocking on your door23:43
* johndo is waiting for MohammadAG to disappear too :P23:43
Venemonah23:43
MohammadAGmaemo-911 mailing list?23:43
Venemojohndo: nah.23:43
Venemoit's a long way from Germany to Israel23:43
MohammadAGhe's DocScrutinizer23:44
Venemoyeah. he'll scrutinize the docs23:44
b-man`he can open a wormhole xD23:44
Venemo:D23:44
SpeedEvilnope - not that23:44
SpeedEvilodd23:44
Venemohm23:44
Venemodon't think you can speak freely! DocScrutinizer51 is still here23:44
MohammadAGI know, and -823:45
MohammadAGplus the channel is logged23:45
MohammadAGhe'll be back - I hope23:45
MohammadAGSpeedEvil, did you reboot?23:45
SpeedEvilyes23:46
SpeedEvilNokia-N900-02-8:/usr/lib# ls -l *FLAC*23:46
SpeedEvillrwxrwxrwx    1 root     root           16 May 31  2010 libFLAC.so.8 -> libFLAC.so.8.2.023:46
SpeedEvil-rw-r--r--    1 user     root       303348 Jan  9  2010 libFLAC.so.8.2.023:46
*** povbot has joined #maemo23:49
*** luke-jr_ has quit IRC23:49
*** RST38h has quit IRC23:50
*** RST38h has joined #maemo23:50
*** hcm_ has joined #maemo23:50
*** luke-jr_ has joined #maemo23:50
*** ChanServ has quit IRC23:50
*** bleeter has quit IRC23:50
*** GuySoft has quit IRC23:50
*** jrocha has quit IRC23:50
*** kakashi_ has quit IRC23:50
*** ||jess| has quit IRC23:50
*** mikki-kun has quit IRC23:50
*** willer_ has quit IRC23:50
*** benJIman has quit IRC23:50
*** KMFDM has quit IRC23:50
*** pupnik has quit IRC23:50
*** X-Fade has quit IRC23:50
*** Chiku|dc has quit IRC23:50
*** ebzzry has quit IRC23:50
*** janemba has quit IRC23:50
*** SouBE has quit IRC23:50
*** d1b has quit IRC23:50
*** plr_ has quit IRC23:50
*** roadi has quit IRC23:50
*** booiiing has quit IRC23:50
*** t0h_ has quit IRC23:50
*** robink has quit IRC23:50
*** cyndis has quit IRC23:50
*** wallblom has quit IRC23:50
*** `0660 has quit IRC23:50
*** marnanel has quit IRC23:50
*** alterego has quit IRC23:50
*** vltR has quit IRC23:50
*** sharpie_ has quit IRC23:50
*** jhe has quit IRC23:50
*** jayne has quit IRC23:50
*** cos^ has quit IRC23:50
*** dotblank has quit IRC23:50
*** zeenix has quit IRC23:50
*** fipu has quit IRC23:50
*** akiniemi has quit IRC23:50
*** laasonen has quit IRC23:50
*** rysiek|pl has quit IRC23:50
*** polac has quit IRC23:50
*** pvanhoof has quit IRC23:50
*** Sicelo has quit IRC23:50
*** Vanadis_ has quit IRC23:50
*** wizL has quit IRC23:50
*** mhlavink has quit IRC23:50
*** Wamanuz2 has quit IRC23:50
*** kimitake_idle has quit IRC23:50
*** evildalton has quit IRC23:50
*** toggles has quit IRC23:50
*** larswey has quit IRC23:50
*** Tuco111 has quit IRC23:50
*** marienz has quit IRC23:50
*** klasu__ has quit IRC23:50
*** johnx has quit IRC23:50
*** qurk has quit IRC23:50
*** evilrob has quit IRC23:50
*** jannau has quit IRC23:50
*** Shapeshifter has quit IRC23:50
*** aloril has quit IRC23:50
*** pronto has quit IRC23:50
*** krau has quit IRC23:50
*** andrunko has quit IRC23:50
*** BugBlue has quit IRC23:50
*** kevsim has quit IRC23:50
*** chem|st has quit IRC23:50
*** mgedmin has quit IRC23:50
*** razzloss has quit IRC23:50
*** merlincorey has quit IRC23:50
*** kulve has quit IRC23:50
*** access has quit IRC23:50
*** kurtan has quit IRC23:50
*** Jaffa has quit IRC23:50
*** rtyler has quit IRC23:50
*** jj- has quit IRC23:50
*** tchan1 has quit IRC23:50
*** dragly has quit IRC23:50
*** Svavel has quit IRC23:50
*** infobot has quit IRC23:50
*** rute has quit IRC23:50
*** Psi has quit IRC23:50
*** hrw has quit IRC23:50
*** GeneralAntilles has quit IRC23:50
*** grishnav has quit IRC23:50
*** Dhraakellian has quit IRC23:50
*** aep has quit IRC23:50
*** povbot` has quit IRC23:50
*** lardman|gone has quit IRC23:50
*** till- has quit IRC23:50
*** shikamaru has quit IRC23:50
*** |R has quit IRC23:50
*** FauxFaux has quit IRC23:50
*** yacc has quit IRC23:50
*** Dasajev has quit IRC23:50
*** Kegetys has quit IRC23:50
*** |thunder has quit IRC23:50
*** ShadowJK has quit IRC23:50
*** pexi has quit IRC23:50
*** darkschneider has quit IRC23:50
*** parasight_ has quit IRC23:50
*** kov has quit IRC23:50
*** lool has quit IRC23:50
*** auenf has quit IRC23:50
*** sneakret_ has quit IRC23:50
*** Mek has quit IRC23:50
*** jaska has quit IRC23:50
*** Plnt has quit IRC23:50
*** LiraNuna has quit IRC23:50
*** satmd has quit IRC23:50
*** GNU\caust1c has quit IRC23:50
*** johnsu01 has quit IRC23:50
*** libben has quit IRC23:50
*** AndrewX192 has quit IRC23:50
*** robtaylor has quit IRC23:50
*** t_s_o has quit IRC23:50
*** mitsutaka has quit IRC23:50
*** machia has quit IRC23:50
*** briglia has quit IRC23:50
*** straind` has quit IRC23:50
*** hcm has quit IRC23:50
*** eggonlea has quit IRC23:50
*** SpeedEvil has quit IRC23:50
*** radic has quit IRC23:50
*** sp3000 has quit IRC23:50
*** trx has quit IRC23:50
*** barisione has quit IRC23:50
*** ptl has quit IRC23:50
*** abner has quit IRC23:50
*** Sargun has quit IRC23:50
*** sar3th|away has quit IRC23:50
*** dvarnes has quit IRC23:50
*** vivijim has quit IRC23:50
*** Riussi has quit IRC23:50
*** TriztFromWork has quit IRC23:50
*** me|kor has quit IRC23:50
*** Noma_ has quit IRC23:50
*** lardman has quit IRC23:50
*** timeless_mbp has quit IRC23:50
*** scoobertron has quit IRC23:50
*** raulfh has quit IRC23:50
*** rcg has quit IRC23:50
*** maybeArgh has quit IRC23:50
*** Dragnslcr has quit IRC23:50
*** DerSaidin has quit IRC23:50
*** Wizzup has quit IRC23:50
*** maswan has quit IRC23:50
*** myu has quit IRC23:50
*** jjo has quit IRC23:50
*** comawhite has quit IRC23:50
*** Arkenoi has quit IRC23:50
*** w00t_ has quit IRC23:50
*** Brik_ has quit IRC23:50
*** ds3 has quit IRC23:50
*** Trizt has quit IRC23:50
*** evilbulgarian has quit IRC23:50
*** dev has quit IRC23:50
*** thomasvs has quit IRC23:50
*** qknight has quit IRC23:50
*** vcgomes has quit IRC23:50
*** fabo has quit IRC23:50
*** El_Angelo has quit IRC23:50
*** sx0n_ has quit IRC23:50
*** kamui has quit IRC23:50
*** mtnbkr has quit IRC23:50
*** jacekowski has quit IRC23:50
*** zeltak has quit IRC23:50
*** wolf^ has quit IRC23:50
*** trench has quit IRC23:50
*** rosseaux has quit IRC23:50
*** haltdef has quit IRC23:50
*** nomis has quit IRC23:50
*** guerby has quit IRC23:50
*** cmvo has quit IRC23:50
*** nslu2-log has quit IRC23:50
*** Flipi|BNC has quit IRC23:50
*** Appiah has quit IRC23:50
*** TheXception|off has quit IRC23:50
*** opdf2 has quit IRC23:50
*** alturiak has quit IRC23:50
*** dreamer has quit IRC23:50
*** Sargun_Screen has quit IRC23:50
*** musca has quit IRC23:50
*** idoru has quit IRC23:50
*** trx has joined #maemo23:50
*** brik has joined #maemo23:50
*** aep has joined #maemo23:51
*** ShadowJK has joined #maemo23:52
*** shikamaru has joined #maemo23:52
*** Kegetys has joined #maemo23:52
*** b-man` is now known as b-man1723:52
*** BugBlue has joined #maemo23:52
*** pronto has joined #maemo23:53
*** GNU\caust1c has joined #maemo23:53
*** FireFly|n900 has quit IRC23:53
*** FireFly|n900 has joined #maemo23:53
*** musca has joined #maemo23:53
johndoMohammadAG: do you have posted your changes to the flashlight app somewhere?23:53
*** bergie has joined #maemo23:54
MohammadAGsomewhere here http://talk.maemo.org/showthread.php?t=66251 yes23:54
MohammadAGit's only  2 pages :P23:54
*** b-man17 is now known as b-man`23:54
b-man`http://www.youtube.com/watch?v=Ywu1DeqXTg4&feature=channel :)23:54
johndowow, that's really short for a tmo thread :)23:54
*** rosseaux has joined #maemo23:55
*** ferulo has joined #maemo23:55
*** FireFly|n900 has quit IRC23:56
*** kulve has joined #maemo23:57
*** FredrIQ|n900 has joined #maemo23:57
*** jannau has joined #maemo23:58
*** Plnt has joined #maemo23:58
*** mgedmin has joined #maemo23:58
*** alturiak has joined #maemo23:58
*** crashanddie_ has joined #maemo23:58
*** jrocha has joined #maemo23:58
*** tchan1 has joined #maemo23:58
*** Noma_ has joined #maemo23:58
*** kakashi_ has joined #maemo23:58
*** dragly has joined #maemo23:58
*** lardman has joined #maemo23:58
*** Svavel has joined #maemo23:58
*** Vanadis_ has joined #maemo23:58
*** ||jess| has joined #maemo23:58
*** scoobertron has joined #maemo23:58
*** t_s_o has joined #maemo23:58
*** mikki-kun has joined #maemo23:58
*** raulfh has joined #maemo23:58
*** rcg has joined #maemo23:58
*** mitsutaka has joined #maemo23:58
*** maybeArgh has joined #maemo23:58
*** machia has joined #maemo23:58
*** vcgomes has joined #maemo23:58
*** willer_ has joined #maemo23:58
*** briglia has joined #maemo23:58
*** jayne has joined #maemo23:58
*** benJIman has joined #maemo23:58
*** infobot has joined #maemo23:58
*** Dragnslcr has joined #maemo23:58
*** DerSaidin has joined #maemo23:58
*** KMFDM has joined #maemo23:58
*** pupnik has joined #maemo23:58
*** rute has joined #maemo23:58
*** Wizzup has joined #maemo23:58
*** X-Fade has joined #maemo23:58
*** Wamanuz2 has joined #maemo23:58
*** straind` has joined #maemo23:58
*** eggonlea has joined #maemo23:58
*** Chiku|dc has joined #maemo23:58
*** ebzzry has joined #maemo23:58
*** kimitake_idle has joined #maemo23:58
*** Psi has joined #maemo23:58
*** SpeedEvil has joined #maemo23:58
*** hrw has joined #maemo23:58
*** evildalton has joined #maemo23:58
*** janemba has joined #maemo23:58
*** SouBE has joined #maemo23:58
*** sp3000 has joined #maemo23:58
*** toggles has joined #maemo23:58
*** larswey has joined #maemo23:58
*** d1b has joined #maemo23:58
*** GeneralAntilles has joined #maemo23:58
*** bleeter has joined #maemo23:58
*** maswan has joined #maemo23:58
*** grishnav has joined #maemo23:58
*** GuySoft has joined #maemo23:58
*** plr_ has joined #maemo23:58
*** barisione has joined #maemo23:58
*** ptl has joined #maemo23:58
*** roadi has joined #maemo23:58
*** abner has joined #maemo23:58
*** pexi has joined #maemo23:58
*** myu has joined #maemo23:58
*** jjo has joined #maemo23:58
*** fabo has joined #maemo23:58
*** Dhraakellian has joined #maemo23:58
*** sx0n_ has joined #maemo23:58
*** rtyler has joined #maemo23:58
*** Sargun has joined #maemo23:58
*** lardman|gone has joined #maemo23:58
*** thomasvs has joined #maemo23:58
*** booiiing has joined #maemo23:58
*** kamui has joined #maemo23:58
*** Mek has joined #maemo23:58
*** johnx has joined #maemo23:58
*** ChanServ has joined #maemo23:58
*** comawhite has joined #maemo23:58
*** mtnbkr has joined #maemo23:58
*** t0h_ has joined #maemo23:58
*** jacekowski has joined #maemo23:58
*** sar3th|away has joined #maemo23:58
*** dvarnes has joined #maemo23:58
*** w00t_ has joined #maemo23:58
*** vivijim has joined #maemo23:58
*** qurk has joined #maemo23:58
*** zeltak has joined #maemo23:58
*** |R has joined #maemo23:58
*** wolf^ has joined #maemo23:58
*** robink has joined #maemo23:58
*** trench has joined #maemo23:58
*** gibson.freenode.net sets mode: +o ChanServ23:58
*** cyndis has joined #maemo23:58
*** ds3 has joined #maemo23:58
*** yacc has joined #maemo23:58
*** FauxFaux has joined #maemo23:58
*** Trizt has joined #maemo23:58
*** Dasajev has joined #maemo23:58
*** evilbulgarian has joined #maemo23:58
*** evilrob has joined #maemo23:58
*** haltdef has joined #maemo23:58
*** nomis has joined #maemo23:58
*** zeenix has joined #maemo23:58
*** wallblom has joined #maemo23:58
*** guerby has joined #maemo23:58
*** cmvo has joined #maemo23:58
*** nslu2-log has joined #maemo23:58
*** |thunder has joined #maemo23:58
*** Shapeshifter has joined #maemo23:58
*** Riussi has joined #maemo23:58
*** TriztFromWork has joined #maemo23:58
*** dev has joined #maemo23:58
*** aloril has joined #maemo23:58
*** `0660 has joined #maemo23:58
*** fipu has joined #maemo23:58
*** akiniemi has joined #maemo23:58
*** pvanhoof has joined #maemo23:58
*** Flipi|BNC has joined #maemo23:58
*** laasonen has joined #maemo23:58
*** parasight_ has joined #maemo23:58
*** Appiah has joined #maemo23:58
*** krau has joined #maemo23:58
*** kov has joined #maemo23:58
*** rysiek|pl has joined #maemo23:58
*** polac has joined #maemo23:58
*** opdf2 has joined #maemo23:58
*** auenf has joined #maemo23:58
*** andrunko has joined #maemo23:58
*** sneakret_ has joined #maemo23:58
*** AndrewX192 has joined #maemo23:58
*** dreamer has joined #maemo23:58
*** jaska has joined #maemo23:58
*** marnanel has joined #maemo23:58
*** Sargun_Screen has joined #maemo23:58
*** kevsim has joined #maemo23:58
*** chem|st has joined #maemo23:58
*** alterego has joined #maemo23:58
*** razzloss has joined #maemo23:58
*** vltR has joined #maemo23:58
*** LiraNuna has joined #maemo23:58
*** merlincorey has joined #maemo23:58
*** idoru has joined #maemo23:58
*** cos^ has joined #maemo23:58
*** kurtan has joined #maemo23:58
*** Jaffa has joined #maemo23:58
*** sharpie_ has joined #maemo23:58
*** jj- has joined #maemo23:58
*** jhe has joined #maemo23:58
*** johnsu01 has joined #maemo23:58
*** robtaylor has joined #maemo23:58
*** ferulo has quit IRC23:58
*** ferulo has joined #maemo23:58
*** evildalton has quit IRC23:58
*** FredrIQ|n900 has quit IRC23:58
*** FredrIQ|n900 has joined #maemo23:58
*** shikamaru has quit IRC23:58
*** shikamaru has joined #maemo23:58
*** trx is now known as Guest3905523:59
*** aep is now known as Guest4252923:59
*** libben has joined #maemo23:59

Generated by irclog2html.py 2.15.1 by Marius Gedminas - find it at mg.pov.lt!