Re: [SailfishDevel] graphDB (gnome - tracker) on sailfish

2016-06-07 Thread Peter Kovacs
I see we are not on the same page. Lucene: Apache LuceneTM is a high-performance, full-featured text search engine library written entirely in Java. It is a technology suitable for nearly any application that requires full-text search, especially cross-platform. I am not sure how that

Re: [SailfishDevel] graphDB (gnome - tracker) on sailfish

2016-06-06 Thread Peter Kovacs
t; eventually. Best regards, Timur On v, 2016-06-05 at 23:39 +0200, Peter Kovacs wrote: I changed the topic to something more apropriate. I took a brief look at tracker, and the goals and alround project sounds interesting. It is a slight different direction I had in mind, thought. But well it rem

[SailfishDevel] graphDB (gnome - tracker) on sailfish

2016-06-05 Thread Peter Kovacs
I changed the topic to something more apropriate. I took a brief look at tracker, and the goals and alround project sounds interesting. It is a slight different direction I had in mind, thought. But well it reminds me on how apple should have taggled their iOS Datamanegment but failed to do

Re: [SailfishDevel] Sailfish OS Open Source Community Collaboration Meeting 2nd of June 2016

2016-06-03 Thread Peter Kovacs
Cool thanks. Will take a look on the weekend. Thanks for the discussion. Alexey Andreyev <yetanotherandre...@gmail.com> schrieb am Fr., 3. Juni 2016, 10:12: > Tone Kastlunger, +1 :) > > Peter Kovacs, please, take a look at tracker implementation: > https://github.com/GNOME

Re: [SailfishDevel] Sailfish OS Open Source Community Collaboration Meeting 2nd of June 2016

2016-06-02 Thread Peter Kovacs
. All the Best Peter Tone Kastlunger <users.giulie...@gmail.com> schrieb am Do., 2. Juni 2016, 11:13: > Peter; > I'm curious, what brings you to the conclusion SQL (as in relational dbs) > is not ideal for transactional functionality? > > On Thu, Jun 2, 2016 at 10:41 A

Re: [SailfishDevel] Sailfish OS Open Source Community Collaboration Meeting 2nd of June 2016

2016-06-02 Thread Peter Kovacs
I would actually like to know why SQL stuff. Datastructure types I am think of on the Phone are relationships (Facebook style) or transactional. And both are not ideal to solve with relational dbs. I guess the Answer is because every one does it. But that is not really satisfactory. Would there

Re: [SailfishDevel] Open source in-app ad API helper for QML - please, join

2016-05-31 Thread Peter Kovacs
Ads are a classic earn design. As buying an App. Some Open Source enthusiasts are oppose these ways. And you find them in the Jolla Platform, because jolla is much closer to these idealistic views then Apple or Android. I personally don't not mind Ads, if I can switch them off for a

Re: [SailfishDevel] string to double in QML?

2016-05-21 Thread Peter Kovacs
Hello, # gives: QString not declared even if there is #include in main.cpp that is not sufficient! Quoted from: http://stackoverflow.com/questions/9500280/access-c-function-from-qml For any C++ code to be called from QML, it must reside inside a QObject. So best is to write your own class that

Re: [SailfishDevel] QSqlTableModel and running several remorses

2015-12-30 Thread Peter Kovacs
Hi Francoise, Yeah, sorry about that. I'm not used to working in team and I also avoid variable names that can look like keywords (i.e. "list"). I also always use "r" for the variable that is returned. I see. I use Longer Names to avoid the keywords stuff, like remorseList. IDE will always

Re: [SailfishDevel] QSqlTableModel and running several remorses

2015-12-28 Thread Peter Kovacs
Hello Francoise, I find your code a bit hard to read. It would be nice if you use full names like list instead of l. I know it is annoying, but makes live easier in the long run. Why do you have more then one Remorse? This is not clear to me. Maybe you can explain? Where do you close your

Re: [SailfishDevel] [Minutes] SailfishOS community meeting 26.11 + planning for next one 3.12

2015-11-27 Thread Peter Kovacs
t; you considered selling shares to the community? Or after all developing a > Jolla2? > > Regards, > Eli > > 2015-11-27 11:46 GMT+02:00 Ruediger Schiller <chem...@dostortugas.org>: > >> On Fri, Nov 27, 2015 at 07:28:17AM +, Peter Kovacs wrote: >> > Hello,

Re: [SailfishDevel] [Minutes] SailfishOS community meeting 26.11 + planning for next one 3.12

2015-11-27 Thread Peter Kovacs
tay in the adventure? All the best Peter E.S. Rosenberg <es.rosenberg+sailfishos@gmail.com> schrieb am Fr., 27. Nov. 2015 08:47: > 2015-11-27 9:28 GMT+02:00 Peter Kovacs <legi...@gmail.com>: > >> Hello, >> >> I am not able to join on next community meeting due t

Re: [SailfishDevel] [Minutes] SailfishOS community meeting 26.11 + planning for next one 3.12

2015-11-26 Thread Peter Kovacs
Hello, I am not able to join on next community meeting due to work restrictions I have. So I can not propose a topic. I am instead post my thoughts directly to this list. I think no 1 topic is to stabilise Dev efforts for SailfishOS. I do not believe to simply put sailfish in multiple places will

Re: [SailfishDevel] UX issues

2015-10-26 Thread Peter Kovacs
HI francois, My expectation is: 1 level - List of things -Tab short switches into 2 level detail - tab long deletes object. - menu generates new item( empty level detail) 2 level detail of object -tab property opens editor for that property ( new page if property is complex on screen if property

Re: [SailfishDevel] [Not TLS] How to use self-signed certificates transparently in a https POST/GET request with a QT Quick application?

2015-08-20 Thread Peter Kovacs
To be honest. I would open an ssh tunnel. That is all you need for encryption and authentification. As soon as the tunnel exist you can stream the data without the bloat of http. http://stackoverflow.com/questions/5589971/how-to-easily-establish-an-ssh-connection-in-qt I think ssh lib is also

Re: [SailfishDevel] QML arrays and memory leak

2015-05-04 Thread Peter Kovacs
Hi Kim, ohh! Okay! Have you tried splice instead? Array.prototype.splice (start, deleteCount [ , item1 [ , item2 [ , … ] ] ] ) I think maybe something like: accarr.splice(0,1,float) Looks more neat and it is in the normal javascript canon. Did not find the documentation on javascript and qt

Re: [SailfishDevel] QML arrays and memory leak

2015-05-04 Thread Peter Kovacs
Why use an array and not a vector or an Hash map? Am 04.05.2015 22:20 schrieb Kim Foder k...@foder.dk: Hi For some time I have been battling a memory leak in my pedometer app, after a lot of experimentation, I have found the problem to be my use of arrays (probably)! Whenever I receive

Re: [SailfishDevel] Commercial apps - when?

2015-04-25 Thread Peter Kovacs
Well, currently there is no payment option. So it is a step forward. Jolla is poor in a lot of ways. In my opinion currently it is only a niche option. I love the Jolla concept, but there is a long way to go. It is short sighted to think missing payment option will improve things. Honestly before

Re: [SailfishDevel] Build a Model with fixed items + dynamic ones

2015-04-17 Thread Peter Kovacs
I dont get it. A project status is a perfect field for a DB. The query would even group the project in the right way. select status , projectname from todolist group by statusRank ; then you could have some code that goes through the objects print project { arraycontainer.projectname } If

[SailfishDevel] trouble with SailfishOS SDK on Linux

2015-03-09 Thread Peter Kovacs
Hello everyone, I have Installed the binary package from the offical side. (http://releases.sailfishos.org/sdk/installers/1502/SailfishOSSDK-Beta-1502-Qt5-linux-64-offline.run) In addition I have installed virtualbox and loaded the kernel modules via the distribution (Arch Linux) tool chain.