Main > Free Download Search >

Free 0.0.2 software for linux

0.0.2

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 154
iam 0.0.2

iam 0.0.2


iptables accounting monster (iam) is a traffic reporting tool for iptables. more>>
iptables accounting monster (iam) is a traffic reporting tool for iptables. Currently it can generate daily reports in plain text and HTML format. It can also create summaries (month or year) of these daily reports.

While looking for a traffic reporting tool, I didnt find something that i looked for. So I started to write iam, which:

is free software
works with Linux 2.4 iptables
is written in Python, a readable language (i.e. not perl, awk or shell script)
is secure (i.e. only be root where you need to be root)
doesnt depend on a specific web server or database server
can generate reports for routers or servers
can generate reports in plain text or HTML format
can calculate costs for traffic (currently only price per MB, but bulk discounts should be included soon)

<<less
Download (0.017MB)
Added: 2006-06-29 License: GPL (GNU General Public License) Price:
1213 downloads
gat 0.0.2

gat 0.0.2


gat provies a VCS which uses the basic ideas from GIT to guarantee the integrity of the repository. more>>
gat provies a VCS which uses the basic ideas from GIT to guarantee the integrity of the repository.
GAT is a VCS which uses the basic ideas from GIT to guarantee the integrity of the repository and allow a distributed independent development process with an offline copy of the repository and easy syncing of patchsets. It also borrows many features from CVS.
Enhancements:
- DESCRIPTION, README: corrected
- .cvsignore: deleted
- TODO: Added
- Currently this is without VCS control, hope it is self contained, soon!
<<less
Download (0.090MB)
Added: 2007-02-13 License: GPL (GNU General Public License) Price:
985 downloads
Lia 0.0.2

Lia 0.0.2


Lia is a library for performing Large Integer Arithmetic. more>>
Lia is a library for performing Large Integer Arithmetic. It should not be used in a production environment. It will never be better than GNU MP.
It is, however, a nice clean library. The code is simple and easy to read and may be considered valuable to beginner to intermediate level C++ programmers. This is why it has been publicly released.
Lia is free software. In order to keep it that way, it is distributed under the terms of the GNU GPL. Yes, this means you are not permitted to link it against non-free software. But, as was mentioned earlier, why would you want to?
To install type in a nutshell: ./configure && make && make install
See the programs in the test directory for the "Programmers Guide".
See the installed header files in the PREFIX/include/lia directory for the
"Programmers Reference".
Keep in mind that Lia is distributed under the terms of the GNU GPL. That is,
it is free software and may only be linked against binaries compiled from other
free code.
Enhancements:
- Switched to a more libtool friendly versioning scheme.
- Added flexible string conversion routines to convert to and from character strings representing numbers in base 2 to base 256 encoded with programmer definable digits.
- Default string representation changed from hexadecimal to decimal.
- Removed the need for the InvalidParameterException thrown from most arithmetic functions.
- Added GCD function.
- Added ModularExponenet function.
- Renamed sqrttest to functest.
<<less
Download (0.11MB)
Added: 2006-07-17 License: GPL (GNU General Public License) Price:
1194 downloads
ghli 0.0.2

ghli 0.0.2


ghli is GPMIs Highlevel Language Interpreter. more>>
ghli is GPMIs Highlevel Language Interpreter, developed to operate under GPMI, though it works as a standalone script interpreter as well.

It features a byte code interpreter with complex instructions for high level languages, a framework to ease implementing precompilers, a Pascal precompiler, and an Assembly precompiler.

It aims to be small, fast, and flexible. The number of core instructions are very limited while it offers a simple interface so the host application can register its own extension commands easily.
<<less
Download (0.13MB)
Added: 2005-07-06 License: GPL (GNU General Public License) Price:
1570 downloads
pyao 0.0.2

pyao 0.0.2


pyao is a wrapper for the ao library. more>>
pyao is a wrapper for the ao library.

pyao is a set of Python bindings for Xiph.orgs libao, a cross-platform audio output library.

Installation:

python config_unix.py
python setup.py build
[as root] python setup.py install

The config script is new and still pretty weak. If you have any problems let me know. Access the module by using "import ao" in your Python code.

Heres an interactive session of just playing with the module, until I create better documentation (there should be docstrings for everything). Watch as I read some random data and "play" it to a wave file.

>>> import ao

>>> myoptions = {file: myoutput.wav}

>>> dev = ao.AudioDevice(wav, options = myoptions)

>>> f = open(/dev/urandom, r) #thats some good stuff

>>> print dev
< AudioDevice object at 0x812ac28 >

>>> print dev.get_driver_info()
{author: Aaron Holtzman,
short_name: wav,
name: WAV file output,
comment: Sends output to a .wav file}

>>> print ao.get_driver_info(oss)
{author: Aaron Holtzman,
short_name: oss,
name: OSS audio driver output ,
comment: Outputs audio to the Open Sound System driver.}

>>> data = f.read(1024*8)

>>> dev.play(data)

>>> < control-d >

And now I have a file myoutput.wav with random noise in it.
<<less
Download (0.016MB)
Added: 2006-04-17 License: GPL (GNU General Public License) Price:
1285 downloads
Jace 0.0.2

Jace 0.0.2


JACE is a Convolution Engine for JACK and ALSA, using FFT-based partitioned convolution with uniform partition sizes. more>>
JACE is a Convolution Engine for JACK and ALSA, using FFT-based partitioned convolution with uniform partition sizes.
This is a prealpha release of the Jace project.
Main features:
- Any matrix of convolutions between up to 16 input and 16 outputs.
- Maximum length for each convolution is one megasample (nearly 22 seconds at 48 kHz).
- Allows the use of a period size down to 1/16 of the partition size.
- Its fast.
When used with a period size smaller than the partition size, JACE will try to spread the CPU load evenly over all process cycles that make up a partition. This works quite well if there is enough work to be distributed, and less well otherwise.
As an extreme example, if there is only one input and one output, and the convolution size is just one partition, its clearly not possible to spread the three elementary operations over 16 cycles. But in those cases the load will be small anyway, and you can use a smaller partition size.
Code to use SSE (tested) and 3DNOW (untested !) for the MAC steps is present, but disabled by default since it seems to make little difference.
Performance on 2 GHz Pentium IV with 4 convolutions of 5.5 seconds each at Fs = 48 kHz. Load is as displayed by qjackctl. Delay is input + process + output.
period partition load delay
-----------------------------------
1024 8k 12% 340ms
1024 4K 17% 170ms
512 4K 18% 170ms
256 4K 19% 170ms
128 2k 32% 85ms
64 1k 59% 43ms
<<less
Download (0.018MB)
Added: 2006-02-03 License: GPL (GNU General Public License) Price:
1359 downloads
KFilm 0.0.2

KFilm 0.0.2


KFilm is an non-linear Video Editor that runs on a **ix System. more>>
Video cutting software with QT/KDE uses SDL/ffmpeg an reads every FIle that ffmpeg reads -cut /merge video -non linear VideoEditing

<<less
Download (0.72MB)
Added: 2005-08-19 License: GPL (GNU General Public License) Price:
1528 downloads
yaSSH 0.0.2

yaSSH 0.0.2


yaSSH project is a fast, dual-licensed implementation of SSH. more>>
yaSSH project is a fast, dual-licensed implementation of SSH.
It will include an SSH client, a client library, a server, and a server library.
It is focused on speed, limited memory requirements, a simple API, portability, and use in an embedded setting.
Enhancements:
- This release contains client transport support and initial client authentication.
<<less
Download (0.33MB)
Added: 2006-08-30 License: GPL (GNU General Public License) Price:
1150 downloads
Lgang 0.0.2

Lgang 0.0.2


Lgang is a gang scheduling system that uses a process hierarchy tracing mechanism to manage job control in parallel environments more>>
Lgang is a gang scheduling system that uses a process hierarchy tracing mechanism to manage job control in parallel environments.
It was developed as a semester-long project in an Advanced Operating Systems class (CSE536) in ASU. It is implemented for the Linux 2.4 kernel.
The project is free software released under the GPL license.
Enhancements:
- This is the first public release for the Linux 2.4 kernel.
<<less
Download (0.68MB)
Added: 2007-04-24 License: GPL (GNU General Public License) Price:
913 downloads
JunFa 0.0.2

JunFa 0.0.2


JunFa is a bitboard-based Chinese Chess engine. more>>
JunFa project is a bitboard-based Chinese Chess engine.
JunFa is a chinese chess engine compliant with the CXBoard v1 communication protocol. It is the first OSS bitboard-based Chinese Chess engine released to the public.
Its methods of move generation and board representation make it fast and capable of evaluating multiple board states very quickly.
Enhancements:
- Nothing new for user.
- Small architectural changes.
- Primarily a release before I break things to make it work better.
<<less
Download (0.084MB)
Added: 2007-01-15 License: MIT/X Consortium License Price:
1015 downloads
QiPan 0.0.2

QiPan 0.0.2


QiPan project consists of the reference implementation of the CXBoard communication protocol. more>>
QiPan project consists of the reference implementation of the CXBoard communication protocol.
QiPan is the reference implementation of a cxboard compliant interface program.
CXBoard is a communication protocol, modeled after XBoard and UCI, used for communication between Chinese Chess engines and interfaces.
Enhancements:
- This release contains new pieces and additional features that make it nicer to use and able to connect to 3rd party engines.
<<less
Download (0.59MB)
Added: 2007-01-15 License: MIT/X Consortium License Price:
1014 downloads
Cupid 0.0.2

Cupid 0.0.2


Cupid is a video capture and recording. more>>
Cupid is a modern, complete video/audio capture solution for the Linux/GNOME desktop. Cupid is based on the GStreamer multimedia framework, which is the de facto multimedia framework on the Linux and UNIX desktop.

Using GStreamer, it supports a variety of container formats and video/audio codecs. Likewise, it supports all the current video and audio kernel interfaces, and can be extended to supports other systems than Linux simply by writing a GStreamer plugin.

<<less
Download (0.57MB)
Added: 2005-08-04 License: GPL (GNU General Public License) Price:
1543 downloads
yaDMS 0.0.2

yaDMS 0.0.2


yaDMS provides a PHP-based document management system. more>>
yaDMS provides a PHP-based document management system.
yaDMS (yet another Document Management System) is a PHP-based document management system, with many features like a clipboard, conversion of mail to DMS, conversion from DMS to mail, zip & download, copy, move, multiuser, and full-text searching with support for various document formats.
Main features:
- Multiuser: manage as many users as you want with different "document roots" and read only access
- Create/Delete Folders+Files
- Download whole Folders as a zip archiv
- Copy and Move Files or Folders between the different Folders
- Put files into the clipboard and send them by mail or download them as a zip file
- Receive Mails (each user can define his own pop3 Account) and use filters to put the attached files directly into the right folder
- Search files by age/filesize/location/mime Type
- Change to the "thumbnail-view" to see images in preview
<<less
Download (0.069MB)
Added: 2007-01-22 License: GPL (GNU General Public License) Price:
1007 downloads
Splix 0.0.2

Splix 0.0.2


SpliX is a set of CUPS printer drivers for SPL (Samsung Printer Language) printers. more>>
SpliX is a set of CUPS printer drivers for SPL (Samsung Printer Language) printers. If you have a such printer, you need to download and use SpliX. Moreover you will find documentations about this proprietary language.
Note that only SPL2 printers are currently supported! However we are looking for people who have a SPL printer to implement it as soon as possible.
Dont hesitate to leave us a message if necessary.
Enhancements:
- Several bugs have been fixed.
- It can be used with CUPS version 1.2 or later.
- The Makefile has been changed.
- The SRT mode is only available for specific printers.
- Splix on 64-bit architectures now works.
- The last band is now printed.
- Margins have been recalculated.
- New translations for German and Italian have been added.
<<less
Download (0.023MB)
Added: 2006-11-13 License: GPL (GNU General Public License) Price:
1081 downloads
Libss 0.0.2

Libss 0.0.2


Libss is a cross-platform library for controlling screensavers. more>>
Libss is a cross-platform library for controlling screensavers. It allows one to temporarily disable a screensaver.

Libss library is useful for fullscreen, visual applications that take little input.

BUILDING

Procedure 1. To build, cross your fingers and try...

1. ./configure
2. make
3. make install

Read the ``INSTALL file for generic detailed information on installing this program.

NASTY DETAILS

The screensaver_init() function initializes the library.

The screensaver_enable() function turns on the systems screensaver.

The screensaver_disable() function turns off the systems screensaver.

The screensaver_restore() function restores the screensaver to the state it was in when the library was initialized by screensaver_init().

Currently, libss supports only Linux, the X Window System, and XSreenSaver. However, the library is designed to support other platforms. Please feel free to contribute.

Originally libsss code was to be integrated with SDL. However, due to a feature freeze, this functionality will not make it into SDL for quite some time. In the meantime, I am packaging libss as a separate library. Libss also serves as a testbed for XScreenSaver-controlling APIs. I would like to offer a better interface to XScreenSaver than jwzs:

if (playing && !paused) {
system ("xscreensaver-command -deactivate >&- 2>&- &");
}

Consider libss a proof-of-concept which may turn into
something useful.
<<less
Download (0.050MB)
Added: 2006-03-31 License: GPL (GNU General Public License) Price:
1307 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5