Main > Free Download Search >

Free into something software for linux

into something

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 928
Nosefart 2.5

Nosefart 2.5


Nosefart is a player for NES Sound Format. more>>
Nosefart is a player for NES Sound Format (NSF) files (which consist of audio data ripped from Nintendo Entertainment System games).
It runs as a standalone player in Linux, with both command line and GTK interfaces, as well has having plugins for Winamp, XMMS, and CL-amp.
Enhancements:
- The file selection dialog now remembers what directory you used in the last session.
- If esd (or something else) is blocking the sound card, it now pops up an error rather than just hanging.
<<less
Download (0.50MB)
Added: 2005-09-21 License: LGPL (GNU Lesser General Public License) Price:
1495 downloads
Analog VUmeter 0.9.2

Analog VUmeter 0.9.2


Analog VUmeter is a visualization plugin for XMMS. more>>
Analog VUmeter is a visualization plugin for XMMS.

If you like this plugin, then please send me feedback, comments, patches, etc. Also what I need is artwork or skins, so mail me if you would like to help with that.

Idea for this plugin came from similar plugin for winamp called Homeboy analog VU meter, and ideas how to write plugin to xmms from MSA plugin.

At first I only wanted to make something, that would look like the real thing, but as time passed, I have tried to make it also behave like it actually did something useful.

So what you are actually seeing is dBFS value for sound, which means RMS value of soundlevel compared to reference ((2^16-1)/2). Values range from 0 dBFS (highest) to -91 dBFS (lowest).

<<less
Download (0.37MB)
Added: 2006-04-04 License: GPL (GNU General Public License) Price:
1326 downloads
raidmonitor 0.0.1

raidmonitor 0.0.1


raidmonitor is a Linux software RAID monitor. more>>
Raidmonitor monitors your linux raid devices (/proc/mdstat). It can send you a mail when something goes wrong, or show the current status in a window.

Raidmonitor is built using pccts for the parser generation and gtkmm for the GUI.
<<less
Download (0.20MB)
Added: 2005-04-07 License: GPL (GNU General Public License) Price:
1663 downloads
IO::Util 1.5

IO::Util 1.5


IO::Util is a selection of general-utility IO function. more>>
IO::Util is a selection of general-utility IO function.

SYNOPSIS

use IO::Util qw(capture slurp Tid Lid Uid load_mml);
capture()
# captures the selected filehandle
$output_ref = capture { any_printing_code() } ;
# now $$output_ref eq something

# captures FILEHANDLE
$output_ref = capture { any_special_printing_code() } *FILEHEANDLER ;

# append the output to $captured
capture { any_printing_code() } *FILEHEANDLER , $captured
# now $captured eq something

# use another class to tie the handler
use IO::Scalar ;
$IO::Util::TIE_HANDLE_CLASS = IO::Scalar
slurp()
$_ = /path/to/file ;
$content_ref = slurp ;
$content_ref = slurp /path/to/file ;
$content_ref = slurp *FILEHANDLE ;

# append the file content to $content
$_ = /path/to/file ;
slurp $content;
slurp /path/to/file, $content ;
slurp *FILEHANDLE, $content ;
Tid(), Lid(), Uid()
$temporarily_unique_id = Tid ; # Q9MU1N_NVRM
$locally_unique_id = Lid ; # 2MS_Q9MU1N_P5F6
$universally_unique_id = Uid ; # MGJFSBTK_2MS_Q9MU1N_PWES
A MML file (Minimal Markup Language)
< opt >
< !-- a multi line
comment-- >
< parA >
< optA >01< /optA >
< optA >02< /optA >
< optA >03< /optA >
< /parA >
< parB >
< optA >04< /optA >
< optA >05< /optA >
< optA >06< /optA >
< optB >
< key >any key< /key >
< /optB >
< /parB >
< /opt >
load_mml()
$struct = load_mml path/to/mml_file ;
$struct = load_mml $mml_string ;
$struct = load_mml *MMLFILE ;
$struct = load_mml ..., %options ;

# $struct = {
# parA => {
# optA => [
# 01,
# 02,
# 03
# ]
# },
# parB => {
# optA => [
# 04,
# 05,
# 06
# ],
# optB => {
# key => any key
# }
# }
# }

<<less
Download (0.014MB)
Added: 2006-09-12 License: Perl Artistic License Price:
1137 downloads
XLightOff 1.1

XLightOff 1.1


XLightOff project is a X game which is easy to play, harder to solve. more>>
XLightOff project is a X game which is easy to play, harder to solve.

Easy to get in hands, not so easy to solve.

Installation - usage

Once downloaded, simply unzip/untar the archive, go into the created directory, and run "make".

It should produce a "xlightoff" file.

Then, simply run "./xlightoff" and there you are.

It must be played with the mouse.

Of course, you must run an X server to get something. It should be easy to use.

<<less
Download (0.013MB)
Added: 2006-11-16 License: Public Domain Price:
1072 downloads
Pike ScriptRunner 0.5

Pike ScriptRunner 0.5


Pike ScriptRunner allows you to run scripts written in Pike under any FastCGI-enabled Web server. more>>
Pike ScriptRunner allows you to run Pike scripts and PSP files under non-pike based web servers. Pike ScriptRunner project is a FastCGI application that runs under pretty much any web server that supports FastCGI.
Because ScriptRunner uses FastCGI, its performance should be close to embedded language solutions like mod_perl, but with a lot less worries about security and overflows. With ScriptRunner you can introduce all of your friends to Pike without forcing them to suffer bad performance or (more likely) give up their attachment to Apache.
In addition, ScriptRunner does a lot of the unpleasant work of parsing incoming requests, allowing you to get right to the task of writing your code.
Right now, its pretty early on in its development, so there are a lot of niceties present in Roxen or Caudium that arent available, and its not terribly well tested, so it could have some nasty bugs.
Enough raw functionality is available to be highly useful; hopefully there will be interest in improving things in this area. ScriptRunner contains code written by others over the years; this is really more of a gathering of snippets into something more readily useful to others.
Main features:
- Multi-threaded request handling
- Persistent interpreter
- Compiled object caching
- Session handling (optional on a per-page/script basis)
- Incoming requests are parsed and passed to you in a RequestID object.
- Handles FCGI processing for you. Just return a string or control mapping from your parse() method.
- Preliminary Pike Server Pages support, which allows you to mix HTML and Pike in the same page.
- Tested to work with mod_fastcgi and mod_actions on Apache 1.3+
<<less
Download (0.014MB)
Added: 2006-02-03 License: GPL (GNU General Public License) Price:
1358 downloads
Iterator::BreakOn 0.3

Iterator::BreakOn 0.3


Iterator::BreakOn is a Perl module to create iterators with control flow breaks. more>>
Iterator::BreakOn is a Perl module to create iterators with control flow breaks.

SYNOPSIS

use Iterator::BreakOn;

#
# get a generic data source with a next method implemented whom
# returns a generic object
#
# in this example the order of the items in the data stream is assumed
# to be:
# location, zipcode, name
#
my $datasource = $myschema->resultset(mytable)->search();

my $iter = Iterator::BreakOn->new(
datasource => $datasource,
break_before => [
qw(location)
],
break_after => [
location => &after_location,
zipcode
],
on_last_item => sub { print "Finnished !"; },
);

#
# There are three uses modes:
#
# Fully automatic mode: useless if not defined code for breaks
$iter->run();

# Semi-automatic mode: get only the item (run automatically the other
# events)
while (my $data_item = $iter->next()) {
# do something with data ...
1;
}

# Manual mode: get every event as an object
while (my $event = $iter->next_event()) {
if ($event->name() eq before_location) {
# do something before a new location comes

}
elsif ($event->name() eq after_zipcode)) {
# do something after the last zipcode reached

}
elsif ($event->name() eq next_item ) {
# get the item (including the first and last items)
my $data = $iter->next();

# and do something whit him

}
elsif ($event->name() eq last_item) {
# and do something when the end of data reached

}
} # end while

<<less
Download (0.013MB)
Added: 2007-05-18 License: Perl Artistic License Price:
889 downloads
OpenJigsaw 0.5

OpenJigsaw 0.5


OpenJigsaw project is a jigsaw puzzle game. more>>
OpenJigsaw project is a jigsaw puzzle game.

OpenJigsaw is a simple puzzle game that takes any image you give it, chops it into a number of puzzle pieces, and lets you reassemble it.

No images are included in the zip files, but Im sure you can find something. If you happen to know any images that are in the public domain and would make good jigsaw puzzles, mail me so I can include them with the program.

<<less
Download (0.036MB)
Added: 2007-01-02 License: zlib/libpng License Price:
1030 downloads
file2menu 1.00

file2menu 1.00


file2menu is a class that automatically generates a menu of links more>>
file2menu is a class that automatically generates a menu of links.

It reads the contents of given directories and all the subdirectories in them to enumerate the files that should be referenced in the output.

To use the function you just need something like this :

< ?php
$dir = new file2menu(‘/myDirectory’);
$dir->DisplayMenu();

You can also use the SaveAs method to save the menu in a file :

< ?php
$dir = new file2menu(‘/myDirectory’);
$dir->SaveAs(‘FileToSave.html’);

<<less
Download (MB)
Added: 2006-09-20 License: GPL (GNU General Public License) Price:
1130 downloads
Firewall Generator 3.0

Firewall Generator 3.0


Firewall Generator is a CGI script that generates a firewall. more>>
Firewall Generator is a CGI script that generates a bash shell script that contains a list of commands for configuring a set of firewall rules.

It is the best solution to know something about system security.
<<less
Download (0.002MB)
Added: 2006-07-13 License: GPL (GNU General Public License) Price:
1206 downloads
Open Tournament System 1.16.2

Open Tournament System 1.16.2


Open Tournament System project is a Web-based tournament system. more>>
Open Tournament System project is a Web-based tournament system.

Open Tournament System is a full tournament engine that supports modular additions of new tournament types. It features team, single, and draft tournaments.

This site requires to be at the Url root or its own subdomain.

Something like:
- www.yoursite.com
or
- tournament.yoursite.com

It can not be like this:
- www.yoursite.comtourny
or
- sub.yoursite.comtourny

<<less
Download (0.42MB)
Added: 2006-11-06 License: GPL (GNU General Public License) Price:
1089 downloads
Tuxpaint Stamps for Australian Schools 0.0.7

Tuxpaint Stamps for Australian Schools 0.0.7


Tuxpaint Stamps for Australian Schools is a collection of stamps and other resources for Tuxpaint for use in Australian schools. more>>
Tuxpaint Stamps for Australian Schools is a collection of stamps and other resources for Tuxpaint for use in Australian schools. Tuxpaint Stamps for Australian Schools includes Australian coins, bank notes, signs, animals, plants, and state flags.
Installation Instructions:
- Close Tuxpaint
- Locate your tuxpaint stamps directory
- On Unix/Linux this will be something like /usr/share/tuxpaint/stamps
- On Windows it will be something like C:Program FilesTuxpaintstamps
- Extract the contents of the archive (tuxpaint-au-stamps-x.y.z.tar.gz) to the stamps directory
- Run Tuxpaint and select the stamps tool
Enhancements:
- The software was split into two packages.
<<less
Download (0.76MB)
Added: 2006-04-26 License: GPL (GNU General Public License) Price:
1283 downloads
EHNT 0.4

EHNT 0.4


EHNT is a tool which turns streams of Netflow (version 5) data into something useful and human-readable. more>>
EHNT is a tool which turns streams of Netflow (version 5) data into something useful and human-readable. (Netflow is a UDP-based traffic reporting protocol created by Cisco, generated by Cisco, Juniper, Foundry, and other routers.)
Netflow operates in many ways. It will dump flow records in human-readable form. It will also provide reports on top ASes, IP protocols, and tcp/udp ports. The reports can be generated over various intervals, from 1 minute to 1 day.
Component programs are:
1. ehntserv listens to netflow version 5 UDP packets, and also listens for client TCP connections. When a TCP client connects, the server starts forwarding all the netflow packets it receives (plus the IP address of the originating device) to that client.
ehntserv does not currently do any IP access control. I suggest that you use ipchains or iptables on your linux box, or IP Filter (ipf) (http://coombs.anu.edu.au/ipfilter/) on your Solaris or BSD box. I dont know what the current state of packet filtering is on other Unixes; IP Filter seems to support several.
2. ehnt connects to ehntserv and displays the flows it receives in various ways. It currently has four modes (-m ):
- top mode displays average utilization by top ASes, IP protocols, or tcp/udp ports over a given interval (from 1 minute to 1 day).
Top mode is different when it focuses on a single interface on a single router, because then you get to see summaries of source and destionation for both inbound and outbound traffic. Otherwise, you just get summaries of source and destination.
- dump mode displays individual flows
- shortdump mode display individual flows in a more compact but hard
to read fashion
- colondump mode display individual flows in a machine-readable format.
And yes, I recognize that the name of this mode is unpleasant.
In all three modes, simple (REALLY simple) filtering can be done for AS
number, TCP/UDP port, IP protocol number, device sending the flow record,
and SNMP interface index.
You may think of ehnt in the three dump modes as a brain-dead and incredibly
simple tcpdump for netflow.
ehnt also has the silly and uninspiredly-named big filter, in which it
only displays flows with are bigger (in packets or bytes) than any flow
received before it. This only makes sense in the three dump modes.
Enhancements:
- Added Unix domain support for client connections, enabled by default
<<less
Download (2.3MB)
Added: 2006-07-03 License: GPL (GNU General Public License) Price:
1209 downloads
kfilewatcher 0.1

kfilewatcher 0.1


kfilewatcher project watches for file changes and allows you to react on them. more>>
kfilewatcher project watches for file changes and allows you to react on them.

Example:

kfilewatcher /tmp/test 2>&1 | while read a; do echo "File has changed - doing something"; done

This command does something every time kfilewatcher detects a change. At the moment, the only action is to output "File has changed - doing something", but you can write anything there, e.g.

- backup stuff as soon as it changes
- publish files on your homepage everytime they change
- keep directories in sync
<<less
Download (1.7MB)
Added: 2006-12-28 License: GPL (GNU General Public License) Price:
1030 downloads
showposition 0.5

showposition 0.5


showposition is a Web-based tool that shows (using Google Maps) the position provided in the URL. more>>
showposition is a Web-based tool that shows (using Google Maps) the position provided in the URL, with a comment provided in the URL.

showposition is useful if you want to explain to somebody (e.g. on Usenet) where something is.
<<less
Download (0.003MB)
Added: 2006-06-14 License: GPL (GNU General Public License) Price:
1228 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5