IRC log of #harmattan for Sunday, 2013-05-05

loinJonni, thank you for that hint, i will probably not chmod -x it but replace the content with exit 100:00
loinor something00:00
joecoolloin: oh you mean load time, ok.. UI lags and FC's are a part of android life00:00
joecoolthat and bad battery life00:00
Jonniloin: chmod a-x will not malf your device, replaceing with exit 1 will screw refhashlist and make your device not to boot up :)00:00
joecooli have not had the N9 go unresponsive yet00:01
Jonniand you can always a+x if you want to use smartsearch later.00:01
loinJonni, thanks for that, that's one less reflash i'll have to do on my device00:01
loinjoecool, maybe your n9 is better than mine :)00:02
Jonnismartsearch is the root of all evil, it indexes everything and makes everythinhg slow, it indexes all your audio, video, pictures, emails, facebooks, sms'es etc.00:02
loinJonni, but i don't have any filees on the phone00:02
loinso it doesn't really index anything00:02
Jonnibasicly it spies everything that you do on the phone and puts it on the database. All the incoming and outcoming calls and messages.00:02
joecoolJonni: where's it located at so i can chmod it?00:02
joecool(android has same issue, called mediascanner or something)00:02
Jonni"chmod a-x /usr/bin/smartsearch"00:03
*** lucido has quit IRC00:04
joecoolthanks00:04
loinJonni, i added that info to my manifest and it still doesn't run as root00:05
Jonniloin: did you make the deb file with creator or scratchbox?  :), by default creator doesnt include aegis manifests in deb file :)00:06
*** lucido has joined #harmattan00:07
Jonniyet another nice feature that took me a while to notice00:07
loinqt creator, of course00:07
loini don't really enjoy scratchbox00:07
Jonniwell I bet that aegis file is missing from the deb package and script isnt runned as root00:07
loini only used scratchbox when compiling my systemui00:07
joecoolJonni: curious, how long can you stretch on the battery?00:08
Jonniloin: you can easily check if root permissions are missing by " tail -20 /var/lib/aegis/restok/restok.conf"00:09
Jonniif it doesnt have request UID::ROOT then your creator didnt create valid deb file00:10
Jonniloin: if I remember right the trick was to remove AutoGenerateAegisFile line from manifest or otherwise creator just didnt do anything.00:11
loinJonni, nothing on the feelcache00:11
lointhanks Jonni00:12
loini'll try that00:12
loinsaved me a lot of time on debugging :P00:12
Jonnijoecool: it depens on usage, if I dont do anything with it and keep it on low powermode, it can last something like 4-5 days, but usually when I actively use it, I keep it on charger every night, and even on working hours on my workdesk.00:12
loinJonni, joecool http://i.imm.io/14S3M.png00:15
Jonnijoecool: and on long travels I have this with me http://www.amazon.co.uk/10000mAh-Multi-voltage-Recorders-Lightning-Sensation/dp/B006WHMKEE/ makes live your easy to have extra 10000mAh, nice bonus for the default 1400mAh phone battery.00:15
loinJonni, for that small change i needed inception00:17
lointo override systemui00:17
JonniI find using inception to overrote sustemui a bit bad practice, since it changes the origin of the package. Personally I just override packages with com.nokia.maemo origin, that way you can easily replace systemui back to stock systemui with just apt-get command. (where it would fail if you just incept the package)00:19
loini never intend to go back to systemui00:20
loinalso, removing auto generated aegis worked00:20
loinboy, this qt creator is a pain00:20
Jonniwell yes, but if someday there is some system package updated that is depending on some incepted package, end users might be in pain.00:21
joecoolJonni: yeah i got a similar battery unit because my ion only gets ~4 hours of battery life when on cell network with vpn00:21
joecoolwith the backup i can stretch it through the day, it's just annoying to lug around00:21
Jonnipersonally I just have added my own pgp keys are com.nokia.maemo trusted keys, and when I sign my debian packages with my pgp key, system thinks that they are coming from com.nokia.maemo origin00:22
loinJonni, any tutorial on your method of overriding systemui?00:22
Jonniso I can just add my own repo to sources.list and just apt-get my overriding systemui :)00:23
loinJonni, sounds like a nice plan00:23
loinJonni, but i used whatever method i found at the time00:24
loini don't like having inception00:24
Jonniwell yes, most people are just using inception because they dont want to learn how aegis really works.00:24
loinJonni, is it documented anywhere?00:25
Jonniloin: http://harmattan-dev.nokia.com/docs/library/html/guide/html/Developer_Library_Developing_for_Harmattan_Harmattan_security.html00:25
Jonniyes its documented00:25
*** lucido has quit IRC00:26
loinJonni, did you write any tutorials on that replacing system ui without inception thing?00:27
joecoolhm so it seems like for openvpn i'd need openmode kernel?00:27
Jonnijoecool: openvpn works without openmode kernel.00:27
Jonnijoecool: I have openvpn running on stock kernel, but yes I used opensh to get all the required credentials to run it00:28
Jonniloin: sorry, not that many tutorials around, most of that info is just in my head :)00:28
joecoolok, will need this working by next week so phone is usable in canada00:29
*** ced117 has quit IRC00:29
loinJonni, too bad, i'd really love to get rid of that inception thing00:29
loinJonni, how do you override package origins?00:30
Jonnilets see if I have time some day, I was planning to write triple boot tutorial soon also.00:30
Jonnibasicly I've just patched dpkg to allow AEGIS_FIXED_ORIGIN export.00:31
lointhat's it?00:32
fmunozsbut only in openmode?00:32
Jonniso I just run "AEGIS_FIXED_ORIGIN=com.nokia.maemo/ovi dpkg -i foobar.deb" if I want package installed as ovi credentials, and "AEGIS_FIXED_ORIGIN=com.nokia.maemo dpkg -i package.deb" if I want to package appear as nokia system pacakge00:32
Jonnifmunozs: I have enabled that in secure mode :)00:32
loinJonni, don't you need open mode to AEGIS_FIXED_ORIGIN ?00:33
Jonniso basicly all the benefits of open mode export, but without need to ever go into open mode :). So you dont need openmode :)00:34
Jonniby default you need to be in openmode to use that export, it just requires a bit of paching to enable that in secure mode.00:35
fmunozsbut you can't "easily" replace dpkg with a patched one, or can you?00:35
JonniI find using export much cleaner solution than inception :)00:35
loinJonni, any commits you can point to for the dpkg thing?00:35
Jonnifmunozs: well define easily, I just have a 3-line shell script that does the patching, so its semi-easy. :)00:36
fmunozsnot sure, I was just guessing that dpk is protected by aegis so you couldn't replace it without causing MALF on reboot00:37
fmunozsdpkg*00:38
Jonnifmunozs: well yes simple replace causes malf. basicly line 1 just does echo trick to selected place, line 2 calculates new sha1sum for reflashlist and line 3 just resigns refhashlist with opensh capabilities.00:39
Jonniie if you patch things, you need to make corresponding changes to refhashlist to keep system happy00:39
fmunozsyep00:40
Jonnibut after the patch life is easy and you never need to use inception again :)00:41
*** NIN102 has quit IRC00:53
fmunozs:/ can't run QtSDK on new ubuntu00:56
Jonni13.04?00:56
fmunozsseems i found a fix http://www.andreagrandi.it/2012/01/12/nokia-qtsdk-installer-crash-on-ubuntu-how-to-fix-it/00:57
fmunozsyea, 13.04 and that fix -style cleanlooks worked00:58
*** xsacha has quit IRC00:59
*** xsacha has joined #harmattan00:59
*** loin has quit IRC01:31
*** suy has quit IRC01:37
*** ToAruShiroiNeko has quit IRC01:55
*** ToAruShiroiNeko has joined #harmattan01:56
*** Morpog_PC has joined #harmattan01:59
*** xsacha has quit IRC02:02
*** xsacha has joined #harmattan02:04
*** Chen has joined #harmattan02:30
*** Chen has quit IRC02:31
*** loin has joined #harmattan02:37
loinhow can i set context properties?02:37
*** mag0g has joined #harmattan02:40
*** tonyoy has joined #harmattan02:48
*** loin has quit IRC02:52
*** hardaker has quit IRC03:02
*** Morpog_PC has quit IRC03:04
*** rcg has quit IRC03:12
*** rikanee has quit IRC03:14
*** rikanee has joined #harmattan03:19
*** mag0g has quit IRC03:22
*** npm has quit IRC03:26
*** arcean has quit IRC03:27
*** rikanee has quit IRC03:35
*** rikanee has joined #harmattan03:40
*** M4rtinK has quit IRC03:51
*** npm has joined #harmattan03:54
*** tonyoy has quit IRC03:55
*** Martix_ has quit IRC04:09
*** Martix has joined #harmattan04:10
*** Martix has quit IRC04:28
fmunozsanyone tried the nfcchat demo on N9? I'm getting this error when trying to stablish the connection Status message: Client socket error: The socket operation failed because the application lacked the required privileges.04:50
*** Morpog_Mobile has quit IRC04:52
fmunozsoh seems to be an issue with 1.0 firmware04:52
*** mschlens_ has joined #harmattan04:53
*** mschlens has quit IRC04:56
*** Morpog_Mobile has joined #harmattan04:58
*** Sfiet_Konstantin has quit IRC05:26
*** DocScrutinizer05 has quit IRC06:03
*** DocScrutinizer05 has joined #harmattan06:03
*** natunen has joined #harmattan06:34
*** natunen has quit IRC07:09
*** rikanee has quit IRC07:51
*** lucido has joined #harmattan07:58
*** lucido has quit IRC08:05
*** hardaker has joined #harmattan08:23
*** dashin has quit IRC08:25
*** lucido has joined #harmattan08:39
*** dashin has joined #harmattan08:40
*** leinir has quit IRC08:50
*** JackaLX has quit IRC09:01
*** JackaLX has joined #harmattan09:04
*** JackaLX has quit IRC09:04
*** JackaLX has joined #harmattan09:04
*** hardaker has quit IRC09:26
*** jreznik has joined #harmattan09:48
*** loin has joined #harmattan09:49
loinhello, does anyone know if i can just change context properties as easily as i can read them with libcontextsubscriber?09:50
*** ortylp has joined #harmattan09:50
loindoes anyone know how i can interface with the email app to force sync?10:28
*** Necrosporus has quit IRC10:31
*** piggz has joined #harmattan10:52
dm8tbrI'd expect dbus10:52
dm8tbrcan't you just listen to dbus and see the sent messages?10:52
*** Pali has joined #harmattan11:07
*** ortylp has quit IRC11:09
loindm8tbr, listen to see what happens when i press sync?11:18
dm8tbr$ man dbus-monitor11:20
*** jreznik has quit IRC11:21
*** NIN101 has joined #harmattan11:24
*** ced117 has joined #harmattan11:37
DocScrutinizer05on voting: http://talk.maemo.org/showthread.php?p=1341376#post134137611:38
*** M4rtinK has joined #harmattan11:45
*** lucido has quit IRC12:04
loindm8tbr, thank you for that, i'm checking it out now12:16
*** lucido has joined #harmattan12:17
*** fmunozs has quit IRC12:21
*** juiceme has quit IRC12:26
*** juiceme has joined #harmattan12:28
*** Martix has joined #harmattan12:30
*** Necrosporus has joined #harmattan12:33
*** Martix_ has joined #harmattan12:33
*** Martix_ has quit IRC12:33
*** Martix_ has joined #harmattan12:39
*** arcean has joined #harmattan12:42
*** Martix has quit IRC12:44
*** Necrosporus has quit IRC12:44
*** Necrosporus has joined #harmattan12:44
*** leinir has joined #harmattan12:54
*** leinir has joined #harmattan12:54
*** leinir has quit IRC13:01
*** povbot_ has joined #harmattan13:13
*** ChanServ sets mode: +v povbot_13:13
*** deram_ has joined #harmattan13:15
*** juergbi` has joined #harmattan13:16
*** juergbi has quit IRC13:17
*** jpwhiting_ has quit IRC13:17
*** povbot has quit IRC13:17
*** deram has quit IRC13:17
*** ketas has quit IRC13:27
*** Mek|irssi has quit IRC13:27
*** jbos has quit IRC13:27
*** Pali has quit IRC13:27
*** ToAruShiroiNeko has quit IRC13:27
*** Brownout has quit IRC13:27
*** mf2hd_ has quit IRC13:27
*** thedead1440 has quit IRC13:27
*** Katiska has quit IRC13:27
*** Arkenoi has quit IRC13:27
*** Luke-Jr has quit IRC13:27
*** Raim has quit IRC13:27
*** xmlich02_ has quit IRC13:27
*** Kozzi has quit IRC13:27
*** infobot has quit IRC13:27
*** MikaT has quit IRC13:27
*** Jaffa has quit IRC13:27
*** Jonni has quit IRC13:27
*** zibri has quit IRC13:27
*** merlin1991 has quit IRC13:27
*** macmaN has quit IRC13:27
*** rdnzl has quit IRC13:27
*** Mek|irss1 has joined #harmattan13:27
*** ketas has joined #harmattan13:27
*** ladoga has quit IRC13:27
*** ladoga has joined #harmattan13:28
*** Pali has joined #harmattan13:28
*** ToAruShiroiNeko has joined #harmattan13:28
*** Jonni has joined #harmattan13:28
*** Arkenoi has joined #harmattan13:28
*** Luke-Jr has joined #harmattan13:28
*** zibri has joined #harmattan13:28
*** merlin1991 has joined #harmattan13:28
*** Brownout has joined #harmattan13:28
*** Raim has joined #harmattan13:28
*** Jaffa has joined #harmattan13:28
*** xmlich02_ has joined #harmattan13:28
*** mf2hd_ has joined #harmattan13:28
*** thedead1440 has joined #harmattan13:28
*** Kozzi has joined #harmattan13:28
*** Katiska has joined #harmattan13:28
*** infobot has joined #harmattan13:28
*** MikaT has joined #harmattan13:28
*** jbos has joined #harmattan13:28
*** macmaN has joined #harmattan13:28
*** rdnzl has joined #harmattan13:28
*** wright.freenode.net sets mode: +v infobot13:28
*** thedead1440 has quit IRC13:28
*** RzR has quit IRC13:33
*** lucido has quit IRC13:33
*** ZrZ has joined #harmattan13:33
*** Sfiet_Konstantin has joined #harmattan13:33
*** ketas has quit IRC13:33
*** ketas has joined #harmattan13:33
*** loin has quit IRC13:33
*** jbos has quit IRC13:34
*** ladoga has quit IRC13:34
*** Pali has quit IRC13:34
*** ToAruShiroiNeko has quit IRC13:34
*** Brownout has quit IRC13:34
*** mf2hd_ has quit IRC13:34
*** Katiska has quit IRC13:34
*** Arkenoi has quit IRC13:34
*** Luke-Jr has quit IRC13:34
*** Raim has quit IRC13:34
*** xmlich02_ has quit IRC13:34
*** Kozzi has quit IRC13:34
*** infobot has quit IRC13:34
*** MikaT has quit IRC13:34
*** Jaffa has quit IRC13:34
*** Jonni has quit IRC13:34
*** zibri has quit IRC13:34
*** merlin1991 has quit IRC13:34
*** macmaN has quit IRC13:34
*** rdnzl has quit IRC13:34
*** mschlens_ has quit IRC13:34
*** npm has quit IRC13:34
*** mgedmin has quit IRC13:34
*** juiceme has quit IRC13:34
*** Morpog_Mobile has quit IRC13:34
*** Guest79237 has quit IRC13:34
*** Oni^ has quit IRC13:34
*** rm_work|away has quit IRC13:34
*** auenf has quit IRC13:34
*** tomyri has quit IRC13:34
*** ZrZ has quit IRC13:34
*** piggz has quit IRC13:34
*** loide has quit IRC13:34
*** leio has quit IRC13:34
*** MohammadAG has quit IRC13:34
*** Mek has quit IRC13:34
*** Sput has quit IRC13:34
*** Elleo has quit IRC13:34
*** Jare has quit IRC13:34
*** coderus has quit IRC13:34
*** X-Fade has quit IRC13:34
*** juergbi` has quit IRC13:34
*** arcean has quit IRC13:34
*** ced117 has quit IRC13:34
*** VDVsx has quit IRC13:34
*** jussi has quit IRC13:34
*** mtd has quit IRC13:34
*** Necrosporus has quit IRC13:34
*** tom__ has quit IRC13:34
*** Summeli has quit IRC13:34
*** saidinesh5 has quit IRC13:34
*** tanghus has quit IRC13:34
*** Sazpaimon_ has quit IRC13:34
*** mardy has quit IRC13:34
*** tomma has quit IRC13:34
*** wirwe has quit IRC13:34
*** unreal- has quit IRC13:34
*** M4rtinK has quit IRC13:34
*** jon_y has quit IRC13:34
*** w00t has quit IRC13:34
*** lbt has quit IRC13:34
*** dm8tbr has quit IRC13:34
*** teve has quit IRC13:34
*** ji has quit IRC13:34
*** Aard has quit IRC13:34
*** mhoye has quit IRC13:34
*** kimju has quit IRC13:34
*** JackaLX has quit IRC13:34
*** tehdely has quit IRC13:34
*** ab has quit IRC13:34
*** DocScrutinizer51 has quit IRC13:34
*** Mek|irss1 has quit IRC13:34
*** deram_ has quit IRC13:34
*** Milhouse has quit IRC13:34
*** vekkt0r_ has quit IRC13:34
*** Kaadlajk has quit IRC13:34
*** mps has quit IRC13:34
*** Sfiet_Konstantin has quit IRC13:36
*** Sfiet_Konstantin has joined #harmattan13:36
*** rdnzl has joined #harmattan13:41
*** macmaN has joined #harmattan13:41
*** jbos has joined #harmattan13:41
*** MikaT has joined #harmattan13:41
*** infobot has joined #harmattan13:41
*** Katiska has joined #harmattan13:41
*** Kozzi has joined #harmattan13:41
*** mf2hd_ has joined #harmattan13:41
*** xmlich02_ has joined #harmattan13:41
*** Jaffa has joined #harmattan13:41
*** Raim has joined #harmattan13:41
*** Brownout has joined #harmattan13:41
*** merlin1991 has joined #harmattan13:41
*** zibri has joined #harmattan13:41
*** Luke-Jr has joined #harmattan13:41
*** Arkenoi has joined #harmattan13:41
*** Jonni has joined #harmattan13:41
*** ToAruShiroiNeko has joined #harmattan13:41
*** Pali has joined #harmattan13:41
*** ladoga has joined #harmattan13:41
*** ZrZ has joined #harmattan13:41
*** Mek|irss1 has joined #harmattan13:41
*** juergbi` has joined #harmattan13:41
*** deram_ has joined #harmattan13:41
*** arcean has joined #harmattan13:41
*** Necrosporus has joined #harmattan13:41
*** juiceme has joined #harmattan13:41
*** M4rtinK has joined #harmattan13:41
*** ced117 has joined #harmattan13:41
*** piggz has joined #harmattan13:41
*** JackaLX has joined #harmattan13:41
*** Morpog_Mobile has joined #harmattan13:41
*** mschlens_ has joined #harmattan13:41
*** npm has joined #harmattan13:41
*** Milhouse has joined #harmattan13:41
*** Guest79237 has joined #harmattan13:41
*** jon_y has joined #harmattan13:41
*** loide has joined #harmattan13:41
*** Oni^ has joined #harmattan13:41
*** VDVsx has joined #harmattan13:41
*** rm_work|away has joined #harmattan13:41
*** tehdely has joined #harmattan13:41
*** w00t has joined #harmattan13:41
*** lbt has joined #harmattan13:41
*** leio has joined #harmattan13:41
*** tom__ has joined #harmattan13:41
*** wright.freenode.net sets mode: +v infobot13:41
*** mgedmin has joined #harmattan13:41
*** dm8tbr has joined #harmattan13:41
*** jussi has joined #harmattan13:41
*** coderus has joined #harmattan13:41
*** ab has joined #harmattan13:41
*** MohammadAG has joined #harmattan13:41
*** teve has joined #harmattan13:41
*** Summeli has joined #harmattan13:41
*** Mek has joined #harmattan13:41
*** saidinesh5 has joined #harmattan13:41
*** auenf has joined #harmattan13:41
*** ji has joined #harmattan13:41
*** tanghus has joined #harmattan13:41
*** Aard has joined #harmattan13:41
*** Sazpaimon_ has joined #harmattan13:41
*** tomyri has joined #harmattan13:41
*** Jare has joined #harmattan13:41
*** Elleo has joined #harmattan13:41
*** Sput has joined #harmattan13:41
*** mhoye has joined #harmattan13:41
*** X-Fade has joined #harmattan13:41
*** mtd has joined #harmattan13:41
*** mardy has joined #harmattan13:41
*** tomma has joined #harmattan13:41
*** wirwe has joined #harmattan13:41
*** DocScrutinizer51 has joined #harmattan13:41
*** unreal- has joined #harmattan13:41
*** kimju has joined #harmattan13:41
*** vekkt0r_ has joined #harmattan13:41
*** Kaadlajk has joined #harmattan13:41
*** mps has joined #harmattan13:41
*** infobot has quit IRC13:42
*** infobot has joined #harmattan13:44
*** ChanServ sets mode: +v infobot13:44
*** thedead1440 has joined #harmattan13:46
*** lucido has joined #harmattan13:47
*** juiceme has quit IRC14:01
*** juiceme has joined #harmattan14:02
*** Morpog_PC has joined #harmattan14:29
DocScrutinizer05MohammadAG: anyway filenames with spaces are a pita in unix, and I strongly suggest to not even allow them anywhere. When importing e.g. mp3 then just convert all spaces to underlines14:29
*** juiceme has quit IRC14:32
*** juiceme has joined #harmattan14:34
*** tonyoy has joined #harmattan14:38
*** lordross has joined #harmattan14:48
*** SfietKonstantin has joined #harmattan15:15
*** jreznik has joined #harmattan15:17
*** Sfiet_Konstantin has quit IRC15:18
*** jreznik has quit IRC15:19
*** jreznik has joined #harmattan15:20
*** leinir has joined #harmattan15:22
*** SfietKonstantin is now known as Sfiet_Konstantin15:30
*** jreznik has quit IRC15:39
*** jreznik_ has joined #harmattan15:39
*** jreznik__ has joined #harmattan15:45
*** jreznik_ has quit IRC15:45
*** ortylp has joined #harmattan15:55
*** ortylp1 has joined #harmattan16:06
*** ortylp has quit IRC16:10
*** ortylp has joined #harmattan16:13
*** ortylp1 has quit IRC16:15
*** juiceme has quit IRC16:19
*** juiceme has joined #harmattan16:21
*** lucido has quit IRC16:36
*** lucido has joined #harmattan16:36
*** loin has joined #harmattan16:48
*** tonyoy has quit IRC16:51
*** arcean has quit IRC16:57
*** ortylp has quit IRC17:05
*** juiceme has quit IRC17:35
*** rashm2k has joined #harmattan17:39
*** juiceme has joined #harmattan17:42
*** rashm2k has quit IRC17:44
*** loin has quit IRC17:44
*** suy has joined #harmattan17:51
*** Venemo_N9 has joined #harmattan18:12
*** rcg has joined #harmattan18:46
*** xes has joined #harmattan18:48
*** juiceme has quit IRC18:56
*** juiceme has joined #harmattan18:58
*** hardaker has joined #harmattan19:01
*** juiceme has quit IRC19:11
*** juiceme has joined #harmattan19:13
*** Venemo_N9 has quit IRC19:42
*** shanttu has joined #harmattan19:59
*** loin has joined #harmattan20:07
loinwhat is the user password20:07
loinfor ssh user@...20:07
GeneralAntillesThere isn't one, I don't think.20:11
Morpog_PCu need to set one20:11
Morpog_PCdevel-su20:11
Morpog_PCpasswd user (and enter some password)20:11
*** t7kus has joined #harmattan20:24
*** juiceme has quit IRC20:25
t7kushi20:25
*** t7kus has quit IRC20:26
*** juiceme has joined #harmattan20:31
MohammadAGDocScrutinizer05, I use iTunes to manage my music, it renames files and folders depending on artist/album/title20:32
MohammadAGso that's not an option20:32
ZogG_laptoplol20:34
ZogG_laptopitunes20:34
loinMorpog_PC, i was thinking about that but i'm not sure20:38
lointhanks GeneralAntilles , Morpog_PC20:38
ZogG_laptopGeneralAntilles: hey, i saw sowatch code, i'm too noob to make bb10 port :) but at least i still can try :)20:40
GeneralAntillesZogG_laptop, less noon than me.20:51
GeneralAntillesNoob*20:51
ZogG_laptopdon't think so :)20:53
GeneralAntillesI'm a facilitator and wannabe writer. :P20:55
ZogG_laptopi'm just sloth :)20:55
GeneralAntillesHaha, yeah, sloth I know.20:58
*** loin has quit IRC21:00
*** piggz has quit IRC21:07
*** phunguy- is now known as phunguy21:09
*** juiceme has quit IRC21:09
*** NIN101 has quit IRC21:14
*** SfietKonstantin has joined #harmattan21:15
*** Sfiet_Konstantin has quit IRC21:17
*** Jonni has quit IRC21:22
*** Jonni has joined #harmattan21:22
*** Sfiet_Konstantin has joined #harmattan21:22
*** SfietKonstantin has quit IRC21:23
*** Sfiet_Konstantin has quit IRC21:39
*** Sfiet_Konstantin has joined #harmattan21:41
*** fmunozs has joined #harmattan21:43
fmunozsJonni, do you know if it affects somehow performance having a big image on the qml diectory if it is not  used?21:55
*** juiceme has joined #harmattan21:55
Jonnifmunozs: well if its inside qrc then yes it affects, if its not, then not.21:56
fmunozsthanks, i always put the launcher splash image there (to avoid editing the pro file)21:58
*** lucido has quit IRC21:59
*** ced117 has quit IRC22:19
*** SfietKonstantin has joined #harmattan22:19
*** NIN101 has joined #harmattan22:21
*** Sfiet_Konstantin has quit IRC22:21
*** piggz has joined #harmattan22:22
*** fmunozs has quit IRC22:29
*** ieatlint has quit IRC22:39
*** Venemo has joined #harmattan22:47
*** fmunozs has joined #harmattan22:53
*** piggz has quit IRC22:55
*** SfietKonstantin has quit IRC22:55
*** SfietKonstantin has joined #harmattan22:58
*** fmunozs has quit IRC22:58
*** jreznik__ has quit IRC22:59
*** jreznik__ has joined #harmattan22:59
*** Sfiet_Konstantin has joined #harmattan23:04
*** SfietKonstantin has quit IRC23:04
*** Sfiet_Konstantin has quit IRC23:05
*** Sfiet_Konstantin has joined #harmattan23:05
*** lirion has joined #harmattan23:13
*** lirion has quit IRC23:21
*** loin has joined #harmattan23:28
loinam i alone in thinking that jolla is crap?23:28
dm8tbrwhat would you base that opinion on?23:29
loindemos online23:29
loinby demos i mean videos23:29
dm8tbrtheir usage paradigm seems consistent and ui choices seem thought out, what's your gripe then?23:31
loinwell, i just don;t like the ui23:31
loinit's nothing like the swipe ui23:32
loinit looks too much like android23:32
dm8tbrwell, de gustibus non est disputandum23:33
dm8tbrnobody will force you to like it23:33
loini was just wondering if other people felt the same23:34
lointhat was all23:34
*** Sfiet_Konstantin has quit IRC23:36
*** Ahmed_ has joined #harmattan23:36
*** Sfiet_Konstantin has joined #harmattan23:36
*** Ahmed_ has quit IRC23:37
*** piggz has joined #harmattan23:39
*** Ibrahim has joined #harmattan23:44
*** jreznik__ has quit IRC23:45
*** Ibrahim has joined #harmattan23:45
*** arcean has joined #harmattan23:46
*** Ibrahim has quit IRC23:47
*** piggz has quit IRC23:49
*** loin has quit IRC23:57

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