Hot
Votes: 2
The GNU sed stream editor
sed reads the specified files or the standard input if no files are specified, makes editing changes according to a list of commands, and writes the results to the standard output. Due to conflicts with busybox and SDK, the binary of 'sed' is stored in /usr/bin/gnu, which could be added to $PATH, and also available as 'gsed'.
Votes: 0
An exercise/physio reps counter
This is an application for people undergoing physio or people who need to carry out repetitive exercise. You can set the number of reps and duration of each rep. The app keeps track of your progress through a particular set. There are 2 modes at the moment: - manual where you can push a button to record a rep - automatic where the system loops through the reps for you There is integration with ESpeak to announce reps etc.
Votes: 3
File comparison utilities
The diffutils package provides the diff, diff3, sdiff, and cmp programs.
diff' shows differences between two files, or each corresponding file
in two directories.cmp' shows the offsets and line numbers where
two files differ. cmp' can also show all the characters that
differ between the two files, side by side.diff3' shows differences
among three files. `sdiff' merges two files interactively.
The set of differences produced by diff' can be used to distribute
updates to text files (such as program source code) to other people.
This method is especially useful when the differences are small compared
to the complete files. Givendiff' output, the `patch' program can
update, or "patch", a copy of the file.
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., 'gdiff' for diff.
Votes: 1
A program to keep track of your todo tasks efficiently (just-in-time)
Kanban is a program that will help you track down all the issues that you have to do. It provides different lists suport so that you can have different things to track and multiple machine synchronization so that you don't lose your data when you work from different systems. That's right, you can have it also for GNU/Linux, Windows, MacOS X, a KDE plasmoid or almost whatever you use.
