Main > Free Download Search >

Free priority club software for linux

priority club

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 245
cpulimit 1.1

cpulimit 1.1


cpulimit is a simple program that attempts to limit the cpu usage of a process (expressed in percentage, not in cpu time). more>>
cpulimit is a simple program that attempts to limit the cpu usage of a process (expressed in percentage, not in cpu time). This is useful to control batch jobs, when you dont want they eat too much cpu.

cpulimit project does not act on the nice value or other scheduling priority stuff, but on the real cpu usage. Also, it is able to adapt itself to the overall system load, dynamically and quickly.

<<less
Download (0.005MB)
Added: 2007-01-09 License: GPL (GNU General Public License) Price:
1023 downloads
issPolicy 1.01

issPolicy 1.01


The issPolicy utility allows ISS RealSecure Network Sensor and policy files to be converted into a single HTML file. more>>
issPolicy is a free open-source utility for converting an ISS RealSecure Network Sensor and ISS Proventia Inline Appliance Policy to a static HTML file.
Written in Perl, issPolicy allows for granular parsing of ISS RSNS and ISS Proventia policies (also refer to the "support" section), and supports a wide variety of features (see "features" section) allowing the HTML generation to be customized based on different policy parameters.
Main features:
- issPolicy automatically detects whether the policy is a ISS RealSecure Network Sensor or ISS Proventia Inline Appliance policy and generates a static HTML file based on the policy type and its features.
- issPolicy extracts the following information from the ISS RealSecure Network Sensor Policy:
- Signatures Policy (Signature Name, Signature Description, Signature Status, Signature Priority, Configured Responses, Logging Type)
- IP Filters Policy (Filter Name, Filter Description, Filter Status, Protocol, Source Address, Source Port, Destination Address, Destination Port)
- Event Filters Policy (Filter Name, Filter Description, Filter Status, Filtered Event, Source Address, Source Port, Destination Address, Destination Port)
- issPolicy extracts the following information from the ISS Proventia Inline Appliance Policy:
- Signatures Policy (Signature Name, Signature Description, Signature Status, Signature Priority, Configured Responses, Logging Type, Drop Options, DynamicBlock Options)
- IP Filters Policy (Filter Name, Filter Description, Filter Status, Protocol, Source Address, Source Port, Destination Address, Destination Port)
- Event Filters Policy (Filter Name, Filter Description, Filter Status, Filtered Event, Source Address, Source Port, Destination Address, Destination Port)
- issPolicy contains various useful options allowing for a tailored HTML Policy file to be generated, based on one or more of the following criteria:
- Signature Policy Criteria:
- Whether signature is enabled or disabled
- Based on signature priority (High, Medium, or Low)
- Whether drop is enabled [only on ISS Proventia Inline Appliance Policies]
- Based on drop options (ConnectionWithReset, Connection, or Packet) [only on ISS Proventia Inline Appliance Policies]
- Whether dynamicblock is enabled [only on ISS Proventia Inline Appliance Policies]
- Based on dynamicblock options (IsolateTrojan, BlockWorm, BlockIntruder) [only on ISS Proventia Inline Appliance Policies]
- IP Filter Policy Criteria:
- Whether IP filter is enabled or disabled
- Event Filter Policy Criteria:
- Whether Event Filter is enabled or disabled
- issPolicy uses an "API" structured format, pushing the entire policy to hash arrays, allowing the possibility for other output methods to be developed (CSV, XML, etc...)
<<less
Download (0.016MB)
Added: 2005-07-04 License: GPL (GNU General Public License) Price:
1573 downloads
Audiality 0.1.1

Audiality 0.1.1


Audiality is a scalable and portable audio engine for music and sound effects. more>>
Audiality is a scalable and portable audio engine for music and sound effects. It is intended to play equally well in studios and inside games, in order to serve as a flexible tool for content creation, and for use in the final product.

Audiality uses MIDI files in combination with scripting and modular synthesis, to minimize file sizes and maximise flexibility. It is very portable, and supports both integer and floating point processing modes.

Scalability has been a major priority from the start. The current version will run on very low end Pentium systems, but can also produce high quality audio on more powerful hardware.
The main goal for the future is to extend the scalability of Audiality well into the range of serious home and professional studio use. The idea is to provide total control, a wide range of features, tools for fast and effective creation of original sounds, and excellent audio quality.

<<less
Download (0.80MB)
Added: 2006-08-03 License: LGPL (GNU Lesser General Public License) Price:
1178 downloads
MKGI Chess Club 1.6.1

MKGI Chess Club 1.6.1


MKGI Chess Club is a chess playing server with a pure Web interface. more>>
MKGI Chess Club is a chess playing server with a pure Web interface.
It features complete player profile management, full html email notification with embedded board display.
MKGI Chess Club also features an interface to match against chess engines such as gnuchess, phalanx, and crafty.
Enhancements:
- Fixed the notification feature which was broken since 1.6.0.
- Fixed undo availability immediately after a move.
- Implemented partial dragndrop of pieces on the chess board.
<<less
Download (0.12MB)
Added: 2007-08-01 License: GPL (GNU General Public License) Price:
816 downloads
PKAudio 0.3

PKAudio 0.3


PKAudio library is a high performance audio/signal processing library. more>>
PKAudio library is a high performance signal/audio processing library that allows stream objects to be created and mixed without interrupting the main stream of audio.

The core library runs in pkaudiod, an executable that runs with realtime or high priority, and a single client can communicate with it via a tcp socket.

A python client is provided, and can be used to write clients in other languages if necessary. The API is small and the protocol is simple.

Installation:

There are two parts to pkaudio: the pkaudiod daemon executable and the python module to communicate with it. The daemon is written in C++ and is configured and compiled like and other make program. To install everything, all you have to do is use the install.py python script like any other extension module. Here are the simplest install instructions:

cd < source dir >
python install.py [-h]

Usage:

If Jack support is compiled into pkaudio, make sure you start the jack daemon before running pkaudiod. If you dont, there will be no audio output. You can start the jack server with at least something like this (-r 44100 is required):

jackd -d alsa -r 44100

The pkaudiod executable is installed in your path and can be executed explicitly from the command line, or implicitly with the python module:

pkaudiod --realtime

The "--realtime" option tells pkaudiod to run with realtime priority, or the highest priority possible if realtime shceduling is not available in the kernel. Most systems will only allow processes to be scheduled with realtime priority if they are executed by the superuser "root". If you want to run the daemon with realtime priority as a normal user, you have to set the owner of the file to root, and the suid bit to on, like this (this is automatically done in the install.py script):

su
chown root `which pkaudiod`
chmod +s `which pkaudiod`

The daemon will tell you if it is running with realtime priority, or if it is running with increased priority.

Using the Python Module:

A good way to learn how to use the python module is to look at test_unittest.py. But, the following code will start the pkaudiod daemon as a child process and play a wav file:

import time
import pkaudio
pkaudio.connect(startserver=1)

sid = pkaudio.createModule(Sample,
/home/ajole/wav/loops/Document 1.wav)
sample = pkaudio.getModuleInfo(sid)
mixer = pkaudio.getMainMixer(0)
pkaudio.getModuleInfo(mixer)
pkaudio.connectToMixer(mixer, sample[outs][0])
pkaudio.setProperty(sid, playing, pkaudio.TRUE)
pkaudio.setProperty(sid, looping, pkaudio.TRUE)
time.sleep(100)

Fortunately, all of this can be accomplished with the higher-level PKAudio module:

import time
import PKAudio

PKAudio.start_server()
d = PKAudio.Driver()
s = PKAudio.Sample("/home/me/my.wav")
m = d.getMixer(0)
m.connect(s.outputPort())
s.play()
while not s.atEnd():
time.sleep(1)
<<less
Download (0.66MB)
Added: 2006-02-15 License: GPL (GNU General Public License) Price:
1349 downloads
Aurora Project 0.3

Aurora Project 0.3


The Aurora Project aims to be a simple yet effective and intuitive Desktop Environment. more>>
The Aurora Project is an attempt to create a new generation of Linux distributions. It will try to break free from old patterns and establish Linux as a serious world player.
Currently, Aurora Project consists of the Aurora Desktop Environment which, unlike most other Linux-based desktop environments, dont attempts to accomplish everything but to remove the focus from system configuration and desktop customizing by creating an easy-to-use out-of-the-box intuitive and beutiful desktop experience.
The UI is (for now) somewhat Microsoft Windows-inspired. I am satisfied with the general layout of the panel and start menu, currently I am busy designing the core functionality of the desktop with the panel as my number one priority. Also there is the session manager, the desktop manager and the shared library.
The Aurora Project currently consists of two major components - the panel and the shared library.
Main features:
- Windows-like user interface with a start menu.
- Freedesktop-compliant application menu (compatible with GNOME and KDE).
- Frequently used applications are easy to access.
<<less
Download (2.5MB)
Added: 2005-08-31 License: GPL (GNU General Public License) Price:
1514 downloads
Wordplay 0.3

Wordplay 0.3


Wordplay is a game for Unix/GTK+. more>>
Wordplay is a game for Unix/GTK+. Wordplay is primarily aimed at Scrabble players looking to improve their anagramming and hooking skills, but can also be played for fun. The dictionary used is the full TWL98 word list (used for tournaments and club play in the U.S. and Canada).

Three types of games are available:

Word Mine: Find all words of a certain length which can be formed from the letters of a larger word. Letters may be repeated only as often as they appear in the given word.
Word Hooks: Find all words which "hook" off a given word: forming a new word by adding a letter to the beginning or end.
Bingos: Find all anagrams of the given (seven or more) letters. In a Scrabble game, playing a word which uses all letters on your rack is a bingo, netting you a 50-point bonus. The bingo puzzles included with wordplay comprise the 500 most statistically likely bingo-able 7-letter and 8-letter combinations, based on the standard Scrabble bag letter distribution.

<<less
Download (0.25MB)
Added: 2007-08-19 License: GPL (GNU General Public License) Price:
799 downloads
frottle 0.2.1

frottle 0.2.1


Frottle (Freenet throttle) is a project to control traffic on wireless networks. more>>
Frottle (Freenet throttle) is a project to control traffic on wireless networks. Such control eliminates the common hidden-node effect even on large scale wireless networks. Frottle is currently only available for Linux wireless gateways using iptables firewalls, with plans to develop a windows client in the future.
Frottle is made to schedule the traffic of each client, using a master node to co-ordinate actions. This eliminates collisions, and prevents clients with stronger signals from receiving bandwidth bias.
Frottle has been developed and tested on the large community wireless network of WaFreeNet. We have found running frottle has given us a significant improvment in the network usability. Testing results will be documented here as time permits.
Frottle currently operates as a userspace application, receiveing outbound packets via the iptables QUEUE functionality. Access to the network is controlled by the frottle master, sending each client a control packet (token) which contains information about how much data can be sent at this time.
Each client receives its token and sends any required data, one at a time. This eliminates collisions, and with a reasonable signal packetloss is virtually zero. Also, since each client gets a limited slice of the bandwidth, everyone can get fair access regardless of their signal strength. Whilst this mechanism does result in increased latency, overall network performance and utilisation can significantly increase.
Main features:
- Traffic queues built in to frottle assign different, dynamic priorities to different traffic. Most traffic has a default priority. Traffic to/from specified ports (and ICMP packets) are made high priority. Traffic for connections that have done more than 2 MB of data and have a rate of more than 5 KB/s are made low priority. When a client is polled, high priority traffic is sent first, then default, then low until the poll quota is used.
-
- Realtime info on each clients performance is available from the master in a html file and optionally at each client in a similar html file. (The names and locations of these files is set in /etc/frottle.conf.)
<<less
Download (0.030MB)
Added: 2006-06-27 License: GPL (GNU General Public License) Price:
1216 downloads
CalorieKing Toolbar 1.1.0.0

CalorieKing Toolbar 1.1.0.0


CalorieKing Toolbar is a Firefox extension which lets you search CalorieKing.com. more>>
CalorieKing Toolbar is a Firefox extension which lets you search CalorieKing.com.

The CalorieKing Toolbar puts an ultra-convenient toolbar right into FireFox which lets you search CalorieKing.com wherever you are on the Internet, all for free.

CalorieKing Club members get the benefit of additional quicklinks straight into their food and exercise diaries, check-ins and forums.

<<less
Download (0.013MB)
Added: 2007-07-19 License: MPL (Mozilla Public License) Price:
832 downloads
EpiGrass 1.5.1

EpiGrass 1.5.1


EpiGrass is a simulator of epidemics over networks. more>>
EpiGrass is a simulator of epidemics over networks. EpiGrass is a scientific tool created for simulations and scenario analysis in Network epidemiology.
For an in depth description of Epigrass capabilities, please refer to the documentation.
EpiGrass can interact with the GRASS GIS from which it can obtain maps and other geo-referenced information. However, EpiGrass does not require an installation of the GRASS GIS for most of its features.
Epigrass is free-software, licensed under the Gnu public license (GPL).
Currently, EpiGrass is supported only on the Gnu/Linux platform. If you would like to see it run on other platforms, you can volunteer to oversee the porting to a given platform. Since Epigrass is written entirely in Python, porting to other platforms should be very easy. However this is not the main priority of the EpiGrass development team.
Enhancements:
- An import bug was fixed.
<<less
Download (1.8MB)
Added: 2007-07-18 License: GPL (GNU General Public License) Price:
828 downloads
Memory Structures Library 4.0

Memory Structures Library 4.0


Memory Structures Library (MemSL) is a complete data structures/collection classes library with memory tracing. more>>
Memory Structures Library (MemSL) is a complete data structures/collection classes library with memory tracing, memory debugging, entry/exit tracing, exception handling, definable memory handlers, built-in thread support, and much more.

The project supports single, double, and circular linked lists, AVL balanced and threaded binary trees, dynamic hashing tables, stacks, queues and dequeues (using arrays or linked lists), sets (Pascal implementation, with union, difference, intersection, etc.), bags, tables and dictionaries, priority heaps, priority search queue, and more.
<<less
Download (0.82MB)
Added: 2007-07-04 License: GPL (GNU General Public License) Price:
846 downloads
MpegMover 0.6.1

MpegMover 0.6.1


MpegMover is an application that enables the format conversion and FTP transfer of digital audio files from remote sources. more>>
MpegMover is an application that enables the format conversion and FTP transfer of digital audio files from remote sources. Tagged audio access is a group of methods for accessing audio devices and files in a network- neutral way. A sound source might be a local WAV file, or a Mic port on a network server. Data flows can be uni-, bi-, or multi-directional, allowing remote I/O, local storage while broadcasting, and multiple versions for different media types.

Future options that will be added in next versions:
toolame should not be installed into a version number dir... probably to a symlink dir instead
toolame should autodetect wave file type
toolame needs clean up wave file handling to work with non-cannonical wave files
maybe create an autoconf script to automatically install this package
autodetect file types so seperate directories are not needed
sterilization of file names to meet BE conventions
priority levels on emails, so only error emails are sent
<<less
Download (0.22MB)
Added: 2006-07-31 License: GPL (GNU General Public License) Price:
1180 downloads
C Generic Library 0.4.2

C Generic Library 0.4.2


C Generic Library is a generic data structure library is a bunch of data structures. more>>
C Generic Library is a generic data structure library is a bunch of data structures that are designed and created in as generic a fashion as possible.
Each data structure will contain its own basic memory management, be able to handle any object type, and hopefully constraint to strict algorithmic constraints. When the library hits version 1.0, it will contain the following data structures:
- Doubly Linked List - Done
- List-based Queue - Done
- List-based Deque - Done
- List-based Stack - Done
- Vector - Done
- Vector-based Queue - Done
- Vector-based Deque - Done
- Vector-based Stack -Done
- Binary Tree - Done(No BFS/DFS iterators)
- Hash Table - In progress
- Priority Queue - In progress
- Heap - In progress
- Memory Manager
- Object Cache w/ Garbage Collection
- AB Tree
- Split Lists
- RB Tree
- AVL Tree
Enhancements:
- Support for compilation on Windows using VS.net was added.
<<less
Download (0.026MB)
Added: 2006-09-15 License: BSD License Price:
1138 downloads
zOGI r581

zOGI r581


zOGI is the ZideStore OpenGroupware Interface. more>>
zOGI project is the ZideStore OpenGroupware Interface.
zOGIs mission is to provide a clean and consistent XML-RPC API to the full suite of OpenGroupwares collaberation services.
Main features:
The initial focus is to support tasks and projects.
- These are the weakest sections of the older official XML-RPC.
- Surpasses functionality and performance of the older XML-RPC API.
- TODO Support BLOB retrieval (via URL?)
- TODO Support storing BLOBS (?)
The secondary focus is to support calendaring / scheduling functions,
- Conflicts are reported
- Access hints provided to client
- Permissions can be modified
- Participants can be modified
- Notes can be created, edited, and deleted
- TODO Still needs support for accept/decline
- TODO Still needs some proposal mechanism (very low priority)
The tertiary focus is to support contact management.
- As of r408 addresses and phone numbers can be put to the server.
- As of r411 contacts and enterprises can be created, edited, and deleted.
- As of r419 contacts and enterprise assignments are stored.
- TODO Assignment of contacts and enterprises to projects
The primary consumer of zOGI support is the Consonance groupware client.
<<less
Download (0.17MB)
Added: 2007-08-16 License: LGPL (GNU Lesser General Public License) Price:
799 downloads
CreditCard Validator 1.8

CreditCard Validator 1.8


The CreditCard Validator will help you tell: (1) if a credit card number is valid (2) which credit card vendor handles that number. It validates the prefix and the checkdigit. It does *not* contact the credit card company to ensure that number has actually been issued and that the account is in good standing. It will also tell you which of the following credit card companies issued the card: Amex, Diners Club, Carte Blanche,Discover... more>>

CreditCard Validator - The CreditCard Validator will help you tell:

1. if a credit card number is valid,

2. which credit card vendor handles that number.

It is a simple Applet to demonstrate the use of the ValidateCreditCard class.

It validates the prefix and the checkdigit. It does *not* contact the credit card company to ensure that number has actually been issued and that the account is in good standing.

It will also tell you which of the following credit card companies issued the card: Amex, Diners Club, Carte Blanche, Discover, enRoute, JCB, MasterCard or Visa.

ATM cards use a different secret scheme which this program does not handle. Unfortunately, there is not even a reliable way to tell an ATM card from a credit card just by the number.

It is primarily designed to be included in your own Java program, though it can be used standalone or as an Applet.

To install, Extract the zip download with Winzip, available from http://www.winzip.com (or similar unzip utility) into any directory you please, often C: -- ticking off the (user folder names) option. To run as an application, type:

java -jar C:commindprodcreditcardcreditcard.jar

adjusting as necessary to account for where the jar file is.

You must have Java version 1.1 or later installed to use this package.

See http://mindprod.com/jgloss/installingjava.html for details.


Enhancements:
Version 1.8

convert to JDK 1.5. simplify code using enum.


System Requirements:
<<less
Download (670Kb)
Added: 2008-03-06 License: Free Price: Free
12 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5