| bio | website | andresrey.com.ar |
|---|---|---|
| location | Argentina | |
| age | ||
| visits | member for | 1 year, 3 months |
| seen | May 29 at 17:26 | |
| stats | profile views | 11 |
|
Dec 31 |
awarded | Notable Question |
|
Oct 9 |
awarded | Popular Question |
|
Jun 27 |
awarded | Nice Question |
|
Jun 25 |
comment |
Where's the stock keyboard's predictive dictionary located? @RichardBorcsik Here's a zip file with all the files. mugredelcajon.com.ar/system-apps.zip Be my guest if you want to investigate them. I hope i didn't give you my passwords inside those files :F |
|
Jun 25 |
comment |
Where's the stock keyboard's predictive dictionary located? @RichardBorcsik Here are the contents: pastebin.com/dzGf1CTs |
|
Jun 22 |
comment |
Where's the stock keyboard's predictive dictionary located? Yeah, this leads to the userdictonary database. Anyway, i'm broswing the data folder in order to find a similar database, hopefully, with the spanish dict. Thanks anyway! |
|
Jun 22 |
comment |
Where's the stock keyboard's predictive dictionary located? @jlehenbauer Yup, gingerbreaked. |
|
Jun 21 |
awarded | Commentator |
|
Jun 21 |
comment |
Where's the stock keyboard's predictive dictionary located? Mmmm seems that this is only applicable to Cyanogenmods. My stock firmware (LG Optimus Me/P350) doesn't have any latinIME.apk file or *.dict files inside of any apk in /system/app |
|
Jun 21 |
awarded | Supporter |
|
Apr 30 |
comment |
Where's the stock keyboard's predictive dictionary located? Found the same thing in my cellphone, but for some reason there's no spanish dictionary there (which my phone does have), at least judging by the filenames. |
|
Apr 29 |
asked | Where's the stock keyboard's predictive dictionary located? |
|
Apr 19 |
comment |
Strange .txt file that has the names of different presidents inside the android system folder I think that's the pastebin i used to post the mdb.py contents in this comment |
|
Apr 16 |
awarded | Promoter |
|
Apr 16 |
awarded | Nice Question |
|
Apr 14 |
comment |
Strange .txt file that has the names of different presidents inside the android system folder @eldarerathis ls -l result is: -rw-r--r-- root root 6265 2011-04-18 10:22 heads_of_state.txt. All the other files show the same date. |
|
Apr 14 |
comment |
Strange .txt file that has the names of different presidents inside the android system folder Ooops, no formating in comments! Here are the contents of mdb.py: pastebin.com/n3jUrdEA Contents of mdb.txt: pastebin.com/WeVq2pHF |
|
Apr 14 |
comment |
Strange .txt file that has the names of different presidents inside the android system folder @eldarerathis Yes, there are more files in the folder: DE.txt EN.txt ES.txt FR.txt heads_of_state.txt IT.txt mdb.py mdb.txt The files with two charaters in the name are 2 bytes long (2 hex numbers) Python file contents are: #!/usr/bin/env python3.0 import codecs filein = 'heads_of_state.txt' fileout = 'mdb.txt' setHeads = set() for line in codecs.open(filein, 'r', 'utf-8'): setHeads.add(line.strip()) liHeads = sorted(setHeads, key=lambda a: (len(a), a)) liHeads = filter(lambda a: len(a) > 4, liHeads) codecs.open(fileout, 'w', 'utf-8').write("\n".join(liHeads)) |
|
Apr 13 |
revised |
Strange .txt file that has the names of different presidents inside the android system folder added 13 characters in body |
|
Apr 13 |
comment |
Strange .txt file that has the names of different presidents inside the android system folder @Flow Yup, version V10F: csmg.lgmobile.com:9002/swdata/WEBSW/LGP350/ACISSV/V10F_00/…. Also i found it in a LG Keyboard apk of another phone (not remember which one, because it was only the apk file) |