Main > Free Download Search >

Free supposed software for linux

supposed

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 163
PHPlottery 0.1a

PHPlottery 0.1a


PHPlottery is a script for running a simple lottery without requiring users to register. more>>
PHPlottery project is a script for running a simple lottery without requiring users to register. This is simply done by creating a key-pair.

This pair is then known by the user and by the application for later use. To prevent simple abuse, the script can use IP-store/block and cookies. When the lottery should decide the winner, a key-pair will selected out of the database.

The public key of this pair will be sent out to everybody who is supposed to know the result of the lottery. Winners have to submit the correct private key to prove their identity.

<<less
Download (0.013MB)
Added: 2006-10-13 License: GPL (GNU General Public License) Price:
1108 downloads
PBButtonsd 0.8.1a

PBButtonsd 0.8.1a


PBButtons is a daemon to handle special hardware on the Apple iBook/PowerBook/TiBook. more>>
PBButtons is a daemon to handle special hardware on the Apple iBook/PowerBook/TiBook. It controls the display brightness, the sound volume, mutes the sound, changes the trackpad mode, puts the machine to sleep, or ejects the CDROM on command.
PBButtonsd project also provides basic power management features. An included client gives the user visual feedback about all actions with nice little popup windows.
Enhancements:
- remove hdparm option -p because the option does not do what it is supposed to and anyway the kernel does a good controlling the IDE speed settings.
<<less
Download (0.39MB)
Added: 2007-07-29 License: GPL (GNU General Public License) Price:
817 downloads
multpsx 0.1

multpsx 0.1


multpsx is a project used to generate long multiplication worksheets in PostScript. more>>
multpsx is a project used to generate long multiplication worksheets in PostScript.

It also generates a self-checking answer key.

Usage: echo "123 456" | multpsx | lpr up to 6 multiplication problems can be specified on stdin. The output sheet is intended to have the sides fold back.

(The banner is supposed to mark the fold lines). The pupil can work the problems, then open out the sides to check his/her work.

Many parameters (e.g., size and spacing) are easily adjusted in the initialization section of this program.

<<less
Download (0.004MB)
Added: 2006-11-01 License: GPL (GNU General Public License) Price:
1087 downloads
Gspot 0.1.3

Gspot 0.1.3


Gspot stands for Gnome applet for Searching the web in a Practical, Outlined and Tidy way. more>>
Gspot stands for Gnome applet for Searching the web in a Practical, Outlined and Tidy way.

The project is in version 0.1. For version 0.2 it should have a preferences dialog that uses gconf for settings such as language support for engines that "support" it and other engine-specific settings.

It is going to be a non-intrusive simple applet and is supposed to be an all search tool for the gnome desktop.

<<less
Download (0.021MB)
Added: 2005-10-24 License: GPL (GNU General Public License) Price:
7933 downloads
onepad 1.1.0

onepad 1.1.0


onepad is a set of programs to encrypt files using one-time-pad encryption. more>>
onepad is a set of programs to encrypt files using one-time-pad encryption. This is an old but theoretically impossible to easily break way of encryption. I came across this method in Neal Stephensons Cryptonomicon.
It works by XOR-ing every byte in the cleartext message with a byte in the key. As long as every key is only used once, and the key is random, this is supposed to be unbreakable.
However, you need a secure way to exchange keys with the intended recipient. If a third party intercepts the key, it can read the messages.
NOTE: These programs work, but the genpad program relies on the /dev/random device to generate random keys. So the quality of the key and therefore the safety of this encryption method depends on the randomness of the /dev/random device on your system. So I cannot guarantee that the generated keys are totally random. Therefore, if you need really good encryption, use something like ccrypt or GNU Privacy Guard. These have been written, tested and pounded on by a lot of people, probably smarter than I am.
Enhancements:
- Changed to a BSD-style license.
- Makefile changed to build with BSD or GNU make.
<<less
Download (0.012MB)
Added: 2006-06-07 License: BSD License Price:
1234 downloads
BoomBasster 0.1

BoomBasster 0.1


BoomBasster is a music player that runs under DirectFB. more>>
BoomBasster is a music player that runs under DirectFB.

BoomBasster plays any type of music file that is supported by FusionSound.

The user interface uses alpha blending and works well with touchscreens.

BoomBasster is supposed to be used with the mouse.

<<less
Download (0.25MB)
Added: 2005-12-13 License: GPL (GNU General Public License) Price:
1410 downloads
ost 1.0

ost 1.0


ost is a simple yet powerful tool providing mechanisms to automatically audit, maintain and backup systems customizations. more>>
ost is a simple yet powerful tool providing mechanisms to automatically audit, maintain and backup systems customizations. ost is particularly well suited to environments where most systems are similarly configured, but will operate just as well if each system is unique.
ost uses at least one of the following two sets of input:
- the systems file catalog if it exists
- user defined "templates" to override the systems catalog
These allow ost to build a virtual image of what the local filesystem is supposed to look like. This image is then compared to the actual state of the local filesystem to obtain the following information about the system:
- List of intact files
- List of modified files
- List of missing files
- List of additional files
<<less
Download (0.10MB)
Added: 2006-11-10 License: BSD License Price:
1078 downloads
Dial-Up Bot 0.3

Dial-Up Bot 0.3


Dial-Up Bot project aims to be a fully functional automated replacement for the /etc/ppp/ip-{up,down}.d hierarchy. more>>
Dial-Up Bot project aims to be a fully functional automated replacement for the /etc/ppp/ip-{up,down}.d hierarchy. Its supposed to be started by cron at night. It cant satisfy the requirements of impatient roots. Its not designed for hosts with a permanent Internet connection.
Enhancements:
- This is the first public release since dubot reached minimal useful functionality and stability. Installation mech is minimally stable (at least for install in /usr/local hierarchy).
<<less
Download (MB)
Added: 2007-06-01 License: GPL (GNU General Public License) Price:
883 downloads
JSON::Syck 0.82

JSON::Syck 0.82


JSON::Syck - JSON is YAML. more>>
JSON::Syck - JSON is YAML.

SYNOPSIS

use JSON::Syck;

my $data = JSON::Syck::Load($json);
my $json = JSON::Syck::Dump($data);

JSON::Syck is a syck implementatoin of JSON parsing and generation. Because JSON is YAML (http://redhanded.hobix.com/inspect/yamlIsJson.html), using syck gives you the fastest and most memory efficient parser and dumper for JSON data representation.

DIFFERENCE WITH JSON

You might want to know the difference between JSON and JSON::Syck.

Since JSON is a pure-perl module and JSON::Syck is based on libsyck, JSON::Syck is supposed to be very fast and memory efficient. See chansens benchmark table at http://idisk.mac.com/christian.hansen/Public/perl/serialize.pl
JSON.pm comes with dozens of ways to do the same thing and lots of options, while JSON::Syck doesnt. Theres only Load and Dump.

Oh, and JSON::Syck doesnt use camelCase method names.

<<less
Download (0.13MB)
Added: 2007-02-13 License: Perl Artistic License Price:
985 downloads
Seldon 2005-05-15

Seldon 2005-05-15


Seldon is a C++ library for linear algebra. more>>
Seldon is a C++ library for linear algebra. Seldon provides matrix and vector structures, and some methods and functions for computations (linear algebra). Seldon is designed to be efficient and convenient, which is notably achieved thanks to template classes. Exception handling and several debug levels are helpful while coding.

Seldon provides several types of matrices: full matrices, sparse matrices, symmetric matrices, hermitian matrices and triangular matrices. Each type includes several formats. E.g. symmetric matrices may be stored as full matrices or in packed form (Blas format).

Seldon is fully interfaced with Blas (level 1, 2 and 3), except for Blas functions involving banded matrices (since this format is not available for the moment) and most rank operations. If Blas is not available to the user, a few alternative functions (same functions written in C++) may be used. Seldon includes many other features that are described in the documentation.

Seldon is supposed to be fully compliant with the C++ standard. Therefore, it can be compiled by GNU GCC (>=3.0; tested with version 3.2, 3.3 and 3.4) and by the Intel C++ compiler icc (tested with icc 7.1 and 8.0). No tests were conducted with proprietary compilers under Unix, but the compliance with the C++ standard should ensure portability. The last versions of Microsoft Visual C++ (from Visual C++ 2003) might compile Seldon according to its announced features, but it has not been tested.

As a next step, the Lapack interface is being completed. And any help is welcome!
<<less
Download (0.067MB)
Added: 2006-06-16 License: GPL (GNU General Public License) Price:
1225 downloads
Parse::RandGen::Regexp 0.202

Parse::RandGen::Regexp 0.202


Parse::RandGen::Regexp is a Perl module for regular expression Condition element. more>>
Parse::RandGen::Regexp is a Perl module for regular expression Condition element.

Regexp is a Condition element that matches the given compiled regular expression. For picking random data, the regular expression is parsed into its component Subrules, Literals, CharClasses, etc.... Therefore, the pick functionality for a regular expression is ultimately the same as the pick functionality of a Rule (including the limitations w/r to greediness - see Rule).

Regexp is also useful as a standalone class. It supports captures (named and indexed), which can be referenced in a call to the pick() function to force the captures to match the specified data, while leaving the rest of the data to be generated randomly.

METHODS

new

Creates a new Regexp. The first argument (required) is the regular expression element (e.g. qr/foo(bar|baz)+d{1,10}/). All other arguments are named pairs.

element

Returns the Regexp element (i.e. the compiled regular expression itself).

numCaptures

Returns the number of captures (e.g. $1, $2, ...$n) in the regular expression.

nameCapture

Give names to capture numbers for the regular expression. The arguments to this function are capture# => "name" pairs (e.g. nameCapture(1=>"directory", 2=>"file", 3=>"extension")).

capture

Returns the Rule object that represents the specified capture. The capture can be specified by number or by name (the name is set by the nameCapture() function).

pick

Randomly generate data (text) that matches (or does not) this regular expression.
Takes a "match" boolean argument that specifies whether to match the regular expression or deliberately not match it.

Also takes a "captures" hash argument that has pairs of capture numbers (or names) and their desired value. This allows the generated data to have user-specified constraints while allowing the rest of the regular expression to choose random data. If "match" is false, the user-specified "captures" values are still used (which may cause the data to match even though it was not supposed to).

Example:
$re->pick(match=>1,
captures=>{ 1=>"http", 2=>"www", 3=>"yahoo", 4=>"com" });

<<less
Download (0.025MB)
Added: 2006-12-19 License: Perl Artistic License Price:
1039 downloads
openDICOM.NET 0.1.1

openDICOM.NET 0.1.1


openDICOM.NET software implements a new approach towards DICOM (Digital Imaging and Communications in Medicine) libraries. more>>
openDICOM.NET software implements a new approach towards DICOM (Digital Imaging and Communications in Medicine) libraries. DICOM is a worldwide standard in Medical IT and is provided by the National Electrical Manufacturers Assocation (NEMA). This standard specifies the way medical images and meta data like study or patient related data is stored and communicated over different digital medias. Thus, DICOM is a binary protocol and data format.

The openDICOM# Class Libary, main part of the openDICOM.NET project, provides an API to DICOM in C# for Mono and the .NET Framework. It is a completely new implementation of DICOM. In contrast to other similar libraries the intention of this implementation is to provide a clean classification with support of unidirectional DICOM data streaming. Another implemented goal is the support of DICOM as XML. This is not standard conform but very use- and powerful within software development, storage and manipulation. Currently, full read support of DICOM output stream and full write support to XML is supposed to be provided. The entire DICOM content can be accessed as sequence or as tree of class instances. Latter is the default representation of DICOM content by the library.

The openDICOM.NET Utils are a collection of console tools for working with the needed data dictionaries in different data formats (binary and textual), query of ACR-NEMA (prior DICOM standard) and DICOM files and transcoding them into image formats like JPEG and XML files. These utils are written in C# for Mono and the .NET Framework and are using the openDICOM# API for processing.

Last but not least, the openDICOM.NET Navigator recapitulates the openDICOM.NET Utils in form of a GTK# GUI. It provides different views with focus on DICOM data sets and visualization. Connectivity to GIMP is also given for image processing purpose as well as the possibility to run through multi-frame images like a movie.

<<less
Download (MB)
Added: 2007-04-02 License: GPL (GNU General Public License) Price:
939 downloads
Glotski 0.2

Glotski 0.2


Glotski project is a sliding block puzzle game. more>>
Glotski project is a sliding block puzzle game.
Glotski is a game in which you drag blocks around until you attain inner peace or reach the desired goal, whichever comes first.
Its a very generalized version of "Rush Hour" , and also resembles the game Klotski.
Enhancements:
- Interface spruced up, with menu, status line
- Added Goal window to show you what youre supposed to do
- Many bugs fixed (Undoing previous goals, correct Gnome setup)
- Still to do: add ability to resize, add ability to use pixmaps for pieces, perhaps add some antialiased effects (i.e. transparent drag), make some UI tweaks for better Gnome compliance
<<less
Download (0.024MB)
Added: 2006-12-01 License: GPL (GNU General Public License) Price:
1062 downloads
spkg 1.0 RC9

spkg 1.0 RC9


spkg is a reimplementation of Slackware package manager (pkgtools). more>>
spkg project is a reimplementation of Slackware package manager (pkgtools). Dependencies are not handled as they are supposed to be resolved at the higher level.
Main features:
- Extreme symplicity. Just like pkgtools.
- Fast installation (approx. 10% faster than tar xzf)
- Fast unistallation (faster than rm -rf)
- Robust implementation. (nearly all error conditions are checked)
- Rollback functionality. (no file left behind policy ;-))
- Full compatibility with legacy Slackware package database.
- Everything is libified. (see docs) You can implement new commands easily.
- Easy access to the package database thanks to libification.
<<less
Download (0.20MB)
Added: 2007-01-27 License: GPL (GNU General Public License) Price:
1002 downloads
Oliver 1.2.2

Oliver 1.2.2


Oliver (formerly Webshare) is a free, web based FTP front-end, written in PHP and released under the GPL. more>>
Oliver (formerly Webshare) is a free, web based FTP front-end, written in PHP and released under the GPL..
Despite the existance of many similar projects, notably Gollem, it was meant to fulfill specific requirements.
Main features:
- Small and Simple
- This isnt trying to compete with powerful systems like Gollem. It is really only intended to be a functional skeleton for end-users to use and customize. The code should be well commented and easy to understand.
- Javascript optional
- There are bits of javascript here, but theyre all optional. A lot of effort has gone into avoiding javascript here - I wonder if it was worth it ?
- Fast
- Speed is essential and considered more important than features. This is supposed to be usable. If you want bells and whistles youre probably in the wrong place.
- Secure as possible
- Dont laugh! OK the very essence of this concept is insecure, however it should be as secure as possible in the circumstances. Using Oliver instead of FTP should improve the security of your file store.
<<less
Download (0.032MB)
Added: 2006-06-22 License: GPL (GNU General Public License) Price:
1221 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5