Maemo 5
test
Votes: 0
Reads magnetic stripe cards
Using a hardware audio dongle, MagRead can read most magnetic stripe cards. For credit cards, and ID cards issued in North America, it will also parse the data and display it in a familiar format. Requires that you have a hardware dongle, such as those provided by Square. See http://blog.tehinterweb.com/ for more details
Votes: 11
Accelerometer based game.
In our game player must use the Ball to collect smaller balls (TailBalls), which connect to player's ball using links. On high speed links will break. Also there are CrazyBalls (periodically they begin fast random movement and may break links between Ball and TailBalls) and Stars (when player's Ball touches it, player lose one life. After all 3 lives are lost game will end) on game field. Crazy Balls and Stars are always in movement. After some time, linked TailBalls become green. When you tap the screen, tail of Tail Balls will breaks and you score points, but only for green TailBalls. After that TailBalls will appear again. Control of Ball is implemented by accelerometer or keyboard (Up, Down, Left, Right arrays). 'Return (Enter)' - pause game; 'm' - Menu; 'SPACE' - New Game;
Votes: 0
Automatic download of subs from opensubtitles.org
Just point at any video file and choose the subtitles you need. Behind the scenes it's nautilus script, written by Carlos Acedo and ported to maemo by int_ua. This script can be executed from command line with a single argument - filename. And still should be usable on your desktop with python-gtk.
Votes: 8
GNU grep, egrep and fgrep
'grep' is a utility to search for text in files; it can be used from the command line or in scripts. Even if you don't want to use it, other packages on your system probably will.
The GNU family of grep utilities may be the "fastest grep in the west". GNU grep is based on a fast lazy-state deterministic matcher (about twice as fast as stock Unix egrep) hybridized with a Boyer-Moore-Gosper search for a fixed string that eliminates impossible text from being considered by the full regexp matcher without necessarily having to look at every character. The result is typically many times faster than Unix grep or egrep. (Regular expressions containing backreferencing will run more slowly, however.)
Due to conflicts with busybox and SDK, all binaries are stored in /usr/bin/gnu, which could be added to $PATH, or can be called with a 'g' prefix, e.g., 'ggrep' for grep.
