Skip to main content

Posts

Showing posts with the label Java

xCrypto 2.0

Secure your files with unbroken NTRU algorithm from quantum attacks. With xCrypto 2.0 you can use Public/Private Key NTRU algorithm to secure (Encrypt/Decrypt) your sensitive files on your android. NTRU is a cryptography algorithm based on lattice cryptography. NTRU is unbroken for now from Quantum Computing Attacks. You can download it from Google play store:

Morse Coder

What is Morse code? So, according to Wikipedia , Morse code is a method of transmitting text information as a series of on-off tones, lights, or clicks that can be directly understood by a skilled listener or observer without special equipment. It is named for Samuel F. B. Morse, an inventor of the telegraph. The International Morse Code encodes the ISO basic Latin alphabet, some extra Latin letters, the Arabic numerals and a small set of punctuation and procedural signals (prosigns) as standardized sequences of short and long signals called "dots" and "dashes", or "dits" and "dahs", as in amateur radio practice. I designed this application (Morse Coder) to help you to encode/decode your messages with Morse code and then you can convert them to (light / sound / vibration) signals on your Android phone. You can download the APK from here . You can also see the source code on github from here .

FAT32 File Sorter

FAT32Sorter is an Android app that helps you to sort mp3 files on your memory card formatted with FAT/FAT32 file system. The idea came from one of my friends (A.G), he is using an Mp3 Player device, and when he copy some mp3 files to Mp3 Player Memory card, he found that files is not sorted alphabetically despite he was renamed them like this: 000.mp3,001.mp3...999.mp3. So after doing some research on the internet, i've found that the problem is with FAT32 File system, and i discovered that the FAT file system is sorting files as its precedence in copying (by Last modified date). So if we moves files from sdcard to any other memory (internal or phone memory) and reading them in Array list, then sort this array alphabetically and copying them back to sdcard as they sorted in the array... now files will be sorted. I've wrote this app on android phone with AIDE in Java programming language, it consists of 2 classes: - MainActivity class (App interface functions) - ‎F...