Main > Free Download Search >

Free use in software for linux

use in

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 354
Pause 2.4

Pause 2.4


Pause determines the location of silences in an audio file for use in fragmentation of large recordings. more>>
Pause determines the location of silences in an audio file for use in fragmentation of large recordings, studies of pause duration, and the like.

Pause project generates both a nicely formatted table intended to be read by people and a simple tab-delimited file that is easily parsed by software.

<<less
Download (0.010MB)
Added: 2006-12-09 License: GPL (GNU General Public License) Price:
1049 downloads
NASLite 1.x

NASLite 1.x


NASLite v1.x is a collection of single floppy disk based Network Attached Storage (NAS) Server Operating Systems designed to transform a basic computer into a dedicated file server. NASLite v1.x is in more>>

NASLite v1.x is a collection of single floppy disk based Network Attached Storage (NAS) Server Operating Systems designed to transform a basic computer into a dedicated file server. NASLite v1.x is intended primarily for use in a small business or home office network. By design, NASLite v1.x is a community file server and does not support features such as user management , the ability to join domains or disk quotas. However, it is very easy to set-up and use.

<<less
Download (1.72MB)
Added: 2009-04-26 License: Freeware Price:
203 downloads
Test::use::ok 0.02

Test::use::ok 0.02


Test::use::ok is an alternative to Test::More::use_ok. more>>
Test::use::ok is an alternative to Test::More::use_ok.

SYNOPSIS

use ok( Some::Module );

According to the Test::More documentation, it is recommended to run use_ok() inside a BEGIN block, so functions are exported at compile-time and prototypes are properly honored.

That is, instead of writing this:

use_ok( Some::Module );
use_ok( Other::Module );

One should write this:

BEGIN { use_ok( Some::Module ); }
BEGIN { use_ok( Other::Module ); }

However, people often either forget to add BEGIN, or mistakenly group use_ok with other tests in a single BEGIN block, which can create subtle differences in execution order.

With this module, simply change all use_ok in test scripts to use ok, and they will be executed at BEGIN time. The explicit space after use makes it clear that this is a single compile-time action.

<<less
Download (0.013MB)
Added: 2007-02-14 License: MIT/X Consortium License Price:
982 downloads
Comic Vector Icons

Comic Vector Icons


Comic Vector Icons package contains 100 vectorial icons developed with cartoony look and simple shapes. more>>
Comic Vector Icons package contains 100 vectorial icons developed with "cartoony" look and simple shapes that give to your project a funny feeling.

EPS Icons can be rescaled to any size while retaining their original detail, for use in Logo design, Blogs, Web, Software or Print projects.
<<less
Download (45.3MB)
Added: 2007-04-19 License: GPL (GNU General Public License) Price:
946 downloads
Volume Control 0.4

Volume Control 0.4


VolumeControl is a audio mixer for GNU/Linux. more>>
VolumeControl is a audio mixer for GNU/Linux.
Volume Control project requires OSS or ALSA with OSS /dev/mixer compatibility (for now) from the Linux kernel.
The GTK interface provides ease of use in adjusting volume levels.
Features to be added before version 1.0:
- add full ALSA support
- add volume themes
- additional testing
Enhancements:
- Command line arguments have been added.
- The GUI can be bypassed by using command line arguments.
- This makes volumecontrol useful for scripts, or for users who prefer adjusting levels without a GUI.
<<less
Download (0.082MB)
Added: 2006-02-02 License: GPL (GNU General Public License) Price:
2141 downloads
meteo in 2o.pl 1.3

meteo in 2o.pl 1.3


The library of programme. more>> The library of programme meteo - meteo.2o.pl Programme measures temperature and it sends it to server where data be stored.<<less
Download (275KB)
Added: 2009-04-10 License: Freeware Price: Free
201 downloads
scrssfeed 0.1

scrssfeed 0.1


scrssfeed is a simple filter to use in mail programs to grab URLs from the messages that state that spamcop. more>>
scrssfeed is a simple filter to use in mail programs to grab URLs from the messages that state that spamcop "has accepted X mails for processing" and convert them to RSS so they can be used as a "live bookmark" in a browser.

scrssfeed is a very simple script that does one thing: convert the spamcop links in a has accepted X e-mails for processing mail to urls in an RSS feed.

You can then use this feed as a live bookmark in Firefox (and probably in other browsers) using for example the open in tabs option to follow all urls at once.

The scripts expects the mail on stdin and looks for the right urls.

The output is saved to spamcop.rdf, you will probably need to adjust the path to something that fits your web installation.
<<less
Download (0.008MB)
Added: 2006-05-04 License: GPL (GNU General Public License) Price:
1268 downloads
GIMP cursor brushes 1.0

GIMP cursor brushes 1.0


GIMP cursor brushes is a set of (50) brushes for use in the GIMP, created from assorted cursors. more>>
GIMP cursor brushes project is a set of (50) brushes for use in the GIMP, created from assorted cursors. Cursor brushes continues my contribution to my image editor of choice, the GIMP.

Seems basic things like cursors (most used for help-style pages) are often lacking.
I find lots of fancy, useless stuff -- much of it of real artistic merit -- but, as I said, impractical.

I blew the weekend making these brushes. Granted much consists of "prior art", but there was a good deal of editing involved. I even made the "Cursor Mouse" from scratch.

Use them for anything youd like. If you redistribute them, please include this file.

I post these, and perhaps make updates, at gimphelp.org. All the items will also be included (in png format) at wpclipart.com, the Public Domain clipart site.

<<less
Download (0.018MB)
Added: 2006-04-27 License: GPL (GNU General Public License) Price:
1284 downloads
GROU.PS Web 2.0 API 0.1

GROU.PS Web 2.0 API 0.1


GROU.PS Web is a general purpose PHP API, created for use in Web 2.0 sites. more>>
GROU.PS Web is a general purpose PHP API, created for use in Web 2.0 sites. It includes frequently used design patterns of well known web 2.0 sites. For a correct definiton of Web 2.0, you may want to check http://en.wikipedia.org/wiki/Web_2.0

Our API currently has 2 classes:

1) TagCloud?.class.php

Feed the class with your own data, and create Web 2.0 style tag clouds

2) Utility.class.php

General purpose functions. For instance getStyledDateDiff gives nicely formatted date differences that are in use in digg.com and grou.ps

The APIs are not complete yet. We are open to any ideas, wished coming from you.

Usage:

Tag Cloud Example
< ?php
require_once(/path/to/TagCloud.class.php);

$tc = new TagCloud();

$tc->setMinFontSize(8);
$tc->setMaxFontSize(20);

$tc->setDistributionType(TC_RANDOM_DISTRIBUTION);

$tc->setDataClass(tags);

$tc->addData(love,10);
$tc->addData(sex,20);
$tc->addData(food,5);
$tc->addData(business,1);
$tc->addData(PHP,2);

$res = $tc->generate();

echo $res;
? >

Utility Example:

< ?php

require_once(/path/to/Utility.class.php);

$start_date = "September 21, 1999";
$end_date = "yesterday";

$u = new Utility();

$datediff = $u->getStyledDateDiff($start_date,$end_date);

$birthday = "11 January 1978";

$zodiacsign = $u->getZodiacSign($birthday);

echo $datediff;
echo "
";
echo $zodiacsign;

? >
<<less
Download (0.007MB)
Added: 2006-04-13 License: MIT/X Consortium License Price:
1292 downloads
bluebery 1.0.0.2

bluebery 1.0.0.2


bluebery is an easy-to-use SQL/PHP based content manager that provides PHP libraries and methods to use in your sites pages. more>>
bluebery is an easy-to-use SQL/PHP based content manager that provides PHP libraries and methods to use in your sites pages. These methods can be used to easily access and print desired items or an iteration of items that are stored through the bluebery Web UI.
The project includes a library framework for PHP-based Web applications and pages. bluebery can be set up very quickly, needs almost no configuration, and makes writing dynamic peer-based pages very easy.
Enhancements:
- A major bug was fixed in many bluebery files (caused by whitespaces behind the license g*).
- This prevented the previous release from running with authentication.
- It was the cause of error messages which stated "headers already sent by...".
- The doProtection function was added to the library, which performs an include verification and prints out a message in case the file is not included by the authorization file.
<<less
Download (0.12MB)
Added: 2006-12-08 License: GPL (GNU General Public License) Price:
1050 downloads
PerlSendmail 2.1

PerlSendmail 2.1


PerlSendmail is a small script to imitate having sendmail installed. more>>
PerlSendmail is a small script to imitate having sendmail installed.
If you have scripts that require SendMail for sending emails, but do not want to install sendmail on your server then you can use this wrapper instead.
This simple Perl script will send email by connecting to a user specified SMTP server directly. This means that no queue daemons or directories are needed.
If the SMTP server can not be reached then the email will be discarded.
Main features:
- Suitable for use in a chroot environment
- Supports the following sendmail command line options:
-f
-F
-t
- Simple installation
- Simple configuration
<<less
Download (0.002MB)
Added: 2006-04-21 License: Freeware Price:
1281 downloads
MinML 1.7

MinML 1.7


MinML provides a small XML parser. more>>
MinML provides a small XML parser.
MinML is an XML parser written in Java which implements nearly all of the XML language (it ignores DTDs).
It was developed for use in small embedded systems and has a code footprint of less than 10Kb.
It is designed to minimise the amount of heap space consumed when parsing a document. MinML implements the SAX1 interface.
We support SAX1 and have added a simple extension (by subclassing org.xml.sax.DocumentHandler and org.xml.sax.Parser) that allows character data to be processed by a user supplied subclass of java.io.Reader.
Enhancements:
- A fix for a bug in parsing an empty element in mixed content.
<<less
Download (0.049MB)
Added: 2007-04-06 License: BSD License Price:
931 downloads
ccHost 4.0

ccHost 4.0


ccHost is a Web-based infrastructure that may be used to host and allow for commenting, remixing. more>>
ccHost is a Web-based infrastructure that may be used to host and allow for commenting, remixing, and distribution globally.

The more installations of ccHost and its variations, the more content there will be available for enjoyment and artistic re-use in a sane and legal setting.

ccHost is what is used for the infamous Creative Commons CC Mixter project which supports legal media sharing and remixing.

<<less
Download (MB)
Added: 2007-02-28 License: GPL (GNU General Public License) Price:
968 downloads
CELT 0.6.0

CELT 0.6.0


CELT is an experimental audio codec for use in low-delay communication. more>>

CELT 0.6.0 is created to be an experimental audio codec for use in low-delay communication. CELT stands for "Code-Excited Lapped Transform". It applies some of the CELP principles, but does everything in the frequency domain, which removes some of the limitations of CELP.

Major Features:

  1. Ultra-low latency (typically from 3 to 9 ms)
  2. Full audio bandwidth (44.1 kHz and 48 kHz)
  3. Stereo support
  4. Packet loss concealment
  5. Constant bit-rates from 32 kbps to 128 kbps and above
  6. A fixed-point version of the encoder and decoder
  7. The CELT codec is meant to close the gap between Vorbis and Speex for applications where both high quality audio and low delay are desired.

Enhancements:

  • Has just been released, with many quality improvements, including better stereo coupling, better handling of transients, and better handling of highly tonal signals.
  • Packet loss robustness has been improved through the optional use of independent (intra) frames.
  • Supports a larger dynamic range, suitable for encoding 24-bit audio (float version only).
  • There is also a very early VBR implementation.
<<less
Added: 2009-07-07 License: BSD License Price: FREE
13 downloads
RAVE 1.9.9

RAVE 1.9.9


RAVE (Retrospective Analysis and Visualization Engine) is a framework for generating complex analysis products. more>>
RAVE 1.9.9 is yet another excellent utility for everyone. RAVE stands for Retrospective Analysis and Visualization Engine which is a framework for generating complex analysis products.

RAVE caches the intermediate results of analytic tasks for later use in the same or different analyses. This improves performance by reducing duplicated effort when generating analytic results. RAVE users need to do nothing special in order to take advantage of this performance improvement.

The RAVE project provides tools to use RAVE interactively in a terminal, or to publish "live" RAVE analyses online as a network service for use in network-enabled applications.

CERT/NetSA has deployed RAVE to support analysis using the SiLK suite of flow analysis tools. They also distribute the libraries created to perform common flow analysis tasks using SiLK, such as efficiently using pipe-and-filter-based command-line tools from Python, dealing with heterogeneous data sources and efficiently retrieving time-series data.

Requirements:

  • Python 2.4 or higher
<<less
Added: 2008-04-09 License: GPL Price: FREE
13 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5