View Single Post
Posts: 401 | Thanked: 724 times | Joined on May 2010 @ Italy
#27
Originally Posted by eitama View Post
Thank you for taking my requests into consideration!
I understand what you mean about the privacy issues, indeed they exist - but you could put this as an option (default off) to report anonymously & manually, even more, keep a list on the phone of words that have been used with a counter per word,
then you go into the option, choose "Report usage" and a list with the words and checkboxes will appear, you can unselect the ones you don't like.

The reporting part is pretty easy, and HTTP post containing an XML body with a simple syntax like :
Code:
<root>
<word>
<name>hello</name> <count>5</count>
</word> <word>
<name>roommate</name> <count>5</count>
</word> <word>
<name>car</name> <count>7</count>
</word>
</root>
On the server side, you put PHP or ASP or Perl or C# and parse this, and automatically insert it into a dictionary.
I can help on the server side if you need - the only thing you need is a dedicated server (:

Another option :
You could also run a scan on the conversation history on 10 phones, and use that as a base statistics.
Really nice idea!i like it!
First of all i decided to change basical words order: atm for each word also subwords are listed (at start in alfabeticaly order). For example for "hello" you have "h","he","hel" and so on. I decided to put on the top complete words: so compositing "hello" you will have (probably): "i" "he" "gel" "hell" "hello". In this way abbreviation are at the end of the list from the first run. This can help a lot for spare words.

However i pull put also the option for send statistics: untill i have a dedicated server we can use simply an email with attached the dictionary file. If option is enabled a prompt appears each week and ask for sending it when a connection is available.
The big problem that i see is the "count": atm dictionary is loaded in memory and i have already problem about it. Today i thought about a possible solution and now im writing code to test it. If it works adding a count sholud not be a problem.

If you or someone others want write the function to send email (checking connection availability, date from last send,using QtMobility API,ecc) i will add it asap

PS scan conversation from 10 phones is more privacy-intrusive and i think that it cant give the same feedback as the previous idea!