IRC log of #maemo for Wednesday, 2008-04-23

*** SDuensin has quit IRC00:01
*** msanchez has quit IRC00:01
RST38hInstalled in 1U rackmount cases, and stacked up in a rack, the boards can collectively compile the 25,000 binaries comprising a full Ubuntu distribution (some packages build more than one object file) in about 10 days00:02
RST38hYeaaah00:02
RST38hGive monkeys enough typewriters and this is what you get =)00:02
Naviall of ITT should get together and run folding@home on our ITs00:03
GeneralAntillesHa00:03
NaviWe'd be the best of the best00:03
RST38hBetter yet00:03
RST38hWe should create a distributed ITT network for compiling 25000 Ubuntu binaries00:03
Navimeh00:04
RST38hAnd make one REEEALLY BIG tablet to install them on00:04
*** woodwizzle has joined #maemo00:04
*** jeez_ has quit IRC00:05
GeneralAntillesteh gigatablet00:06
AStormRST38h: we'd easily lose00:06
RST38hLose to whom?00:06
AStormITT is *sloooow* at compiling00:06
AStormbuilding perl takes about 30 minutes00:06
*** mwaldron has quit IRC00:07
*** MangoFusion has quit IRC00:07
AStormor more00:07
RST38hAStorm: They (Ubuntu) built a rack of custom-built ARM-based boards to compile stuff00:07
AStormes00:07
AStormthat's the way00:07
AStormor use cross compilers, if you're lazy00:07
RST38hThey say it is not easy as a lot of Ubuntu packages break when cross-compiled00:07
AStormbut to use cross compilers, they'd have to fix certain build systems00:07
AStormyup00:07
RST38hSo better build a rack of custom boards, yees, the industrial way...00:08
AStormcheap and easy00:08
RST38hStill, the whole thing strikes me as very artificial00:08
AStormwhy? Most ARMs just doesn't have enough power00:09
RST38hWho needs this it, especially given such exotic build process?00:09
AStormexotic?00:09
AStormit's just distcc I guess00:09
RST38hyea00:09
AStormor maybe a real cluster?00:09
AStormlike, uhm, Beowulf?00:09
AStormor large NUMA machine ;P00:09
RST38hno, description actually sounds like just a bunch of machines compiling stuff00:09
AStormmhm00:10
AStormso they will still have problems with some packages00:10
RST38hthey also use Intel ARM chips, those are fast00:10
RST38hOh well, time to go to bed00:10
AStormwe need arm11 optimized packages00:10
AStormnot some generics00:10
NaviIntel xscale chips suck00:11
*** AD-N770 has joined #maemo00:11
RST38hThey do not00:11
Navido to00:11
AStormthey're nice00:11
Navis/to/too/00:11
infobotNavi meant: do too00:11
*** hugolp has quit IRC00:11
RST38hNaviL they suck at power consumption00:12
RST38hBut provide decent performance00:12
AStormyep00:12
NaviI prefer batterly life over performance on a mobile device :P00:12
RST38hAnd what is in ARM11 that you want to specifically optimize for?00:12
RST38hNavi: Well, we know by now that Intel sees it differently :)00:13
RST38hAnd that is probably why it lost to TI in mobile space00:13
AStormRST38h: because Maemo has:00:13
AStorm1) VFP00:13
*** setanta has quit IRC00:14
AStorm2) ARM11 has stream instructions (SIMD)00:14
RST38hIsn't VFP already being used?00:14
AStorm3) its Thumb has denser code00:14
*** juergbi has quit IRC00:14
RST38hIt is just floating point math, isn't it00:14
RST38h?00:14
AStormyup00:14
*** MangoFusion has joined #maemo00:14
RST38hOk, now #300:14
RST38hTHUMB exists since ARM7. Every -T labeled CPU has it00:15
AStormthere are a few nice new instructions00:15
AStormyes00:15
RST38hSo, you can actually turn THUMB compilation on in GCC00:15
RST38hFinally, #200:15
*** AD-N770 has quit IRC00:15
AStormI know...00:15
AStormbut ARM11 Thumb is better slightly00:15
RST38hIf I remember correctly, ARM "SIMD" is basically a bunch of cross-product opcodes00:15
*** dolske has joined #maemo00:16
AStormnot that cross-product00:16
RST38hstuff like A*B+C*D00:16
AStormmore or less00:16
*** shacka1 has joined #maemo00:16
AStormthat's what MMX is about00:16
RST38hUnless you are doing an MPEG decoder this stuff isn't very useful00:16
AStormor MP3 decoder00:16
AStormor any other MDCT00:16
RST38hCompiler can't really make use of it00:16
AStorm(jpeg?)00:16
RST38hcorrect00:17
AStormyes, compiler can make use of it00:17
AStormat least gcc 4.300:17
RST38hCompiler can prov ide you with a bunch of intrinsics to use this stuff directly in your program00:17
AStormno00:17
RST38hThis is what Intel does00:17
AStormit will use it00:17
AStormautomatically, when deemed optimal00:17
AStorm:-)00:17
*** dneary has joined #maemo00:17
RST38hYes, but what is the probability of these things to be deemed optimal?00:18
AStormdepends on the code00:18
RST38hThey are very specific operations00:18
AStormyes, like multiple addition and multiplication00:18
RST38hWell, given "normal" average code?00:18
AStormnot too often00:18
RST38hSo, that is why Intel has intrinsics00:18
AStormbut it will speed things up where it matters00:18
AStormRST38h: but then you have to rewrite code00:18
AStorm= work00:18
AStorminsert asm into C, and all00:18
AStormyuck00:18
*** lmoura has quit IRC00:19
*** NetBlade has joined #maemo00:19
RST38hAStorm: not exactly00:19
AStormwell, the intrinsics are there00:19
RST38hAStorm: you insert what looks like C fnunctions into C00:19
AStormbut it still is special case code00:19
RST38hAnd compiler (or preprocessor) does the rest00:19
AStorm= work00:19
RST38hCorrect00:19
AStormand looks ugly ;)00:20
*** Ikkakujyu_ is now known as Ikkakujyu00:20
RST38hAnd the reason why it is special case code is because these opcodes are so specific that compiler does not have generic use for them00:20
*** AStorm has left #maemo00:20
RST38hOne notable exception is, of course DIV :)00:20
*** AStorm has joined #maemo00:20
AStormwhoops ;)00:20
RST38hOne notable exception is, of course DIV :)00:20
AStormand multiple sum00:20
RST38hthat one is less clearly cut00:21
*** Crfrod has joined #maemo00:21
AStormgcc 4.3 can detect looped addition and optimize it accordingly00:21
*** jeez_ has joined #maemo00:21
*** alex-weej_ has quit IRC00:22
RST38hYes, but how frequently do you do looped addition? :)00:22
RST38hAnyways, specific ARM11 optimizations do not look very promising...00:22
*** alex-weej_ has joined #maemo00:22
*** shackan has quit IRC00:23
*** practisevoodoo_ has quit IRC00:23
*** ch4os_ has quit IRC00:23
RST38hFuck, RUR/USD is already at 23.429900:23
AStormRST38h: more important are instruction delays00:24
RST38hUSD/RUR, actually00:24
*** ch4os_ has joined #maemo00:24
AStormhehehe00:24
RST38hAStorm: You mean, they shrunk the number of clocks per instruction?00:24
AStormyes00:24
AStormso allocator can make better decisions with correct data00:24
RST38hBut this does not require specific optimization ;)00:24
AStormyes00:24
AStormthat's just -mtune=arm11etc00:25
RST38hAt this rate, it is going to hit 20 soon00:25
AStormbut Ubuntu will provide generic code00:25
AStormRST38h: huh?00:25
AStormactualy, it will increase I think00:25
RST38hAnd *then* we will have to build the huge distributed compilation farm out of ITTs! :)00:25
AStormUSD is falling00:25
RST38hAStorm: yes, but that was USD/RUR rate00:25
*** Cptnodegard has quit IRC00:25
RST38hSo it is falling00:26
*** Cptnodegard has joined #maemo00:26
AStormI prefer tracking USD/EUR00:26
RST38hIt was 26 just a few months ago00:26
RST38hNo use for EUR here00:26
*** nocelic has joined #maemo00:26
AStormsoon, USD will be worth less than the paper it's printed on00:26
AStorm;)00:26
RST38hI hope the current Supreme Commander gets sentenced before that00:27
RST38hOr, at least, finally goes away after 8 years00:28
*** alex-weej_ has quit IRC00:28
AStormand no idiot equal to him appears? ;)00:28
*** Vytas has quit IRC00:30
RST38hThat is a good question...billion and billion dollar question00:31
RST38hSo far, we have got a black, a woman, and a post-vietnamese nutcase to choose from00:32
AStormI pick the black.00:32
GeneralAntillesThey're all terrible.00:32
AStormyep00:32
AStormI'm not a US citizen anyway ;P00:33
* RST38h no longer cares, black, green, purple, as long as this thing is not republican 00:33
*** fab has quit IRC00:33
RST38hI am, does not change much00:33
AStormyup00:33
*** turbo is now known as briand00:33
AStormwell, Hilary is worse than Obama ;P00:33
RST38hBut the truth is that the only way the nutcase is gonna lose is if the public finds out he is gay or something00:34
RST38hOr, better, a pedophile00:34
AStormor he dies00:34
AStorm:P00:34
RST38hHe will not00:34
AStormWhy not, he's damaged already ;P00:34
RST38hThese guys never duy00:34
RST38hdie00:34
* lcuk eyes hurt00:35
*** lopz has quit IRC00:35
RST38hJust look at Cheney - he just goes to sleep in a coffin at some undisclosed location, then bathes in virgins' blood and he is back as new00:35
*** lopz has joined #maemo00:35
lcuka life modelled upon mr burns00:35
GeneralAntillesRepublic, Democrat00:35
GeneralAntillesThey're all exactly the same00:35
GeneralAntilless/Republic/Republican/00:36
RST38hBTW, the old zoldat has some really interesting plans00:36
*** Masca has joined #maemo00:36
RST38hHe has mentioned an idea of mandatory (!) work for high-schoolers00:37
AStormrotfl00:37
AStormHitler Jugend?00:37
AStorm;P00:37
RST38hMore or less like in USSR where in 9-10 grades you spent 1 day a week working at some factory or cleaning school yard00:37
*** jeff1f has quit IRC00:37
AStormoh yes, something like that00:37
RST38hNot rwally a Hitler Jugend, as everybody absollutely hated it00:38
GNUtonnight00:39
*** GNUton has quit IRC00:39
RST38hoh, well, at least I can watch the whole thing from sidelines...00:40
RST38hgood night all00:40
*** skibur has joined #maemo00:40
*** nocelic has quit IRC00:44
*** NetBlade has quit IRC00:44
*** NetBlade has joined #maemo00:44
*** Crfrodf has quit IRC00:44
*** alex-weej_ has joined #maemo00:44
*** alex-weej_ has quit IRC00:45
*** k-s has joined #maemo00:46
*** Dregs has quit IRC00:48
*** TPC has quit IRC00:49
*** Sho_ has quit IRC00:49
*** alex-weej_ has joined #maemo00:50
*** koyote` has joined #maemo00:50
*** TPC has joined #maemo00:50
*** Cptnodegard has quit IRC00:51
*** bilboed has quit IRC00:52
*** alex-weej_ has quit IRC00:53
woodwizzleanyone here use tomboy notes?00:53
woodwizzleI'm wondering if I can sync my notes up with my n80000:53
*** alex-weej_ has joined #maemo00:54
*** koyote has quit IRC00:54
woodwizzletomboy runs under mono so I doubt I can explicitly run it on the n80000:54
*** koyote` is now known as koyote00:54
woodwizzlebut the notes themselves can probably be synced. There in an .xml format00:54
*** liquid217 has quit IRC00:54
*** alex-weej_ has quit IRC00:54
*** luck^ has quit IRC00:56
*** alex-weej_ has joined #maemo00:56
*** mardi__ has left #maemo00:57
*** red-zack has quit IRC00:58
*** alex-weej_ has quit IRC00:59
*** JussiP has quit IRC01:00
*** JussiP has joined #maemo01:00
*** MoRpHeUz has quit IRC01:00
*** ImMelody has joined #maemo01:03
ImMelodyEvenin' fellows :)01:03
*** behdad has quit IRC01:04
fysalook up opensync01:04
*** behdad has joined #maemo01:04
*** alex-weej_ has joined #maemo01:05
*** JussiP has quit IRC01:06
*** efleury has quit IRC01:06
*** mardi__ has joined #maemo01:06
*** qwerty12_N800 has joined #maemo01:09
*** dneary has quit IRC01:09
*** borism has joined #maemo01:10
*** etrunko has quit IRC01:13
*** jeez_ has quit IRC01:17
*** behdad has quit IRC01:17
* Mousey fscks up his tablet AGAIN01:17
Mouseydammit!01:17
Mouseywhat did i do??01:17
* Mousey blames gpe-summary01:18
fysatake the battery out.01:18
qwerty12_N800What happened?01:18
AStormhuh?01:18
AStormgpe-what?01:18
Mouseyit's worse than that, it's dead jim01:18
Mouseyit's rebooting over and over again01:18
AStormI have gpe-calendar and gpe-todo01:18
Mouseyall i was doing was installing packages01:18
ImMelody:o01:18
AStormdead? impossible01:18
qwerty12_N800Do you get a message about /home something?01:18
Mouseywith the application installer!01:18
fysadid you install powerlaunch?01:18
ImMelodyflash it01:18
Mouseyqwerty12_N800: now that you mention it, i did01:18
AStormMousey: it's not dead, just probably sleeping01:19
Mouseyqwerty12_N800: something about it not being able to write to .gpe-todo or some such01:19
AStormand powerlaunch has problems starting up on AC01:19
AStormand is suck anyway ;P01:19
qwerty12_N800You have to run the gpe programs once in the menu01:19
Mouseyi hadn't finished installing them yet01:19
qwerty12_N800Do you have ssh?01:19
Mouseyand now its reboot city01:19
Mouseyyes01:19
fysahow quick are you? ;)01:20
qwerty12_N800Keep the message on the screen and ssh  in 2 run the gpe apps01:20
*** andrunko has quit IRC01:20
Mouseywhat message? "NOKIA"?01:20
AStormqwerty12_N800: nah, it can't boot ;P01:20
AStormMousey: ok, then01:20
Mouseyall i get is NOKIA01:20
AStormdo you have the battery charged?01:20
Mouseyfully01:20
AStormmhm, disconnect ac01:20
AStormremove battery01:20
AStormreinsert, power up the device01:21
qwerty12_N800It's just hildon desktop that crashes for me with that msg :/01:21
Mouseypowering up01:21
AStormuhoh01:21
Mousey"NOKIA"01:21
AStormMousey: if it's the desktop rebooting, then I suggest flashing Fanoush' initfs in01:21
Mouseyaaaaaaaaaaaaaaand it's rebooting01:21
AStormand using its ssh or telnet01:21
ImMelodywhy don't you just flash it? :o01:22
AStormImMelody: because it sucks and loses data ;P01:22
MouseyGeneralAntilles has told me to look into fanoush's initfs for about 3 decades now. i guess i have to finally do it01:22
MouseyImMelody: then i have to reinstall all the packages01:22
qwerty12_N800You don't have fanoush initfs installed by any chance? Like AStorm says.01:22
AStormyeah, it's very nice, that initfs01:22
MouseyImMelody: thats what i was in the middle of doing [from the LAST time it went reboothappy]01:22
fysatry booting once without any mmc cards01:22
qwerty12_N800Mousey: You have Linux on host?01:23
ImMelodyso you're not going to lose very much XD sorry.. trying to find the silver lining..01:23
Mouseyi haven't used windows in 10 years01:23
qwerty12_N800Hehe, good man :)01:23
*** hfwilke has quit IRC01:23
AStormMousey: use Linux flasher, d'oh01:24
qwerty12_N800brb, i h8 typing on tablet :(01:24
qwerty12_N800Yep, AStorm01:24
AStormok, back to adding SOAP to the web01:24
AStormas if it doesn't have enough01:24
NaviI like IMing on the tablet01:24
fysa810?01:24
Navijust not long posts and stuff01:24
NaviN80001:25
Mouseyscrew this. i'm gonna go see what this fanoush nonsense is all about. i was so happy being ignorant, now i have to go edumacate myself01:25
Mouseyfysa: 81001:25
Mouseylong posts no problem01:25
*** Pio_ has joined #maemo01:25
Mouseyexcept when in this state01:25
*** Pio has quit IRC01:26
*** Pio_ is now known as Pio01:26
ImMelodyI take it you don't think it's a hardware issue despite it happening twice now01:26
AStormit's not01:26
AStormit's a software issue, with hildon desktop not starting01:26
ImMelodyok :)01:26
GeneralAntillesI don't have any trouble at all typing on the N800.01:26
MouseyImMelody: no, sorry. i don't have enough info to judge it's the hardware, but the info i do have doesn't point to the hardware, just my own retardedness01:26
AStormI don't have any trouble typing on N810 ;)01:27
fysaGeneralAntilles, have you tried any wpm apps?01:27
Mouseyme either ^_^01:27
*** briand has quit IRC01:27
*** briand has joined #maemo01:27
GeneralAntillesNo, clocked myself at (5-letters-per-word) around 30-60wpm with a few self tests.01:27
qwerty12_N800Mousey: Give me time, I'll generate generic  fanoush's initfs 4 u01:28
qwerty12_N800You can flash with linux flasher.01:28
AStormGeneralAntilles: suck ;)01:28
GeneralAntillesSuck?01:28
AStormI'm faster with N810 ;)01:28
AStormalthough N800 screen keyboard is worse01:28
GeneralAntilles70wpm with the N810?01:28
GeneralAntillesI don't buy that for a minute.01:28
Mouseyqwerty12_N800: don't worry about it, i'll study it.. I want to learn how to boot from the other drives anyway. i should know my own hardware. i'm just being a lazy whining n00b01:28
AStormhah, my powerful new method of one hand, 4 finger typing01:29
*** matt_c has quit IRC01:29
MouseyAStorm: eww01:29
AStormwhat?01:29
* GeneralAntilles calls baloney.01:29
qwerty12_N800I've been reading too much fortunes >.<01:29
AStormI'm still making too many errors though.01:30
AStorm;)01:30
Mouseyhere's for all you 800/770ers out there01:32
Mouseyhttp://www.vouspensez.com/2008/04/22/the-geekiest-pants-ever/01:32
AStormit'd break quickly01:35
AStormand it's ugly01:35
Mouseyit's for people who play track-and-field with the spacebar01:35
Mousey^_^01:35
Navi:/01:36
*** denny has quit IRC01:39
*** briand has quit IRC01:46
*** b0unc3_ is now known as b0unc301:46
*** Tama^2 has joined #maemo01:47
*** alextreme has quit IRC01:48
ljpthats funny01:48
*** qwerty12_N800 has quit IRC01:50
KotCzarnyyawn01:50
AStormnway01:50
*** briand has joined #maemo01:51
*** pvanhoof has quit IRC01:56
*** megabyte405 has quit IRC01:58
*** dieb_ has joined #maemo01:59
*** dieb_ is now known as Relate01:59
*** cmarcelo has quit IRC02:00
*** vcgomes has quit IRC02:00
*** vivijim has quit IRC02:03
*** f_mohr has quit IRC02:09
*** NetBlade has quit IRC02:18
ImMelodywheeeeeeeeeeeeeeeee code is making me disy02:18
ImMelodydizzy XD02:18
KotCzarnyride it02:18
KotCzarny'I tell my patients, if you can't pronounce it, don't put it in your body'02:19
KotCzarnylol02:19
ImMelodylol02:19
ImMelodybut what if you can pronounce just about anything?02:19
KotCzarnythen you already know what it is02:20
KotCzarnyusually02:20
KotCzarnyand know if it's safe or not02:20
KotCzarnyusally02:20
KotCzarnyusually02:20
ImMelodyso what do you do for a living XD02:20
KotCzarnynothing02:20
KotCzarny:)02:20
ImMelodyoh ok02:21
*** Dregs has joined #maemo02:23
AStormKotCzarny: you're unemployed for a living?02:24
KotCzarnyi'm just lazy02:24
KotCzarny:)02:24
*** halleck has quit IRC02:27
ljpwow. you get paid for being lazy? cool02:27
*** briand has quit IRC02:27
*** halleck has joined #maemo02:27
*** briand has joined #maemo02:27
* ljp needs to find a job like that02:27
KotCzarnywho said anything about being paid?02:27
KotCzarny:)02:27
*** vcgomes has joined #maemo02:27
*** luizirber has joined #maemo02:28
*** liquid217 has joined #maemo02:29
*** MangoFusion has quit IRC02:29
ljppeople in australia get paid for being lazy. its called centrelink02:30
KotCzarnysome kind of wellfare program?02:30
ljpsort of.02:31
flo_laphmm... I guess I would take a lot of money for beeing lazy - I don't like this that much ;)02:34
KotCzarnyCranberry juice Unsweetened cranberry juice can be used as mouthwash and as a solution for brushing one's teeth.  It will kill all motile bacteria on contact and help to disintegrate plaques.  Since it is somewhat acidic, probably it should not be used more then a few times a week.02:42
KotCzarnylol02:42
flo_lapheh02:43
*** Crfrodf has joined #maemo02:45
*** LastLemming has joined #maemo02:46
AStormand it's very sour ;P02:49
*** LastLemming has quit IRC02:49
*** LastLemming has joined #maemo02:50
*** giskard has quit IRC02:51
KotCzarnybetter than unsweetened commercial toothpaste :P02:54
KotCzarny |> VA_-_Super_Set_Mixed_by_Yahel-CD-2005-JFK/01-va_-_super_set_mixed_by_yahel.mp302:55
AStormKotCzarny: well, not that much better02:56
AStormand menthol, xylitol and sorbitol also kill germs02:56
AStormadditionaly, are sweet02:56
KotCzarnyi'm going to try toothpaste based on baking soda + salt02:56
*** pupnik_ has joined #maemo02:56
lcukso does vodka02:56
KotCzarnyvodka kills braincells too02:56
lcukswill that round first thing and you are good to go02:56
flo_lapgood night02:56
AStormdefinitely02:56
KotCzarny:)02:57
lcuknite flo02:57
AStormKotCzarny: baking soda damages teeth02:57
*** briand has quit IRC02:57
lcukany abrasive does02:57
*** Sargun has quit IRC02:58
KotCzarnyit's the point of brushing02:58
lcuk*WARNING: DO NOT CHEW SAND*02:58
Mousey...02:58
*** briand has joined #maemo02:58
AStormKotCzarny: no, it's not02:58
* GeneralAntilles puts diatomaceous earth in lcuk's toothpaste.02:58
KotCzarnyalso, baking soda kills germs too02:58
lcukyou don't take the top surface of your pots when you clean them, you jsut want to get the food off02:58
AStormthe point is to use something slightly softer than teeth, but harder than plaque02:58
AStormthat's why we use toothbrushes02:58
lcukwe use toothbrushes because our fingers are too fat to get in the crevises02:59
*** flo_lap has quit IRC02:59
*** snowmoon has joined #maemo02:59
*** Crfrod has quit IRC02:59
AStormthat too02:59
lcukbut your finger can clean your tongue much more effectively than any of these tongue scrubbers02:59
KotCzarnytongue scrubbers?03:00
KotCzarnyO.o03:00
lcuk(the ones on back of toothbrush)03:00
*** Tu13es has quit IRC03:00
lcukomg they have torture equipment for it now03:01
lcuki meant the none brush side of the toothbrush having a rough patch specifically for tongue cleaning03:01
KotCzarnyhuh03:02
*** BugBlauw has joined #maemo03:02
lcukhttp://www.clusterflock.org/images/Colgate_360.jpg03:02
KotCzarnyfancy03:02
GeneralAntillesHey, it's my toothbrush!03:02
*** BugBlue has quit IRC03:02
*** LL00 has quit IRC03:02
*** qnr-lt has joined #maemo03:03
GeneralAntillesThe backing is rubber.03:03
Tama^2good to see they fully embrace the razorblade marketing technique03:05
GeneralAntillesHehe03:05
GeneralAntillesMOAR IZ BETTAR!03:05
* GeneralAntilles must admit to having a 5-blade razor.03:05
KotCzarnyfrom the pic you look unshaved tohugh03:06
KotCzarny*though03:06
qnr-ltQuestion: where can I find what the permissions should be for particular directories?  I'm having constant problems in certain respects. Apps install but say they didn't (figure they're not able to write some log files or something) - my settings never last through a shutdown, etc.03:06
woodwizzleIs there a good python IDE available for maemo?03:06
qnr-ltotherwise, things seem to work ok ... N800, OS2008, booting from MMC203:07
woodwizzleMY buddy and I are learning python, and it'd be great if we could run edit and test on the go with the n80003:07
lcukwoodwizzle, yes there is.  its called pygtkeditor03:07
KotCzarnyjust write a simple pygtk app to do it03:07
lcukits fully designed and tested by a guy on his n800 and now 810 :)03:08
KotCzarnyor just add the app to menu03:08
KotCzarny:)03:08
NaviI use pygtkeditor for quick comix tweaks03:08
woodwizzlesweetness03:08
*** pupnik has quit IRC03:08
lcukits got syntax highlighting and a run button :)03:08
*** netx has quit IRC03:08
KotCzarnycool03:08
KotCzarny:)03:08
lcukall a person could ask for03:08
*** LastLemming has quit IRC03:08
KotCzarnywhat about massage?03:09
lcukoh - and its the only program i know to use the zoom buttons - bigger fonts == + button ;)03:09
lcukno sorry, but khertan himself might do03:09
KotCzarnyhum03:09
*** LastLemming has joined #maemo03:09
KotCzarnyif he is good at it, why not03:09
KotCzarny:)03:09
KotCzarnyotherwise i'll pass03:09
*** netx has joined #maemo03:11
lcukim off 2 bed, theres a new file on my ftp SDL_scrolly_sync_20080423_closest.zip if you wanna grab it and have a play kot.  that function is inside.  its defaulted to not running.  find it and run it yourself if you wanna have a play03:12
Navilcuk, zomg wut ur ftp :P03:12
lcukits private for now :P03:12
*** Mousey has quit IRC03:12
lcukthat code there ^ isnt but i dont have webspace03:12
KotCzarnyk k03:12
lcukermmm, hang on a min03:12
lcukhttp://liquid.googlepages.com/SDL_scrolly_sync_20080423_closest.zip03:13
lcukgnite03:13
KotCzarnyk k03:14
KotCzarnynite03:14
KotCzarny:)03:14
Navi40403:15
lcukhmm03:17
KotCzarnymaybe it's missing index.html03:17
lcukKotCzarny, can you see that file i put on google03:17
KotCzarny:)03:17
KotCzarnylcuk, nope, 404 on google03:17
KotCzarnyftp works though03:17
lcukhttp://liquid.googlepages.com/testfiles03:20
Navithur eet iz03:20
Naviwoo03:20
Navi\o/03:20
lcuki did that the other nite with pupnik and he got it03:21
lcukwonder what was diff03:21
lcukahhh well, this is just a dirty test program for sdl, this is probably the closest i have gotten to making a smooth verison, but its not perfect and doesnt suit my rendering style still.   there may be more someone can do though03:22
*** greentux_ has joined #maemo03:22
lcuk(like follow into shmPutImage and see where the rabbit hole leads03:23
KotCzarnyhmm03:23
KotCzarnyme thought for a moment to dump x03:24
KotCzarnybut it would break compatibility for many apps03:24
KotCzarnyok, brushing time03:24
lcuktechnically sdl can be fired with quite a lot of drivers03:25
lcukthere is one for directfb03:25
*** Zetx| has joined #maemo03:25
lcukplus, we have not seen RGB updates from any library yet at full speed, full resolution03:25
KotCzarnygrrr03:31
KotCzarnyyou and your absolute paths03:31
KotCzarny:)03:31
KotCzarnyhmm03:32
KotCzarnyhave you seen the first few pixels on the right?03:32
lcukwith the scaly thing?03:32
KotCzarnyno, i mean on that scrolling thing03:32
lcukyes03:33
KotCzarnywhen text goes up and down03:33
lcukim not even sure if thats the ideal version anymore, its the closest i could get it03:33
KotCzarnyinteresting as it goes out of/in sync03:33
lcukit seems to miss a frame every second03:33
lcuk!  ding03:33
AStormApparently I'll be able to drive N8x0 from 1x AA even03:34
KotCzarnymm?03:34
lcukdont we have ermmmmm whats the power/cpu updater thingy toolbar button whatsit03:34
KotCzarnyastorm: tested or theory?03:34
*** MoRpHeUz has joined #maemo03:34
AStormI'll make such an option in my battery pack03:34
AStormKotCzarny: 100% possible03:34
KotCzarnylcuk: yes we have03:34
AStormif it can live off 400 mA, surely03:34
lcukthat refreshes once a second and takes bandwidth from the lcd03:34
AStormalthough efficiency will be shiz ;) like 75%03:35
KotCzarnyerm03:35
KotCzarny:/03:35
*** trbs has left #maemo03:35
lcukit refreshes even if you are doing other things. i noticed when i was messing with the framebuffer right at the start03:35
AStormKotCzarny: Unless I plug that into battery port ;P03:35
*** lopz has quit IRC03:35
*** lopz has joined #maemo03:35
AStormthen I would get about 80%03:36
KotCzarnyastorm: the point is to make that battery pack complimentary03:36
AStormyes03:36
AStormso, 2x AA is more real03:36
*** dopper has joined #maemo03:36
KotCzarnyand it would fit along top/bottom/back03:36
AStorm800 mA at 89% is good03:36
lcuk4aa would be minimum for mw03:36
AStormlcuk: nowhere near minimum03:36
AStormmuch more than required03:36
AStormI'm thinking NiMH, btw03:37
AStormNot alkaline ;P03:37
AStormwould need a switch for normal battery too03:37
lcukbut i want longevity - play all day on one charge and leave the pack charging at night03:37
AStormyup03:37
AStorm2x AA = 2800 mAh03:37
AStormcoupled with internal battery, that's a lot03:37
KotCzarnyastorm: include possibility to piggyback those03:37
KotCzarnyie. to use 2 x 2AA03:38
AStormthis is inherent03:38
KotCzarnyor 3 x 2AA03:38
AStormah, that, hmm03:38
AStormgood idea03:38
AStormsimple to add, *if* I get proper plugs03:38
lcukbut the AAs will be recharging the internal battery pack?   i need to fully charge myself at least twice to do a whole day03:38
AStormlcuk: they will03:38
AStormthey'll both charge it and power the device03:38
KotCzarnyhmm03:39
*** zoran has quit IRC03:39
lcukim gonna have to get one of these extension chargers before i go on holiday - i will give you results03:39
*** zoran has joined #maemo03:39
AStormit's essentially additional 2400 mAh03:39
KotCzarnyi whink 890mA is reached only when charging + using the device03:39
KotCzarnyotherwise it's much less03:39
AStormKotCzarny: no, more can be even03:39
AStormup to 1A03:39
*** mk500 has joined #maemo03:39
AStormthat's why the device is straining AC-4E sometimes ;P03:40
KotCzarnybecause it goes into trickle charge mode03:40
AStormyes03:40
AStormthen it's about up to 250-300 mA03:40
AStormin full load03:40
lcukright, goognight03:40
KotCzarnynight night03:40
AStormso quite high efficiency03:40
KotCzarny:)03:40
AStormnight03:40
KotCzarnyastorm: more i think03:40
*** behdad has joined #maemo03:40
KotCzarny3-4h of usage03:40
*** greentux has quit IRC03:40
KotCzarnyon 1500mAh internal battery03:41
AStormKotCzarny: 4-5h03:41
AStormlet's say 4h03:41
KotCzarnyk03:41
KotCzarny420mA then03:41
AStorm400 mA03:41
AStormthat includes various losses03:41
KotCzarnylcuk: btw. no reboot is needed03:42
KotCzarnyonly kill -903:42
KotCzarny:)03:42
AStormwell03:42
AStormwith 1x AA (NiCd/NiMH), the max current I'll be able to get will be about 400 mA, but that's old data03:43
AStormthese puppies have since improved03:43
KotCzarnyyup03:43
KotCzarnyyou shouldn't worry about aa cell03:43
AStormyep03:43
KotCzarnyhmm03:44
*** briand has quit IRC03:44
*** Zetx has quit IRC03:44
KotCzarny6x 2.4Ah AA could be long time03:44
KotCzarny:)03:44
AStormok, have to drop into some shop, but a few MAX1703, schottky diodes, resistors, caps and inductors ;>03:44
AStormKotCzarny: like a few days of usage03:45
AStorm6x 2800 mAh would give somewhere like 6x 2600 mAh, due to inefficiency of step-up03:45
KotCzarnyalso you should include cutoff switch03:45
AStormalthough the link mode could use 4x AA almost directly03:45
AStormwith very high efficiency03:45
AStormyes, I will03:45
KotCzarnybecause constant trickle charging may be damaging for internal battery03:46
AStormno, it isn03:46
AStorm't03:46
KotCzarnyit is03:46
AStormit's Li-Poly after all03:46
KotCzarnybelieve me03:46
AStormand it's not trickle-charged03:46
AStorm:>03:46
KotCzarnyit is03:46
KotCzarnyfrom what i have seen03:47
AStormI suspect not, just left to unload for a while03:47
AStormthen charged back up03:47
KotCzarnyhttp://mrrau.dyndns.org:23280/n800/kcbatt/batt2gp.png03:47
KotCzarnyi believe pink is charging rate03:47
KotCzarnyor something03:47
*** gribouille_ has joined #maemo03:47
*** gribouille has joined #maemo03:48
KotCzarnyi mean violet03:48
AStormwhere's the AC?03:48
KotCzarnyi believe it's violet03:48
*** kb7sqi has joined #maemo03:48
AStormif pink is, then it's definitely *not* trickle charging :>03:48
KotCzarnybecause it goes from 0 to some value after connecting charger03:49
KotCzarnylook at the data from 24/0303:49
*** TPC has quit IRC03:49
KotCzarnyit charges for an hour then goes into some jumping state03:49
gribouille_not bad xchat on the tablet03:49
AStormyup03:50
AStormKotCzarny: I think it's protecting from overheating03:50
*** TPC has joined #maemo03:50
KotCzarnybut then it goes into flat line03:50
KotCzarnywith some spikes03:50
KotCzarnyand i think reading is inverted03:51
KotCzarnyexcluding 'not connected' state, which is at real 003:51
AStormwhich spikes?03:51
AStormthese small at the bottom? it's noise03:51
AStormtrickle charge would have to be higher current03:52
AStormlike at least 1%03:52
KotCzarnyhum03:52
KotCzarnyon the second though you may be right03:52
*** k-s has quit IRC03:52
KotCzarnyit may be a fluctuation because of using the device03:52
KotCzarnybtw. temperature reading is also inverted03:53
KotCzarnyie. hhigh on sclae mean low temp03:53
AStormno03:53
KotCzarnytemp. is blue and red03:53
AStormtemp. is read, right03:54
KotCzarnyyes, because i know when it was hot.03:54
AStormnote that it is charging only when temp is low03:54
KotCzarnybelieve me on that03:54
AStorm:>03:54
KotCzarnyie. look at 24-25/0303:54
KotCzarnywhen it was starting to discharge03:55
KotCzarnytemp. was high03:55
KotCzarny(and reading was low)03:55
*** andre has quit IRC03:55
KotCzarnythen after i went to sleep it gradually fallen03:55
KotCzarny(and reading was high)03:55
AStormthe slate blue might be battery use03:56
*** Zword has quit IRC03:56
KotCzarnywhat is slate blue?03:56
KotCzarnyyou have some legend in the middle of the pic03:57
AStorm#1003:57
KotCzarnyi think it may be op_state03:57
gribouille_in xchat, I don't see where to put the passwords for servers. Does anyone know ?03:58
AStormin Network window03:58
AStormget to it using menu03:58
AStormor ctrl+something03:58
AStormthis kcbatt could be useful for me - where do I get it and will it work on N810?04:00
KotCzarnyastorm, same server04:00
KotCzarnyjust go up04:00
AStormand how do I make a chart?04:00
KotCzarnythere should be a subfolder04:01
KotCzarnyusually i just ran the bin in a screen session04:01
AStormlet me check04:02
KotCzarnyi think it reports battery voltage too04:02
KotCzarnybut in unscaled values04:02
AStormmy N810 should still be charging04:02
AStormmhm, no problem with it04:02
KotCzarnybtw. if you gather some data let me look at it too04:03
KotCzarnyi'm interested if n810 is much different04:03
KotCzarnyfrom n80004:03
*** matt_c has joined #maemo04:03
KotCzarnynot in values, but more in usage patterns04:04
*** jpuderer has quit IRC04:04
*** gribouille has quit IRC04:05
*** christefano has joined #maemo04:06
*** alex-weej_ has quit IRC04:08
*** gribouille_ has left #maemo04:09
*** alex-weej_ has joined #maemo04:09
*** alex-weej_ has joined #maemo04:10
*** briand has joined #maemo04:10
AStormhmm, while charging, its telling me like, 4% or 1% ;P04:13
KotCzarnydon't look at % number04:13
KotCzarnyit's only a guesstimate04:13
KotCzarnylook at the field #804:13
AStormreall guesstimate ;P04:13
AStorm#8 is 394 or so04:13
AStormand varies a lot04:13
AStormbetween runs04:13
KotCzarnyyup04:14
KotCzarnyit's raw read04:14
KotCzarnywithout any processing04:14
KotCzarnyalso #3 is the charging rate i think04:14
KotCzarnyor charging voltage04:14
AStorm8 is increasing apparently04:15
KotCzarnyjust look at generated png04:15
AStorm3 is 0xdd04:15
AStormnah, I don't have the script yet, wait :-)04:15
KotCzarnybtw. to gather data use 'batt' binary04:16
KotCzarnykcbatt processes data04:16
AStormyup04:16
AStormbut not kcbatt -d ;)04:16
AStormwait, d/ling04:16
KotCzarnybut if you gather data with kcbatt you will have to modify php script04:16
KotCzarnythat will prepare data for gnuplot04:17
KotCzarny:)04:17
*** kb7sqi has left #maemo04:17
AStormheh, php, ugh04:17
KotCzarnyyou can write converting script in python04:17
AStormsure04:17
KotCzarnyit's just a shuffling fields04:17
AStormheh04:17
AStormactually, for kcbatt, parsing would be even easier04:17
KotCzarnyand hex to int conversion04:18
KotCzarnyastorm, you can modify the batt.c04:18
AStormI know04:18
KotCzarnyand just generate data in format you want04:18
AStormbut I'm lazy ;P04:18
AStormand have to add gnuplot to the IT04:18
*** gribouille has joined #maemo04:18
KotCzarnyactually writing script in python will take more work than modifying printf04:18
KotCzarny:)04:18
AStormya04:18
KotCzarnyor just copy .dat file to pc04:18
KotCzarny:)04:18
KotCzarnyi like php because of preg_* functions04:19
KotCzarnyand easiness of operations on arrays04:19
AStormPython has perl regexes too :P04:19
AStormarrays? who needs them when we have dictionaries and lists?04:20
AStorm;P04:20
KotCzarnyi will convert to python one day04:20
KotCzarny:)04:20
KotCzarnybut for now it's faster to write code in php04:20
KotCzarny:)04:20
KotCzarnyi should make some tiny cli php port for IT04:21
AStormthere is normal php04:21
*** unixSnob has joined #maemo04:21
KotCzarny-rwxr-xr-x 1 root root 3303700 2007-09-19 20:49 /usr/bin/php*04:21
KotCzarny;)04:21
AStormhuge, eh?04:22
KotCzarnythat's kitchen sink for anyone in need04:22
KotCzarny+ classes and modules in /usr/share of course04:22
AStorm;P04:22
AStormPython is still smaller ;)04:23
KotCzarnylast time i checked package was ~15mb04:23
KotCzarny;)04:23
KotCzarnywhich translated to ~40-60mb of disk space04:23
KotCzarny(for python)04:24
AStormnot that large04:24
AStormit's mostly .py files, which is text, just bloats out on ext04:24
*** astro76 has joined #maemo04:24
KotCzarnyyup04:24
KotCzarnypython-2.5.2-i486-1.tgz                            01-Mar-2008 19:53   15M04:24
KotCzarny15mb04:24
KotCzarnylet me check installed size04:25
AStormi486? check IT one ;P04:25
AStormthere is one too04:25
KotCzarnyUNCOMPRESSED PACKAGE SIZE:     65500 K04:25
KotCzarny64mb04:25
KotCzarny:)04:25
KotCzarnyUNCOMPRESSED PACKAGE SIZE:     19520 K04:25
KotCzarnyand that's for php04:26
KotCzarny;)04:26
AStormwicked04:26
KotCzarnyyup04:26
AStormits impossible04:26
KotCzarnyas i said, modules, classes04:26
AStormmust be docs04:26
*** gribouille has quit IRC04:26
KotCzarny21M     python-2.5.204:27
KotCzarny21mb of dosc04:27
KotCzarnydocs04:27
KotCzarny:)04:27
KotCzarnystill 44mb vs 1904:27
AStorm38 MB here on Gentoo, ext404:27
KotCzarnystill 2x more04:27
KotCzarny:)04:27
AStormhehe04:28
AStormI'll check php04:28
AStorm17 MB04:28
KotCzarnyi have seen working perl in ~500kb04:29
KotCzarnyand i believe there was similiar version for php too04:29
KotCzarny(on openwrt)04:29
AStormI think Python is very shrinkable too04:31
KotCzarnyyes04:31
AStormlib-dynload takes 3 MB04:31
AStormyou can ditch all the .py files too04:31
AStorm(after compiling them)04:31
*** slomo has quit IRC04:31
*** Tama^2 has quit IRC04:31
AStormhuh, full collection of .pyc takes 12M04:32
KotCzarnyfun04:32
KotCzarny:)04:32
AStormon ext404:32
AStormnext 12M is .pyo04:33
AStorm4M of .so files04:33
AStorm13M of .py files04:33
AStormlargest module is the test one :>04:35
KotCzarnyThe average human being produces about a litre of saliva every day.04:36
KotCzarny:>04:36
AStormyup, why not?04:36
KotCzarnyfun fact04:36
KotCzarnythat's 365l/year04:36
KotCzarnyimagine that amount of salive04:37
KotCzarnysaliva04:37
AStormhmm, no gnuplot in repos... wth?04:37
AStormgimme a port :-)04:37
KotCzarnypf04:37
KotCzarnyjust use sshfs04:37
KotCzarny:)04:37
AStormblah blah04:37
AStormI know04:37
AStormbut I want gnuplot on IT04:38
AStormfor some plotting04:38
KotCzarnylet me see04:38
KotCzarnyif it compiles on the first try04:38
AStormwhee, gnumeric was updated04:38
KotCzarnywhy don't you setup sbox on your pc? :)04:39
AStormbecause I have to code stupid SOAP ;P04:39
AStormI'll do during national holiday weekend ;)04:40
trollasaurusKotCzarny, The solution was pretty easy... screenshots coming soon04:40
KotCzarnyhuh04:40
KotCzarnysolution to what?04:40
* KotCzarny had little sleep today04:41
trollasaurusEmulating a Nokia N800 with QEMU04:41
trollasaurus(Running Maemo)04:41
*** Crfrod has joined #maemo04:41
ImMelodynini04:41
*** ImMelody has left #maemo04:41
AStormuh? there's a port already04:41
AStormso?04:41
trollasaurusAStorm, Right, but it doesn't work :-P04:41
AStormno, it does, it's used in Scratchbox04:41
trollasaurusI thought Scratchbox used an x86 ?04:42
AStormofc not everything is emulated04:42
AStormtrollasaurus: both ARM + emulation or sbrsh04:42
AStormand x8604:42
KotCzarnysbox used some tools natively and some emulated stuff04:42
trollasaurusThis runs the Nokia blessed firmware unmodified04:42
*** playya__ has joined #maemo04:42
KotCzarnyerm04:43
KotCzarnyso many deps04:43
*** blassey_ has quit IRC04:43
AStormoh, new mplayer04:43
* KotCzarny hates debian sometimes04:43
AStorm.2704:43
* trollasaurus hates Debian all the time04:43
KotCzarnyastorm: yup, ssvb announced it few days ago04:43
AStormKotCzarny: well, it deps on X, gfx libs, etc04:43
AStormprobably cairo04:43
KotCzarnydpkg-checkbuilddeps: Unmet build dependencies: texinfo (>= 4.8) texlive-latex-base | tetex-bin texlive-latex-recommended | tetex-extra libgd2-noxpm-dev | libgd-dev libwxgtk2.6-dev04:43
KotCzarnyfun, isn't it?04:43
AStormthat should be optional04:43
KotCzarny:)04:44
AStormlibwxgtk is for wx UI04:44
AStormtex is for latex output04:44
KotCzarnybut libgd is essential04:44
KotCzarnyi think04:44
AStormyes04:44
AStormdoes modest .17-2 works with gmail?04:44
KotCzarnyand nonexistend in armel packages04:44
AStormlibgd2? naaah, should be04:45
KotCzarnyno luck with apt-cache04:45
GeneralAntillesWorks fine, AStorm.04:45
AStormGeneralAntilles: great04:46
AStormI hope .27 has flv performance improvements04:46
KotCzarnylibgd should be without user/ in section ?04:47
*** WormFood has quit IRC04:48
AStormmight be, who knows04:49
AStormhmm, weird, clock on my N is consistently 1h off04:49
AStormI guess DST didn't record in retu04:49
KotCzarnygrrr.04:50
AStormand local is used for the clock04:50
KotCzarnyno love from libgd204:50
KotCzarnyeven more deps.04:50
AStorm;>04:50
AStormlike?04:50
*** rsalveti has quit IRC04:51
unixSnobi hooked up a USB mouse to an n800... and no pointer04:51
KotCzarnylife04:51
KotCzarny;)04:51
KotCzarnyit's possible to enable it though04:52
KotCzarnywith a simple folder renaming04:52
unixSnobreally.. cool04:52
KotCzarnyin /usr/share/icons i think04:52
KotCzarny(and a reboot)04:52
AStormyup04:52
AStormyou can install your own theme too04:52
AStormand switch cursor themes w/o reboot even04:52
KotCzarny:)04:52
AStormI have to remember how to do that04:52
KotCzarnymore work04:52
KotCzarnydpkg-checkbuilddeps: Unmet build dependencies: gnulib (>= 0.0.20041014-2) devscripts (>= 2.10.7) patchutils (>= 0.2.25) libfontconfig-dev d-shlibs (>= 0.30)04:53
unixSnobi've had to reboot a couple times lately.. it gets into a locked scrolling mode04:53
KotCzarnythat's for libgd204:53
AStormbuild deps04:53
AStormnot run deps :>04:53
KotCzarnyyeah04:53
KotCzarnybut i don't have them04:53
AStorm:-)04:53
AStormthese are mostly minor04:53
KotCzarnyso no build04:53
KotCzarnysure04:53
AStormso grab them04:53
KotCzarnynot today04:53
KotCzarny:)04:53
KotCzarnyas i said, if it build without much fuss04:53
KotCzarny;)04:53
KotCzarny*builds04:53
*** slomo has joined #maemo04:54
AStormhehe04:54
unixSnobany of you keep a keyboard in your car, so you can type on the NIT while driving?04:54
KotCzarnywhich is not happening04:54
* KotCzarny doesn't have a car04:54
KotCzarnybut i have a kb04:54
KotCzarnydoes it count?04:54
KotCzarny:)04:54
AStormok, how do I switch clocks to UTC and change timezone to be software-applied?04:54
KotCzarnychange your home city in clock applet04:54
AStormunixSnob: that's crazy and dangerous04:54
KotCzarny:)04:54
AStormKotCzarny: I did, it's correct04:55
KotCzarnyhmm04:55
GeneralAntillesunixSnob, . . .04:55
unixSnobwell keyboarding in the car is a unique problem.. because it will involve cutting a hole to access the USB port04:55
KotCzarnythen your proggy uses wrong gettime func04:55
KotCzarny:)04:55
AStormhehe04:55
KotCzarnymaybe some hack with /etc/TZ ?04:55
AStormthe clock is off04:55
ds3add voice recogonition04:55
KotCzarnybusybox is notorious in that point04:55
unixSnobI've been able to participate in forums while driving.. but my messages are short04:55
KotCzarnytry echo CEST > /etc/TZ04:55
unixSnobi figure the keyboard will remedy that04:56
AStormheh04:56
unixSnobi wouldn't do IRC while on the road04:56
*** philipl has quit IRC04:56
KotCzarnyi think it's useful in traffic jams04:56
unixSnobgood point04:57
KotCzarnywhen you move <1km/h04:57
AStormKotCzarny: no such file here04:57
*** Crfrodf has quit IRC04:57
KotCzarnyastorm: create one04:57
KotCzarnydoh04:57
AStormmade, and?04:57
unixSnobor on a highway w/ little traffic04:57
KotCzarnyand relogin04:57
KotCzarnyopen new term and see04:57
KotCzarnyor just reopen app04:57
*** philipl has joined #maemo04:57
AStorm/etc/localtime is correct04:57
*** foka has quit IRC04:57
GeneralAntillesYou're nuts, unixSnob.04:57
KotCzarnybusybox doesn't use timeconfig, only TZ04:58
AStormtz is ok too, according to date04:58
GeneralAntillesTyping while driving is high idiocy.04:58
AStormbut time is 1h off ;P04:58
KotCzarnythat's what TZ is for04:58
*** rsalveti has joined #maemo04:58
KotCzarny:)04:58
AStormHave to set ntpdate04:58
AStormKotCzarny: no, TZ is correct (according to date proggy)04:58
AStormI think retu is wrong, or something04:59
KotCzarnyanyway, off to ff804:59
unixSnobwell, I'm a pilot, so I'm used to having to concentrate on action in front of me while operating electronics.  And I consider the NIT a way to train for that04:59
*** playya_ has quit IRC04:59
AStormunixSnob: do it somewhere else than on the road, please04:59
AStorm:-)04:59
KotCzarnyyup04:59
GeneralAntillesYou don't have hard objects 20 feet in front of you while flying. :\04:59
KotCzarnymuch more noise on road04:59
KotCzarny:)04:59
KotCzarnyhigh frequency noise05:00
KotCzarny;)05:00
GeneralAntillesWhen you fuck up while in the air, it's usually only you that pays05:00
KotCzarnyga: not true, see wtc05:00
GeneralAntillesWhen you do it on the interstate, you're putting other people in danger.05:00
KotCzarny;)05:00
GeneralAntillesThat, in my opinion, is incredibly irresponsible.05:00
KotCzarnyor any bigger plane crash05:00
AStormKotCzarny: k, there may be hard buildings05:01
AStormand ground too05:01
AStormsometimes other planes ;P05:01
KotCzarnyand ice clouds05:01
KotCzarny:)05:01
unixSnobThe way pilots handle it is look up most of the time.. look down to press one key, and look up again.. never pressing more than one key w/out looking up05:02
*** gribouille has joined #maemo05:02
AStormunixSnob: still that makes at least 20ms in which you can crash05:02
unixSnobAnd that's how I write a forum post while driving.. one key at a time05:03
AStormwith planes, it's unlikely :>05:03
GeneralAntillesDoesn't matter how you do it.05:03
GeneralAntillesTaking your attention off the road is a good way to get yourself and others killed.05:03
unixSnobwell w/ a keyboard, I don't even have to look down05:03
AStormbut in a car, 20ms might be enough to crash, esp. if driving >= 100 km/h05:03
KotCzarnyyup05:03
KotCzarnybt kb can be useful05:03
unixSnobI can type w/out looking at the keyboard05:03
AStormand yup, lack of attention is what kills :p05:03
AStormbtw, where is the retutime tool?05:04
KotCzarny /mnt/initfs ?05:04
AStormdamnit05:04
AStormfanoush removed it05:04
KotCzarnyjust a guess05:04
KotCzarny:)05:04
AStormat least thinks it's unnecessary05:04
AStormidjit05:04
KotCzarnymail him05:04
KotCzarny:)05:04
AStormI'll have to fix the initfs then05:04
KotCzarnyor just copy to regular fs05:04
*** Tama^2 has joined #maemo05:04
AStormya05:05
AStormbut first I have to get orig. initfs unpacked and mountable05:05
unixSnobi'm thinking there must be a device out there to make it easier to steer w/ knees05:05
GeneralAntillesNokia should pay him to do kernel hacking for the community.05:05
AStormunixSnob: ubermad05:05
GeneralAntillesYeah, they're called your hands.05:05
KotCzarnyunixsnob, there was a kb embedded in pants05:05
AStormunixSnob: maybe steering by eyes?05:05
johnxknee-hands!05:05
KotCzarnycomplete with trackball05:05
KotCzarny:)05:05
AStormyou look where you drive ;P05:05
ds3just take the train05:06
AStormcould be fun to use ;P05:06
unixSnobkotczarny - i heard about that keyboard recently05:06
GeneralAntillesAStorm, just hope you don't pass any hot women on the sidewalk. O_O05:06
AStormGeneralAntilles: hahaha05:06
AStormyup05:06
gribouilledoes anyone know where I can find a command like netsat for IT OS2008 ?05:06
AStormyou mean netstat?05:06
johnxbusybox has one05:06
unixSnobds3 - apparently you're not in the US :)05:06
johnxyou want the real thing?05:06
gribouilleastyes05:06
gribouilleAStorm, yes05:06
KotCzarnyhttp://www.vouspensez.com/2008/04/22/the-geekiest-pants-ever/05:07
KotCzarnythis one05:07
AStormKotCzarny: I'm feeling lazy, could you put retutime on your server?05:07
KotCzarnyastorm: where it is?05:07
KotCzarnyi have fanoush's initfs too05:07
KotCzarny:)05:07
AStormshould be in /mnt/initfs/sbin05:07
AStormblah05:08
AStormit is there05:08
KotCzarnyhehe05:08
AStorm/mnt/initfs/usr/bin/retutime05:08
KotCzarnyso you have it?05:08
KotCzarny:)05:08
* AStorm bashes head against keyboard05:08
AStormyup05:08
ds3unixSnob: yes, the People's Republic of California has succeded :P05:08
* unixSnob thinks those pants would be better if the keyboard were a strap on device05:09
gribouillenetstat gives the following error message : netstat: warning, got bogus unix line05:09
ds3trains are fine modes of transportation05:09
AStormok, retu is keeping time in UTC05:09
unixSnobCA only has one overpriced metro rail, right?05:09
unixSnobIt's not good coverage05:09
ds3nope, we got 132493289230492138948123904890123489012849023 different rail systems05:09
KotCzarnyrail system overflow05:10
unixSnobI figure if I get back to CA again, I'll either live next door to work, or fly to work.05:10
AStormUS fails at rail systems05:10
KotCzarnynot true05:10
AStormit does05:10
KotCzarnyi find nj path quite nice05:10
AStormno trains there05:10
KotCzarny:)05:10
gribouillecan someone try netstat to see if it works ?05:10
ds3we got the amtrak stuff, fed run stuff, locally run stuff, state run stuff, and in some area city run stuff05:10
AStormAMTrack doesn't count05:10
unixSnobthat can't be right.. I lived in LA area 8 years ago.. no trains05:10
GeneralAntillesNorth a bit.05:11
AStormgribouille: also have these05:11
AStormprobably some weird unix sockets05:11
AStormtry netstat -t for tcp05:11
AStormor -u for udp05:11
KotCzarnyprobably some busybox lack of features05:11
KotCzarny:)05:11
AStormno05:11
AStormI have coreutils ;P05:11
KotCzarnyinteresting05:12
* unixSnob would buy those pants if they were washable05:12
gribouilleAStorm, you mean the real netstat gives the same error ?05:12
AStormyes05:12
KotCzarnylinux 2.6.2505:13
KotCzarnynice05:13
KotCzarnychangelog 7.7mb05:13
KotCzarny;)05:13
AStormwait, no05:13
AStormnetstat is separate ;P05:13
gribouilleAStorm, why did you install coreutils instaed of busybox ?05:13
*** Sargun has joined #maemo05:13
KotCzarnyhas some arm:omap fixes too05:14
AStormgribouille: because busybox is underfeatured05:14
AStormKotCzarny: but we need working wifi and bt05:14
KotCzarnynothing about wifi or bt05:14
AStormKotCzarny: how do I check to which package does a file belong?05:14
KotCzarnydpkg -S05:14
AStormKotCzarny: that's separate, at least wifi05:15
KotCzarnyno strings with cx31105:15
AStormblah busybox05:15
AStormKotCzarny: it's a separate driver05:15
KotCzarnyname it05:15
KotCzarny:)05:15
gribouilleAStorm, didn't it damage your system too mutch ?05:16
AStormgribouille: some minor hassle05:16
AStormmv has problems05:16
AStormuhm, wrong05:16
AStormit had problems, but these went away05:16
AStormafter a reboot05:16
KotCzarnylol05:16
AStormnow it's fine and kicking05:17
AStormjust installed net-tools (the pkg that has netstat)05:17
AStorm(ifconfig, arp and others too :)05:17
KotCzarnyincluding 'reboot' in post-install could be fun05:17
AStormheh05:18
AStormwhoooops05:18
AStormstill no netstat in net-tools05:18
AStormsome idjit stripped it05:18
*** alex-weej_ has quit IRC05:18
*** herzi has quit IRC05:18
AStormah, forgot --force overwrite05:19
gribouilleAStorm, but it removes a lot of osso-* packages05:19
KotCzarnythat's good05:19
KotCzarnyisn't it?05:19
KotCzarny:)05:19
gribouillewhy ?05:19
KotCzarnyless points of breakage from nokia05:19
KotCzarny:)05:19
KotCzarny*fewer05:20
*** herzi has joined #maemo05:20
AStormgribouille: you have to hack a few05:20
AStormin the main cache file05:20
AStormwhere was it...05:21
gribouilleI'm tired of hacking05:21
AStormnot packages05:21
*** dougt has joined #maemo05:21
AStormbut the file itself05:21
AStormchange data about busybox and that network thingy05:21
AStormok, normal netstat works ok05:22
gribouillewouldn't it be possible to install coreutils in /usr/local ?05:23
*** foka has joined #maemo05:23
AStormthe package is made for /usr05:23
AStormbut yes, it should be possible05:23
AStormKotCzarny: where is the main apt package data file located?05:24
*** foka__ has joined #maemo05:24
AStormok, got it05:25
AStormgribouille: you have to hack /var/lib/dpkg/status file a bit05:25
AStormto make busybox not block coreutils05:25
*** SDuensin has joined #Maemo05:25
*** foka__ has quit IRC05:25
KotCzarnywouldn't it reverse after apt-get update ?05:25
AStormofc you still have to install it with --force override and dpkg05:25
AStormKotCzarny: no05:25
*** foka__ has joined #maemo05:25
AStormunless they upgrade busybox ;P05:25
KotCzarnythat's a possibility05:26
AStormthen it won't install and will cry ;)05:26
*** foka has quit IRC05:26
gribouilleAStorm, where do I have to hack in the file ?05:27
*** foka__ is now known as foka05:27
AStormthe cheap and easy way to update it would be to pass overwrite ignorance to dpkg05:27
AStormgribouille: search for busybox05:27
AStormchange all packages that dep on busybox to dep on busybox | coreutils05:27
AStormwell, maybe except color-ls ;)05:27
AStormmost important are osso-core-busybox and ke-recv05:28
AStormthen remove Conflicts line from busybox package status05:28
*** Tama^2 has quit IRC05:29
gribouilleif one day I really want to install coreutils, I'll rebuild it with prefix=/usr/local and put /usr/local at the beginning of my PATH05:30
AStormyou could alternatively install coreutils with --force conflicts,overwrite05:32
AStormI wonder if there's something like --force ignore-overwrite05:32
gribouilleyes, but I don't want to break my system05:32
AStormmine (and not just mine) works05:33
AStormbut feel free to backup05:33
AStormI haven't changed /bin/sh05:34
AStormbut I do have bash3 :-05:34
AStormfrom nitapps.com05:34
gribouilleme too05:34
gribouilleI cant' live without bash ;-)05:34
AStormI can't live with csh05:35
AStormand I have to :-(05:35
AStormbusybox' ash is weak, but still better than csh to my eyes05:35
gribouillenever tried05:36
AStormash? it's the default shell on IT05:36
AStormI wonder why they didn't use msh, which is more powerful and nicer05:36
KotCzarnyi can live without csh05:37
KotCzarny;)05:37
gribouilleAStorm, no, csh05:37
AStormgribouille: the default FreeBSD shell05:37
KotCzarnyit sucks.05:37
KotCzarny:)05:37
AStormya05:37
gribouilleAStorm, never tried freebsd. I'm a linux guy05:37
AStormlinux boi ;)05:37
KotCzarnystill better than 'doze boi05:38
KotCzarny:)05:38
gribouilledo free wifi hotspots give full access to the INternet ?05:38
AStormmost don't05:39
AStormusually they're heavily firewalled05:39
AStormlike, port 80, port 44305:39
gribouilledo they prenvent skype ?05:39
AStormno, that's hard to do05:39
AStormthey will reduce performance of it though05:39
AStormyou'll use one of skypes zombies^Wrouters05:40
gribouillewhy is it hard to do ?05:40
*** ustunozgur has quit IRC05:40
AStormbecause skype uses passive connections through so-called routers05:40
AStormwhich can listen on port 80 and 443 just fine05:40
AStormit's P2P05:40
gribouilleyes I know that05:40
AStormsome higher bandwidth machines are marked as supersomething or another05:41
AStormand they will route traffic for other users too05:41
AStormthe system is automatic and makes the network very hard to block (even packet matching doesn't work reliably)05:42
gribouillebut it becomes extremely slow05:43
AStormno, why?05:43
AStormslower, yes, but not extremely05:43
AStormthere are really a lot of users05:43
AStormand algorithm picks the best router for you05:43
gribouilleit takes about 10 seconds to ring05:43
AStormthat's because it has to make a query in the network05:44
AStormconnecting is slow05:44
AStormringing isn't that bad05:44
AStormthat's the problem of version of Skype on IT05:44
gribouillewill there be a newer version ?05:45
AStormask Skype, not me05:46
AStormI guess when 2.0 is released for Linux05:46
AStormor slightly later05:46
AStormright now 2.0 for Linux is in beta testing05:46
AStormworks nicely05:46
AStormthis includes camera05:47
gribouillewith video ?05:47
AStormyes05:47
gribouillegreat !05:47
AStormbut Idk if the tablet can sustain 4 streams05:47
AStormskype will reduce number of frames and quality when running on a slow CPU05:48
AStormbut it might not be enough05:48
AStormthey might have to use DSP some more05:48
*** turbo has joined #maemo05:48
AStormas Skype is fairly cpu intensive even on my desktop05:48
AStormthe 1.4 intermittently fails under load on IT05:49
AStormthat's with sound only05:49
gribouilleanyway, the camera on the tablet is quite weak05:49
AStormnot that bad as far as webcams go05:50
*** briand has quit IRC05:50
johnxit's pretty bad as far as webcams go05:50
AStormblah blah05:50
gribouilleif you don't move too quickly05:50
AStormworkable05:50
johnxthe old zaurus cam that connected through CF was a little better05:50
AStormif you want something better, connect one though USB05:51
*** Crfrodf has joined #maemo05:51
johnxI could I guess. I'll worry about it when skype w/ video is out :P05:51
AStorm;P05:51
AStormor SIP works correctly?05:51
johnxI can't really picture getting my mom to use SIP05:52
AStormwhy? NATs abound?05:52
AStormSTUN can't pierce through?05:52
gribouilleis it possible to redirect a call to a normal phone number to skype ?05:52
AStormgribouille: you can buy skype-in afaicr05:52
AStormthen use normal call redirection service of your phone company05:53
johnxAStorm, NATs and any troubleshooting I did would have to be over skype...05:53
AStormjohnx: :>05:53
AStormwe need an open P2P-like protocol05:54
AStormmight as well be some evolution of Jingle05:54
AStormwith proxies and relevant negotiation05:54
*** behdad has quit IRC05:55
*** MoRpHeUz has quit IRC05:57
*** behdad has joined #maemo05:58
AStormneat, mplayer .27 is faster06:00
*** alex-weej has quit IRC06:03
*** woodwizzle has quit IRC06:06
*** ustunozgur has joined #maemo06:07
*** Crfrod has quit IRC06:10
*** dholbert has quit IRC06:13
*** hfwilke has joined #maemo06:13
*** MrMacBook has joined #maemo06:13
*** _freelikegnu is now known as freelikegnu06:26
*** dougt has quit IRC06:27
*** gribouille has quit IRC06:35
*** legind has quit IRC06:38
*** legind has joined #maemo06:39
*** Jsn0327 has joined #maemo06:51
Jsn0327When you boot from MMC2, do you have to boot from /dev/mmcblk0p2 ?  or is there a way to set it to boot from /dev/mmcblk0p1 ?06:52
johnxyou just change it in bootmenu.conf06:52
Jsn0327do you know the path to bootmenu.conf?06:53
johnxit's in the /mnt/initfs IIRC06:53
Jsn0327thanks06:53
johnxyou're using fanoush's initfs right?06:54
GeneralAntilles./initfs_flasher/bootmenu.conf.example.n8x006:54
Jsn0327yes06:54
*** fang64_ has quit IRC06:54
*** Mousey has joined #maemo06:55
johnxyou might need to edit the one that comes in the package and run the initfs_flasher again, space is very tight on /mnt/initfs and you might run out of space06:55
*** mbuf has joined #maemo06:55
Jsn0327well this is the line in the tutorial that sets the initfs06:56
Jsn0327chroot /mnt/initfs cal-tool --set-root-device ask:mmc206:56
Jsn0327i don't see how that would tell initfs flasher to look for the second partition on mmc206:56
johnxread the bootmenu.conf file06:56
Jsn0327when you run ./initfs_flash  does it scan the MMC at that time to determine which partition the file system is on?06:57
johnxno06:57
GeneralAntillesbootmenu.conf06:57
GeneralAntillesbootmenu.conf06:57
GeneralAntillesbootmenu.conf06:57
johnx^what he said^06:57
KotCzarnymaybe someone should tell him to edit bootmenu.conf before starting the script ?06:58
*** snowmoon has quit IRC06:58
johnxyeah, look at the bootmenu.conf.example.n800 that came with initfs_flasher06:58
GeneralAntillesEdit it to your liking, rename it to bootmenu.conf run the initfs_flasher again.06:58
*** zwnj has quit IRC06:59
Jsn0327i can't find the initfs directory threw terminal07:03
johnxok, what you need to do: unpack the initfs_flasher.tgz you got from fanoush, edit the bootmenu.conf.example.n800 that it comes with, then run the initfs_flasher script07:04
Jsn0327ok07:04
johnxs/with, then/with, rename it to bootmenu.conf, then/g07:05
*** ekt has joined #maemo07:05
infobotjohnx meant: ok, what you need to do: unpack the initfs_flasher.tgz you got from fanoush, edit the bootmenu.conf.example.n800 that it comes with, rename it to bootmenu.conf, then run the initfs_flasher script07:05
*** seraph1 has quit IRC07:07
ekthi, i'm missing some libs for xchat and i can't seem to find them07:08
johnxhave you searched for the packages on gronmayer.com/it ?07:09
*** tjafk1 has joined #maemo07:09
ektyeah07:09
johnxwhat package are you missing?07:09
ektmakes me wonder if it's an error07:09
ektone sec07:09
ektlibxau007:11
*** turbo has quit IRC07:12
ektlibdbus-1-207:12
*** turbo has joined #maemo07:12
johnxhmm...are you trying to install the OS2007 version of xchat on OS2008?07:12
*** woodwizzle has joined #maemo07:12
ektoh07:12
ekthm07:12
Jsn0327what is the terminal command to remname a file?07:13
johnxmv oldname newname07:13
Jsn0327rename07:13
Jsn0327thanks07:13
ekti browsed in the repository via browser07:13
ektso maybe07:13
johnxare you running OS2008? Does the repository have "bora" or "OS2007" somewhere in the name?07:13
ekti can't find a different xchat download tho07:14
ektim 200807:14
johnxhttp://zeus.rm-fr.net/~skyhusker/xchat-chinook-betas/07:14
Jsn0327its not letting me edit the bootmenu.sh because it's read only07:14
ektand the .deb is dated 200607:14
KotCzarnyjsn, you don't edit it directly on /mnt/initfs07:15
KotCzarnyyou edit one in fanoush's scripts dir07:15
johnxand you want to edit bootmenu.conf.example.n800 *not* bootmenu.sh07:15
ektsweet, thanks07:15
Jsn0327how do you get it to boot to that script07:15
KotCzarny...07:16
KotCzarnyhow do you managed to flash fanoush's initfs?07:16
*** ekt has left #maemo07:16
KotCzarnyassuming you did07:16
Jsn0327# cd /home/user/MyDocs/.documents/07:17
Jsn0327# tar zxvf initfs_flasher.tgz (check location of Tar first)07:17
Jsn0327# cd initfs_flasher/07:17
Jsn0327# ./initfs_flash07:17
KotCzarnythen between step 3 and 407:17
KotCzarnyedit bootmenu.conf07:17
KotCzarnywhich is in initfs_flasher/ somewhere07:17
KotCzarnyand read README.07:17
KotCzarnyor anything that resembles docs07:17
johnxJsn0327, KotCzarny means edit "bootmenu.conf.example.n800", mv bootmenu.conf.example.n800 bootmenu.conf, then run ./initfs_flash07:18
KotCzarnyjohnx, cp not mv07:18
KotCzarny:)07:18
KotCzarnysafer07:18
johnxthat will work too07:18
KotCzarnyie. cp bootmenu.conf.example.n800 bootmenu.conf07:18
KotCzarnythen edit bootmenu.conf07:18
*** unixSnob has quit IRC07:19
Jsn0327well the bootmenu.sh is getting overwritten either way.  what does it matter if you edit it or not?  What i was doing was saving the current bootmenu.sh as a backup and replacing it.07:20
*** GeneralAntilles has quit IRC07:20
johnxfine, do whatever you want07:20
Jsn0327is there anyway to access the file system threw file manager?  I have GEP file manager but i don't think there is a search feature in it07:21
KotCzarnyjohnx: surrendered so soon? :>07:22
KotCzarny*given up07:22
KotCzarnyor even *gave up07:22
johnxmeh07:22
johnxJsn0327, all I can say is that the way I suggested you do it *will work* if you do it correctly07:23
johnxif you want to see where in fanoush's scripts it reads in bootmenu.conf then read the code07:23
*** GeneralAntilles has joined #maemo07:23
Jsn0327well i can't edit/copy/write to anything.  even as root in terminal it says that it is a read only file system07:25
*** tjafk2 has quit IRC07:25
johnxyes, that's why you edit the file that came with initfs_flasher then run initfs_flasher again07:25
johnx...or you could remount /mnt/initfs read/write but it will probably run out of space trying to write back the file07:25
Jsn0327i can't edit any files in the /mnt/initfs directory07:27
KotCzarnyjsn: have you paid any attention what i have told you?07:27
johnxyes, I know07:27
Jsn0327i think i'm understanding what you mean now07:27
Jsn0327i thought that you were talking about a file within the initfs directory07:28
KotCzarnyyes, that file is the one that's used by bootloader07:28
KotCzarnybut to edit it you need to edit a copy and flash it07:28
*** n800n has joined #maemo07:34
*** GeneralAntilles_ has joined #maemo07:35
*** GeneralAntilles_ has left #maemo07:35
*** freelikegnu is now known as _freelikegnu07:36
*** shacka1 has quit IRC07:36
*** soman has joined #maemo07:36
n800nhas anyone gotten wikipedia to work offline on os2008?07:36
*** briand has joined #maemo07:37
KotCzarnyno problem, just install apache, php, mediawiki and download wikipedia db07:37
*** turbo has quit IRC07:37
n800ncan i install apache here?07:38
KotCzarnyprobably07:38
n800ni have the giant xml file07:38
johnxn800n, there are some alternatives to making your n800 into a wikipedia server07:39
johnxsdictviewer has a wikipedia "dictionary" available IIRC07:39
KotCzarnyhttp://maemo.org/downloads/product/OS2008/apache/07:39
johnxand there is something called mokopedia I believe07:39
n800nchecking07:40
*** vcgomes has quit IRC07:43
*** Ikkakujyu has quit IRC07:48
*** GeneralAntilles has left #maemo07:49
*** GeneralAntilles has joined #maemo07:49
*** T0b0tras has joined #maemo07:52
*** WorkingOnWise has joined #maemo07:53
n800nsdict seems a better choice07:54
n800nthanks07:54
Jsn0327johnx and KotCzarny thanks for your help07:55
*** _V_ has joined #maemo07:56
*** Jsn0327 has quit IRC07:56
*** Masca has quit IRC07:58
*** Masca has joined #maemo07:58
*** zpol has joined #maemo08:00
*** zpol has quit IRC08:01
*** zpol has joined #maemo08:02
*** ol_schoola has joined #maemo08:05
*** Tobotras has quit IRC08:10
*** WorkingOnWise has left #maemo08:11
*** lopz_ has joined #maemo08:14
*** Crfrod has joined #maemo08:14
*** philipl has quit IRC08:16
*** lopz has quit IRC08:16
*** zpol has quit IRC08:17
*** matt_c is now known as maverick_08:19
*** maverick_ is now known as matt_c08:20
*** dragorn_ has joined #maemo08:22
*** dragorn has quit IRC08:23
*** dragorn_ has quit IRC08:23
*** hfwilke_ has joined #maemo08:23
*** skibur has quit IRC08:26
*** SDuensin has quit IRC08:27
*** christefano has quit IRC08:29
*** hfwilke has quit IRC08:31
*** dragorn has joined #maemo08:32
*** hfwilke_ is now known as hfwilke08:32
*** astro76 has quit IRC08:33
*** Crfrodf has quit IRC08:34
*** jeddy3 has joined #maemo08:38
somanzuh: hi...08:43
somanZuh: iam struck with playbin ... could nt redirect the video output to my app window...08:44
somanzuh: any pointers regarding this08:44
*** christefano has joined #maemo08:49
*** lopz_ has quit IRC08:54
*** lopz has joined #maemo08:54
*** WormFood has joined #maemo08:56
*** qwerty12 has joined #maemo09:05
*** blassey has joined #maemo09:11
*** kaie has joined #maemo09:18
*** geaaru has joined #maemo09:18
woodwizzlei know maemo isn't a PDA, but I would like to keep a calendar on it if possible. Syncing with a desktop or web calendar would be nesecary (currently i'm not doing the calendar thing so I'm open to any backend).09:21
woodwizzlei know dates is already available, but I don't think it syncs up.09:22
johnxermining (sp?) w/ gpe-calendar apparently has some ability to sync to google calendar09:22
johnxit's somewhat manual from what I understand09:22
woodwizzlesyncing with evolution would be cooler than google to me09:22
johnxI don't know much calendars and syncing09:23
johnxthe calendars that I know exist are gpe-calendar, dates and gene cash's calend09:23
woodwizzlecool, i'll check out gpe and calend then, thanks09:24
*** codi has joined #maemo09:24
*** MangoFusion has joined #maemo09:24
*** trickie_ has joined #maemo09:25
*** eichi has joined #maemo09:31
*** Cptnodegard has joined #maemo09:31
*** maestro has joined #maemo09:33
*** luizirber has quit IRC09:33
*** BabelO has joined #maemo09:35
*** VimSi has joined #maemo09:36
*** rmoravci1 has joined #maemo09:37
somanhow to install playbinmaemo on N81009:37
somanany pointers09:37
*** vims0r has quit IRC09:38
*** NetBlade has joined #maemo09:41
*** ssvb has joined #maemo09:41
*** hugolp has joined #maemo09:42
*** eton has joined #maemo09:45
*** f_mohr has joined #maemo09:45
*** dneary has joined #maemo09:46
*** BabelO has left #maemo09:46
*** megabyte405 has joined #maemo09:48
*** hfwilke has quit IRC09:49
*** NetBlade has quit IRC09:49
*** NetBlade has joined #maemo09:53
*** tobmaster has joined #maemo09:57
qwerty12KotCzarny, you around? I got a quick (very little) question.09:58
*** behdad has quit IRC09:59
KotCzarnyshoot09:59
* johnx installs xfce4 on Debian :)09:59
qwerty12You know, is my retu damaged or my kernel when kcbatt's debug mode returns all of the values from retu as ffffff?09:59
KotCzarnyhmm10:00
*** ab has joined #maemo10:00
KotCzarnymaybe some patch interferes10:00
qwerty12Maybe, thanks.10:00
*** megabyte405_ has joined #maemo10:00
KotCzarnybut battery applet works?10:00
qwerty12Yes10:00
*** megabyte405_ has quit IRC10:00
*** Locky has joined #maemo10:00
LockyDCC SEND "startkeylogger" 0 0 010:00
*** Tuco has quit IRC10:00
*** X-Fade_ has quit IRC10:00
*** jebe has quit IRC10:00
*** X-Fade has joined #maemo10:01
*** jebe has joined #maemo10:01
KotCzarnylocky, it's a linux chan10:01
qwerty12I'm compiling a new kernel atm, I'll try that out. If it works, you will all have something you may like ;)10:01
*** Tuco has joined #maemo10:01
qwerty12But now, school calls me. And the homework I haven't done :/10:01
*** Locky has left #maemo10:01
KotCzarnyi'm done with ff810:02
KotCzarnyshould i start ff9 or shouldn't i10:02
*** woodwizzle has quit IRC10:02
*** megabyte405 has quit IRC10:03
*** megabyte405 has joined #maemo10:03
*** qwerty12 has quit IRC10:03
johnxKotCzarny, kcbatt works ok in Debian it seems :D10:03
KotCzarnyjohnx: yes, as long you use nokia's kernel10:04
johnxwell, there aren't any good choices right now, so I'm not worrying about the kernel10:05
KotCzarnythat was the main reason to write it10:05
KotCzarnyto have something with smallest set of deps10:05
johnxwell, thanks for writing it. :)10:05
KotCzarnyjohnx: :)10:06
KotCzarnybtw. if anyone wants it to be more correct it should run all the time and use some math to approximate curves10:06
KotCzarnyand do the math about min/max time10:06
KotCzarnyif you get ahold of any generic battery applet10:07
johnxyeah, I was thinking about that10:07
johnxthe one for the zaurus should be adaptable10:07
KotCzarnydata read function is simple enough to adapt10:08
KotCzarnybah, it's a single ioctl10:08
KotCzarny:)10:08
RST38hyep10:08
KotCzarnythe only problem is scaling raw values :>10:08
KotCzarnyi approximated them as 380-560 (min-max)10:09
KotCzarnyunder low load it can go to 24010:09
*** Zic has joined #maemo10:09
KotCzarnybut then you risk reboot on any load :>10:09
johnxI should plot battery discharge in Debian with the same script you used to see how well power management is working10:09
KotCzarnymhm10:10
KotCzarnybtw. kcbatt takes some params10:10
KotCzarnytry -h :)10:10
*** simon_ has quit IRC10:11
RST38hBTW, how about a transparent desktop widget that shows current temperature and illumination level?10:12
RST38hSomething small and python-less10:12
KotCzarnyrst38h: i was thinking about it, and got sidetracked10:12
KotCzarnyie, xlib app should be hard to write10:13
RST38hWhy?10:13
lopznight10:13
KotCzarnyerm10:13
KotCzarnys/should/shouldn't/10:13
RST38hOh10:13
KotCzarnyit's late here10:13
KotCzarny;)10:13
*** lopz has quit IRC10:14
RST38hWith an applet like this, the whole thing will get close to a tricorder ;)10:14
KotCzarnytricorder?10:14
RST38hKotCzarny <-- somehow escaped exposure to StarTrek10:14
RST38hWeird.10:14
KotCzarny:)10:14
KotCzarnyyup10:14
KotCzarnyi sidestepped some memes10:15
RST38hOf course, it will still miss a geiger counter...10:15
KotCzarnywhy?10:15
KotCzarnyfind usb one10:15
KotCzarny:)10:15
RST38hclumsy10:15
KotCzarnythen bt one10:15
RST38hAlbeit current-gps-location-with map widget is also a must ;)10:16
KotCzarnythat's what maemo-mapper is for10:16
RST38hyes, but it looks less like a tricorder10:17
*** sergio_ has joined #maemo10:18
KotCzarnythemeize it10:18
*** Sho_ has joined #maemo10:19
RST38hOk, ColEm is almost ready for release10:20
*** megabyte405 has quit IRC10:21
*** megabyte405 has joined #maemo10:23
*** tsukasa has joined #maemo10:30
tsukasayo10:30
johnxhi10:30
tsukasammm does anyone know if nokia is releasing a new n series this year?10:31
tsukasaor early next10:31
tsukasaall ive heard was the wimax in 08 which was released10:31
tsukasawhich makes me think theyre done for now =(10:31
*** megabyte405 has quit IRC10:31
*** jnettlet has joined #maemo10:31
johnxyeah, I think everyone who is making predictions is saying late '08/early '09 but Nokia has had surprises up their sleeve before10:32
MangoFusioni heard a rumour that they are going to release...10:34
MangoFusionthe Nokia Nii!10:34
KotCzarnyNiiNtendo?10:34
tsukasaso no one here is on the inside and can hint a quarter10:36
tsukasa;)10:36
*** greentux_ has quit IRC10:36
*** megabyte405 has joined #maemo10:37
*** Def has joined #maemo10:37
*** t_s_o has joined #maemo10:38
*** Crfrodf has joined #maemo10:39
*** msanchez has joined #maemo10:40
*** Cptnodegard has quit IRC10:41
johnxtsukasa, read Texrat's hints on itt and see if you can make something of them10:42
tsukasaitt?10:42
tsukasaoh10:42
tsukasainternettablettalk10:42
johnxinternettablettalk.com/forums10:42
johnxyeah10:42
tsukasajohnx, wheres the post under?10:43
johnxhe has posts all over the place10:43
johnxmost of them have very little information, but he seems excited about *something* after the n810 w/ wimax10:44
*** ab has quit IRC10:44
* KotCzarny starts a rumour about n88010:44
*** calvaris has joined #maemo10:45
*** Def has quit IRC10:47
*** Def has joined #maemo10:48
*** luogni has joined #maemo10:49
tsukasaokay lets play a game10:52
tsukasai just got my tax refunds in and have enough money for a n80010:52
*** maestro has quit IRC10:52
tsukasawhoever can find the best price on one gets a cookie10:52
*** maestro__ has joined #maemo10:52
tsukasaa choclate chip cookie =O10:52
KotCzarnysugar is bad for teeth10:52
tsukasaso is your mom10:53
KotCzarnynot true10:53
MangoFusion$110:53
MangoFusionnah ;)10:54
gpdanyone seen instructions for numptyphysics - ie. what the buttons do when you click on the middle button?10:54
*** megabyte405 has quit IRC10:54
*** megabyte405 has joined #maemo10:55
*** else58 has quit IRC10:56
gpdhttp://numptyphysics.garage.maemo.org/ <- it appears to be here10:57
tsukasahttp://www.overstockdealz.com/products.asp?id=N800R&referer=google10:57
tsukasa17510:57
tsukasacan anyone find better?10:57
KotCzarnyi got mine for 15010:57
*** Def has quit IRC10:57
*** Crfrod has quit IRC10:57
tsukasawhere10:57
KotCzarnycl10:57
tsukasai live in a small town =P10:58
*** Def has joined #maemo10:58
KotCzarnyfind big one closest to you10:58
tsukasanada there10:58
*** pupnik_ is now known as pupnik10:59
RST38hAll right, ColEm is out10:59
RST38hGet it here: http://fms.komkon.org/ColEm/10:59
RST38h(Do not click on "install directly" as it is not in the extras repository yet)10:59
KotCzarnyo.o11:00
MangoFusionsounds nea11:00
MangoFusiont11:00
*** simon_ has joined #maemo11:02
*** simon_ has joined #maemo11:02
*** f_mohr has quit IRC11:02
*** andre has joined #maemo11:06
*** CptLaptop has joined #maemo11:09
*** playya__ has quit IRC11:09
*** megabyte405 has quit IRC11:10
pupnikawesome RST38h11:13
*** AD-N770 has joined #maemo11:17
RST38hpupnik: I will release the EMULib source code separately in a while, but if you want to look, it is part of the ColEm source (on a web page)11:18
RST38hEMULib and EMULib/Maemo11:19
pupniki played original colecovision :)11:24
pupnikwill look sometime11:24
*** dolske has quit IRC11:26
tsukasaquestion to n800 lovers11:28
tsukasahow much of this article is still true: http://cs.gmu.edu/~sean/stuff/n800/11:28
KotCzarnyperv11:28
tsukasabefore i get one11:28
KotCzarnythat depends how hardcore newton user you are11:29
tsukasai mean in terms of the interface sucking11:29
KotCzarnyit's a linux11:29
KotCzarnyinterface can be changed11:29
KotCzarnyfor kde11:29
KotCzarnyetc11:29
tsukasaare there many good interfaces for the 80011:29
tsukasaill define good11:29
tsukasasuper minamilistic while functional11:30
pupnikxterm11:30
tsukasadude its a software keyboard11:30
pupnikmy bluetooth keyboard waves 'hello'11:30
tsukasatoo clunky11:30
* KotCzarny bt kb sleeps11:30
pupnikno if you go from the newton perspective, you will not like it11:30
pupnikif you like the idea of a linux computer in your pocket, you will like it11:31
pupnikother use-cases also will yield 'like it'11:31
tsukasaokay well, does it allow for you to change the interface completely, and are there user made interfaces11:32
tsukasaperhaps in a nice galley on the web somewhere?11:32
pupnikyes but they are ports of linux desktops11:32
Disttsukasa: Rotation support can be added, though that's cludgy11:33
tsukasado they work well? kde or gnome on n80011:33
tsukasawell i dont rotate that much11:34
janitsukasa: ui is based on gtk widgets which gnome uses also so things arent that different..11:34
KotCzarnytsukasa: treat maemo as a work in progress11:35
KotCzarnyevery year they add something nice11:35
tsukasaKotCzarny, what do you use?11:36
KotCzarnythe best thing for me is ability to compile regular software for it11:36
tsukasayeah thats what is attracting me to it in the first place11:36
KotCzarnygames, media (xmms), ebook reader, web browser, ssh11:37
*** Dar has joined #maemo11:37
*** mk8 has joined #maemo11:37
pupnikfor that, i think it's the coolest thing ever11:37
KotCzarnyyup, if one likes to hack, it's the best11:38
KotCzarnyotherwise it may not reach the expectations11:38
tsukasawhat about the interface though11:38
KotCzarnyworks for me11:38
tsukasalike im looking at hildon ss on the n80011:38
pupniki click on menu and launch programs11:38
pupnikthat's the interface for me11:38
KotCzarnystatus bar is nice too11:39
tsukasaisnt there a huge bar on the right side that doesnt go away though11:39
KotCzarnyclock is essential for me11:39
tsukasaleft*11:39
KotCzarnytsukasa: if you enable roation support you can move it11:39
pupnikapps can go fullscreen too11:39
KotCzarnyhttp://sse2.net/rotate/11:39
tsukasasee thats what i dont want though, i want a *super* minimalistic interface11:39
tsukasaeg make that bar integrated into another and 3 pixels11:40
KotCzarnyhttp://sse2.net/rotate/shot02.png11:40
KotCzarnyis it minimalistic enough?11:40
tsukasais that fullscreen?11:40
KotCzarnyyes11:40
tsukasafrom the youtube videos ive seen it takes like a second to switch11:40
tsukasawith a flicker11:40
KotCzarnyand you have hardware keys to call app menu etc11:41
tsukasaideally id have the gui so minimalistic that it is essentially always in fullscreen11:41
tsukasa3 pixel menu bar11:41
tsukasamaybe a bit larger but you get the idea11:41
KotCzarnyi think that menu bar on the left is customizable with theme11:41
tsukasacan you integrate it with the top bar11:42
KotCzarnysimply replace 80 with 3 and you get your's 3px bar11:42
pupnikthat's news to me11:42
KotCzarnypupnik, yup, that's what i have done at the beginning11:42
KotCzarnyi was looking for a way to make that taskbar go away11:43
KotCzarny:)11:43
tsukasaKotCzarny, okay looking at this snapshot http://pidgin.garage.maemo.org/images/Maemo-Pidgin-Screenshot.png11:43
KotCzarnythat looks like a os200711:44
tsukasais it possible to make the top bar autohiding, the left bar tiny, and the window title 2px11:44
tsukasaits the same layout isnt it?11:44
KotCzarnysimiliar11:44
KotCzarnyif you invest your time in building a theme then i think it's possible (without sliding part)11:45
pupniktsukasa: there's a hardware button to make apps go fullscreen11:45
pupnikright under your index finger, left hand side11:45
luognitsukasa, just press the fullscreen button, it's really useful to switch from/to fullscreen (and fast)11:45
tsukasapupnik, i know but the youtube videos ive seen show a 1 second lag and a screen flicker with that11:45
tsukasaplus i actually want the gui elements to be there11:45
tsukasajust infinitely less obtrusive11:45
pupnikthen make it so!11:46
KotCzarnytsukasa, write/port some floating always-on-top bar?11:46
*** dolske has joined #maemo11:46
tsukasaKotCzarny, im not that great at coding11:46
tsukasawhats involved in theming?11:46
tsukasasliders or config files?11:46
KotCzarnyhave you ever heard about gtkrc ?11:46
tsukasaheard about yes used no11:47
tsukasaive seen emerald theming11:47
tsukasathats easy11:47
KotCzarnyi think things may get complicated for you then :)11:47
tsukasalet me guess, its a giant list of key/value pairs11:47
KotCzarnykind of11:48
KotCzarny:)11:48
tsukasasigh11:48
KotCzarnyi have yet to spot a gtk theme editor11:48
pupniktheme maker11:48
KotCzarnypupnik: after adding simple parsing it can double as editor :)11:49
KotCzarnytsukasa: be prepared for the worst11:49
KotCzarnypupnik: does sdk provide usable maemo emulation?11:49
KotCzarnyie. to 'try and feel'11:50
pupnikah good suggestion11:50
*** ken_ has quit IRC11:50
pupnikhttp://maemovmware.garage.maemo.org/  tsukasa11:50
KotCzarnytsukasa: there's an updated review from the same guy: http://cs.gmu.edu/~sean/stuff/n800/os2008/11:51
KotCzarny:)11:51
pupnikthat guy is lucky he doesn't allow comments11:52
KotCzarnyit should be noted 'for hxc newton users'11:52
KotCzarny:)11:52
tsukasawell its always good to read the review of the uber critic11:53
pupnikhe's obviously not getting laid11:53
*** Mousey has quit IRC11:55
*** geaaru_ has joined #maemo11:55
*** mazzen has joined #maemo11:57
pupnikreading through it, there are many good points11:58
*** mbuf has quit IRC11:59
tsukasayeah11:59
*** soman has quit IRC11:59
tsukasahmm sleep intrigues me11:59
*** soman has joined #maemo11:59
tsukasadoes it work as bad as he claims?11:59
tsukasa(still?)11:59
*** mbuf has joined #maemo11:59
KotCzarnydon't know nothing about it11:59
*** MangoFusion has quit IRC12:00
KotCzarnyif i turn wifi off and have no badly written apps i get that ~10 days in standby12:00
*** pvanhoof has joined #maemo12:01
pupnikthe dude clearly can't convince any female to fuck him12:01
tsukasayeah but if its possible to get 30 day standby12:01
tsukasaim sold12:01
tsukasabecause that is amazing12:01
*** fab has joined #maemo12:01
KotCzarnyif astorm finally gets around to make 2xAA external battery pack, then yes12:02
KotCzarny;)12:02
pupnikwhy the fuck do you care about 30 day standby12:02
tsukasahow does it fit in your pocket anyways12:02
KotCzarnygood12:02
tsukasapupnik, im a battery life whore12:02
AStormhehehe12:02
tsukasai slapped linux on my MBP for battery life12:02
tsukasa<3 powertop12:02
AStormtsukasa: 2x AA should fit quite well12:02
*** tobmastr has joined #maemo12:03
*** _berto_ has joined #maemo12:03
pupniksome people have 'problems' that make me want to bitchslap them12:04
*** greentux has joined #maemo12:04
*** red-zack has joined #maemo12:04
KotCzarnypupnik: i like the idea of 2 or 4xAA battery pack12:04
KotCzarny:>12:04
*** X-Fade_ has joined #maemo12:04
pupnikyeah i have a spare power connector.  will test it without a regulator on 77012:05
KotCzarnyyyawn12:05
KotCzarnydarn.12:05
KotCzarnyit's morning again.12:06
KotCzarnygotta catch some sleep12:06
pupnikcheers KotCzarny12:06
KotCzarnynight night12:06
*** geaaru has quit IRC12:06
RST38hmidday, so it seems12:06
AStormpupnik: you mean, you want to try 4x AA directly? let me tell how that fares12:07
AStormit will work12:07
AStormbut if these are NiMH, the voltage may drop too much for further use after some time12:07
AStormeven though they aren't discharged12:07
AStormyou need at least a cheap power regulator12:08
*** bilboed-tp has joined #maemo12:08
*** kcome has joined #maemo12:08
AStormit's low to start with, 4,8V12:08
pupnikyes i'm curious how long before voltage drops too much12:08
AStormif it drops more than about 0.2V, you lose12:09
AStormI think about 2/3 of the capacity12:09
*** ramo102 has joined #maemo12:09
AStormah, wait, no12:09
pupnikah then it will be pretty useless12:09
AStormit'll drop then by 0,1V12:09
AStormwhich may or may not work12:09
*** giskard has joined #maemo12:09
AStorm4,8V is pretty much guaranteed to work12:09
pupniki just rarely run out of battery12:11
pupniklike twice this year12:11
AStorm:-)12:12
AStormI also don't, but it's a close shave12:12
AStormI certainly would if I used N as an MP3 player12:12
*** lubyou has quit IRC12:13
tsukasahmm12:13
DistMy N95 shuts down every day just because I happen to use N810 through it12:13
tsukasai guess i have one final question about the 80012:13
tsukasacan it connect to wpa/wpa2/wpa enterprise with peap12:14
*** jeff1f has joined #maemo12:14
*** lubyou has joined #maemo12:14
*** lardman|gone is now known as lardman12:21
*** X-Fade has quit IRC12:21
*** geaaru__ has joined #maemo12:21
*** liri has quit IRC12:22
pupnikhttp://www.google.com/search?q=n800+wpa+peap12:24
*** becksbier has quit IRC12:32
*** becksbier has joined #maemo12:33
*** geaaru_ has quit IRC12:33
*** murrayc_ has joined #maemo12:35
*** alextreme has joined #maemo12:36
*** florian has joined #maemo12:37
floriangood morning12:38
lardmandoes anyone happen to know if C++ strings in structs are still zero terminated if they reach their maximum length in the struct? Don't tell me, up to the compiler....?12:40
lardmans/string/char array12:41
*** andre has quit IRC12:42
inzWhy would char arrays in a struct differ from ones outside?12:42
kaatislardman, i believe it's std library implementation specific12:42
lardmaninz: only because if you don't meet the trailing 0x0 and you are at the know length of the array, you could not bother using one12:42
lardmanthough I imagine it will be included anyway12:43
lardmanactually it was a silly question, need more caffeine to wake the brain12:43
lardmankaatis: cheers12:43
lardman~lart translating C++ into MATLAB12:44
* infobot pries translating C++ into MATLAB's back open with a screwdriver and flashes a new bootldr to translating C++ into MATLAB12:44
inzlardman, can't be as pita as translating MATLAB into C12:45
lardmaninz: yeah that is a real pain12:45
derfDepends on the C++.12:46
derfMatlab's language is basically completely deficient in a number of areas.12:46
lardmanderf: yes, my question was a bit silly as it's up to the code using the array12:46
*** jeff1f has quit IRC12:46
lardmanbut make up for it many times over by not needing to do array sizing12:47
derfI don't often spend a lot of time worrying about array sizing.12:47
*** mazzen has quit IRC12:47
derfAnd I'm mostly confused by people who do.12:47
lardmanah, my work is pretty much about manipulating image data in time, and taking chunks for it for processing, so lots of arrays12:48
derflardman: So is mine.12:48
lardmantheora stuff12:49
derfAs well as my actual job.12:50
lardmanah, I didn't know if that was your actual job :)12:50
derfTheora is not.12:50
lardmanah, ok12:50
derfBut no, I got my Ph.D. doing image analysis... and I'm probably the only person in the entire field who hates matlab.12:53
*** mazzen has joined #maemo12:53
*** jnettlet has quit IRC12:53
lardman:) what do you hate about it?12:53
lardmanout of interest12:53
derfIt might be okay for doing an extremely small, limited set of things.12:54
derfThe problems I want to solve almost never stay within that extremely small, limited set.12:54
lardmansurely you then just write some code to cover a large set of things?12:54
derfNo, I mean the language.12:55
derfSuddenly everything outside of that set becomes much more difficult to do.12:55
derfAlmost as if these concepts were bolted on as an afterthought (gee, I can't imagine that's what happened).12:55
derfAnd I'd rather use a language that's mediocre at lots of things than one that's extremely good at a small set of things, and godawful at everything else.12:56
lardmanI suppose it depends what you need to do, but as a procedural language it fits the bill, and saves having to write the glue code (array manipulation, various mathematical operations, etc.)12:57
derfYou know, I can use LAPACK in C, too, if I really want to.12:57
lardmanbut it's more painful12:57
derfMatlab's problem is that it _requires_ obtuse array maniuplation to do anything.12:58
derfIncluding things that should have nothing to do with arrays.12:58
*** Khertan_TheReal has joined #maemo12:59
*** Khertan_TheReal has left #maemo12:59
lardmanyes, but it trades that for cleaner code for things that do use arrays12:59
*** Khertan_TheReal has joined #maemo12:59
Khertan_TheRealJoint12:59
Khertan_TheRealoups ...12:59
Khertan_TheRealHi ! :)12:59
derfWhich gets you crazy things like permute(reshape(fliplr(...),3,3,:),[1 3 2]) ... which leave you staring at that going, "What the hell does it _do_?"12:59
lardmanbut you cold write that in a different (slower) way if you wanted13:00
lardmans/cold/could13:00
derfSure, but in matlab "slower" becomes by orders of magnitude, so nobody does.13:00
lardmanbut yes, the optimisations lead to obscure code13:01
derfThey're not really optimizations.13:01
derfThey're basically required.13:01
lardmanagreed13:01
derfThat's like saying, well, you _could_ use a garbage collector in C, so you can't complain about the fact that it makes you manually allocate things.13:02
lardmanwell if you wanted to garbage collect it would mean you'd need to write the glue code, the same is not true of MATLAB, you can write it whichever way you want, and then it just runs slower one way13:02
lardmanor even both ways :)13:03
jotti see matlab rather as a prototyping language and for that matter it fulfills its purpose imo13:03
lardmanyes, I was going to say that - to tackle new problems quickly, it does its job and allows you to tackle the algorithm (for which the obscure bits can be twiddled later) rather than the glue13:04
lardmanthough if I'd started using C rather than MATLAB and had written a library of functions to handle n-dim arrays, etc., I may not be so bothered about the 'advantages' that MATLAB has13:06
jottatleast the matlab convention trains you to think vectorized so it has some didactical value :)13:08
*** mazzen has quit IRC13:09
lardmanit also has simulink which is why I started using it13:11
lardmanbbiab13:11
*** lardman is now known as lardman|afk13:11
*** liri has joined #maemo13:16
*** pcfe has joined #maemo13:20
Khertan_TheRealdoes many of u use google calendar ?13:23
Khertan_TheReali ask because i ll release a in few week a new calendar application for maemo ...13:23
Khertan_TheRealbut it need syncing ...13:23
Khertan_TheRealso i ve two choice ... porting it to desktop, or using an online calendar ...13:24
Khertan_TheRealan other one will be to add support in erminig too13:24
glassif you want someone to use your calender, it better sync with something at least..13:26
Khertan_TheReali ll make sync ... personnaly i ve preferences for google agenda13:27
Khertan_TheReali ll be the main user ... the purpose of it is to have a calendar app that i ll use13:27
Khertan_TheRealnot a killer application (but i still hope :) )13:28
Khertan_TheRealin fact it's a fork on winzing calendar ... with customisation, simplification, and some gui change to be easily be used on a nit13:28
*** jwatt____ has quit IRC13:30
*** ramo102 has left #maemo13:33
*** borism has quit IRC13:34
*** jnettlet has joined #maemo13:41
*** Pio has quit IRC13:42
*** maestro has joined #maemo13:44
*** jwatt____ has joined #maemo13:44
*** jwatt____ is now known as jwatt13:44
*** maestro__ has quit IRC13:44
*** Tama^2 has joined #maemo13:49
*** geaaru_ has joined #maemo13:49
*** maestro is now known as luizirber13:52
*** hrw|gone is now known as hrw13:53
*** geaaru__ has quit IRC13:58
*** tsukasa_ has joined #maemo14:00
somankulve: i solved the problem... now im getting the playbin video on my app window14:10
somanthanks for ur support14:10
kulvesoman: great. What was the problem?14:12
somanthe problem was the message was not exposed on the bus.,..  so i explicitly posted the message on the bus, and got it14:15
somananyway thanks for ur support...14:15
somanwould like to be in touch with you,,, in future14:15
*** tsukasa has quit IRC14:17
*** lardman|afk is now known as lardman14:18
*** simon_ has quit IRC14:18
*** calvaris has quit IRC14:22
*** giskard has quit IRC14:25
*** Tama^2 has quit IRC14:27
*** geaaru__ has joined #maemo14:33
*** luizirber has quit IRC14:43
*** ramo102 has joined #maemo14:43
*** n800n has quit IRC14:45
*** mazzen has joined #maemo14:45
*** geaaru_ has quit IRC14:47
*** Dregs has quit IRC14:50
*** bmidgley has quit IRC14:54
*** setanta has joined #maemo14:56
*** t_s_o has quit IRC14:56
*** geaaru_ has joined #maemo15:02
*** CptLaptop has quit IRC15:05
*** Tuco has quit IRC15:11
*** geaaru__ has quit IRC15:13
*** somnath has joined #maemo15:26
*** andrunko has joined #maemo15:26
*** mbuf has quit IRC15:27
*** soman has quit IRC15:28
* lcuk sneaks in from work15:28
*** DaniloCesar has joined #maemo15:29
*** SDuensin has joined #Maemo15:33
*** mbuf has joined #maemo15:34
*** Cptnodegard has joined #maemo15:35
*** wms has joined #maemo15:36
*** AD-N770 has quit IRC15:39
*** efleury has joined #maemo15:40
*** krau has quit IRC15:41
*** MoRpHeUz has joined #maemo15:42
*** vivijim has joined #maemo15:42
*** foka has quit IRC15:44
*** AD-N770 has joined #maemo15:44
*** foka has joined #maemo15:45
*** jeddy3 has quit IRC15:48
*** etrunko has joined #maemo15:52
*** krau has joined #maemo15:54
*** hendry has joined #maemo15:54
hendryis there a trick to make chinook keep its wlan0 online?15:55
*** krau has quit IRC15:59
*** turbo has joined #maemo15:59
*** briand has quit IRC16:01
pupnikping works16:02
*** andrunko has quit IRC16:03
*** krau has joined #maemo16:03
*** jeddy3 has joined #maemo16:03
mbufhow can i run while (event) { inotifytools_printf} and also invoke gtk_main() ?16:04
hendryi thought there might be some hidden option somewhere16:04
*** foka has quit IRC16:06
*** calvaris has joined #maemo16:06
*** airtonarantes has joined #maemo16:06
*** shackan has joined #maemo16:09
*** calvaris has joined #maemo16:10
*** felipec has joined #maemo16:11
*** felipec has quit IRC16:12
*** megabyte405 has joined #maemo16:16
*** aloisiojr has quit IRC16:16
*** vcgomes has joined #maemo16:17
*** mgedmin has joined #maemo16:17
*** blassey_ has joined #maemo16:18
*** jpuderer has joined #maemo16:18
*** turbo has quit IRC16:19
*** codi has quit IRC16:21
*** cmarcelo has joined #maemo16:21
*** rsalveti has quit IRC16:21
*** blassey has quit IRC16:22
*** dopper_ has joined #maemo16:23
*** turbo has joined #maemo16:23
*** NetBlade_ has joined #maemo16:26
*** NetBlade has quit IRC16:26
*** WormFood has quit IRC16:26
*** jegp has joined #maemo16:27
*** unixSnob has joined #maemo16:33
*** megabyte405 has quit IRC16:34
*** aloisiojr has joined #maemo16:34
*** dopper has quit IRC16:35
*** NetBlade has joined #maemo16:36
*** NetBlade_ has quit IRC16:36
*** MangoFusion has joined #maemo16:40
*** megabyte405 has joined #maemo16:40
*** hfwilke has joined #maemo16:41
*** megabyte405 has quit IRC16:43
*** liquid217 has quit IRC16:43
*** rsalveti has joined #maemo16:44
*** Sargun has quit IRC16:45
hendrywho maintains http://maemo-sdk.garage.maemo.org/download/repo/dists/ ?16:46
X-Fade_hendry: I think some of the indt guys do that.16:47
*** somnath has left #maemo16:50
*** Tuco11 is now known as Tuco116:51
*** NetBlade has quit IRC16:52
*** NetBlade has joined #maemo16:52
*** Atarii has joined #maemo16:54
*** NetBlade has quit IRC16:56
*** crashanddie has joined #maemo17:01
*** philipl has joined #maemo17:03
*** andrunko has joined #maemo17:03
*** luck^ has joined #maemo17:04
NaviOoh17:06
Navihaptic feedback  on the 580017:07
*** avs has joined #maemo17:10
*** skibur has joined #maemo17:11
*** n810sven has quit IRC17:12
*** snowmoon has joined #maemo17:13
*** IRSeekBot has quit IRC17:14
*** unixSnob has quit IRC17:16
*** trbs has joined #maemo17:21
*** Atarii has quit IRC17:21
*** Masca has quit IRC17:23
*** qwerty12 has joined #maemo17:23
*** unixSnob has joined #maemo17:26
*** avs has quit IRC17:28
*** hugolp has quit IRC17:28
qwerty12Argh! God hates me :(. This kernel I built isn't booting. I'm gonna have to recompile :(17:32
Navi:(17:33
qwerty12I'm working on something good as well. Hopefully more functional than that unionfs I put out. :)17:34
*** simon_ has joined #maemo17:34
Navi\o/17:35
*** unixSnob has quit IRC17:36
*** unixSnob has joined #maemo17:37
*** WormFood has joined #maemo17:37
*** Atarii has joined #maemo17:39
*** briand has joined #maemo17:40
*** blassey_ has quit IRC17:40
*** turbo has quit IRC17:41
*** mazzen has quit IRC17:43
*** matt_c has quit IRC17:43
fysa\o/ = seconded17:44
fysaBTW qwerty12, I am running your super kernel.17:45
fysathanks for that.17:45
qwerty12fysa, nice :). np :)17:45
qwerty12I call it experimental because I don't know if it has any problems :P17:46
fysano worries17:46
qwerty12The only reason I made it was because I saw some other kernels but it would mean giving up the features that fanoush made in his kernel. So he gave the source patch and I applied it :)17:46
qwerty12Thanks :)17:46
RST38hwhat is in that kernel?17:48
*** mbuf has quit IRC17:48
qwerty12let me find the page a sec, I don't even remember. Basically, features I don't use :p17:49
*** ralann has quit IRC17:49
fysahttp://www.internettablettalk.com/forums/showthread.php?t=1910417:49
qwerty12You got there faster than me >.<17:50
*** kcome has quit IRC17:52
RST38h=)17:52
*** kcome has joined #maemo17:52
*** Sargun has joined #maemo17:53
RST38hUmgh17:53
*** kcome has quit IRC17:56
*** kcome has joined #maemo17:57
qwerty12RST38h, Nice work on the Colecovision emulator. But it isn't for me as I wasn't even around then :P. My Dad still has memories of his one :p17:58
*** zwnj has joined #maemo17:59
*** DaniloCesar has quit IRC18:02
RST38hqwerty: Now you will have to buy a tablet for your dad =)18:04
qwerty12Hehe, my dad doesn't like my one. He wanted me to get a eee pc >.<. But I liked the N800 and I also wanted to do some wifi hacking lol18:05
RST38hAnd I still have MasterSystem, GameBoy and NES to port18:05
qwerty12Wow, gameboy would be amazing. I currently use PyBoy to run Cokemon. While not bad, it could be improved.18:06
*** airtonarantes has quit IRC18:06
*** DaniloCesar has joined #maemo18:08
*** ralann has joined #maemo18:10
*** geaaru_ has quit IRC18:10
elbis the colecovision different from the coleco intellivision?18:15
elboh, it looks like the intellivision was mattel18:16
elbhmm18:16
*** matt_c has joined #maemo18:17
*** MrMacBook has quit IRC18:19
*** red-zack has quit IRC18:20
*** trickie_ has quit IRC18:20
*** juergbi has joined #maemo18:22
*** Masca has joined #maemo18:23
*** borism has joined #maemo18:26
*** ken_ has joined #maemo18:26
*** ssvb has quit IRC18:29
*** ol_schoola has quit IRC18:30
*** borism_ has quit IRC18:30
*** jeddy3 has quit IRC18:31
*** khertan_ has joined #maemo18:32
Khertan_TheReal?18:33
qwerty12?18:33
johnx?!18:33
qwerty12???18:33
Khertan_TheReal khertan_ (n=khertan@AAmiens-151-1-67-213.w86-192.abo.wanadoo.fr) ?18:33
qwerty12????????????????????????????????????????????????????????????????????????????????????????????????????????18:33
Khertan_TheRealkhertan_ > !shutdown18:34
Khertan_TheRealarg ww18:34
johnxtwo Khertans enter, one may leave!18:34
qwerty12I think Wanadoo still exists in the UK18:34
*** khertan_ has left #maemo18:34
johnxoh noes. O_o he got scared away18:35
Khertan_TheRealhehe18:35
*** Relate has quit IRC18:35
Khertan_TheRealouch wanadoo.fr ... huhu18:35
Khertan_TheReali m in france :)18:35
Khertan_TheRealbut orange/wanadoo many things aren't really well separated18:35
Navi/bu 218:35
Naviuugh18:35
Khertan_TheRealin fact i has always be the same ... France Telecom18:36
Khertan_TheReal:)18:36
*** DaniloCesar has quit IRC18:36
qwerty12Hehe :). But there was a UK one as well. I think they may have got bought out though. Wanadoo at the time bought freeserve, a UK ISP owned by Dixons in the UK :)18:36
*** red-zack has joined #maemo18:37
Khertan_TheRealwas the same ... france telecom :)18:37
*** lopz has joined #maemo18:37
Khertan_TheRealas alice was telecom italia18:37
qwerty12Ah :)18:37
lopzhi18:38
Khertan_TheRealt-mobile is deutsch telecom18:38
lardmanlcuk: hmm, isn't the screen only 16bit though?18:38
Khertan_TheRealsfr is vivendi ... which is Universal ...18:39
Khertan_TheRealafter this moment of history about this very small company ...18:39
Khertan_TheReali ll go on ... take my train18:39
*** foka has joined #maemo18:39
Khertan_TheRealbye :)18:39
qwerty12Bye :)18:39
*** Khertan_TheReal has quit IRC18:40
*** mk8 has quit IRC18:43
*** liquid217 has joined #maemo18:43
*** khertan has quit IRC18:43
*** GeneralAntilles is now known as GAN80018:46
*** GeneralAntilles has joined #maemo18:46
*** lardman is now known as lardman|gone18:46
*** fab has quit IRC18:47
*** GAN800 has quit IRC18:47
*** term-sig has quit IRC18:49
*** term-sig has joined #maemo18:49
*** GAN800 has joined #maemo18:51
qwerty12Has anyone built a kernel with CONFIG_TIMER_STATS enabled and the N800 boots fine? ATM, this is my second recompile and I think that option may be causing my N800 not to boot.18:55
*** christefano has quit IRC18:55
*** term-sig has quit IRC18:55
hrwqwerty12: powertop?18:56
qwerty12hrw, yes18:56
hrwqwerty12: it booted for me but wifi did not worked18:56
qwerty12hrw, ah thanks. One of my other options seems to be conflicting then :/18:57
hrwqwerty12: enable only that then18:57
qwerty12hrw: I want other features too :)18:57
hrw;)18:57
hrwone step at time18:57
qwerty12I'm impatient :P18:58
*** Pio has joined #maemo18:58
qwerty12(spelling?)18:58
inzqwerty, and it seems like you're getting much faster forward this way?18:58
*** GAN8001 has joined #maemo18:59
qwerty12inz, No but I'm not one for problem solving TBH. (Not that I wouldn't like to be. I just lack the brain power)18:59
*** GAN8001 has quit IRC18:59
hrwqwerty12: impotent you meant?19:00
qwerty12Joke right? :p19:00
qwerty12I hope >.<. All my plumbing is fine afaik19:01
*** rmoravci1 has quit IRC19:01
hrw;D19:02
*** GAN800 has quit IRC19:02
qwerty12Hehe :D. I've taken out Timer option. I'm not so bothered about powertop, but if it worked it would be nice :)19:03
*** GAN800 has joined #maemo19:04
hrwqwerty12: wat you want to add to kernel?19:05
qwerty12hrw, Nothing much. I've already added "(fixed rotation, 48Hz Faster MMC, extended brightness & crypto api) , plus the USB DMA & Powercheck disabled, LUKS, IPv6 and the case copy symbol. Be careful when using this one." and I want to add something else, I'll keep it a surprise until (if) it works ;P19:06
qwerty12Yep, timer option was causing my N800 not to boot. Probably doesn't get on with the framebuffer enabled.19:07
*** geaaru has joined #maemo19:08
*** vivijim has quit IRC19:10
qwerty12Does anyone else's kernels get compiled with no "sw-release"? It makes the about panel say <unknown>. It's odd because the kernel I compiled this morning had the version in and the one I compiled just now with EXACTLY the same settings as the one in the morning has no version info in it :(19:10
*** GeneralAntilles has quit IRC19:11
*** GAN800 is now known as GeneralAntilles19:12
qwerty12Ok, sorry to be annoying but is there any way to fix modprobe on this device? A few scripts I've seen use modprobe over insmod :/ and I can't be bothered to replace modprobe strings :P19:14
*** hugolp has joined #maemo19:18
*** dougt has joined #maemo19:19
*** ramo102 has quit IRC19:22
fysamaybe something like.. a script with: insmod `which "$1"`19:23
fysawait, that wouldn't work.19:23
qwerty12fysa, Thanks but it doesn't matter. I couldn't get this to work when using insmod :(19:24
*** greentux has quit IRC19:26
*** playya has joined #maemo19:28
qwerty12Our camera sucks knob. Why? (Not because of the crappy picture quality btw)19:29
qwerty12http://pastebin.ca/99469419:29
qwerty12WTF IS UWVY?19:30
qwerty12s/UWVY/UYVY19:30
*** hrw is now known as hrw|gone19:31
GeneralAntillesThis: http://www.fourcc.org/yuv.php#UYVY19:31
qwerty12Most popular? :(. Now I'm upset.19:32
qwerty12Arg, I don't know anything about video's. I thought this would be a simple recompile (which it was) but stupid OMAP webcam :(19:34
*** geaaru_ has joined #maemo19:34
qwerty12All I wanted was video in flash.19:34
qwerty12s/I don't know anything about video's/I don't know anything about video systems19:34
*** behdad has joined #maemo19:38
Atariiqwerty12, would it be possible to get rotation in the kernel in 2008he?19:38
*** greentux has joined #maemo19:39
qwerty12Atarii, probably. I'm not sure what kernel 770 uses and also I wouldn't be able to backport the code. More fanoush's area.19:39
Atarii2.6.16.27-omap1 kernel i think19:40
*** luogni has quit IRC19:41
qwerty12Ahh, ok. If I have time, I will try and find the source of that kernel. But I can only do a quick "port" of the rotation code. May not work.19:41
Atariiawesome! thanks and i look forward to any progress19:43
qwerty12Np, but I must note I probably won't be able to do it (not from lack of trying but from lack of knowledge) and I'm not a developer. Plus I've never compiled 770 kernel before :). jott may be a good person to ask for info (he did the port of the mamona code to maemo)19:44
*** jegp has quit IRC19:46
Atariiyea ive spoke to jott19:46
qwerty12fook, this flash webcam code is going to need some sorting.19:49
qwerty12BTW: Out of question, would anyone be interested if I did get camera to work in flash?19:49
*** geaaru has quit IRC19:51
*** ralann has quit IRC19:53
qwerty12Interesting. The camera is RGBP on boot but Internet call program sets it to UYVY19:54
*** [pcfe] has joined #maemo19:56
*** jeez has joined #maemo19:59
johnxAtarii, I'm not sure if the 770's LCD controller has rotation support. The reason it happened so quickly with the n8x0 is that the epson LCD controller does all the work19:59
*** VimSi has quit IRC20:01
*** tobmastr has quit IRC20:02
*** ralann has joined #maemo20:05
*** pcfe has quit IRC20:05
*** Crfrod has joined #maemo20:06
*** smackpotato has joined #maemo20:06
*** celesteh has joined #maemo20:06
*** dpap has joined #maemo20:06
dpapWhere can i find the list with all maemo phones?20:07
pancakephones?20:07
*** celesteh has left #maemo20:07
pancakehere: n770, n800, n81020:07
qwerty12Any developers around?20:07
||cwthere are no maemo "phones"20:08
smackpotatoi think the wiki but thats a guess20:08
dpapmobiles what ever20:08
pancakeinternet tablets20:08
pancakeor enhanced pdas20:08
pancakebut not phones or mobiles20:08
pancakeno gsm on them20:08
dpapyes20:08
dpapbut where?20:08
pancakehere: n770, n800, n81020:08
||cwtablets, handhelds maybe... they aren't very good at being a PDA so "enhanced" wouldn't work20:09
*** AD-N770 has quit IRC20:09
smackpotatoi think he wants to pair with bluetooth20:09
||cwdpap: there's no "list" because there are only 3, as pancake has said20:09
dpapthose 3 tablets has got the latest maemo software?20:10
smackpotatohttp://maemo.org/community/wiki/bluetoothdun/20:10
||cwthere's an outdated one, one with 2 SD slots for lots of storage, and one with a keyboard and gps20:10
lcukthere are technically 4, the new 810 wimax20:11
||cwdpap: 770 won't run "the latest" officially, there is an endition that will install, but it's not really stable20:11
dpapcan i have maemo 4 on n800?20:12
qwerty12Ok, from this snippet of code: http://pastebin.ca/994754 , can anyone tell me the format of the .flashcamrc file please?20:12
GeneralAntillesdpap, maemo 4 is the development platform20:12
GeneralAntillesYou can have OS2008 on an N800.20:13
lcukdpap, if you mean OS2008 then yes sure.  nokia released the new one and its fully compatible20:13
lcukos2008 is the hi GeneralAntilles20:13
lcukoffs - the other crap20:13
*** jwatt____ has joined #maemo20:13
GeneralAntillesHi, lcuk. :)20:13
dpapIs n800 upgradeable????20:14
lcukyes20:14
||cwdpap: the OS is, ye20:14
lcukthe os2007 that comes included on the n800 can be fully upgraded to os200820:14
lcuk(reflashes actually)20:14
GeneralAntilles||cw, what, you can install the latest Nvidia Geforce card? :P20:14
GeneralAntilless/can/can't/20:14
infobotGeneralAntilles meant: ||cw, what, you can't install the latest Nvidia Geforce card? :P20:14
lcukwhy not, im sure theres some PCI express port somewhere on the n8x0 but we dont have drivers for it20:15
||cwwell, or add ram, or internal storage, or add an internal gps...20:15
* lcuk has an internal gps in his n81020:15
qwerty12If only we could, maybe we'd get opengl20:15
johnxlcuk, pretty sure there's not even a PCI bus20:15
GeneralAntillesSomehow I doubt it, lcuk. :P20:15
*** VimS has joined #maemo20:15
GeneralAntillesYou can actually see all the buses we have on TI's website. :D20:16
lcukjohnx, there is, its driver will be installed for Duke Nukem Forever Maemo edition20:16
johnxlcuk, just repeat after me "Embedded systems are weeeeird."20:16
||cwcould be a pcicma interface20:16
GeneralAntillesThere isn't, ||cw. ;)20:16
qwerty12I don't see any buses here: http://www.trapmuzik.com/20:16
johnx||cw, keep guessing. :)20:16
||cwbut not likely cardbus20:16
*** jwatt has quit IRC20:16
||cwextra gpio's?20:16
*** jwatt____ is now known as jwatt20:16
johnxprobably plenty, especially if you rip out something useless (like the camera)20:17
smackpotatoyou can check out the omap chip on ti site20:17
||cwi bet there's some freak out there that could make a pcmcia vga card work via some gio's20:17
||cwgpio's20:17
lcukdont need gpio - we have full 3d hardware.  we can RENDER anything *20:17
lcuk*ymmv20:17
||cwup to 640x48020:17
GeneralAntillesUp to and including Halo 3, lcuk?20:18
||cwif I understand correctly20:18
X-Fade_There was this guy that had removed the FM radio chip in the N800 and used those..20:18
johnxO_o20:18
lcukand - can you seriously see an individual pixel at 1/225inch?20:18
lcukespecially in a 3d game?20:18
lcuk3d 640*480 is NOT a reason to hold back on the driver20:18
X-Fade_I can't find the link to the page anymore, but that was a nice hardware hack :)20:18
||cwno, but the bandwidth of the lcd is20:19
lcukbut 640*480 at 33fps is ENTIRELY doable20:19
lcuki do it now from the cpu20:19
lcuk800*480 is also doable at 25fps20:19
NOCmadmancan default programs such as pdf reader, and the file manager be removed to clean up space ?20:19
lcukthink outside the box and turn to yuv :)20:19
GeneralAntillesNOCmadman, you could, but it'll only save you a couple of MB20:20
GeneralAntillesRemove the ~40MB of PDFs and media that comes bundled instead.20:20
lcukif you delete the file manager does it delete all the files it manages?20:20
johnxmost of the stuff taking up space is used by everything20:20
johnxlcuk, yes, but only on your tablet20:20
*** jwatt____ has joined #maemo20:20
lcukphew, i thought he would wipe out everyones20:20
fysacompiz would be great.  I would love a mini 3D desktop. ;)20:21
fysathe best part would be that zooming would be free.20:22
fysaand smooth.20:22
johnxprobably not on an omap2...20:23
*** T0b0tras has quit IRC20:23
lcukthe thing about this resolution hang up: the iphone manages to have an amazing interface at a MUCH lower resolution to us - if we could use a lowres highly fancy front end and only switch to highres slower updating when required we would gain a lot of wow factor20:23
johnxthey also have a faster processor and better (let alone working) 3D hardware20:23
johnxand a lot more man-hours of dev time20:23
fysaand corporate interest20:24
GeneralAntillesand a much smaller screen, lcuk.20:24
||cwand rabid fanbois20:24
johnxand the Jobs hype-machine20:24
lcukjohnx, i thought they had identical 3d hardware to us (except for the drivers)20:24
GeneralAntillesNo20:24
GeneralAntillesTheir hardware is pretty radically different from ours.20:24
* lcuk will be demonstrating something at linuxtag which will put money where my mouth is20:24
*** Crfrodf has quit IRC20:25
johnxI look forward to it :D20:25
*** mtron_x86 has joined #maemo20:25
lcukso do i20:25
johnxthough I won't be there in person :/20:25
X-Fade_http://www.youtube.com/watch?v=24TXpqa9jG0 OpenGL ES 2.0 shader effects on OMAP320:25
lcuki love the 800*480 screen, but if it is seriously limited at that resolution the only possible thing to do with hardware is to allow resolution independence, let the user choose20:25
X-Fade_Can I have that please ;)20:25
fysaI think it's more similar than not?20:26
johnxX-Fade_, I don't think anyone is disputing what the OMAP3 is capable of :)20:26
fysahttp://en.wikipedia.org/wiki/PowerVR#Series_4_.28MBX.2920:26
lcukX-Fade_, you are attending ltag arent u20:26
NOCmadmanalready removed pdf's, moves, mp3's was just trying to clean up stuff i have replaced by other programs20:26
fysathey are both PowerVR MBX?20:26
* GeneralAntilles needs N900 now. . . .20:26
johnxX-Fade_, that looks like the Valve Source demo...20:26
*** christefano has joined #maemo20:27
smackpotatowhen do we get omap320:27
GeneralAntillesHopefully this fall.20:27
lcuknever on this device20:27
johnxEvery time someone asks it gets pushed back a month :)20:27
* smackpotato gets out the soldering iron20:28
*** legind has quit IRC20:29
*** Mousey has joined #maemo20:29
fysahttp://airlied.livejournal.com/39506.html20:30
fysanm20:30
johnxyeah, I keep really picking the winners in terms of slow video in ARM Linux devices20:31
johnxZaurus C1000 then N800...20:32
*** Dantas has joined #maemo20:32
*** qwerty12 has quit IRC20:33
DantasIts ARM?20:33
Dantason maemo's devices?20:34
GeneralAntillesarmel20:34
GeneralAntillesspecifically20:34
johnxthe Nokia 770, N800, and N810 all have ARM CPUs20:34
johnxGeneralAntilles, hate to say it but "armel" isn't really a hardware archictecture, it stands for ARM w/ EABI (little endian)20:35
GeneralAntillesYes, I know.20:35
johnxat least as Debian uses it20:35
GeneralAntillesBut it might be relevant to his question. :P20:35
johnxfair enough. :)20:35
*** dpap has quit IRC20:35
GeneralAntillesUgh20:35
*** term-sig has joined #maemo20:36
GeneralAntillesmeanwhile fucked up the maemo article again.20:36
GeneralAntillesWhat a dumbass20:36
johnxjust let him 0wn it for a week until he forgets about it20:36
johnxyou can only win by not playing20:36
fysaGA is seeping with wonderful knowledge that must envelope and consume all.20:36
*** jwatt has quit IRC20:37
*** Atarii has quit IRC20:41
*** tobmaster has quit IRC20:41
*** fab has joined #maemo20:42
*** T0b0tras has joined #maemo20:42
*** l7 has joined #maemo20:42
*** Dantas has quit IRC20:44
*** Sargun has quit IRC20:44
*** Sargun has joined #maemo20:45
*** blassey has joined #maemo20:46
*** dneary has quit IRC20:47
*** bilboed-tp has quit IRC20:49
*** qwerty12_N800 has joined #maemo20:49
*** ralann has quit IRC20:51
*** sergio_ has quit IRC20:52
*** Dar has quit IRC20:52
*** luizirber has joined #maemo20:53
*** calvaris has quit IRC20:53
Jaffare20:56
GeneralAntillesHowdy, Jaffa.20:56
* Jaffa 's BT headphones have had one of their rubber buds fallen off20:57
*** florian has quit IRC21:00
jotthaha man, this meanwhile is so pathetic.21:04
qwerty12_N800+121:04
qwerty12_N800GeneralAntilles: Any removing plans?21:05
Naviomg21:06
jotti would pledge for a complaint21:06
Navimy n800 froze21:06
GeneralAntillesSomebody else can fight it.21:06
Naviduz any1 have a virus checker?21:06
Naviit might be a virus21:06
jotti think i'll write a virus scanner :)21:06
johnxNavi, I think Darius was working on one :D21:06
Navii need 2 remove it21:06
jott(with a 0 bytes signature file)21:06
jottor just a messagebox "No virus found"21:07
Navin800 is too unsecure.  I dun kno how 2 use iptables21:07
jottmaybe he feels more secure then ;)21:07
Naviso duz any1 haev another firewalll i can use?21:07
*** _berto_ has quit IRC21:07
fysaI use ZoneAlarm on my N800.21:07
NaviHaha, all of those spelling mistakes are from me trying to type 100WPM21:07
johnxyeah "zonealarm: you know it's working cause now your virus scanner can't download new signatures..."21:08
GeneralAntillesHa21:08
Navilol21:08
*** kcome has quit IRC21:08
jottwe could also just build a clamav deb21:09
NaviI was going to do it, but I'm much too lazy.21:09
johnxthat would actually have some marginal usefulness at least21:09
Naviclamav is even worthless on the desktop21:10
*** b0unc3_ has joined #maemo21:10
fysaZoneAlarm: Because you trust the State of Israel's national intelligence agency to protect your sensitive data.21:10
*** jeez has quit IRC21:10
GeneralAntillesI love the Qtopia section.21:11
GeneralAntillesBecause wikipedia is the perfect place for rumor mongering.21:11
*** Sargun has quit IRC21:11
NaviCan I set string object equal to a c-style string?21:12
johnxahaha...my screensaver came on in N800/Debian and I thought my LCD controller had just given up the ghost21:12
MikhoIs there a difference between the terms Maemo and Internet Tablet OS?21:12
Navilike, tehstring = cstring21:12
NaviAhh, ghost21:12
qwerty12_N800"Scratchbox-compatible rootstraps are available for both x86 and ARMEL, so the majority of development and debugging takes place on x86, with final packaging being for ARMEL." 5 star fucking idiot.21:12
* Navi runs21:12
GeneralAntillesMikho, maemo is the development platform, Internet Tablet OS is the OS shipped with the 770, N800, N810 and N810W21:12
qwerty12_N8001. source! 2. missing logic (ie explain why with rootstraps available for both cpus, x86 is used until the late stages) 3. does the term rootstrap really add enough meaning to counter for its obscurity? this is a general encyclopedia, and articles should be written appropriately 4. ditto "final packaging"21:13
Mikhookay21:13
GeneralAntillesHehe, I don't disagree that the SDK section sucks.21:13
GeneralAntillesBut rather than blabbering about it on the talk page, I wish he would do something useful and fix it.21:13
jottas if he knew anything about the sdk or even linux/unix in general21:14
johnxa rootstrap (after much pain on my part learning this) is just another word for chroot21:14
qwerty12_N800Definitely but we know he has a problem with adding to articles.21:14
GeneralAntillesHopefully brontide jumps in there again21:14
jottand citing himself in a forum thread ...21:14
GeneralAntilleshe seems to have the will and energy to fight idiocy.21:14
GeneralAntillesjott, yeah, impressive isn't it?21:15
NaviI demand the purge of all stupid people21:15
Navistarting with Navi21:15
NaviI hate his guts21:15
qwerty12_N800Really?21:15
johnxreminds me of a penny arcade strip "But if we kill anyone who's stupid or ugly we'll never make it out of the mall!"21:16
NaviHaha21:16
qwerty12_N800lol21:16
*** msanchez has quit IRC21:16
NaviI need to catch up on penny arcade strips21:16
johnxthat's a real old one21:16
*** Sargun has joined #maemo21:19
*** _V_ has quit IRC21:19
GeneralAntillesDead Rising was a fun one.21:20
*** qwerty12_N800 has quit IRC21:20
NaviDead Rising is a funny game21:20
NaviSo uh, can anyone answer that question?  I don't want to resort to the #c++ guys21:21
NaviThey're evil and trolly >_>21:22
*** eichi has quit IRC21:22
Naviand raped me when I was five years old21:22
*** hugolp has left #maemo21:22
*** Pio has quit IRC21:22
Navis/raped/raeped/21:22
infobotNavi meant: and raeped me when I was five years old21:22
*** b0unc3 has quit IRC21:22
*** efleury has quit IRC21:25
elbNavi: you can do thestring = string(cstring), if not21:26
*** T0b0tras has quit IRC21:26
elbor string thestring(cstring)21:26
Navikk, thanks :D21:26
*** denny has joined #maemo21:26
*** fr01 has quit IRC21:28
elb(I suspect there's an assignment operator, but it's been a long time since I was forced to stoop to C++)21:29
*** ralann has joined #maemo21:32
nomisNavi: it is not the C++ guys that is evil and trolly, it is C++.21:32
* mgedmin wonders why Navi doesn't just try it out and see21:33
* mgedmin was at one point honestly convinced C++ was a great programming language21:33
*** efleury has joined #maemo21:33
jottit's really what you make out of it.21:34
*** Atarii has joined #maemo21:34
nomismgedmin: yay for the recklessness of the youth!  :)21:34
*** AD-N770 has joined #maemo21:35
nomisjott: yeah, that is exactly the problem. C++ gives you lots of rope to hang yourself with. And everyone picks different ropes.21:35
*** AD-N770 has quit IRC21:35
RST38hActually, there is a limited set of ropes21:35
jottnomis: just pick the right ones and use qt :>21:36
mgedminthat's not the problem; the problem is that it requires you to wave your own ladder out of the rope instead of giving you an elevator21:36
mgedmins/wave/weave/21:36
infobotmgedmin meant: that's not the problem; the problem is that it requires you to weave your own ladder out of the rope instead of giving you an elevator21:36
mgedminthank you very much, infobot21:36
nomisRST38h: I guess it is countable finite.21:36
RST38hanyway, what was the initial question/21:36
nomis*in*finite.21:36
*** mgedmin has quit IRC21:37
*** MrMacBook has joined #maemo21:37
Navielb, what do you work with nowadays, python? Ruby on Rails?21:38
elbwhatever I choose21:38
Navimmk21:38
elb80% of what I do is in either C or Ruby (no rails)21:38
elbthe other 20% is perl, python, tcl, whatever some specific project uses21:38
NaviThe RoR community is full of jerks :(21:38
elbwell, if you discount Make and bourne ... those are a good 50% of my total output ;-)21:39
nomisRST38h: I admittedly did not see it, I guess something like "How do I create a string object from a const char array" or "how do I assign a const char array to a string" or whatever. Stuff that should be easy but is full of traps.21:39
*** Alterego has joined #maemo21:40
jottwell most languages are full of traps if you are not used to them.21:40
*** Alterego has quit IRC21:41
*** jeff1f has joined #maemo21:41
nomisjott: true. C++ is my special favourite though.21:41
*** vivijim has joined #maemo21:42
* Navi likes ropes21:42
*** dolske_ has joined #maemo21:45
*** blassey has quit IRC21:45
*** pupnik_ has joined #maemo21:46
*** efleury has quit IRC21:46
elbC++ is more full of traps than most21:47
elbI highly recommend Stroustrup's "Design and Evolution of The C++ Programming Language" (or something like that)21:48
elbit's ... instructive21:48
jottwell it really depends on what parts you consider - stl/boost for example or with the great abstractions qt.21:48
* Navi needs ebook copies21:48
* nomis actually recommends the C++ FQA (sic!): http://yosefk.com/c++fqa/21:48
NaviIf it doesn't fit in my pocket, it's likely that I'm not going to read it21:48
nomisit definitely is biased but it has a lots of good points on why C++ is bad.21:49
*** pH5 has joined #maemo21:49
*** DaniloCesar has joined #maemo21:50
jottit's like "the language has some subsets that contain flaws but you are fine not using them - still i use them as my main argument"21:50
jott(or atleast knowing the flaws)21:50
elbthe thing about C++ is that you *can't* just ignore many parts of it21:51
elbpeople love to say you can, but mostly they dont' know enough of the language to know why it's dangerous21:51
*** blassey has joined #maemo21:51
nomisC++ is "oh, lets do OO in C and trick the C programmers into thinking it is the same language and they would gain from their prior knowledge. Then we reuse all their operators with totally different semantics!"21:51
elband as long as you don't hit the corner cases for the parts you don't understand, you're mostly OK21:51
elbbut then when it explodes, figuring out why takes a true guru21:51
nomis"lets use the shift operator for iostreams. That is clever!"21:51
fysait takes a guru meditation.21:52
lcukSOFTWARE FAILURE. PRESS LEFT MOUSE BUTTON TO CONTINUE21:52
elbwhile the choice of operator for iostreams is a little lame, typed output is a nice idea21:52
nomisand "std::cout << std::hex << std::setfill('0') << std::setw(8) << x << std::dec << std::endl;"  is so much easier than "printf("0x%08xn", x)"21:52
elbI don't think iostreams got it right, but still21:52
* nomis loves how input with iostreams leads to endless loops on CTRL-D.21:53
*** dolske has quit IRC21:53
jottnomis: this is just some cosmetic argument and it's not even valid in my eyes.21:54
nomisjott: why?21:54
nomis(cosmetics is btw. IMHO important. Not that C would be much better in that regard)21:55
*** airton_ has joined #maemo21:55
keesjruby give love, try to beat that :p21:56
*** airton_ has quit IRC21:56
*** b0unc3 has joined #maemo21:56
*** airtonarantes has joined #maemo21:56
jottnomis: 1) you can use printf in c++ or some other function for special purposes. 2) you could also just stream some complex objects as a counter example and then the printf would look ugly21:56
johnxgimp on the N800 is disturbingly usable O_o21:56
nomisjott: yeah, if your complex has exactly one desired output. Typically this is not true though.21:57
*** pupnik has quit IRC21:57
jottprintf("%s",my_object_to_string(OBJECT_CAST(object)));    std::out << object;21:57
nomise.g. one human readable and one serialized form of your complex object.21:57
nomisjott: is the latter the serialized form that gets sent to the network or the form that gets printed to the terminal?21:58
jottwell fwiw, std::out << object.toString();21:59
nomisjott: ok, but then we're at the same level as the printf again: printf ("%s", object.toString());21:59
nomisoh wait, we probably need object.toString().c_str()22:00
jottsee it's a really pointless discussion22:00
nomis:)22:01
RST38hnomis: The answer is "string objects are evil"22:01
RST38hDon't use them22:01
*** frade has joined #maemo22:02
nomisthe fun really starts when you try to figure out why the C++ compilers have to be so dog slow. It is a problem inherent to the language.22:02
nomis(it is not context free)22:02
RST38hC++ compilers are not slow22:02
*** Zic has quit IRC22:02
nomisRST38h: compared to C compilers? They are. By a huge difference.22:03
RST38hIf you mean that you can write slower code using C++, it is true, but why blame the compiler?22:03
nomisRST38h: I mean the actual act of compiling. Not the resulting binary.22:03
RST38hGCC works at the same speed for me22:03
RST38hC or C++22:03
*** blassey_ has joined #maemo22:04
nomisRST38h: mhm. Whenever I have to compile (even small) C++ programs it feels like ages. Ok, granted, I usually run my Laptop at 600MHz, but pure C programs are compiled in a snap.22:05
RST38hAre you using templates?22:06
*** blassey has quit IRC22:06
elbg++ is absolutely slower than C++, with or without templates22:06
RST38htrantor: {976} C++22:06
RST38hC++: Command not found.22:06
RST38hWhat is "C++" ?22:06
elberr, g++ is absolutely slower than gcc22:06
elbtypo22:06
RST38hBoth will compile C++ code though22:07
nomisRST38h: well, not intentionally, but it is hard to avoid with the standard libraries.22:07
*** airtonarantes has quit IRC22:07
RST38hnomis: So you are using STL?22:07
nomisRST38h: I guess that most of the programs I compile do use STL, yes.22:07
elba C "hello world" takes about 1.5x as long to compile in g++ as gcc, with hot caches22:07
RST38hnomis: Here is the answer to your question then22:07
RST38hnomis: Do not use STL. And your C++ compiler will run like a cheeta22:08
nomisRST38h: that is not the only problem.22:08
RST38hnomis: Believe me, that IS the only problem ;)22:08
*** j0tt has joined #maemo22:08
*** jott has quit IRC22:08
*** b0unc3_ has quit IRC22:08
elbdid you not read what I just wrote?22:08
*** j0tt is now known as jott22:09
elb*hello world* takes 1.5x as long with C++, and it's a trivial example22:09
nomisRST38h: as I said earlier: C++ is not context free, that means the compiler has to try a lot of different approaches for some statements to compile them properly.22:09
RST38helb: takes same time for me22:09
*** geaaru__ has joined #maemo22:09
elbRST38h: then you're not using the same g++ I am22:09
RST38hnomis: could ou give an example22:09
elb(4.1.3)22:09
RST38helb: maybe22:10
elbusing <iostream> and std::cout instead of <stdio.h> and printf takes the c++ example to *four times* slower22:10
nomisRST38h: a line like "AA BB(CC);" is impossible to parse without knowing what AA, BB and CC actually are22:10
RST38h3.4.2 here22:10
elbit's a more complicated language, there's no getting around that22:10
elband to claim that doesn't affect the compiler is disingenuous22:10
RST38helb: do not use iostream and srtd:out22:11
nomisRST38h: (is it an function prototype or a object instanciation?)22:11
elbyes, polymorphism slows the compiler down a *lot*22:11
nomisthat is not even a problem with polymorphy. It is a problem of a bad grammar.22:11
*** ol_schoola has joined #maemo22:12
elbyeah, I misparsed your statement22:12
elbbut polymorphism also does so :-)22:12
elbbecause there may be more than one applicable function to a given context, and one of them is "more correct" than another22:12
elb(due to, e.g., possible implicit casts)22:12
nomistrue.22:12
elbor simply finding the possible casts, for that matter22:12
*** ralann has quit IRC22:13
elbso ... I guess if you don't know how C++ works, and you don't time an actual C++ compiler, you can claim it compiles just as fast ;-)22:13
RST38hnomis: and how does this slow things down?22:14
nomisRST38h: the compiler has to look up AA, BB and CC among lots of different language elements (Types, currently defined variables/objects etc.)22:16
RST38helb: Close but not exactly like that22:16
nomisRST38h: A C compiler can look up CC in the types database and if it is not in there --> Bang! it gives an error.22:16
RST38helb: I am aware of how C++ works, so I use only those features of C++ that I really need and that do not slow me down22:16
RST38hnomis: But C++ compiler also makes a database like that22:17
RST38hIt makes a tree basically22:17
*** flo_lap has joined #maemo22:17
nomisRST38h: A C++ compier might look in the type database, not find it there, then look it up among the currently defined variables.22:17
elbRST38h: oh, so I assume you never use polymorphism, virtual functions, or inheritance?22:17
flo_lapre22:17
elbbecause all three of those slow the compiler down22:17
RST38hIt should always be in the type database, just in several different places in a tree22:18
nomisit has to do some more operations until it finally can figure out if that statement is correct or not.22:18
RST38helb: I use these every now and then22:18
nomisRST38h: no!22:18
RST38helb: But sparingly22:18
RST38hit does have to do a few more operations but not by much22:18
nomisRST38h: it might be an defined object, which would make it a constructor invocation.22:18
elbI just use C, and C++ doesn't slow me down at all ;-)22:18
elbif I want objects, I jump to something at a higher level22:19
elb(typically ruby)22:19
elbalthough it has its own unfortunate interactions22:19
RST38hnomis: So, it will check another tree, and?22:20
nomisRST38h: the compiler has to try different approaches of compiling said statement before it can determine if a statement is correct or not. That slows it down drastically. It might even have to try the other approaches if it found a valid one.22:20
*** l7 has quit IRC22:20
RST38hnomis: Do you know how expensive is looking up an item in a tree?22:21
RST38hHow about a hash?22:21
nomisRST38h: I know that two lookups in two trees are twice as expensive as one lookup in one tree.22:21
RST38hAnd one disk access is 100 times as expensive :)22:22
elbin fact, in some cases it has to look up *every* possible interpretation22:22
elbbecause what is a conflict in one context may be legal in another22:22
elband yes, that's an excellent point -- C++ does make far more disk accesses22:22
nomisRST38h: please read up a bit about why everything more complicated than a LALR(1) grammar is basically insanely hard to parse. Context sensitive Grammars are way more complicated than LALR.22:23
elbas its base set of definitions and standard components is rather larger22:23
RST38h"rather larger" is how much?22:23
nomisRST38h: by "context sensitive" I don't mean some vague feeling, I mean hard CS concepts.22:23
elbto be fair, C isn't LALR(1) either22:24
*** jeff1f has quit IRC22:25
RST38hAs far as I know, both are LALR(1)22:25
*** f_mohr has joined #maemo22:25
*** geaaru_ has quit IRC22:25
RST38hlet me verify22:25
nomiselb: eh, why?22:25
elbI don't remember22:25
nomiselb: because of the preprocessor?22:25
elbbut we definitely went over this in one of my undergrad courses oh-so-long-ago22:26
RST38hGoogle says C++ is LALR(1)22:26
elba LALR(1) parser can read C++ syntax at some level, but it may not be compilable without farther checks22:26
elbbecause syntax and semantics get confused22:27
elbthe very example nomis gave above is not LALR(1) in just three tokens22:27
RST38hok, I'll buy that22:27
RST38hI won't buy "c++ compiler slower than c" part though22:27
nomisRST38h: take the example above: you have to know (it is not immediately obvious from the grammar) if CC is a type or an object before you're able to parse the statement (into two totally different things)22:28
RST38hDon't you goddamn STL and those bloody iostreams that are only good for textbook examples22:28
RST38hUse printf() as all normal people do, and implement your *own* data structures.22:28
elboh, and yes -- templates are *completely* not lalr(1)22:29
RST38hscrew templates together with STL22:29
elbbut we've already put those out of scope22:29
nomiselb: well, yeah. But we seem to agree anyway that templates are bad  :)22:29
elbtemplates as decorations are interesting22:29
elbbut ... not worth using C++ :-)22:29
RST38hC++ gives you data and function encapsulation22:29
RST38hthat is what it is worth using for22:30
*** efleury has joined #maemo22:30
*** renatofilho^ has quit IRC22:30
nomisRST38h: weeell, we now could start arguing if this is not just syntactic sugar and if the method as used by glib enables you to do this as well.22:30
RST38hthe rest (templates, exceptions, RTTI, STL, other shit) isn't of much use22:30
RST38hnomis: You know better than me that the method used by glib is an abomination22:31
RST38hYes, it works. No, it is *not* pretty and damn hard to maintain22:31
*** Sargun has quit IRC22:31
nomisRST38h: I disagree.22:31
nomisRST38h: it is not pretty, true, but it gives you tools that C++ does not give you.22:32
RST38hno type checking whatsoever22:32
nomisRST38h: huh?22:32
RST38hnot clear what to do with pointers you are getting as results22:32
RST38hdo you free() them? do you g_free() them? do you unreference-count them?22:32
nomisRST38h: all the Type-Casting macros do type checking if you don't optimize it away.22:33
RST38hdo you g_free_xxx_object() them?22:33
*** Sargun has joined #maemo22:33
RST38hI am probably optimizing them away22:33
RST38hOtherwise it would run slow, wouldn't it? :)22:33
nomisRST38h: the key is to read the stuff that glib spits out at runtime and take the warnings seriously.22:33
RST38hnomis: thanks, but I will take comile-time checks.22:33
RST38hc++ has them22:34
nomisRST38h: C++ has no dynamic type system though.22:34
nomisWhich sucks badly sometimes.22:34
Mikhowhat's wrong with STL?22:34
*** dougt has quit IRC22:35
* nomis has to run, sorry.22:35
RST38hMikho: slow to compile, difficult to debug, full of cruft22:35
RST38hAnd you need a BOOK to use it22:35
RST38hWherever you need a book to use something, it is probably not worth using22:36
MikhoActually I wish I had a book22:36
*** geaaru__ has quit IRC22:37
MikhoThe reason I'm using it, is because I don't want to program every container type myself22:37
Mikhoare there really any good alternatives?22:37
elbbetter languages ;-)22:38
* elb passes out the free Objective C22:39
flo_lapre22:39
flo_laphehe22:39
Mikhobetter languages with C compability?22:40
flo_lapMikho: C ;)22:40
NaviLol22:40
Mikho?22:40
pupnik_is there OpenStep for the tablets? :P22:43
flo_lapIn fact with the right tools C is quite nice - of course there are better languages, but this does not include C++22:43
flo_lappupnik_: yes22:43
MikhoI don't like the type casting macros either22:44
pupnik_you kidding flo_lap? url?22:44
MikhoType-checking runtime is not as good as type-checking compile-time22:44
*** Atarii has quit IRC22:47
flo_lappupnik_: well... almost: http://www.quantum-step.com/wiki.php?page=Maemo-Edition&referer=About22:47
RST38hMikho: What is wrong with programming your own data structures?22:48
RST38hOnly takes a few minutes after a while22:48
*** blassey_ has quit IRC22:49
*** eichi has joined #maemo22:49
*** jeff1f has joined #maemo22:49
*** dholbert has joined #maemo22:52
*** MikaT has quit IRC22:57
*** MikaT has joined #maemo22:57
*** wms has quit IRC23:00
*** p| has joined #maemo23:02
*** dougt has joined #maemo23:05
*** legind has joined #maemo23:05
*** AD-N770 has joined #maemo23:09
*** MrMacBook has quit IRC23:13
*** t_s_o has joined #maemo23:14
*** pupnik_ is now known as pupnik23:15
*** ol_schoola has quit IRC23:15
*** dholbert_ has joined #maemo23:25
*** p| has quit IRC23:26
*** guardian has joined #maemo23:30
*** rtp has quit IRC23:32
*** jnettlet has quit IRC23:36
*** christefano has quit IRC23:36
*** dolske_ has quit IRC23:38
*** p| has joined #maemo23:38
*** mazzen has joined #maemo23:40
*** DaniloCesar has quit IRC23:40
jottlol @ anonymous changes to the maemo wikipedia page23:41
GeneralAntillesThis cracked me up: http://en.wikipedia.org/wiki/Wikipedia:TE23:42
*** kupesoft has joined #maemo23:44
GeneralAntillesHahaha http://en.wikipedia.org/wiki/Maemo#Possible_use_of_ITOS_in_phones23:48
GeneralAntillesThat's beautiful23:49
GeneralAntillesmaemo now has blood on its hands.23:49
pupnikGeneralAntilles: do you know if it's possible for a wlan driver to alert (via sound or something) when it gets DEAUTH'd?23:50
jotthehe yeah. have you seen the guerillia changes to the security section? ;)23:50
KotCzarnypupnik: dbus ?23:50
KotCzarnyi mean listen for dbus message?23:50
pupnikah23:50
jottah already reverted23:51
pupniki don't have time to try.  But seems like in general, it'd be a useful thing for linuxy wlan drivers/clients to do.23:51
*** dougt has quit IRC23:51
KotCzarnycould be annoying23:51
KotCzarny:)23:51
Cptnodegardanyone know wtf is the difference between rss feed and rss channel?23:52
*** red-zack has quit IRC23:52
KotCzarnythere can be multiple feed of one in other?23:52
KotCzarnyor other way round23:52
KotCzarny:)23:52
*** jeff1f has quit IRC23:53
Cptnodegarduuuh23:53
Cptnodegardseems like what i was after then23:53
*** jpuderer_ has joined #maemo23:55
GeneralAntillesHaha, jott, that's awesome.23:55
*** jpuderer has quit IRC23:55
GeneralAntilles"e.g. by installing a keylogger to steal email and pornography passwords."23:55
*** jeff1f has joined #maemo23:55
GeneralAntilles"meaning that a hostile application could easily seize ultimate climate control over a machine where this password has not been changed and start killing virtual kittens."23:56
KotCzarnyclimate control?23:56
GeneralAntilleshttp://en.wikipedia.org/w/index.php?title=Maemo&oldid=20768925223:56
KotCzarnytrollish23:56

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