IRC log of #maemo for Friday, 2012-09-28

vi__a00:00
vi__mouse!00:00
*** _rd has joined #maemo00:00
*** _berto_ has quit IRC00:00
DocScrutinizer05btw if you add a 25th array element of 53 to end of rx51_temp_table1, you can save the (anyway incorrect) lines 121..12300:01
*** lizardo has quit IRC00:02
*** NIN101 has quit IRC00:02
*** nox- has joined #maemo00:05
*** nox- has quit IRC00:05
*** nox- has joined #maemo00:05
*** MrPingu has quit IRC00:05
*** chenca has quit IRC00:06
*** chenca has joined #maemo00:06
Paliit is correct :-) for temperature 54°C there is no RAW value (look at formula and try to assign)00:07
Palionly 55°C and 53°C00:07
DocScrutinizer05(incorrect since for all other raw values you pick the next lower index (with next lower raw value) in rx51_temp_table2 aiui, in return (rx51_temp_table2_first - min) * 100;)00:07
*** fredrinLap has quit IRC00:08
*** MrPingu has joined #maemo00:08
DocScrutinizer05only for this special case you return next higher value00:08
*** konelix__ is now known as konelix00:09
vi__sweet00:10
vi__ghostery seems to work with microb.00:10
DocScrutinizer05but since there's no gap in your raw values between last index of tab1 (24) and lowest value in tab2[0], the case is fictive anyway00:10
*** ZogG_laptop has quit IRC00:11
PaliDocScrutinizer05, no, now I see that line 122 is redundant and it is always false00:12
Paliif raw == 24 then rx51_temp_table1[24] is returned00:13
Paliif raw == 25 then binary search loop in rx51_temp_table2 is performed00:13
DocScrutinizer05and if your tables would look different (e.g. value of tab2[0]=30) then adding 30 as last value to tab1 would catch that again00:13
Palisizeof(table1)/sizeof(table1[0]) is 2500:14
DocScrutinizer05Pali: exactly what I tried to tell you, when I said "case is fictive", so why "no"?00:14
Paliit always return ceil(convert(raw))00:15
DocScrutinizer05no00:16
DocScrutinizer05you do return (rx51_temp_table2_first - min) * 10000:16
Paliright, *100 is needed00:16
DocScrutinizer05(which btw might better look like return (rx51_temp_table2_first - mid) * 100 ?)00:16
PaliI forgot to add *10000:17
DocScrutinizer05that too00:17
*** vi__ has quit IRC00:17
DocScrutinizer05and for a fictive raw value of 24.5 it should return 53°C, not 55°C00:18
*** ZogG_laptop has joined #maemo00:18
*** pcfe has joined #maemo00:18
*** pcfe has joined #maemo00:18
*** _rd has quit IRC00:19
DocScrutinizer05I.E last value in tab1, not first value in tab200:19
*** _rd has joined #maemo00:19
Paliah, now I see what you mean00:19
DocScrutinizer05since for all other raw values that aren't 'exact' you also pick the next lower raw value's temperature00:19
DocScrutinizer05it's a dicontinuity00:20
DocScrutinizer05though it never will occur00:20
DocScrutinizer05better have your tab1 and tab2 'overlap' rather than accept gaps between them00:21
DocScrutinizer05so line 121..123 are incorrect and cruft ;-)00:22
DocScrutinizer05125 still missing * 10000:23
Pali119, 123 and 12500:23
DocScrutinizer05while I rather would return #def for EOUTOFBOUNDS00:24
Pali121..123 - you need to prevent infinite loop in binary search00:24
Palisee 186, MIN/MAX are ignored00:25
*** ZogG_laptop has quit IRC00:26
DocScrutinizer05ohwell, you could just add 1023 aka --(1<<10)  to tab200:26
*** Muelli has quit IRC00:26
Paliok, return values are fixed00:27
dafoxhi all. I was wondering if anyone here has his n900 working with an DLNA media server for playing music?00:27
Palinow I'm going offline...00:27
DocScrutinizer05add 1023 to tab2! ;-)00:27
DocScrutinizer05saves line 124..12500:28
DocScrutinizer05IOW why /* Possible correct values which are not in tables */ when you actually can take care there's no such value that's not in the tables?00:29
*** konelix_ has joined #maemo00:32
*** konelix has quit IRC00:33
*** Pali has quit IRC00:37
DocScrutinizer05btw static u8 rx51_temp_table2_first = 53; is useless (better use a #def rx51_temp_table2_first  53) since it never gets changed00:39
DocScrutinizer05(compiler will take care of it I guess, as it will probably not allign your u8 array like you hope it does)00:39
DocScrutinizer05I'm actually almost temped to write an alternative code with only one uniform table with struct tuple {u16 raw; u16 celsius}00:43
DocScrutinizer05almost00:43
*** konelix_ is now known as konelix00:54
*** odin_ has quit IRC01:03
*** mvp_ has quit IRC01:06
*** krau has quit IRC01:09
*** fredrinLap has joined #maemo01:12
*** Darkchaos has quit IRC01:14
*** pcfe` has joined #maemo01:15
*** pcfe` has joined #maemo01:15
*** internetishard has left #maemo01:16
*** fredrinLap has quit IRC01:16
*** pcfe has quit IRC01:17
*** pcfe` is now known as pcfe01:18
*** rcg has quit IRC01:19
*** shadeslayer has quit IRC01:19
*** odin_ has joined #maemo01:24
*** rm_work has quit IRC01:26
*** sq-one has quit IRC01:32
*** konelix has quit IRC01:32
*** chenca has quit IRC01:32
*** konelix_ has joined #maemo01:32
*** narcos has joined #maemo01:33
narcosHello all. I'd like to launch a script requiring root from a desktop icon. The only way I've managed to succeed is with a 'loader' script. In my .desktop file I have   Exec=osso-xterm -e "sh /bin/loader.sh"  and then loader.sh has   sudo theRealScript.sh01:35
narcosIs there a way to do this directly?01:35
*** stardiviner has joined #maemo01:36
*** Dynamit has joined #maemo01:38
*** fredrinLap has joined #maemo01:40
*** Venemo_N9 has quit IRC01:42
*** fredrinLap has quit IRC01:44
narcosMaybe I can rephrase - is there a way to launch osso-xterm directly into a root shell?01:46
Skrynarcos: chmod u+s theRealScript.sh ?01:46
narcosSkry: Hm, good point01:46
* narcos tries01:46
nox-suid scripts work?01:48
Skryno idea01:49
narcosit launches, trying to test if I have elevated privs01:49
narcosshould 'whoami' report the name of the calling user, or root?01:49
*** konelix_ has quit IRC01:51
*** shadeslayer has joined #maemo01:52
DocScrutinizer05nox-: nope01:53
DocScrutinizer05usually scripts won't obey SUID01:53
nox-yeah i'd have been surprised01:53
DocScrutinizer05there's a system option to allow it (probably compile time option)01:54
*** odin_ has quit IRC01:54
DocScrutinizer05but sh somescript.sh will *never* obey SUID01:54
*** Arkenoi has quit IRC01:56
narcosThing is, using the 'launcher' method would be fine (beyond the annoyance), but theRealScript.sh has some code that catches SIGTERM, and gracefully shuts things down. However, hitting ctrl-c via the launcher script doesn't seem to pass the SIGTERM onto theRealScript.sh (unless Im passing the SIGERM along incorrectly)...01:56
DocScrutinizer05usual way: if ![ $(/usr/bin/whoami) = root]; then exec sudo $0 "$@"; fi;01:57
*** odin_ has joined #maemo01:58
*** eijk has quit IRC01:58
DocScrutinizer05and get a proper shebang line and call it directly instead of passing it to sh as a parameter01:58
DocScrutinizer05get a correct entry in /etc/sudoers.d/<yoursudofile>01:59
DocScrutinizer05run update-sudoers, do NOT edit /etc/sudoers01:59
narcosDocScrutinizer05: There are lots of file in /etc/sudoers.d/  - I'm not sure which one I should be looking at..? 'everybody.sudoers' perhaps?02:02
DocScrutinizer05dafaq, what? is there a file called everybody.sudoers?02:03
DocScrutinizer05OMG02:03
narcosEr, yeah :)02:03
narcosThere are 20 files there.02:04
DocScrutinizer05you should create your own file, like every decent other app has02:04
narcosHmmm02:04
*** florian has quit IRC02:05
narcosAnd this is given that I want the user 'user' to be able to sudo? Even though it already can?02:05
DocScrutinizer05but I guess everybody.sudoers has yust the ultimate fsck-me-please config inside that allows everybody to do everything via sudo02:05
DocScrutinizer05errwut?02:05
DocScrutinizer05the user wants to sudo <yourfile>, not sudo sudo02:06
narcosAh, sorry, I think I misunderstood the purpose of the file.02:06
narcosGotcha.02:06
*** Arkenoi has joined #maemo02:08
DocScrutinizer05if your script is foobar.sh, your sudoers file might be for-fobar.sudoers, and contains >>  user ALL = NOPASSWD: /path/to/foobar.sh * <<02:09
DocScrutinizer05btw I got no everybody.sudoers file02:09
narcosSweet, it works02:10
DocScrutinizer05I bet you got that abomination with some weird crappy pkg like "easy-sudo" or whatever02:10
narcosNot sure - how could I chech?02:10
narcos(to satisfy your curiosity :) )02:10
narcoss/chech/check/02:10
narcos# dpkg -l | grep sudo02:11
narcosii  rootsh                                              1.5                              Enable root access, via the "sudo gainroot"02:11
narcosii  sudo                                                1:1.6.8p12-4osso22+0m5           Provide limited super user privileges to spe02:11
DocScrutinizer05dpkg -S /etc/sudoers.d/everybody.sudoers02:15
DocScrutinizer05narcos: ^^^02:16
DocScrutinizer05also what actually *is* in this file?02:16
DocScrutinizer05cat /etc/sudoers.d/everybody.sudoers02:16
*** at1as has joined #maemo02:17
DocScrutinizer05paste the one relevant line here02:17
DocScrutinizer05(if it's just one)02:17
narcosuser ALL=(ALL) NOPASSWD: ALL02:17
narcos# dpkg -S /etc/sudoers.d/everybody.sudoers02:18
narcosdpkg: /etc/sudoers.d/everybody.sudoers not found.02:18
DocScrutinizer05yeah, expected as much02:18
narcosWhat does that tell us?02:18
DocScrutinizer05it's a really really terrible idea02:18
DocScrutinizer05it tells sudo to accept any command from any user, without asking for password02:18
narcosAh!02:19
DocScrutinizer05and no package feels responsible for that abomination02:19
DocScrutinizer05probably some hacker rooted your device ;-P02:19
narcosLOL - if I was that package, I wouldn't own up either02:19
narcosIt's probably the custom install I'm using02:20
* narcos checks the setup file02:20
DocScrutinizer05you should delete that friggin file02:21
DocScrutinizer05the everybody.sudoers02:21
DocScrutinizer05don't forget to run command update-sudoers02:21
narcosYeah, I think I will.02:21
narcosSo, I use the 'pwnphone' image, because it loads up things like power-kenrnel, scapy, tshark, and other networking things that I need02:22
narcosOnce I get stuff working, I'll probably make my own image - if 'image' is the right word02:22
DocScrutinizer05yeah, it already pwnd your phone's sudo02:23
narcosYeah, seems so02:23
narcosRascals.02:23
DocScrutinizer05if you're concerned about proper sudo setup, have a look to my tools page to get working ROOTpassword for sudo gainroot02:24
DocScrutinizer05~jrtools02:24
infobotjrtools is, like, http://wiki.maemo.org/User:Joerg_rw/tools02:24
DocScrutinizer05still not safe (any attacker can install crap like this everybody.sudoers via HAM still), but at least it feels a tad better first approach when sudo gainroot asks for root password02:25
*** ALoGeNo has quit IRC02:26
narcosDocScrutinizer05: Cool, thanks, I'll check that out.02:27
DocScrutinizer05yw02:27
narcosAlthough these devices will largely run unattended, so not requiring a password is a good thing.02:27
narcosCan rather limit it to my scripts.02:28
narcosDocScrutinizer05: How did it come to be that you know so much about Maemo..?02:28
*** SpeedEvil has quit IRC02:29
DocScrutinizer05hmm?02:29
DocScrutinizer05all proper sudoers files for particular usecases still have NOPASSWD in them02:29
narcosNo I mean in general, you seem to grok everything about it.02:30
*** SpeedEvil has joined #maemo02:30
DocScrutinizer05that's the idea how to use sudoers: you define special cases where a program needs root, and you define if this particular case sudo shall ask for password or not02:31
narcosah right, gotcha02:31
narcosThat makes more sense.02:31
DocScrutinizer05narcos: I'm using linux since >12 years now, I used sun-OS/solaris even before. And I had a job where I had to deal with similar embedded/phone linux02:32
narcosOK, cool :)02:33
DocScrutinizer05my advice on jrtools just removes NOPASSWD from gainroot, and it sets default config of sudo to ask for root's password, not user's password02:33
narcosneat02:34
narcosSeems like a good idea02:34
DocScrutinizer05"Defaults targetpw"02:36
*** at1as has quit IRC02:36
narcosI notice on this 'pwnphone' image they launch all their apps via the 'laucher' script approach02:36
narcosI think I'll pass your wisdom along to them02:36
*** LaoLang_cool has joined #maemo02:39
DocScrutinizer05your ö02:42
DocScrutinizer05your line user ALL=(ALL) NOPASSWD: ALL  was actually perfectly sane without the NOPASSWD02:42
DocScrutinizer05(given you have "Defaults targetpw")02:43
narcosah ok02:43
*** robbiethe1st has joined #maemo02:45
DocScrutinizer05on ubuntu and other crap you have no "Defaults targetpw" afaik, so each "sudo foobar" asks for USER password before executing foobar with root privileges02:45
DocScrutinizer05which is rather silly in my book02:45
robbiethe1stExcept that the only point of it is to prevent applications from running without user permissions02:46
robbiethe1st*the user's permission02:46
narcosheh @ 'Ubuntu and other crap'. Does seem a little silly.02:46
DocScrutinizer05hmm, I bet I fool you with a shell 5liner02:46
narcosOh yeah?02:47
DocScrutinizer05yeah, since there's no problem to fake sudo output02:47
DocScrutinizer05this is called password skimming02:48
narcosOh right - yeah, sneaky :)02:48
DocScrutinizer05and generally user's password shouldn't empower any process to have root permissions02:48
robbiethe1stYou're still thinking in terms of multi-user machines02:49
narcosHadn't thought about it via sudo before, that's a nice idea. I see it more often with fake banking/facebook/gmail/foo web apps02:49
robbiethe1stVersus single-user machine.02:49
DocScrutinizer05no02:49
DocScrutinizer05I02:49
DocScrutinizer05'm thinking roles instead of users02:49
DocScrutinizer05which is actually how it's once been meant02:49
narcosOhhhh right02:50
DocScrutinizer05robbiethe1st: FFS promote BM to testing!02:50
*** otep has quit IRC02:50
DocScrutinizer05n802:51
robbiethe1stUh, is everything else in testing?02:52
*** ALoGeNo has joined #maemo02:52
robbiethe1stdependancys02:52
*** otep has joined #maemo02:53
DocScrutinizer05PostSuspendum: check your etc/passwd and you'll see that you're always on a multiuser machine on any unix02:53
DocScrutinizer05dependencies, good point. We'll deal with that later02:53
DocScrutinizer05or right now02:54
DocScrutinizer05we'll get this to extras, od die02:54
DocScrutinizer05or*02:54
robbiethe1stClicking promote now.02:54
DocScrutinizer05if not even BM makes it to extras, we can nuke extras all together and rename devel to extras02:54
robbiethe1stRename Testing to Extras02:55
DocScrutinizer05n802:55
robbiethe1stThere. Package promoted?02:55
robbiethe1stnOW WHAT?02:56
*** M4rtinK has joined #maemo02:57
narcosPhew, late o'clock, time for bed. Thanks for the help DocScrutinizer05.02:58
narcosNight all.02:58
*** narcos has quit IRC03:00
*** setanta has quit IRC03:13
*** lbt has joined #maemo03:13
*** jhb1 has quit IRC03:16
*** Dibblah has quit IRC03:39
*** dos1 has joined #maemo03:41
*** LaoLang_cool has quit IRC03:52
*** dafox has quit IRC04:04
*** M4rtinK has quit IRC04:05
*** _rd has quit IRC04:09
*** at1as has joined #maemo04:25
*** fredrinLap has joined #maemo04:30
*** fredrinLap has quit IRC04:34
*** perlite has quit IRC04:35
*** perlite has joined #maemo04:37
*** nox- has quit IRC04:46
*** retro|cz has quit IRC04:50
*** NishanthMenon has quit IRC04:56
*** dos1 has quit IRC05:03
*** uen| has joined #maemo05:04
*** uen has quit IRC05:07
*** uen| is now known as uen05:07
*** ALoGeNo has quit IRC05:08
*** lbt_away has quit IRC05:25
*** lbt_away has joined #maemo05:25
*** lbt_away has quit IRC05:25
*** lbt_away has joined #maemo05:25
*** ALoGeNo has joined #maemo05:25
*** at1as has quit IRC05:26
*** pcfe` has joined #maemo05:35
*** pcfe` has joined #maemo05:35
*** pcfe has quit IRC05:37
*** radic has quit IRC05:42
*** radic_ has joined #maemo05:42
*** radic_ is now known as radic05:42
*** Sazpaimon has joined #maemo05:46
*** Sazpaimon_ has quit IRC05:48
*** robbiethe1st has quit IRC05:55
*** Luke-Jr has quit IRC05:59
*** Luke-Jr has joined #maemo05:59
*** DocScrutinizer05 has quit IRC06:03
*** DocScrutinizer05 has joined #maemo06:03
*** guampa has quit IRC06:07
*** fredrinLap has joined #maemo06:16
*** fredrinLap has quit IRC06:42
*** MacDrunk has joined #maemo06:55
*** MacDrunk has left #maemo06:56
*** fredrinLap has joined #maemo06:58
*** sleepee has joined #maemo06:59
*** sleepee_ has joined #maemo07:08
*** kimitake is now known as kimitake_idle07:21
*** kimitake_idle is now known as kimitake07:21
*** fredrinLap has quit IRC07:23
*** Psi has quit IRC07:24
*** MrPingu has quit IRC07:26
*** kimitake has quit IRC07:31
*** kimitake has joined #maemo07:32
*** fredrinLap has joined #maemo07:33
*** MrPingu has joined #maemo07:36
*** fredrinLap has quit IRC07:37
*** hazchemix has quit IRC07:43
*** gerryde has joined #maemo07:52
gerrydehttp://xwetx.com//videos/3/sara-jean-underwood-playboy%27s-yoga-full-video07:52
*** gerryde has left #maemo07:52
*** Psi has joined #maemo08:03
*** MrPingu has quit IRC08:13
*** mavhc has quit IRC08:13
*** mavhc has joined #maemo08:33
*** hardaker has quit IRC08:38
*** geaaru has joined #maemo08:39
*** sleepee_ has quit IRC08:40
*** Muelli has joined #maemo08:41
kerioDocScrutinizer05: btw, your approach kinda sucks08:48
keriogainroot is supposed to be called passwordlessly08:48
keriobecause it checks rd-mode08:49
DocScrutinizer05 bs08:49
keriorootsh changes that08:49
DocScrutinizer05sudo checks R&D mode, not gainroot08:50
DocScrutinizer05err, scratch that08:51
DocScrutinizer05anyway, how's that relevant?08:51
DocScrutinizer05if anything sucks, then it's your pointless criticism08:54
freemangordonDocScrutinizer05: how did rx_battery go? sorry I felt asleep yesterday.08:54
DocScrutinizer05rx_battery?08:54
freemangordonthe temperature thingie08:54
*** Venemo_N9 has joined #maemo08:55
DocScrutinizer05pali's new LUT code?08:55
freemangordonyep08:55
*** ZogG_laptop has joined #maemo08:55
*** ZogG_laptop has quit IRC08:55
*** ZogG_laptop has joined #maemo08:55
DocScrutinizer05seems it's mostly ok, we weeded out some dead cruft code, the rest schould be fine08:56
DocScrutinizer05I'm still wondering if that thing indeed has to deliver centigrade (1/100 °C)08:57
freemangordonhmm, i looked at the code, seems ok to me (from the LUT size POV)08:57
DocScrutinizer05usually you use milli-UNIT08:57
DocScrutinizer05or micro-UNIT (uA)08:57
DocScrutinizer05(mV)08:58
*** user_ has joined #maemo08:58
*** user_ has quit IRC08:58
freemangordonwell, AFAIK minor unit for deg celsius is 0.0108:58
freemangordonAFAIK08:58
kerioDocScrutinizer05: a better way to allow passworded root access would be to add user ALL = (ALL) ALL08:59
DocScrutinizer05kerio: read backscroll and stop pestering me! I'm afk now anyway09:00
DocScrutinizer05pointless criticism09:00
*** stardiviner has quit IRC09:04
*** user_ has joined #maemo09:11
*** user_ has quit IRC09:11
*** int_ua has joined #maemo09:17
*** int_ua has quit IRC09:17
*** int_ua has joined #maemo09:18
*** int_ua has quit IRC09:18
*** eijk has joined #maemo09:19
*** lbt has quit IRC09:32
*** beford has quit IRC09:32
*** OkropNick has joined #maemo09:32
*** ZogG_laptop has quit IRC09:40
*** Venemo_N9 has quit IRC09:42
*** ZogG_laptop has joined #maemo09:45
*** ZogG_laptop has quit IRC09:45
*** ZogG_laptop has joined #maemo09:45
GGon09:45
*** ZogG_lap1op has joined #maemo09:50
*** murrayc has joined #maemo09:52
*** ZogG_laptop has quit IRC09:52
*** Muelli has quit IRC09:55
*** guerby has quit IRC09:58
*** eMHa_ has quit IRC10:09
*** Zahra has joined #maemo10:09
*** int_ua has joined #maemo10:13
*** florian_kc has joined #maemo10:22
*** florian_kc has quit IRC10:22
*** florian_kc has joined #maemo10:22
*** mvp_ has joined #maemo10:22
*** loganbr has quit IRC10:26
*** e-yes has joined #maemo10:27
*** utanapischti has quit IRC10:29
*** utanapischti has joined #maemo10:29
*** _berto_ has joined #maemo10:30
*** fredrinLap has joined #maemo10:39
*** eMHa_ has joined #maemo10:40
*** valerius has quit IRC10:43
*** florian_kc is now known as florian10:45
*** fredrinLap has quit IRC10:45
*** jhb has joined #maemo10:54
*** hazchemix has joined #maemo10:57
*** fredrinLap has joined #maemo11:01
*** fredrinLap has quit IRC11:05
*** valerius has joined #maemo11:05
*** hazchemix has quit IRC11:14
*** ZogG_lap1op has quit IRC11:16
*** ZogG_laptop has joined #maemo11:16
*** ZogG_laptop has quit IRC11:16
*** ZogG_laptop has joined #maemo11:16
*** valerius has quit IRC11:23
*** norayr has joined #maemo11:24
*** int_ua has quit IRC11:25
*** norayr has quit IRC11:32
*** mvp_ has quit IRC11:36
*** arno0ob has joined #maemo11:36
*** fredrinLap has joined #maemo11:39
*** ZogG_laptop has quit IRC11:42
*** pcfe` is now known as pcfe11:43
*** fecub has joined #maemo11:44
*** fredrinLap has quit IRC11:44
*** valerius has joined #maemo11:45
*** calvaris has joined #maemo11:48
*** fredrinLap has joined #maemo11:52
*** dhbiker has quit IRC11:53
*** LaoLang_cool has joined #maemo11:55
*** fredrinLap has quit IRC11:56
*** rcg-work has joined #maemo11:56
*** LaoLang_cool has quit IRC12:04
*** M4rtinK has joined #maemo12:17
*** thedead1440 has joined #maemo12:17
*** thedead1440 has left #maemo12:20
*** fredrinLap has joined #maemo12:30
*** mvp_ has joined #maemo12:32
*** fredrinLap has quit IRC12:35
*** norayr has joined #maemo12:36
*** zap_ has joined #maemo12:36
*** fredrinLap has joined #maemo12:36
*** pcfe` has joined #maemo12:37
*** pcfe` has joined #maemo12:37
*** pcfe has quit IRC12:41
*** fredrinLap has quit IRC12:45
*** guerby has joined #maemo12:47
*** fredrinLap has joined #maemo12:49
*** jhb has quit IRC12:51
*** fredrinLap has quit IRC12:54
*** skope has quit IRC12:54
*** skope has joined #maemo12:54
*** jhb has joined #maemo12:58
*** fredrinLap has joined #maemo13:07
*** fredrinLap has quit IRC13:13
*** fredrinLap has joined #maemo13:27
*** fredrinLap has quit IRC13:31
*** dhbiker has joined #maemo13:32
*** Lantizia has joined #maemo13:35
LantiziaWith Tizen and Jolla/Mer being RPM based - what (still developed) mobile OS's exist out there other than Maemo that uses debian package management?13:36
*** fredrinLap has joined #maemo13:38
*** norayr has quit IRC13:38
M4rtinKLantizia: http://qtmoko.sourceforge.net/13:40
M4rtinKthey are based on Debian & use debian packages13:41
Lantiziahmm but the device they develop for is dead13:41
Luke-Jrlol13:42
*** murrayc has quit IRC13:42
Lantiziasee my N900 is getting on a bit... I've been thinking of getting an Atom/Medfield based Android phone13:43
Lantiziaat least then if Ubuntu/Fedora/whomever come out with some kind of mobile-ui-centric interface i can put any old x86 OS on it13:43
Lantizia(possibly in the future)13:43
M4rtinKthey also support the GTA0413:44
M4rtinKwhich is also open hardware & has specs similar to the N900 :)13:44
Luke-Jro rly?13:45
Luke-Jrkeyboard?13:45
M4rtinKbut yeah, its quite a niche device & horrendously expensive :)13:45
M4rtinKnot by default13:45
M4rtinKbut you can probably easily slap one on it13:45
M4rtinKyou can even order just the board :D13:45
Luke-Jrno kb = crap13:46
Lantiziai agree13:46
Luke-JrGTA04 site false advertises :<13:46
Luke-Jr"No locks by undocumented hardware." "3D Graphics Accelerator and DSP"13:46
*** npm_ has quit IRC13:48
* SpeedEvil stabs Luke-Jr with a sharpened lettuce.13:48
*** npm_ has joined #maemo13:49
* Luke-Jr stabs SpeedEvil back with a sharpened cabbage13:50
LantiziaMerMeeMaemoGoTizen!?13:51
SpeedEvillimo13:51
*** lizardo has joined #maemo13:52
*** fredrinLap has quit IRC13:57
Hurrianwhoa, people are buying the GTA04?14:00
Hurrianthat's a mighty price to pay for freedom.14:01
*** fredrinLap has joined #maemo14:04
*** brzys has joined #maemo14:04
jacekowskiand modem firmware is closed anyways14:04
jacekowskiand it's 2g only iirc14:04
fluxclaims it's UMTS14:04
*** maybeHere has joined #maemo14:05
fluxit doesn't seem -that- sucky14:06
fluxbut I'll probably wait for what Jolla has :)14:06
fluxoh, I misread the price, it seems it's a 'choose the parts for your kit first'14:07
*** VDVsx has joined #maemo14:08
*** dos1 has joined #maemo14:08
*** maybeArgh has quit IRC14:09
*** louisdk has joined #maemo14:14
*** louisdk has quit IRC14:15
*** fredrinLap has quit IRC14:15
*** fredrinLap has joined #maemo14:16
Hurrianflux, iirc it's GBP 666 for the board14:16
fluxoh it was GBP :)14:16
fluxnope, it's EUR 66614:16
Hurrianmeh, I'd rather spend the cash on a USB-reinforced N900.14:16
Hurrianactually, make that a few N900s.14:17
flux+70 EUR for LCD, +20 for battery, +XX for case unless you make one yourself14:17
*** louisdk has joined #maemo14:17
*** louisdk has quit IRC14:17
fluxhurrian, I guess you can do that now on ebay :)14:17
*** louisdk has joined #maemo14:18
HurrianI mean, tbh, we have ofono running on our devices, a hardware keyboard, and a decent (ex) officially supported OS14:18
*** norayr has joined #maemo14:18
*** pcfe` is now known as pcfe14:18
*** fredrinLap has quit IRC14:20
Hurrianflux: if Jolla's got an open bootloader and GNU/Linux at a reasonable price, I'm set.14:20
*** louisdk has quit IRC14:20
*** louisdk has joined #maemo14:22
fluxhurrian, what would be reasonable price for you?14:22
Hurrianhigh spec phone a la SGS3: US$600-70014:22
fluxI would be surprised if we got a hardware-keyboard Jolla with much less than 650 EUR non-subsidized14:23
Hurrianmid spec phone a la N9: US$400-50014:23
fluxbut I suppose the market prices are different here in Finland..14:23
*** louisdk has quit IRC14:24
*** fredrinLap has joined #maemo14:25
*** dafox has joined #maemo14:26
*** int_ua has joined #maemo14:27
*** louisdk has joined #maemo14:32
*** louisdk has quit IRC14:32
*** louisdk has joined #maemo14:33
*** fredrinLap has quit IRC14:34
*** fredrinLap has joined #maemo14:38
*** Pali has joined #maemo14:45
*** louisdk has quit IRC14:47
*** Dibblah has joined #maemo14:51
* Lava_Croft mumbles something about wanting a GNU userland and faster hardware, while not really giving a damn about the rest14:51
*** Neutron16 has quit IRC14:53
*** khertan has joined #maemo14:53
*** Neutron16 has joined #maemo14:53
deepyWhy would you want a GNU userland?14:54
*** krau has joined #maemo15:03
*** fredrinLap has quit IRC15:10
*** brzys has quit IRC15:15
*** Darkchaos has joined #maemo15:15
*** dafox has quit IRC15:19
*** dafox__ has joined #maemo15:19
*** dafox__ is now known as dafox15:19
*** guampa has joined #maemo15:20
dafoxso, does anyone have a media server (DLNA) setup working with his n900? For me browsing (e.g. for music) works, but it fails when the media player tries to actually open the file for playback ("Unable to find media file"). Any ideas? The server works fine with both foobar-upnp and vlc's upnp browser15:21
*** int_ua has quit IRC15:21
*** int_ua has joined #maemo15:22
*** krau has quit IRC15:23
*** trx has quit IRC15:24
*** krau has joined #maemo15:25
*** int_ua has quit IRC15:29
Hurriandafox, PS3 media server with custom profile for N90015:30
Hurrianalso works with the default windows UPnP server15:30
*** int_ua has joined #maemo15:30
dafoxHurrian: cool. Did you have to do anything with you n900 before it worked?15:30
Hurriandafox, nothing at all.15:30
dafoxAre you using cssu?15:30
dafoxThe default windows upnp server == windows media player?15:31
*** dhbiker has quit IRC15:33
*** int_ua has quit IRC15:33
*** Darkchaos has quit IRC15:34
*** Darkchaos has joined #maemo15:35
PaliDocScrutinizer05, Hi, see: https://gitorious.org/rx51-bme-replacement/rx51_battery/commit/8a66270fd2460bbc816f5cf997691a5d5f10fee815:35
*** at1as has joined #maemo15:36
*** Proteous_ has quit IRC15:36
*** fredrinLap has joined #maemo15:36
*** int_ua has joined #maemo15:38
*** norayr has quit IRC15:40
*** grammoboy has joined #maemo15:44
grammoboyhow can I check if my n900 has the latest maemo version?15:45
*** int_ua has quit IRC15:49
*** calvaris has quit IRC15:49
*** Jarris has joined #maemo15:49
DocScrutinizer51grammoboy: settings->about15:52
grammoboyDocScrutinizer05, 21.2011.38-115:53
*** at1as has quit IRC15:53
grammoboyDocScrutinizer51, ^ is that the latest?15:53
*** FIQ|n900 has joined #maemo15:56
grammoboyit looks like it is15:58
grammoboyhttp://en.wikipedia.org/wiki/Maemo#Updating15:58
*** calvaris has joined #maemo15:59
*** alehorst has quit IRC16:05
*** krau is now known as krau|afk16:09
*** int_ua has joined #maemo16:20
*** Psi has quit IRC16:22
*** hardaker has joined #maemo16:22
*** guerby has quit IRC16:23
*** norayr has joined #maemo16:30
*** e-yes has quit IRC16:31
*** bigmeow has joined #maemo16:32
bigmeowlol16:32
*** calvaris has left #maemo16:32
*** e-yes has joined #maemo16:33
*** Jarris has quit IRC16:38
*** rm_work has joined #maemo16:40
*** M4rtinK has quit IRC16:43
*** retro|cz has joined #maemo16:43
*** chenca has joined #maemo16:47
*** ludens has quit IRC16:49
*** ludens has joined #maemo16:51
*** penguinbait has joined #maemo16:56
*** penguinbait has quit IRC16:56
*** penguinbait has joined #maemo16:56
DocScrutinizer51~flashing16:59
infobotrumour has it, maemo-flashing is http://wiki.maemo.org/Updating_the_tablet_firmware16:59
*** VDVsx has quit IRC17:00
*** VDVsx has joined #maemo17:00
*** VDVsx_ has joined #maemo17:05
*** dhbiker has joined #maemo17:05
*** VDVsx has quit IRC17:06
*** Psi has joined #maemo17:07
*** APTX has quit IRC17:11
*** APTX has joined #maemo17:11
grammoboyit is the latest version right?17:12
*** fecub has quit IRC17:15
*** brzys has joined #maemo17:15
*** jhb has quit IRC17:16
*** M4rtinK has joined #maemo17:16
*** krau has joined #maemo17:18
*** krau|afk has quit IRC17:18
*** alehorst has joined #maemo17:19
*** APTX has quit IRC17:19
*** pcfe has quit IRC17:22
*** pcfe has joined #maemo17:24
*** pcfe has joined #maemo17:25
*** Cor-Ai has quit IRC17:34
*** konelix_ has joined #maemo17:36
*** Cor-Ai has joined #maemo17:37
*** trx has joined #maemo17:41
*** konelix_ is now known as konelix17:42
*** int_ua has quit IRC17:46
grammoboyoh that app manager is awful sloooowwwwwwwww17:53
*** valerius has quit IRC17:54
DocScrutinizer51HAM is slow, esp when you have extras-testing and extras-devel repos enabled17:55
DocScrutinizer51but at least all pkgs are tested to work for isntallation under HAM17:56
DocScrutinizer51while other app managers may (and will) occasionally fail on certain packages, which can render your system in an unadmirable state17:57
grammoboyany good youtube app?17:58
Skrycutetube qml17:58
grammoboygps + osm?17:59
*** beford has joined #maemo18:02
*** konelix has quit IRC18:02
grammoboyhm the search function of cutetube seems to suck18:02
grammoboyI search on 'mercy mercy mercy'18:03
grammoboyget whole different results18:03
*** LinuxCode has joined #maemo18:04
DocScrutinizer51maemo-mapper, one google search away18:06
grammoboyah order by relevance18:07
DocScrutinizer51search:maemo openstreetmap18:07
grammoboygoogle doesn't tell me which is best18:07
grammoboythanx18:07
DocScrutinizer51if I can search on my N900, you can do as well18:08
DocScrutinizer51afk18:08
*** ced117 has joined #maemo18:08
*** Arkenoi has quit IRC18:10
*** norayr has quit IRC18:11
*** valerius has joined #maemo18:12
*** Proteous has joined #maemo18:14
*** SmilybOrg has joined #maemo18:17
*** SmilybOrg is now known as Guest335618:18
*** rcg-work has quit IRC18:19
*** SmilyOrg has quit IRC18:21
*** konelix has joined #maemo18:22
dafoxHurrian: The default windows upnp server == windows media player?18:23
*** rm_work| has joined #maemo18:27
*** rm_work has quit IRC18:28
*** rm_work| is now known as rm_work18:28
*** rm_work has quit IRC18:28
*** rm_work has joined #maemo18:28
*** sleepee has quit IRC18:32
*** e-yes has quit IRC18:36
*** zap_ has quit IRC18:37
*** valerius has quit IRC18:44
*** sq-one has joined #maemo18:45
*** sq-one has quit IRC18:47
*** rick8024 has joined #maemo18:49
*** zoub has joined #maemo18:50
zoubhello18:50
*** NIN101 has joined #maemo18:50
*** konelix has quit IRC18:59
*** konelix has joined #maemo18:59
*** andre__ has joined #maemo19:01
*** andre__ has quit IRC19:01
*** andre__ has joined #maemo19:01
*** valerius has joined #maemo19:02
*** konelix_ has joined #maemo19:04
*** konelix has quit IRC19:04
*** Jucato has left #maemo19:08
*** konelix__ has joined #maemo19:10
*** konelix_ has quit IRC19:10
*** konelix__ is now known as konelix19:11
*** Proteous_ has joined #maemo19:13
*** M4rtinK has quit IRC19:15
*** eMHa_ has quit IRC19:16
*** timo^ has joined #maemo19:19
*** zoub has quit IRC19:19
DocScrutinizer51*yawn*19:31
*** florian has quit IRC19:33
*** arno0ob has quit IRC19:34
*** loganbr has joined #maemo19:40
*** _rd has joined #maemo19:42
*** mzanetti_ has quit IRC19:44
*** fredrinLap has quit IRC19:45
*** ivgalvez has joined #maemo19:45
*** eMHa_ has joined #maemo19:49
*** Darkchaos has quit IRC19:55
*** teotwaki has quit IRC19:57
*** flo_lap has joined #maemo20:09
*** flo_lap is now known as florian20:09
*** RiD has joined #maemo20:18
*** VDVsx_ has quit IRC20:24
*** hardaker has quit IRC20:29
grammoboyhmm now I have a bash script in /usr/bin and the n900 user can't execute20:34
grammoboyit20:34
befordchmod +x?20:35
befordthe shebang is correct?20:35
grammoboyscript is 0play20:35
befordI think n900 doesn't use "bash" by default20:35
grammoboy0play not found20:35
grammoboyah20:35
grammoboythat works20:41
befordwhat worked20:41
grammoboychanging it from sh to bash20:42
grammoboyhttp://dabase.com/blog/n900_developer_tips/20:42
grammoboyand then run the script20:42
befordah20:42
befordgood20:42
*** konelix has quit IRC20:51
*** APTX has joined #maemo20:56
*** Woody14619a has joined #maemo20:56
kerioheh, my n900 barely survived a day of light usage21:02
keriobecause i forgot it in monitor mode for like 4 hours21:03
kerio:s21:03
*** vi__ has joined #maemo21:05
vi__So the chilli thief at work finally revealed himself.21:05
*** APTX has quit IRC21:05
*** APTX has joined #maemo21:06
vi__I left some daves insanity sauce in a cholula bottle in the fridge.21:06
*** rcg has joined #maemo21:06
vi__a sauce so hot it is banned from the international hot sauce convention.21:06
vi__It was the company CEO all along.21:06
vi__oopz.21:07
*** dafox has quit IRC21:08
RiDvi__ .... lol21:13
*** penguinbait has quit IRC21:14
keriovi__: so?21:14
kerioanyway, wifi monitor mode absolutely wrecks bluetooth connections21:16
vi__So I had to leave the canteen before I had to prove that was my normal chilli sauce that I like to eat.21:17
vi__The last I looked he was bright red.21:17
vi__kerio: You are aware the bluetooth chip and wifi chip are one and the same?21:18
vi__it is why you will never see themboth at the same party at the same time.21:18
kerio...they're not, they just share the same antenna21:18
kerioor something21:18
vi__or am I thinking of the FM chip...21:18
keriobut yeah, i'm aware of them being close21:18
RiDand bluetooth and FM transmitter are also somewhat together...21:19
keriobluetooth and fmtx are the same21:19
RiDyou can't have one of them turned off, i guess21:19
*** timo^ has quit IRC21:24
*** Lantizia has left #maemo21:25
*** OkropNick has quit IRC21:30
*** robink_ has joined #maemo21:34
*** sq-one has joined #maemo21:38
*** mvp_ has quit IRC21:39
*** schen has joined #maemo21:43
*** Woody14619a has quit IRC21:47
*** ivgalvez has quit IRC21:49
*** lxp has joined #maemo21:52
*** odin_ has quit IRC21:52
*** lxp1 has quit IRC21:53
*** odin_ has joined #maemo21:57
*** Zahra has quit IRC22:00
*** e-yes has joined #maemo22:03
*** _rd has quit IRC22:05
*** _rd has joined #maemo22:05
*** sq-one has quit IRC22:11
*** thetet has joined #maemo22:14
DocScrutinizer51duck and cover!!! ;-P22:17
grammoboy<^^>22:19
grammoboywhat is a good backup system to backup your whole n900 install?22:19
DocScrutinizer51~bm22:21
infobotextra, extra, read all about it, backupmenu is http://talk.maemo.org/showthread.php?t=6397522:21
RiDoh hello doc22:24
*** konelix has joined #maemo22:27
*** fredrinLap has joined #maemo22:30
DocScrutinizer05hi22:34
*** rm_work has quit IRC22:35
*** LinuxCode has quit IRC22:47
*** vi__ has quit IRC22:49
*** fredrinLap has quit IRC23:04
*** _berto_ has quit IRC23:05
*** hardaker has joined #maemo23:05
*** grammoboy has quit IRC23:06
*** hardaker has quit IRC23:07
*** dhbiker has quit IRC23:14
DocScrutinizer05*sigh* what have I done?!23:22
ShadowJKhm?23:29
DocScrutinizer05community-ml23:29
* DocScrutinizer05 should nominate ShadowJK ;-P23:29
ShadowJKI would decline23:30
DocScrutinizer05since you're not as silly as i am23:31
DocScrutinizer05lots of bitching for expending your time, not much hope for a bright future, no fame, no money ;-P23:32
*** Gh0sty has quit IRC23:33
DocScrutinizer05lemme troll a little, so maybe nobody votes me XP23:33
* RST38h yawns23:34
RST38hSo, what is cooking?23:34
ShadowJKI forget what the point of it is/was now that nokia is dead23:34
RST38hRat meat? Human meat? Elop's chops?23:34
* DocScrutinizer05 nominates RST38h23:35
* kerio still nominates DocScrutinizer05 as hildon foundation's eternal leader23:35
DocScrutinizer05ShadowJK: actually a good point. Seems council is an entity without mission23:35
RST38hhas been that way for a while, haven't you noticed?23:36
DocScrutinizer05suuure23:36
DocScrutinizer05I just didn't like to frustrate all the youngsters23:37
DocScrutinizer05right now council cranks up board23:37
DocScrutinizer05but what will council do next term?23:37
*** fredrinLap has joined #maemo23:37
RST38hsame as the last term? nothing?23:38
DocScrutinizer05right now council cranks up board23:38
DocScrutinizer05ooh, *last* term23:39
DocScrutinizer05might have a point23:39
RST38hI think it might make sense to look for migration routes now23:39
DocScrutinizer05seems last term been SD69 and he's been terribly busy with other stuff23:40
RST38hSuch as Tizen-on-Galaxy or Boot-2-Gecko or Jolla thing23:40
SpeedEvilor even Firefox is23:40
SpeedEvilis23:40
SpeedEvilOS23:40
RST38hsee Boot-2-Gecko23:40
RST38hthat is firefox "os"23:41
*** Darkchaos has joined #maemo23:41
SpeedEvilah23:41
* SpeedEvil is not awake.23:41
DocScrutinizer05jolla might be a sensible project to bang the door, but the other stuff definitely isn't any topic for council23:41
kerioyou'll never take fremantle away from me!23:41
RST38hDoc: dunno about council, just looking from the neutralpoint of view23:41
SpeedEvilthough it's amore alien than android23:41
RST38hDoc: All three are Linux based23:42
DocScrutinizer05sure23:42
RST38hDoc: If you do not like the word "tizen" we can call it SLP23:42
ShadowJKLast time I checked tmo, it seemed like people had this funny idea that the council can do actual work like coding, or atleast, do more than what was their purpose last time I checked, to be representatives of community with nokia. Whoever is in council wont change the amount of or direction of cssu at all, I'd think, because it's all volunteer effort anyways.. and I say cssu because it seems the most relevant to any future life support :-)23:42
RST38hThere are live, sane people left at tmo? Miracle.23:43
DocScrutinizer05but maemo community is... well, maemo commuinty. If somebody wants to move to android or whatever, he's free to do so. *nobody* will steer the community at large towards any arbitrary point outside maemo23:43
RST38hBut, let us be honest: council has never done anything useful23:43
DocScrutinizer05beg to differ23:44
ShadowJKRST38h, my point is that that's not even their purpose ;-)23:44
RST38hShadowJK: My point is that their purpose is beside the point =)23:44
RST38hShadowJK: The community has always been driven by people who could sit down and do something - application, site, faq, etc23:44
DocScrutinizer05council helped with device seeding, for instance. When there were projects like h-e-n or SHR23:44
RST38hShadowJK: These are generally not council members23:44
ShadowJKRST38h, that's MY point, you plagiarizing dolt ;-P23:45
RST38hDoc: Yeah, but it was long time ago, and even then it was concrete people, not the council in general23:45
Woody14619RST38H: I see, so keeping the lights on = nothing useful?23:45
RST38hWoody: correct.23:45
DocScrutinizer05BS23:45
ShadowJKNah23:45
ShadowJKKeeping lights on is vital :-)23:45
DocScrutinizer05hi Woody1461923:45
RST38hvital how? and for whom?23:46
Woody14619Good to know... When the servers go out Dec 31st, I'll let everyone know it was because you thought it not vital.23:46
DocScrutinizer05RST38h: council is not even *meant* to do that steering you expect to see23:46
* Woody14619 waves23:46
* RST38h does notexpect any "steering": neither him nor the community are cars23:46
Woody14619Btw: Most folks working on CSSU consider the builder and repos to be somewhat important, last I checked.23:47
ShadowJKyes23:47
DocScrutinizer05[2012-09-28 22:44:48] <RST38h> ShadowJK: The community has always been driven by people who could sit down and do something - application, site, faq, etc23:47
DocScrutinizer05it's not council to 'drive' community23:47
DocScrutinizer05it's community that does this23:47
RST38hand how much of the community has been left?23:48
DocScrutinizer05well, seems you're not part of those remnants23:48
ShadowJKIf community council is actually a body of people that actually gets access to be able to fix servers and repos when they break, that'd be cool, but then I'd think the the name would need a change :-)23:48
RST38htrue23:49
RST38hDoc: I am just a piece of toilet paper in the wind =)23:49
Woody14619Is has.  That's what the foundation is for.23:49
DocScrutinizer05ShadowJK: that's board, or those who get nominated by board23:49
DocScrutinizer05council never been meant to do admin job on servers23:50
Woody14619At the same time, most people that would want to work on that board may NOT want to deal with the community as deeply as Council as (doing things like running award programs, etc23:50
Woody14619Which is why we separated the two.23:50
ShadowJKAlso, the 6 month or whatever cycle made sense back when maemo was cutting edge growing thing, I wouldn't at all mind if people were made "permanent" members, with provision for replacement on demand through some vote-like process or the member going away him/herself etc23:50
DocScrutinizer05and which is why I hope to get elected for none, or both23:51
DocScrutinizer05synergy23:51
Woody14619Mind you, Councils job will become immesely easier when they have better access, which they effectivly will if the Foundation can take over everything.23:51
DocScrutinizer05access to what? It's not council to admin the servers23:52
Woody14619As good as Niels was, he was one man running most of the show.  With the Foundation, that work can be properly divided out.23:52
DocScrutinizer05Niels never been council AFAIK23:52
Woody14619No, they won't have direct access.  But they'll be able to get actual e-mailed answers, and hopefully more info on what's going on then what we have over the past couple years.23:52
DocScrutinizer05yes, that's what council does23:53
Woody14619I never said he was Council... re-read.23:53
*** jhb has joined #maemo23:53
*** eMHa_ has quit IRC23:53
DocScrutinizer05I never said you said ;-)23:53
Woody14619Right now, if you have a request (like, I want to hold a CC election), you ask Council that, and we have NO access to do anything for it.23:53
*** eMHa_ has joined #maemo23:53
Woody14619We can pre-setup some things, but the actual lever must be pulled by the admin.23:53
DocScrutinizer05that's why we get a proper board now, for that23:54
*** fredrinLap has quit IRC23:54
DocScrutinizer05and the board will not do this job themselves either, usually. They nominate /and maybe even pay) some (semi-)professional admin for that. That's the way things work in RL23:54
ShadowJKbtw, I now also got a quad core 1.6GHz  android device with 1 gigs of Ram.. but N900 is still main device, and the android pisses me off everytime I try use it, sits mostly unused, except for playing Grand Theft Auto23:55
Woody14619And when that admin only replies to one in 10 e-mails, it can be frustrating.  Then add Nokia stoping payment for the admin group to do *anything* related to your group, and it's all volunteer.23:55
DocScrutinizer05when the admin does that, he gets a thankful kick in the backside23:56
DocScrutinizer05that's what board is for23:56
RiDaaah... nokia will take my n900 tomorrow23:56
DocScrutinizer05that's why board holds the master key23:56
Woody14619Yes...  The Board will be more in control by way of dividing up who does what... though some direct admining may happen at first...23:56
RiDonly tomorrow *sigh*23:56
* RiD broke the conversation23:56
* ShadowJK wonders if maemo infra is still horrendously expensive, mer/meego/jolla allegedly got hosting costs down to <300, and they've probably got more dev activity these days than maemo?23:57
* DocScrutinizer05 breaks his monologue now, to get some TV and a nice ABSOLUT wodka to forget the silly things he did today23:57
DocScrutinizer05FFS council nomination, WTF?!23:58
DocScrutinizer05Woody14619: will you run for another term?23:58
Woody14619ShadowJK: For Nokia, probably.  For the foundation, we're hoping we can bring it down significantly....23:58
*** lizardo has quit IRC23:58
Woody14619For Council or for Board?23:58
ShadowJKDocScrutinizer05, this video will make sense after the vodka http://www.youtube.com/watch?v=PDboaDrHGbA23:59
DocScrutinizer05anything23:59
*** croppa has joined #maemo23:59
Woody14619I already put on the ML that I would run for Board, with a very special caveat that I will be relativly inactive until March.23:59
DocScrutinizer05>> Dieses Video ist in Deutschland leider nicht verfügbar, da es möglicherweise Musik enthält, für die die erforderlichen Musikrechte von der GEMA nicht eingeräumt wurden. Das tut uns leid.<<23:59

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