IRC log of #harmattan for Monday, 2012-07-30

*** mschlens has quit IRC00:00
robertjwThis is so basic, what am I doing wrong:00:00
robertjwcat /etc/apt/sources.list.d/nick.list00:00
robertjwdeb http://harmattan-dev.nokia.com/ harmattan/sdk free non-free00:00
robertjwapt-get install ruby00:00
robertjwE: Couldn't find package ruby00:01
jabisapt-get update after adding the new repo, of course00:01
robertjwof course00:02
*** auser has joined #harmattan00:02
*** mschlens has joined #harmattan00:02
jabisapt-cache search ruby after teh update00:02
robertjwbingo00:02
djszapi_it is not called ruby00:04
djszapi_it is called ruby1.800:04
robertjwright, it installed just fine along with irb.  Now I'm happy.00:05
*** pinheiro has joined #harmattan00:05
jabisthat's why searching the cache is useful00:05
djszapi_well, or checking the website00:06
djszapi_I have done the latter due to no hardware available :)00:06
*** admiral0 has joined #harmattan00:06
jabisfaster to check from apt-cache, when you're already hacking away :)00:06
robertjwahhh, it feels so much better now, with familiar tools at my fingertips.  Thanks guys.00:07
pais it possible to make something happen once one enters a value in a textfield?00:07
palike with Keys.onEnterPressed?00:07
djszapi_enter pressed ?00:08
djszapi_you are having a weird ui design :D00:08
djszapi_http://harmattan-dev.nokia.com/docs/library/html/qt-components/qt-components-meego-sipattributes.html?tab=1 -> but here you go anyway00:09
djszapi_oh, sorry, this is a wrong page.00:09
qwazixpa you mean onchange?00:09
jabishttp://www.richelbilderbeek.nl/CppQtOnKeyPress.htm00:10
jabisfirst hit on google x)00:10
pawhat i want is that when i enter a value on the text field, the value is stored somewhere00:11
painstead of needing a button "save options"00:11
paor something like that00:11
jabishttp://doc.qt.nokia.com/qq/qq11-events.html more on events00:12
*** HtheB has joined #harmattan00:12
djszapi_pa: well, that is quite a bad usability00:12
djszapi_from what I can say.00:12
padjszapi_, well, how would you do that?00:12
paspinboxes are not available in qml00:13
ieatlintpa: to actually answer your question, take a look at the onFocusChanged and onTextChanged signals00:13
djszapi_    Keys.onTabPressed: if (tabTarget) tabTarget.focus = true;00:13
djszapi_    Keys.onBacktabPressed: if (backtabTarget) backtabTarget.focus = true;00:13
djszapi_but I have done such things earlier.00:13
djszapi_perhaps there is a return version00:13
paah, onTextChanged sounds like it might be that00:13
*** admiral0 has quit IRC00:13
ieatlintthat will trigger any time a char is added/removed, not when a user finishes00:13
paah00:13
pano good00:14
ieatlint(well, not exclusively when they finish anyway)00:14
djszapi_why not just Keys.onXXXPressed: like I said above?00:14
payes, i have onEnterPressed() now00:14
paso you say thats the right way to go00:15
djszapi_I would hope for that...00:15
ieatlintyou typically don't want any big change to automatically happen when a user enters text but doesn't press a button or the enter key00:15
djszapi_the two links above are a bit out of the context00:15
djszapi_pa: check if you can constrain that to the relevant textedit component00:16
djszapi_I constrained that to my whole page in my fremantle player.00:16
djszapi_pa: but I do not still see why enter is preferred for a user in comparison with a nifty button.00:17
djszapi_on touch phones.00:18
djszapi_perhaps, you can do both, but I would complain as a user, I need to be hackish.00:18
*** admiral0 has joined #harmattan00:20
paphew.. settings page in place00:22
*** CreamyG31337 has quit IRC00:22
pait takes ages00:22
*** HtheB has quit IRC00:22
paah00:22
pathats what i wanted to ask00:22
palet suppose i want to dim the brightness of everything in my page00:23
palike text and images00:23
admiral0hello people00:23
djszapi_hello person00:23
pais it a viable option to have a black full screen rectangle semi transparent on top of everything?00:23
djszapi_pa why would you?00:23
djszapi_why not just opacity per stuff?00:24
pacoz it's faster?00:24
djszapi_show me the benchmark, please.00:24
pai mean, faster to code00:24
djszapi_which proves that.00:24
djszapi_lol00:24
djszapi_but hackish.00:24
paand by the way, would it help consuming less battery?00:25
djszapi_so as for me, it is a complete horror and no go.00:25
ieatlintqml is hackish by nature :P00:25
ieatlintand he is right about that, individually compisiting several things with reduced opacity is less efficient00:25
ieatlintcompositing00:25
admiral0djszapi_: <300:25
admiral0missed you00:25
djszapi_ieatlint: huh?00:25
djszapi_you are joking right?00:26
palet say i have my text "white", and i am already at lowest brightness level for the screen, if i dim the white further , by changing color, would it help decreasing battery consumptuon?00:26
*** lordross has quit IRC00:26
djszapi_since it is all managed by opengl context on Harmattan, you actually produce way more than needed.00:26
*** auser has quit IRC00:26
djszapi_pa: do you really think doing more than needed will produce less battery consumption?00:26
djszapi_well, if your app is full of texts and only images, then perhaps the same, otherwise most likely not IMO.00:27
*** rashm2k has joined #harmattan00:28
ieatlintopacity is handled by opengl? my understanding was that it was all just raster00:28
padjszapi_, i plan to have screen always on00:28
pai want to have a sportstracker that can be used to monitor the training00:28
djszapi_ieatlint: even raster needs rendering00:28
djszapi_pa: ah, you are that guy ...00:29
djszapi_who was mentioning this few days ago. :)00:29
ieatlintyeah, but the opacity is done via software00:29
pa"that guy?"00:29
djszapi_so software does not need rendering ? :)00:29
payes00:29
pai almost done00:29
djszapi_pixel by pixel ?00:29
paim*00:29
djszapi_so more pixels is more work? :)00:29
djszapi_pa: what do you mean by screen always on?00:30
ieatlintheh, calculating the opacity of 10 different objects is more clostly methinks00:30
pai mean that i want a monitoring screen showing real time hrm and gps speed and stuff00:30
djszapi_can you prove that with a benchmark?00:30
*** rashm2k has quit IRC00:30
ieatlintthat's a circular argument00:30
*** rashm2k has joined #harmattan00:30
palike if you would have this on the standby screen00:30
djszapi_ieatlint: exactly, the point, so until the need arises, doing nicely is better00:31
paanyway, the rectangle works00:31
djszapi_but IMO, it is even faster, even if this argument is "circular".00:31
djszapi_pa: no it does not00:31
djszapi_unless you only have texts and images, and nothing else00:31
ieatlintdjszapi_: the rectangle is simpler than going through all the elements and setting their opacity, or storing a central property that all the elements bind to00:32
padjszapi_, i also have switches, but they are dimmed too00:32
djszapi_ieatlint: disagree00:32
ieatlintthe rectangle part also allows more interesting transitions00:32
djszapi_if only texts and images are needed to behave like that, it is actually even incorrect00:32
djszapi_if there are other elements00:33
djszapi_and the requirement was not that "I would like to do for the whole screen"00:33
djszapi_"I would like to do for texts and images".00:33
padjszapi_, i would like to do it for everything on the screen that is not black00:33
djszapi_transition ... premature optimization :D00:33
pa(already)00:33
ieatlintbah, why am i arguing on irc on a sunday when instead i can go argue with people in real life00:33
djszapi_ieatlint: because you are weak :p00:34
ieatlintaww :)00:34
ieatlintthanks00:34
djszapi_pa: well, it looks simple to me00:34
djszapi_if everything, rectangular, if not, not.00:34
heymasterbest way to call cpp method and return error dialog if there's error00:34
ieatlintbut i'm also an american, so i probably have a gun i can go grasp and tell myself i could do something00:35
djszapi_this reminds me that I would not like to go to the GSoC stuff in America :D00:35
ieatlintcome now, you too can get a gun if you come here00:36
djszapi_water gun because you are about to go to the beach, right ? :D00:36
admiral0btw00:36
admiral0i'm almost on a beach, and extremely drunk00:36
admiral0:D00:36
ieatlinti think admiral0 wins this sunday00:37
djszapi_well, it is not Sunday in Finland for instance xD00:37
admiral0i will be like this all week00:37
admiral0:D00:37
admiral0prøblem?00:37
djszapi_so it is unfair to finns :p00:37
admiral023 mins and it's monday for me too :>00:37
ieatlinti think some finns might be having a bad week00:38
ieatlinthah, well, it's only 2:38pm here00:38
ieatlintby 11:38pm, i too will be quite drunk00:38
admiral0ieatlint: i know i know00:38
admiral0when i met you on IRC you were quite drunk00:39
ieatlintsounds about right00:39
admiral0djszapi_: where are you atm?00:40
admiral0ieatlint: u.u00:40
djszapi_admiral0: not sure :D00:40
admiral0ahahah00:40
admiral0djszapi_: stop being quantic00:40
*** NIN101 has quit IRC00:40
robertjwdo we have sources for /bin/develsh or is that closed?  and is there any reason not to set the default root shell to /bin develsh?00:41
rashm2khey guys00:41
djszapi_robertjw: yep00:42
djszapi_we do have00:42
djszapi_apt-get source ...00:42
rashm2kin PR1.2 we could install examples which showed various QML/QT elements in use, I can't install it anymore00:42
djszapi_http://harmattan-dev.nokia.com/pool/harmattan/free/d/develsh/ -> here you can see00:42
rashm2kany ideas where I can grab this from?00:42
admiral0djszapi_: nokia should release sources for the UX00:42
djszapi_robertjw: well, yes many00:42
djszapi_robertjw: develsh should be used only developer mode00:43
djszapi_ash is the default shell iirc00:43
djszapi_rashm2k: please stop using QT00:43
djszapi_it is Qt* :)00:43
djszapi_ieatlint will prepare the guns for this statement of mine ;)00:43
rashm2kokay i'll use qt00:43
rashm2kno need for caps ;-)00:43
djszapi_admiral0: who cares about nokia :)00:44
admiral0bwahaha00:44
admiral0djszapi_: are you in jollamobile?00:44
djszapi_no, I dislike that00:44
djszapi_(sincerely)00:44
admiral0?!00:44
admiral0dafuq00:44
djszapi_rashm2k: what examples exactly?00:44
rashm2kThere were installed via the developer options in the Nokia N9, I can't remember exactly.00:45
rashm2kbut it was just showing different qml widgets00:45
rashm2klike buttons, listviews etc.00:46
*** Hurrian has joined #harmattan00:46
ieatlintdjszapi_: i have better intolerances to kill people for than your apathy about nokia00:46
ieatlintlike batman fans or something00:46
rashm2kabit like this:http://harmattan-dev.nokia.com/docs/ux/pages/App_basic_view.html00:47
rashm2kbut on your Nokia N900:47
admiral0ieatlint: lol00:47
admiral0ieatlint: dude, where are you from, you sound finn00:47
pahmm..00:48
ieatlintcalifornia00:48
djszapi_rashm2k: you can always check the widget gallery out00:48
pai have a slider in one page that has to change the property of the rectangle in another page00:48
pai guess i cant directly address the rectangle id.opacity, right?00:48
rashm2klink please?00:48
djszapi_pa: yes, you can00:48
paat least it doesnt work00:48
djszapi_you just need to instantiate the pages in the main.qml00:49
djszapi_and then you can refer to items that way.00:49
pahm.. but i do and it doesnt work.. or do i have to go pageid.itemid.opacity?00:49
paah wait00:50
djszapi_yes of course00:50
djszapi_qml will not know automagically which page you would like to use ...00:50
pamh.. bad design.. i call all the pages "top" :)00:50
pagood to know for the next time :p00:50
djszapi_yeah, just call them bottom00:50
djszapi_that will fix it :-D :-D00:51
rashm2kahh source code is here:00:51
rashm2khttp://qt.gitorious.org/qt-components/qt-components/trees/master/examples/meego00:51
pagood that refactoring works :)00:52
djszapi_and here you can find the mtf examples: http://harmattan-dev.nokia.com/pool/harmattan/free/libm/libmeegotouch/00:52
*** gabriel9 has joined #harmattan00:53
pahm00:53
panow i get:00:53
paqrc:/qml/meeTrainer/SettingsPage.qml:472: ReferenceError: Can't find variable: monitorPage00:53
pamaybe i dont instantiate it in main.qml00:53
palet see00:53
paah, its called differently00:54
paand no, the id didnt matter :)00:54
panow i recall00:54
rashm2kThanks!00:54
djszapi_the id does matter00:54
payes, but i change it in main.qml00:55
*** Estel_ is now known as fsdf00:55
*** fsdf is now known as Estel_00:55
rashm2ksource code for that link?00:56
djszapi_change it in main.qml ?00:56
djszapi_what does that mean?00:56
djszapi_id should be specified there.00:56
djszapi_it is not changing, it is assigning.00:56
djszapi_rashm2k: http://meego.gitorious.org/meegotouch/libmeegotouch/trees/master/demos/widgetsgallery00:58
djszapi_but it is not QML, it is C++: MTF:00:58
djszapi_MTF.*00:58
djszapi_as for the qt components (qml), check out the demos and examples folder for meego: https://qt.gitorious.org/qt-components/qt-components/trees/master00:59
rashm2kthats it00:59
rashm2kthe link above is what I want00:59
rashm2kexamples/meego/00:59
djszapi_ieatlint: still there?01:05
pashit i wanted to finish the app today, but it will take me one more evening i m afraid01:06
pastill have to add the recording01:06
djszapi_you do not need to rush01:06
ieatlintyes01:06
djszapi_ieatlint: draft, but anyway: http://paste.kde.org/~lpapp/525044/01:07
ieatlintlooks fine...01:08
ieatlinti've been told that rim is handing out devices to devs a lot01:09
ieatlintgood luck :)01:09
*** Venemo has quit IRC01:09
djszapi_yep, but I have been told today the dev alpha phone is a kinda crap01:09
djszapi_so the playbook might be a better target01:09
*** admiral0 has quit IRC01:10
djszapi_though, they have also said that, once the qt phone is out, they provide a brand new hardware with the released software to the developers owning now a dev alpha version.01:10
ieatlintmeh, i'm still convinced the future is with tizen01:11
djszapi_and with guns01:12
djszapi_and with bloody smells, plus cannibal corpses01:12
ieatlintnot sure about that second part about smelling blood and zombies01:13
ieatlintalthough the CDC, a gov agency, did release a statement insisting the zombie apocalypse wasn't happening after a few notable cases of canabilism01:14
djszapi_interesting01:14
djszapi_btw, someone told me that today, the labor union was eliminated in the US. Is that even true?01:15
ieatlintuh, no, it's not01:15
*** heymaster has quit IRC01:15
ieatlintthe only thing he could possibly be referring to is a thing in wisconsin that happened a while ago01:16
*** e-yes has quit IRC01:18
*** hardaker has quit IRC01:36
*** rcg has quit IRC01:47
pawould someone be crazy if wanting to go to work in IT in the usa?01:50
*** auser has joined #harmattan01:51
*** gabriel9 has quit IRC01:55
*** messerting has quit IRC01:55
*** DeusIX has quit IRC01:57
*** beford has quit IRC02:02
*** e-yes has joined #harmattan02:07
*** luke-jr has quit IRC02:11
*** lfranchi has quit IRC02:12
*** luke-jr has joined #harmattan02:12
*** qwazix has quit IRC02:13
*** natunen has quit IRC02:15
*** lfranchi has joined #harmattan02:20
*** auser has quit IRC02:22
*** hardaker has joined #harmattan02:38
*** e-yes has quit IRC02:43
*** mschlens has quit IRC02:43
*** mschlens has joined #harmattan02:45
*** Enforcer has joined #harmattan02:47
*** hardaker has quit IRC03:00
*** rashm2k has quit IRC03:07
njsfpa: depends on the company and specific IT area03:08
njsfdjszapi_: unions, specifically teachers, utility (ie gas, electric, phone), truckers and steel/auto workers are still strong, but getting weaker and weaker03:10
njsfother professions are mostly non unionized03:10
*** cckwes has joined #harmattan03:24
*** Estel_ is now known as dsfsdfsd03:33
*** dsfsdfsd is now known as Estel_03:33
*** Estel_ is now known as dsfsdfdgsdfsd03:34
*** dsfsdfdgsdfsd is now known as Estel_03:34
*** heymaster-laptop has quit IRC03:40
*** arcean has quit IRC03:49
*** mschlens has quit IRC04:02
*** imunsie has joined #harmattan04:03
*** mschlens has joined #harmattan04:04
*** minimec has quit IRC04:10
*** trx has quit IRC04:15
*** beford has joined #harmattan04:24
befordhi04:28
*** heymaster has joined #harmattan04:29
*** heymaster has quit IRC04:30
*** adlan has joined #harmattan04:32
*** mschlens has quit IRC04:36
*** mschlens has joined #harmattan04:38
*** Hurrian has quit IRC04:55
*** Hurrian has joined #harmattan04:56
*** hardaker has joined #harmattan05:01
*** Sazpaimon has quit IRC05:01
*** Sazpaimon_ has joined #harmattan05:02
*** Hurrian has quit IRC05:03
*** Hurrian has joined #harmattan05:05
*** cckwes has quit IRC05:10
djszapi_beford: sup05:28
djszapi_njsf: ???05:29
*** djszapi_ has quit IRC05:34
*** mschlens has quit IRC05:35
*** djszapi_ has joined #harmattan05:35
*** mschlens has joined #harmattan05:42
*** auser has joined #harmattan05:42
njsfdjszapi_: "btw, someone told me that today, the labor union was eliminated in the US. Is that even true?"05:47
*** natunen has joined #harmattan05:57
*** hardaker has quit IRC06:23
itsnotabigtruckdjszapi_ njsf: 'the labor union'? which one?06:25
itsnotabigtruckthere's a huge number of them and as far as i know, they're still around, and have been for a looooong time06:26
*** adlan has quit IRC06:27
njsfdjszapi_: I don't know, it was YOUR question06:27
*** adlan has joined #harmattan06:27
njsfoh sorry that was itsnotabigtruck06:27
itsnotabigtruckheh06:28
njsfbut I just assumed djszapi_ meant general labor unions06:28
itsnotabigtrucki figured i'd just list both of you06:28
itsnotabigtrucki mean, it doesn't really matter to programmers since professionals aren't normally part of unions06:28
djszapi_well, they are06:41
djszapi_in Finland06:41
djszapi_beford: I wonder if I still have shell access to the Mac.06:41
*** azeem has quit IRC06:42
befordhi06:42
befordno you dont06:42
befordi swapped the hdd for a sdd06:42
beford:P06:42
befordreinstalled the whole thing06:42
djszapi_k06:43
*** azeem has joined #harmattan06:44
* djszapi_ should really finish the command line parser for qt506:49
* djszapi_ should really finish tons of projects06:53
djszapi_so we may need to pay 100 EUR for a jolla mobile developer device? Ridiculous.07:00
*** rlinfati has joined #harmattan07:13
*** hardaker has joined #harmattan07:14
*** natunen has quit IRC07:14
*** rlinfati has quit IRC07:16
*** adlan has quit IRC07:16
*** adlan has joined #harmattan07:17
*** mschlens has quit IRC07:22
*** hardaker has quit IRC07:23
*** mschlens has joined #harmattan07:24
*** imunsie has quit IRC07:34
*** hardaker has joined #harmattan07:38
robertjwLooking for "screen".  It doesn't seem to be in any of the repos.07:57
*** hardaker has quit IRC08:10
Elleorobertjw: http://repo.pub.meego.com/home:/rzr:/debian/MeeGo_1.2_Harmattan_Maemo.org_MeeGo_1.2_Harmattan_standard/ <-- this has a build of tmux08:10
Elleorobertjw: http://repo.pub.meego.com/home:/djszapi/MeeGo_1.2_Harmattan/armel/ <-- screen08:11
robertjwexcellent, thanks08:18
*** xarcass has joined #harmattan08:22
*** imunsie has joined #harmattan08:22
*** Sazpaimon_ has quit IRC08:43
*** Sazpaimon_ has joined #harmattan08:43
*** e-yes has joined #harmattan08:57
*** ab has joined #harmattan08:59
*** hardaker has joined #harmattan09:00
*** Siosm has joined #harmattan09:01
*** Siosm has quit IRC09:18
*** rnovacek has joined #harmattan09:19
*** eman has left #harmattan09:25
djszapi_robertjw: yep, I packaged screen back then09:25
djszapi_though, please do not ever use my repository09:25
*** eman has joined #harmattan09:25
djszapi_use the community repository09:25
djszapi_so that link above is broken09:25
djszapi_rzr: why did you remove screen from the community repository?09:28
djszapi_I have added that a long ago. Please fix this, and the screen application back.09:29
*** messerting has joined #harmattan09:29
*** Sazpaimon__ has joined #harmattan09:30
*** Sazpaimon_ has quit IRC09:30
*** e-yes has quit IRC09:33
*** natunen has joined #harmattan09:36
*** djszapi_ has quit IRC09:40
*** Venemo_N9 has joined #harmattan09:40
*** djszapi_ has joined #harmattan09:41
Venemo_N9morning09:51
djszapi_sup09:53
*** gabriel9|work has joined #harmattan09:55
*** vladest has quit IRC09:55
*** hardaker has quit IRC10:00
*** rcg has joined #harmattan10:04
*** auser has quit IRC10:05
*** tom has joined #harmattan10:08
*** rcg has joined #harmattan10:12
*** whatsa has joined #harmattan10:16
*** Venemo_N9 has quit IRC10:21
*** Venemo_N9 has joined #harmattan10:24
*** Hei_Ku has quit IRC10:28
*** jpwhiting has quit IRC10:29
*** Hei_Ku has joined #harmattan10:29
*** tbf has joined #harmattan10:29
*** jreznik has joined #harmattan10:40
*** ant has joined #harmattan10:41
*** e-yes has joined #harmattan10:42
*** M4rtinK has joined #harmattan10:47
*** Venemo_N9 has quit IRC10:48
*** Venemo_N9 has joined #harmattan10:48
*** pawky has joined #harmattan10:52
*** beford has quit IRC10:54
*** khertan__ has quit IRC10:57
*** ant has quit IRC10:59
*** khertan_ has joined #harmattan11:02
*** ant has joined #harmattan11:04
*** Venemo_N9 has quit IRC11:11
*** lordross has joined #harmattan11:12
*** tbf has quit IRC11:16
*** qwazix has joined #harmattan11:16
*** tbf has joined #harmattan11:16
*** cvaldemar has joined #harmattan11:22
*** djszapi_ has quit IRC11:33
*** M4rtinK has quit IRC11:35
*** lylyc has joined #harmattan11:42
*** tom has quit IRC11:44
*** lylyc has quit IRC11:48
*** Pali has joined #harmattan11:57
*** qwazix has quit IRC11:58
*** messerting has quit IRC12:07
*** qwazix has joined #harmattan12:21
*** vladest has joined #harmattan12:22
*** imunsie has quit IRC12:25
*** tom___ has joined #harmattan12:31
*** qwazix has quit IRC12:34
*** mike7b4 has quit IRC12:34
*** qwazix has joined #harmattan12:34
*** khertan_ has quit IRC12:35
*** rcg has quit IRC12:36
*** cvaldemar has quit IRC12:47
*** ArkanoiD_ has joined #harmattan12:49
*** drf___ has quit IRC12:50
*** drf__ has joined #harmattan12:51
*** drf__ has joined #harmattan12:51
*** mike7b4 has joined #harmattan12:51
*** Hurrian has quit IRC12:55
*** Pali has quit IRC13:00
*** cvaldemar has joined #harmattan13:00
*** rcg-work has joined #harmattan13:00
*** piggz has joined #harmattan13:03
*** adlan has quit IRC13:07
*** Hurrian has joined #harmattan13:08
*** Pali has joined #harmattan13:08
*** Pali has quit IRC13:15
*** e-yes has quit IRC13:20
*** mike7b4 has quit IRC13:21
*** KRF has quit IRC13:23
*** KRF has joined #harmattan13:24
*** faenil has quit IRC13:26
*** faenil has joined #harmattan13:31
Lava_CroftWEEEHHOOOO13:42
Lava_Croftit took me about 6 phonecalls13:42
Lava_Croftand 1.5hours of paying Nokia Care13:43
Lava_Croftbut i fucking finally know what they did to my n913:43
Lava_Croftthey replaced it with another one13:43
* Lava_Croft wipes his forehead13:43
*** deztructor_ has joined #harmattan13:43
Lava_CroftNokia should stop hiring arabs that are hard to understand13:43
*** lizardo has joined #harmattan13:44
*** mike7b4 has joined #harmattan13:44
*** deztructor_ has quit IRC13:45
pa:D13:48
*** deztructor has joined #harmattan13:57
*** heymaster has joined #harmattan13:57
*** tom___ has quit IRC14:02
paok please14:03
pasomeone help me.. how the hell do i get rid of the "download failed" problem?14:03
pait seems that, if for whatever reason a package fails to download once14:03
pathen no matter what, it wont download again14:04
*** Pali has joined #harmattan14:05
*** e-yes has joined #harmattan14:06
*** heymaster has quit IRC14:17
Hurriananyone else think tactile feedback on N9 is the best system you've ever used?14:19
*** NIN101 has joined #harmattan14:25
paits nice yes :) it would be even better if it would work with audio feed back too14:41
pabut on my phone there are someinterferences14:42
Lava_Croftpa: maybe the downloaded file is still somewhere14:44
Lava_Croftand it keeps trying to use it14:44
paLava_Croft, i removed everything in var cache apt archives partial14:44
Lava_Croft:<14:44
pastill it doesnt work14:44
Lava_Croftreboot? i have no idea14:45
patried :)14:45
Lava_Croftreboot always sounds like a good idea! :)14:45
Lava_Crofthah!14:45
Lava_Croftyou are downloading via ovi orso?14:45
pahm.. store14:45
Lava_CroftOvi Store14:45
pais that the same?14:45
payes14:45
Lava_CroftNokia Store whatever14:46
Lava_Crofti have no idea where it keeps Ovi downloads14:46
Lava_Croftor partial downloads14:46
pathe partial failed ones were in cache/apt/archives/partial14:46
pathey are called *.FAILED14:46
Lava_Croftmy N9 is still at Nokia Care, so i cant check14:47
Lava_Croftwell, my N9 isnt, but the one they replaced it with is :)14:47
jonniand it depends what application your are trying to download, there are some which are currently known to fail everytime14:47
paso14:47
paopera14:47
paand q to-do14:47
Lava_Croftopera should work14:47
paopera is an update14:47
pa(in my case)14:48
jonnilike firefox and opera usually fail to download from ovi store, because of version number conflict14:48
Lava_Crofttried removing opera altogether?14:48
Lava_Croftand installing clean from ovi14:48
pai could try to remove opera14:48
Lava_Crofti know that updating via OVI likes to fail14:48
jonniremoving will not help, you can only download them from web browser /download url14:48
Lava_Croftbecause ovi is just bad14:48
Lava_Crofto14:48
jonniits because some regions download link gives missmatch version of deb package to store client, which gives you download error message (as it doesnt know how to say "version missmatch".14:50
jonniyou can download it from commandline cli, but as that is undocumented feature, the official kludge around it is to download the deb with your pc:s web browser /download url.)14:51
*** jluisn has joined #harmattan14:51
Lava_Croftjesus14:53
Lava_Croftwhat a fiasco14:53
Lava_Croftsymbian team built ovi?14:53
pai see14:55
pajonni, and how do i do that from commandline?14:56
pai mean, i dont even know which one is the ovi store commandline client14:56
jonnipa: sorry that one is not public information afaik :=)14:56
pai see14:56
paso im stuck not being able to update opera or installing q todo14:57
jonnibut its in the default firmware if you know where to look :)14:57
pahm well i dont :) im a newbie, im playing around with smartphones only since april :)14:57
paok maybe i see it14:58
pano, thats the gui version14:59
jonnijust use pc webbrowser, and open store.ovi.com/content/269986/download and store.ovi.com/content/255196/download   it will give you the deb packages15:00
paah thanks!15:00
pathats how u made ur little script :)15:02
*** shadeslayer has quit IRC15:07
*** e-yes has quit IRC15:08
*** shadeslayer has joined #harmattan15:12
*** heymaster-laptop has joined #harmattan15:13
*** deztructor has quit IRC15:17
*** mschlens has quit IRC15:24
*** mschlens has joined #harmattan15:25
*** trx has joined #harmattan15:33
*** mschlens has quit IRC15:35
*** mschlens has joined #harmattan15:37
*** robertjw has quit IRC15:41
*** mschlens has quit IRC15:49
*** mschlens has joined #harmattan15:51
*** Hurrian has quit IRC15:54
*** piggz has quit IRC16:00
*** piggz has joined #harmattan16:00
*** natunen has quit IRC16:07
mf2hdso, how to install dyndns client in n9?16:09
jonnimf2hd: same way as any linux system?16:09
mf2hdso there is no ready package?16:10
pai'd stop using dyndns due to their ugly polithics16:12
pathey killed all my domains, coz those domains are not free anymore16:12
mf2hdwell, i did not mean especially dyndns16:12
mf2hdwhatever dynamic dns service would be fine16:12
*** jpwhiting has joined #harmattan16:14
*** piggz has quit IRC16:14
*** piggz has joined #harmattan16:14
jonnimf2hd: for example inadyn compiles just fine for N9, and it supports dyndns, afraid.org, zoneedit.com and no-ip.com16:18
mf2hdk. ty. there is no ready .deb to n9?16:18
jonnimost likely no, I compiled it just for myself and didnt release any deb. But ofcourse you can just google around, if its in community repo.16:20
mf2hdwell, i'm not capable of compiling at the moment because crosscompiling is not in my skill list yet and installing build essentials directly to phone is atm broken i think. so it's a no go...16:25
mf2hdbut it would be very helpfull if there is some quick and dirty scratchbox compiling howto for harmattan16:26
jonnihttp://harmattan-dev.nokia.com/docs/library/html/guide/html/Developer_Library_Alternative_development_environments_Platform_SDK_user_guide_Installing_Harmattan_Platform_SDK.html16:28
mf2hdthx again...16:29
*** messerting has joined #harmattan16:51
*** xarcass has quit IRC16:51
phakohrm16:52
phakomalfed my phone16:53
*** heymaster has joined #harmattan16:53
jonniphako: heh, what were you trying to do?16:54
phakostracing sth and wrote strace -o /usr/bin/tracker-extract16:55
phakoand i crashed mz laptop#s usb16:56
jonniah yes, /usr/bin is immutable dir if you write there it malfs the device.16:57
jonniyou should have used /tmp or /opt16:58
paany advice for a free web hosting?17:01
pa(if any adviceable)17:01
jonniadvice is to get a paid one :-)17:02
pa:)17:02
pathing is, i dont want to open my geofiltering to the world17:02
paso i cant do it at home17:02
jonnifree, slow, full of advertizements vs paid, fast without ads.17:02
pai mostly need it to put on the webpage for the apps17:03
paand maybe my cv too17:03
paaltervista seems to work17:03
*** DocScrutinizer has quit IRC17:03
*** DocScrutinizer has joined #harmattan17:03
*** DocScrutinizer05 has quit IRC17:03
*** DocScrutinizer05 has joined #harmattan17:03
*** vladest_ has joined #harmattan17:03
*** e-yes has joined #harmattan17:03
*** vladest has quit IRC17:05
*** vladest_ is now known as vladest17:05
jonnipa: might work, untill your cv page has pr0n ads next to it :)17:06
pait seems that altervista does not add ads17:07
paat least on the page i made17:07
*** messerting has quit IRC17:07
*** piggz has quit IRC17:08
phakohrm17:08
phakocould it just stay up like 6 seconds longer so I could reinstall tracker, please17:09
jonniphako: have you tested the no-lifeguard-reset option?17:11
phakohah!17:12
phakoworks17:12
phakounmalfed \o/17:12
phakojonni: I managed to download the pagage in one power-cycle and install it on the next17:12
jonniheh17:12
phakoaaaaand my JPEG extraction issue is fixed \o/17:13
phakoawsome17:13
pado you guys know how to visualize all the IPs associated to a domain name?17:13
padig?17:13
ArkanoiD_https://bugzilla.redhat.com/show_bug.cgi?id=537720 what a crap17:13
phakono, still doesn't work17:17
phakodoes anyone know if strace changes some creds ?17:17
phakoJPEG extraction works when run inside strace and doesn't when without :-/17:18
phakoas root17:18
jonnithats your problem most likely, tracker should never be runned as root, if you run it as root, it most likely writes files in root permissions and system stops working, as all tracker processes are runned as user17:21
phakojonni: that doesn't write files17:21
*** danielcbit has joined #harmattan17:21
phakojonni: and it was broken before I ever ran it as root ;)17:22
jonniwhat are you trying to do exactly and what doesnt work?17:22
phakopictures taken by the camera are missing ALL metadata information since PR1.317:22
phakoand the reason seems to be that tracker-extract can't find a proper extractor17:22
phako/usr/lib/tracker-extract -f /home/user/MyDocs/DCIM/<any-jpeg>17:23
phakodoesn't work as user17:23
phakodoesn't work as root17:23
phakoworks when run as strace -o /dev/null  /usr/lib/tracker-extract -f /home/user/MyDocs/DCIM/<any-jpeg>  as root17:23
ZogG_laptoplol just found out that <esc><esc><esc> works like <tab><tab> to autocompete17:23
jonniby default firmware doesnt have tracker-extrack binary in system17:23
*** rnovacek has quit IRC17:23
phakojonni: yes, it has, it's in /usr/lib17:24
phakoer17:24
phako/usr/lib/tracker sorry17:24
*** rm_work has joined #harmattan17:24
*** rm_work has joined #harmattan17:24
phakoand the problem isn't on every phone17:25
*** piggz has joined #harmattan17:25
jonnithat works as user just fine, so most likely you have broken it by running it as root17:26
phakojonni: no. It wasn't running as user before.17:26
phakoI only ever installed developer mode on this phone after I discovered that it does not work17:26
phakojonni: and as I said, it depends on the phone17:27
jonniwell Im running it as user and it works17:27
jonnibut if someone has runned it as root, then it might break the filesystem permissions17:27
phakoso out of a sample of 5 phones it fails on two and works on 317:27
jonnihave you tried stracing it as user?17:28
phakoyes17:28
phakoit does a lstat64 on the file and then that's it17:28
jonniwhich file?17:29
phakothe jpeg to be extracted17:29
phakothe rest of the output looks similar. ON a work strace there's a open() on the file after the lstat17:29
phako*working17:29
jonniand is your jpeg files permissions corrent, owned by root vs user etc?17:30
phakowhatever the camera creates17:30
phakouser:root17:31
jonnido you have pastebin logs with strace and without?17:32
phakosec17:32
jonnibut anyways extract command should never be runned as root, as it writed the logs to dir that is only writable by user, so that will fail automaticly.17:35
phakoit doesn't if you run with -f17:36
phako-rw-r--r--    1 user     users       106968 Jul 25 23:52 tracker-extract.log17:36
phakoworking: http://pastebin.com/SFE4Xcf417:39
phakonon-working: http://pastebin.com/LTALu61s17:39
*** cvaldemar has quit IRC17:41
*** hardaker has joined #harmattan17:43
*** rcg-work has quit IRC17:47
jonnithat wasnt that helpfull as it was missing stdout.....    devel-su; su - user; strace /usr/lib/tracker/tracker-extract -f pathtofile > /tmp/strace.txt 2>&1;  /usr/lib/tracker/tracker-extract -f pathtofile >> /tmp/strace.txt17:48
jonniif you can produce that kind of pastebin then its more helpfull to see users strace vs nonstrace17:48
*** hardaker has quit IRC17:49
*** cityLights has quit IRC17:59
phakohttp://pastebin.com/SLDnA7jR18:00
phakouser18:01
*** gabriel9|work has quit IRC18:01
*** jluisn has quit IRC18:05
phakoand root: http://pastebin.com/jrLD9UHf18:07
*** heymaster has quit IRC18:07
*** heymaster has joined #harmattan18:15
*** vladest has quit IRC18:15
*** shadeslayer has quit IRC18:21
*** shadeslayer has joined #harmattan18:25
*** heymaster has quit IRC18:26
*** natunen has joined #harmattan18:27
*** Estel_ has quit IRC18:28
*** heymaster has joined #harmattan18:29
*** heymaster has quit IRC18:31
*** heymaster has joined #harmattan18:33
jonniphako: it really weird that tracker only shows one extractor, are you in PR1.3, one thing which might help would be "apt-get --reinstall install tracker"18:35
*** Estel_ has joined #harmattan18:37
jonnior might be corrupted mime.cache file.18:38
*** hiemanshu is now known as hiemanshu|afk18:38
jonniand ofcourse if nothing else helps, then full reflash with secure erase.18:38
*** Sazpaimon__ has quit IRC18:43
*** Sazpaimon__ has joined #harmattan18:43
*** Sazpaimon__ is now known as Sazpaimon18:43
*** e-yes has quit IRC18:43
*** beford has joined #harmattan18:47
*** lordross has quit IRC18:49
*** heymaster has quit IRC18:52
*** heymaster has joined #harmattan18:53
*** NIN101 has quit IRC19:01
*** NIN101 has joined #harmattan19:03
*** hiemanshu|afk is now known as hiemanshu19:03
*** valdur55 has joined #harmattan19:05
*** khertan_ has joined #harmattan19:13
befordkhertan_: you are the one i needed =)19:13
khertan_héhé :)19:14
khertan_hi19:14
pajonni, can i load embedded fonts, with the font loader? e.g., qrc:/ stuff19:14
befordhey khertan_, how is it going?19:15
*** heymaster has quit IRC19:15
khertan_fighting with my daughter who want to try to use my keyboard (8 months old)19:15
khertan_not easy to write :)19:15
*** robertjw has joined #harmattan19:16
befordhaha19:16
khertan_and just released khtnotes 1.519:16
befordcool19:16
khertan_if i understand you got problems with invoker19:18
befordoh I was able to fix that, I wanted to ask you some pyside and qml related questions, its about listview and abstractlist. its not updating the ui after I change it in the code, it updates it just when i scroll the list :/19:18
*** NIN101 has quit IRC19:19
khertan_did you use  beginInsertRows()  endInsertRows() beginRemoveRows()    endRemoveRows() ?19:20
*** [XeN] has joined #harmattan19:20
befordyea :/19:20
khertan_beford:    or beginResetModel() and endResetModel if you modify too much19:20
befordnot sure if i need to emit a signal or something from the Abstract19:20
khertan_beford: did you have some code ?19:20
befordI modify the whole thing :p19:21
khertan_i ll look it later19:21
befordyea its a bit long but I can send you the deb if you have time to try it19:21
khertan_time to give bath19:21
khertan_send it to my email i ll look19:21
*** valdur55 has quit IRC19:22
*** messerting has joined #harmattan19:28
*** kairoscrazia has joined #harmattan19:29
jonnipa: test and try. On some api's there are limitation that it cannot load from qrc, but I dont remember if font loader has that limitation or not.19:30
pajonni, ok, it seems not to work19:31
pathen im not sure what to do19:32
jonniwhy do you want to hide your font inside qrc anyways?19:33
robertjwis there a oneclickinstaller for N9 PR 1.3?19:33
pawell.. maybe it's commercial, and not redistributable19:34
jonnirobertjw: there is no once click installers for pr1.0, pr1.1, pr1.2, so what do you think :)19:34
jonnipa: well qrc is not protected in anyways, I've made me a little qrc extractor plugin which can dump the whoe qrc dir structure from binaries :)19:35
jonniwhoe=whole19:35
*** tom___ has joined #harmattan19:35
pahm i see19:35
jonniofcourse it can slow the average user to find the font though19:36
pajonni, do you know if there's any way to load the font in memory, and tell FontLoader to use that instead?19:36
jonnipa: you could ofcource hide the font inside the binary, and then extract it to /home/user/private (that way only your app can see it)19:36
jonni(if app has app uid, then file in that dir is only readable by the app)19:36
*** faenil is now known as faenil_pingme19:37
paactually it looks like it works with the fontloader19:37
pa(and qrc)19:37
pabut in source: i have to omit the qrc:/19:38
paanyway, in the simulator the font looks the same19:38
panow i try to deploy and see19:38
jonniare you using pr1.0, pr1.1 or pr1.2 simulator?19:38
pahm..19:39
pai have only one19:39
pa(not emulator)19:39
jonnipa: the old one was really back, I advice to use the sdk maintenance tool and fetch pr1.2 simulator, there ui layout and fonts matches the real device :)19:40
jonniback=bad19:40
pahm19:40
pagood tip, thank! even tho.. i ran the maintenace tool yesterday19:40
paand it showed me no updates19:40
*** gabriel9 has joined #harmattan19:40
jonniit isnt a update, you have to seperately choose the simulator, as it was not installed by default, so its not going to be update19:41
pai see19:41
pai try19:41
pain any case, the font looks different on device, but i selected a condensed font, and it just doesnt look condensed, on the label19:41
paany idea why?19:41
jonniold simulator label didnt work right, thats why use pr1.2 simu and label matches the device19:42
pano i mean, on the device19:42
jonnihmm, device looks different on device compared to what?19:43
paok so i already have simulator 1.219:43
*** arcean has joined #harmattan19:43
paso, font on simulator looks different compared to font on device19:43
pawhich should be however condensed, and its not19:43
pano wait19:44
jonniso you have pr1.0, pr1.1 and pr1.2 simulator installed?19:44
pai think it just doesnt work19:44
pai have only simulator 1.2.0-719:44
paand i have emulator 1.0 1.1 and 1.219:44
jonniah sorry, I meant that emulator 1.2 is the one that you should use19:45
jonnisimulator is just obsolete piece of something.19:45
paah okay :)19:45
pait was just fast to see the results of qml :)19:45
pais it actually possible to "scale" a label only horizontally?19:46
pacoz i think the font is right, but is somehow "scaled to normal"19:47
paand it looks weird, coz it's a condensed font19:47
befordany idea why the lock screen sometimes shows the operator name and sometimes id doesnt19:47
jonnibeford: its a feature of composite layout drawing.19:49
befordbug? :P19:49
jonnibeford: feature, as its not critical bug, its called feature which is never going to be fixed :)19:50
pathe lock screens also always forgets that some messages have been read and stuff19:50
befordI thought it was a setting or something, I dont remember seeing it on PR1.219:51
befordkhertan_: beginResetModel and endResetModel worked :)19:52
paoh and by the way, for some reason my app does segmentation fault on the emulator (pr1.2)19:55
panot exactly sure why19:55
paon simulator and on device it works19:55
phakojonni: I've disabled the other ones with -m libextract-jpeg19:59
phakoand I've already reinstalled to "unmalf"20:00
khertan_oups http://apps.formeego.com/ look down : 40220:06
*** tom___ has quit IRC20:09
*** Venemo_N9 has joined #harmattan20:11
*** NIN101 has joined #harmattan20:15
*** shadeslayer has quit IRC20:23
*** kairoscrazia has quit IRC20:25
*** jreznik has quit IRC20:25
*** Raimiss has joined #harmattan20:31
*** shadeslayer has joined #harmattan20:33
*** Pali has quit IRC20:34
*** e-yes has joined #harmattan20:36
*** NIN101 has quit IRC20:39
*** njsf has quit IRC20:40
*** njsf1 has joined #harmattan20:40
*** NIN101 has joined #harmattan20:40
*** ArkanoiD_ has quit IRC20:41
pado you know if there's a way to have a number formatted like %03d, in qml?20:43
*** shadeslayer is now known as shadeslayer_20:44
*** njsf1 has quit IRC20:44
*** shadeslayer_ is now known as shadeslayer20:45
*** Venemo_N9 has quit IRC20:49
*** gabriel9 has quit IRC20:49
*** rzr is now known as rZr20:52
*** ArkanoiD_ has joined #harmattan20:53
*** vladest has joined #harmattan20:54
*** Raimiss has quit IRC21:06
*** Raimiss has joined #harmattan21:09
*** messerting has quit IRC21:10
*** infobot has quit IRC21:13
*** Raimiss has quit IRC21:13
*** Raimiss has joined #harmattan21:15
*** infobot has joined #harmattan21:16
*** ChanServ sets mode: +v infobot21:16
*** Venemo has joined #harmattan21:23
*** mschlens has quit IRC21:26
*** mschlens has joined #harmattan21:27
*** Ariadeno has joined #harmattan21:34
*** Ariadeno has left #harmattan21:34
*** djszapi_ has joined #harmattan21:37
*** Jare has quit IRC21:39
djszapi_sup21:39
piggznot much..tired after a weekend at a festival, just got a raspberry pi but too tired to do much with it!21:41
djszapi_heh lucky21:41
djszapi_as for me, it is still vaporware :D21:41
djszapi_not that the rpi could beat my pandaboard, but whatever :)21:41
piggzmine was from the #qt-onpi program...have a second on order21:41
*** jaywink has joined #harmattan21:55
*** gabriel9 has joined #harmattan21:57
padjszapi_, do you by chance know if it is possible to package without deploying every time, in qtcreator?22:01
*** arcean_ has joined #harmattan22:01
pacoz it seems build builds but do not package22:01
*** tom___ has joined #harmattan22:01
* djszapi_ hates QtCreator22:01
*** arcean has quit IRC22:02
*** rZr is now known as rzr22:03
djszapi_rzr: time for you to work22:05
rzrshoot22:06
djszapi_amend the screen package in the community repository that was removed for ... why?22:06
djszapi_people were looking for that application I packaged a year ago or so22:06
djszapi_but it is not anymore in the repository ..22:06
rzrdidnt you want to move to the application projectrs ?22:06
djszapi_uh buh doh yep22:06
djszapi_we should add that repository as well to the wiki22:07
djszapi_I totally forgot that22:07
rzri never felt the need for that one :)22:07
djszapi_well, 99% of the majority :)22:07
djszapi_is the majority*22:07
rzr?22:07
djszapi_https://build.pub.meego.com/project/repositories?project=home%3Arzr -> so where is that exactly?22:08
djszapi_well, everybody wanted except you22:08
djszapi_having a goliath repository is not healthy.22:08
rzrhome:rzr:harmattan:applications ?22:09
rzrdjszapi_: debian does have a single repo , actually 3 but depending on licensing issues22:10
khertan_djszapi_: is there a reason for not including python module in vim you did years ago ?22:10
djszapi_khertan_: who cares about python :)22:11
djszapi_but yes, tons ...22:11
djszapi_rzr: yes... and debian has 1000 developers ...22:12
djszapi_and tons of packagers...22:12
rzri am one of them :)22:12
*** Estel_ has quit IRC22:12
*** Estel_ has joined #harmattan22:12
khertan_djszapi_: it s needed for many vim plugin22:12
djszapi_khertan_: python is in a crap state22:13
khertan_djszapi_: gnié ?22:13
* rzr loves the djszapi_ nuances 22:13
khertan_djszapi_: explain22:13
djszapi_nothing to explain, it is an axiom =)22:13
djszapi_half of the world uses python2, the other half python3, and a royal pain in the ass to walk this way22:14
khertan_djszapi_: lol22:14
djszapi_plus, we did not really have python packages22:14
djszapi_plus, we wanted to minimize stuff22:14
djszapi_plus, it was well proven with Nokia times etc22:14
djszapi_really not much need to make our life more difficult22:14
djszapi_for not much gain22:14
djszapi_someone has to maintain those packages ...22:15
*** Sniper_swe has joined #harmattan22:16
*** messerting has joined #harmattan22:17
*** khertan_ has quit IRC22:19
*** bedrock has joined #harmattan22:22
*** abun880007 has joined #harmattan22:24
*** abun880007 has quit IRC22:24
*** Raimiss has quit IRC22:25
Venemodjszapi_, actually, more than half of the world either doesn't care about python or don't know what it is22:32
djszapi_lol22:32
djszapi_Venemo: will you ever fix bugs in irc-chatter, or I just wasted my time ? :p22:33
Venemodjszapi_, I've already fixed a few of them :)22:34
djszapi_Venemo: useless if not released22:43
Venemodjszapi_, yet.22:43
Venemodjszapi_, rest assured that your time was well spent for the good of mankind22:44
djszapi_well, it was something like few months ago :-)22:44
djszapi_lol22:44
Venemono, few months ago I said I didn't have time for it. now I've actually fixed some :)22:44
djszapi_no, I mean I reported those loooong ago22:45
djszapi_and I cannot still install a deb package, where any of those are fixed.22:45
djszapi_and nowadays, I do not use internet on my phone anyway. :-)22:45
*** khertan_ has joined #harmattan22:49
*** Sniper_swe has quit IRC22:50
*** mon has joined #harmattan22:57
*** bef0rd has joined #harmattan22:57
monhi22:58
bef0rdhi22:58
djszapi_bef0rd: o/22:59
*** tom___ has quit IRC22:59
bef0rdhey djszapi_22:59
mon :)22:59
*** mon has left #harmattan23:09
*** faenil_pingme has quit IRC23:11
*** gabriel9 has quit IRC23:13
*** e-yes has quit IRC23:14
*** rcg1 has joined #harmattan23:16
*** bef0rd has quit IRC23:20
djszapi_rzr: so where is the app repository?23:20
MohammadAGO_o the N9 doesn't support CardDAV23:27
nibblernope.23:33
nibblerfor syncing contacts there's just just syncml and the nokia service (didn't investigate further, probably syncml too) - but it works. i'm happily syncing mine against funambol.23:35
*** tbf has quit IRC23:35
*** bef0rd has joined #harmattan23:35
*** njsf has joined #harmattan23:36
*** bef0rd has quit IRC23:36
*** jaywink has quit IRC23:37
*** Brownout_ is now known as brown23:40
paanyone interested in downloading contacts from multiple gmail accounts?23:42
paif so, i might release my app23:43
pa(via google api)23:43
jonniMohammadAG: it does, but from from gui23:50
payes, i read it actually supports a lot of protocols via libs23:51
*** lizardo has quit IRC23:57
MohammadAGjonni: Huh23:58
MohammadAGI want to sync with iCloud23:58

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