flac 1.01
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 241
POE::Component::Enc::Flac 1.01
POE::Component::Enc::Flac is a POE component to wrap FLAC encoder flac. more>>
POE::Component::Enc::Flac is a POE component to wrap FLAC encoder flac.
SYNOPSIS
use POE qw(Component::Enc::Flac);
$encoder1 = POE::Component::Enc::Flac->new();
$encoder1->enc(input => "/tmp/track03.wav");
$encoder2 = POE::Component::Enc::Flac->new(
parent => mainSession,
priority => 10,
compression => best,
status => flacStatus,
error => flacEerror,
warning => flacWarning,
done => flacDone,
);
$encoder2->enc(
input => "/tmp/track02.wav",
output => "/tmp/02.flac",
tracknumber => Track 2,
comment => [
title=Birdhouse in your Soul,
artist=They Might be Giants,
date=1990,
origin=CD,
]
);
POE::Kernel->run();
ABSTRACT
POE is a multitasking framework for Perl. FLAC stands for Free Lossless Audio Codec and flac is an encoder for this standard. This module wraps flac into the POE framework, simplifying its use in, for example, a CD music ripper and encoder application. It provides an object oriented interface.
<<lessSYNOPSIS
use POE qw(Component::Enc::Flac);
$encoder1 = POE::Component::Enc::Flac->new();
$encoder1->enc(input => "/tmp/track03.wav");
$encoder2 = POE::Component::Enc::Flac->new(
parent => mainSession,
priority => 10,
compression => best,
status => flacStatus,
error => flacEerror,
warning => flacWarning,
done => flacDone,
);
$encoder2->enc(
input => "/tmp/track02.wav",
output => "/tmp/02.flac",
tracknumber => Track 2,
comment => [
title=Birdhouse in your Soul,
artist=They Might be Giants,
date=1990,
origin=CD,
]
);
POE::Kernel->run();
ABSTRACT
POE is a multitasking framework for Perl. FLAC stands for Free Lossless Audio Codec and flac is an encoder for this standard. This module wraps flac into the POE framework, simplifying its use in, for example, a CD music ripper and encoder application. It provides an object oriented interface.
Download (0.72MB)
Added: 2006-06-22 License: Perl Artistic License Price:
1219 downloads
FLAC 1.1.4
FLAC stands for Free Lossless Audio Codec. more>>
FLAC is Free Lossless Audio Codec. Grossly oversimplified, FLAC is similar to MP3, but lossless, meaning that audio is compressed in FLAC without any loss in quality.
This is similar to how Zip works, except with FLAC you will get much better compression because it is designed specifically for audio, and you can play back compressed FLAC files in your favorite player (or your car or home stereo, see supported devices) just like you would an MP3 file.
FLAC is freely available and supported on most operating systems, including Windows, "unix" (Linux, *BSD, Solaris, OS X, IRIX), BeOS, OS/2, and Amiga. There are build systems for autotools, MSVC, Watcom C, and Project Builder.
The FLAC project consists of:
the stream format
reference encoders and decoders in library form
flac, a command-line program to encode and decode FLAC files
metaflac, a command-line metadata editor for FLAC files
input plugins for various music players
When we say that FLAC is "Free" it means more than just that it is available at no cost. It means that the specification of the format is fully open to the public to be used for any purpose (the FLAC project reserves the right to set the FLAC specification and certify compliance), and that neither the FLAC format nor any of the implemented encoding/decoding methods are covered by any known patent. It also means that all the source code is available under open-source licenses. It is the first truly open and free lossless audio format.
Main features:
- Lossless: The encoding of audio (PCM) data incurs no loss of information, and the decoded audio is bit-for-bit identical to what went into the encoder. Each frame contains a 16-bit CRC of the frame data for detecting transmission errors. The integrity of the audio data is further insured by storing an MD5 signature of the original unencoded audio data in the file header, which can be compared against later during decoding or testing.
- Fast: FLAC is asymmetric in favor of decode speed. Decoding requires only integer arithmetic, and is much less compute-intensive than for most perceptual codecs. Real-time decode performance is easily achievable on even modest hardware.
- Hardware support: Because of FLACs free reference implementation and low decoding complexity, FLAC is currently the only lossless codec that has any kind of hardware support.
- Streamable: Each FLAC frame contains enough data to decode that frame. FLAC does not even rely on previous or following frames. FLAC uses sync codes and CRCs (similar to MPEG and other formats), which, along with framing, allow decoders to pick up in the middle of a stream with a minimum of delay.
- Seekable: FLAC supports fast sample-accurate seeking. Not only is this useful for playback, it makes FLAC files suitable for use in editing applications.
- Flexible metadata: New metadata blocks can be defined and implemented in future versions of FLAC without breaking older streams or decoders. Currently there are metadata types for tags, cue sheets, and seek tables. Applications can write their own APPLICATION metadata once they register an ID
- Suitable for archiving: FLAC is an open format, and there is no generation loss if you need to convert your data to another format in the future. In addition to the frame CRCs and MD5 signature, flac has a verify option that decodes the encoded stream in parallel with the encoding process and compares the result to the original, aborting with an error if there is a mismatch.
- Convenient CD archiving: FLAC has a "cue sheet" metadata block for storing a CD table of contents and all track and index points. For instance, you can rip a CD to a single file, then import the CDs extracted cue sheet while encoding to yield a single file representation of the entire CD. If your original CD is damaged, the cue sheet can be exported later in order to burn an exact copy.
- Error resistant: Because of FLACs framing, stream errors limit the damage to the frame in which the error occurred, typically a small fraction of a second worth of data. Contrast this with some other lossless codecs, in which a single error destroys the remainder of the stream.
What FLAC is not:
- Lossy. FLAC is intended for lossless compression only, as there are many good lossy formats already, such as Vorbis, MPC, and MP3 (see LAME for an excellent open-source implementation).
- SDMI compliant, et cetera. There is no intention to support any methods of copy protection, which are, for all practical purposes, a complete waste of bits. (Another way to look at it is that since copy protection is futile, it really carries no information, so you might say FLAC already losslessly compresses all possible copy protection information down to zero bits!) Of course, we cant stop what some misguided person does with proprietary metadata blocks, but then again, non-proprietary decoders will skip them anyway.
<<lessThis is similar to how Zip works, except with FLAC you will get much better compression because it is designed specifically for audio, and you can play back compressed FLAC files in your favorite player (or your car or home stereo, see supported devices) just like you would an MP3 file.
FLAC is freely available and supported on most operating systems, including Windows, "unix" (Linux, *BSD, Solaris, OS X, IRIX), BeOS, OS/2, and Amiga. There are build systems for autotools, MSVC, Watcom C, and Project Builder.
The FLAC project consists of:
the stream format
reference encoders and decoders in library form
flac, a command-line program to encode and decode FLAC files
metaflac, a command-line metadata editor for FLAC files
input plugins for various music players
When we say that FLAC is "Free" it means more than just that it is available at no cost. It means that the specification of the format is fully open to the public to be used for any purpose (the FLAC project reserves the right to set the FLAC specification and certify compliance), and that neither the FLAC format nor any of the implemented encoding/decoding methods are covered by any known patent. It also means that all the source code is available under open-source licenses. It is the first truly open and free lossless audio format.
Main features:
- Lossless: The encoding of audio (PCM) data incurs no loss of information, and the decoded audio is bit-for-bit identical to what went into the encoder. Each frame contains a 16-bit CRC of the frame data for detecting transmission errors. The integrity of the audio data is further insured by storing an MD5 signature of the original unencoded audio data in the file header, which can be compared against later during decoding or testing.
- Fast: FLAC is asymmetric in favor of decode speed. Decoding requires only integer arithmetic, and is much less compute-intensive than for most perceptual codecs. Real-time decode performance is easily achievable on even modest hardware.
- Hardware support: Because of FLACs free reference implementation and low decoding complexity, FLAC is currently the only lossless codec that has any kind of hardware support.
- Streamable: Each FLAC frame contains enough data to decode that frame. FLAC does not even rely on previous or following frames. FLAC uses sync codes and CRCs (similar to MPEG and other formats), which, along with framing, allow decoders to pick up in the middle of a stream with a minimum of delay.
- Seekable: FLAC supports fast sample-accurate seeking. Not only is this useful for playback, it makes FLAC files suitable for use in editing applications.
- Flexible metadata: New metadata blocks can be defined and implemented in future versions of FLAC without breaking older streams or decoders. Currently there are metadata types for tags, cue sheets, and seek tables. Applications can write their own APPLICATION metadata once they register an ID
- Suitable for archiving: FLAC is an open format, and there is no generation loss if you need to convert your data to another format in the future. In addition to the frame CRCs and MD5 signature, flac has a verify option that decodes the encoded stream in parallel with the encoding process and compares the result to the original, aborting with an error if there is a mismatch.
- Convenient CD archiving: FLAC has a "cue sheet" metadata block for storing a CD table of contents and all track and index points. For instance, you can rip a CD to a single file, then import the CDs extracted cue sheet while encoding to yield a single file representation of the entire CD. If your original CD is damaged, the cue sheet can be exported later in order to burn an exact copy.
- Error resistant: Because of FLACs framing, stream errors limit the damage to the frame in which the error occurred, typically a small fraction of a second worth of data. Contrast this with some other lossless codecs, in which a single error destroys the remainder of the stream.
What FLAC is not:
- Lossy. FLAC is intended for lossless compression only, as there are many good lossy formats already, such as Vorbis, MPC, and MP3 (see LAME for an excellent open-source implementation).
- SDMI compliant, et cetera. There is no intention to support any methods of copy protection, which are, for all practical purposes, a complete waste of bits. (Another way to look at it is that since copy protection is futile, it really carries no information, so you might say FLAC already losslessly compresses all possible copy protection information down to zero bits!) Of course, we cant stop what some misguided person does with proprietary metadata blocks, but then again, non-proprietary decoders will skip them anyway.
Download (1.9MB)
Added: 2007-02-14 License: GPL (GNU General Public License) Price:
994 downloads
Luca 1.01
Luca is a Web-based based accounting (double-entry ledger) application. more>>
Luca is our new accounting software project. Luca is meant to be a rewritten version of CTB. The main development framework is Python+TurboGears.
Luca is named after Luca Pacioli, the man invented the double-entry accounting method.
Luca is still in early stages of development. Thanks for your patience.
The main framework is TurboGears, so a fair amount of Lucas architecture comes directly from TurboGears stack: Javascript+Mochikit for client-side trickery and AJAX; Kid for HTML templating; CherryPy as controller framework, and SQLObject as database-neutral model.
It was decided long ago (from 2000) that the base development language would be Python, since it has been the best interpreted language around. The next question was which Web framework to use (or go solo and create a mini-framework from scratch). The framework should be free, unobtrusive, "Pythonic" and have a fair learning curve.
Before TurboGears, Zope was considered for Luca. It has really being pushed by the Python community as the "Python on Rails". Zope proved to be too bureucractic (too much typing for too little work) and difficult to learn. However, some specific Zope components e.g. ZODB are really of great value and could be reconsidered for Luca adoption in the future.
Enhancements:
- The code was updated to Turbogears 1.0.2.2 and Python 2.5.
- A ton of bugfixes and many improvements were made.
<<lessLuca is named after Luca Pacioli, the man invented the double-entry accounting method.
Luca is still in early stages of development. Thanks for your patience.
The main framework is TurboGears, so a fair amount of Lucas architecture comes directly from TurboGears stack: Javascript+Mochikit for client-side trickery and AJAX; Kid for HTML templating; CherryPy as controller framework, and SQLObject as database-neutral model.
It was decided long ago (from 2000) that the base development language would be Python, since it has been the best interpreted language around. The next question was which Web framework to use (or go solo and create a mini-framework from scratch). The framework should be free, unobtrusive, "Pythonic" and have a fair learning curve.
Before TurboGears, Zope was considered for Luca. It has really being pushed by the Python community as the "Python on Rails". Zope proved to be too bureucractic (too much typing for too little work) and difficult to learn. However, some specific Zope components e.g. ZODB are really of great value and could be reconsidered for Luca adoption in the future.
Enhancements:
- The code was updated to Turbogears 1.0.2.2 and Python 2.5.
- A ton of bugfixes and many improvements were made.
Download (0.28MB)
Added: 2007-06-13 License: LGPL (GNU Lesser General Public License) Price:
863 downloads
MACTS 1.01
MACTS is a traffic shaper which uses MAC addresses which are associated with users to classify traffic. more>>
MACTS project is a traffic shaper that uses MAC addresses which are associated with users to classify traffic.
This allows fair usage of bandwidth among many machines. Additionally, there is a statistics monitor which displays current statistics on the terminal or stores them in round robin databases.
The stored data may then be used to generate graphs with the included Perl/CGI scripts. The configuration file is straight-forward and requires little knowledge of networking or the underlying traffic control mechanism. Setup should be easy.
Components:
macts - This clears the current traffic classifiers and sets up new ones, as directed by /etc/macts/macts.conf. It also stores some temporary state data in /etc/macts/handles.cache.
macts-stats - With no args, this displays statistics on a terminal, including data rate (kb/s), packet rate (packets/s), and backlog (packets) for each machine. Given the -r flag, it stores the statistics in round robin databases (one for each machine), located in /etc/macts/stats/.
macts-chart - This is a CLI chart generator which reads data from RRDs stored in /etc/macts/stats/.
macts-chart.cgi - This is a CGI wrapper for macts-chart.
Installation:
- mkdir /etc/macts
- mkdir /etc/macts/stats
- create /etc/macts/macts.conf
- add the following lines to /etc/sysctl.conf:
net.ipv4.conf.default.accept_source_route = 1 # is this necessary?
net.bridge.bridge-nf-filter-vlan-tagged = 0
net.bridge.bridge-nf-call-ip6tables = 0
net.bridge.bridge-nf-call-iptables = 0
net.bridge.bridge-nf-call-arptables = 0
- move macts, macts-stats, and macts-chart to /usr/local/bin/.
- (optional) install rrdtools and the perl rrdtool interface
- (optional) add the following line to roots cron:
*/5 * * * * /usr/local/bin/macts-stats -r 2&> /dev/null
- (optional) move macts-chart.cgi to your web servers cgi directory.
Enhancements:
- Installation instructions have been fixed.
<<lessThis allows fair usage of bandwidth among many machines. Additionally, there is a statistics monitor which displays current statistics on the terminal or stores them in round robin databases.
The stored data may then be used to generate graphs with the included Perl/CGI scripts. The configuration file is straight-forward and requires little knowledge of networking or the underlying traffic control mechanism. Setup should be easy.
Components:
macts - This clears the current traffic classifiers and sets up new ones, as directed by /etc/macts/macts.conf. It also stores some temporary state data in /etc/macts/handles.cache.
macts-stats - With no args, this displays statistics on a terminal, including data rate (kb/s), packet rate (packets/s), and backlog (packets) for each machine. Given the -r flag, it stores the statistics in round robin databases (one for each machine), located in /etc/macts/stats/.
macts-chart - This is a CLI chart generator which reads data from RRDs stored in /etc/macts/stats/.
macts-chart.cgi - This is a CGI wrapper for macts-chart.
Installation:
- mkdir /etc/macts
- mkdir /etc/macts/stats
- create /etc/macts/macts.conf
- add the following lines to /etc/sysctl.conf:
net.ipv4.conf.default.accept_source_route = 1 # is this necessary?
net.bridge.bridge-nf-filter-vlan-tagged = 0
net.bridge.bridge-nf-call-ip6tables = 0
net.bridge.bridge-nf-call-iptables = 0
net.bridge.bridge-nf-call-arptables = 0
- move macts, macts-stats, and macts-chart to /usr/local/bin/.
- (optional) install rrdtools and the perl rrdtool interface
- (optional) add the following line to roots cron:
*/5 * * * * /usr/local/bin/macts-stats -r 2&> /dev/null
- (optional) move macts-chart.cgi to your web servers cgi directory.
Enhancements:
- Installation instructions have been fixed.
Download (0.014MB)
Added: 2006-02-25 License: GPL (GNU General Public License) Price:
1337 downloads
Libckpt 1.01
Libckpt is a portable checkpointing tool for Unix. more>>
Libckpt is a portable checkpointing tool for Unix. It provides a mechanism for enabling fault-tolerance for long-running programs.
Libckpt implements most optimizations that have been proposed to improve the performance of checkpointing.
Additionally, it implements "user-directed" checkpointing, a new optimization unique to Libckpt.
<<lessLibckpt implements most optimizations that have been proposed to improve the performance of checkpointing.
Additionally, it implements "user-directed" checkpointing, a new optimization unique to Libckpt.
Download (0.12MB)
Added: 2006-03-10 License: Freely Distributable Price:
1335 downloads
What 1.01
What is a Perl module to find out about running services. more>>
What is a Perl module to find out about running services.
SYNOPSIS
$what = What->new(
Host => my.domain.org,
Port => 28,
);
$what->mta;
$what->mta_version;
$what->mta_banner;
The What class is interface to classes providing information about running services. What::MTA is the only implementation so far.
What::MTA
MTAs supported are: Exim, Postfix (version only on localhost), Sendmail, Courier (name only), XMail, MasqMail.
See What::MTA for details.
METHODS
new
$obj = What->new( Host => "10.10.10.1", Port => 25 )
mta()
Returns the name of the MTA running.
mta_banner()
Returns the banner message.
mta_version()
Returns the MTA version.
<<lessSYNOPSIS
$what = What->new(
Host => my.domain.org,
Port => 28,
);
$what->mta;
$what->mta_version;
$what->mta_banner;
The What class is interface to classes providing information about running services. What::MTA is the only implementation so far.
What::MTA
MTAs supported are: Exim, Postfix (version only on localhost), Sendmail, Courier (name only), XMail, MasqMail.
See What::MTA for details.
METHODS
new
$obj = What->new( Host => "10.10.10.1", Port => 25 )
mta()
Returns the name of the MTA running.
mta_banner()
Returns the banner message.
mta_version()
Returns the MTA version.
Download (0.027MB)
Added: 2007-05-11 License: Perl Artistic License Price:
897 downloads
Clarion 1.01
Clarion is a Perl extension for reading CLARION data files. more>>
Clarion is a Perl extension for reading CLARION data files.
ABSTRACT
This is a perl module to access CLARION 2.1 files. At the moment only read access to the files are provided by this package. "Encrypted" files are processed transparently, you do not need to specify the password of a file.
SYNOPSIS
use Clarion;
my $dbh=new Clarion "customer.dat";
print $dbh->file_struct;
for ( 1 .. $dbh->last_record ) {
my $r=$dbh->get_record_hash($_);
next if $r->{_DELETED};
print $r->{CODE}." ".$r->{NAME}." ".$r->{PHONE}."n";
}
$dbh->close();
METHODS
$dbh=new Clarion;
$dbh=new Clarion "test.dat";
This will create an object $dbh that will be used to interact with the various methods the module provides. If file name is specified then associate the DAT file with the object. "Encrypted" files are processed transparently, you do not need to specify the password of a file.
$dbh->open("test.dat");
Associate the DAT file with the object, opens file.
@r=$dbh->get_record($_,@fields);
@r=$dbh->get_record($_);
Returns a list of data (field values) from the specified record. The first parameter in the call is the number of the physical record. If you do not specify any other parameters, all fields are returned in the same order as they appear in the file. You can also put list of field names after the record number and then only those will be returned. The first value of the returned list is always the logical (0 or not 0) value saying whether the record is deleted or not.
$r=$dbh->get_record_hash;
Returns reference to hash containing field values indexed by field names. The name of the deleted flag is _DELETED. The first parameter in the call is the number of the physical record. If you do not specify any other parameters, all fields are returned. You can also put list of field names after the record number and then only those will be returned.
$n=$dbh->last_record;
Returns the number of recods in the database file.
$n=$dbh->bof;
Returns the physical number of first logical record.
$n=$dbh->eof;
Returns the physical number of last logical record.
$dbh->close;
This closes the database file that are associated with the $dbh.
$struct = $dbh->file_struct;
This returns CLARION file structure.
<<lessABSTRACT
This is a perl module to access CLARION 2.1 files. At the moment only read access to the files are provided by this package. "Encrypted" files are processed transparently, you do not need to specify the password of a file.
SYNOPSIS
use Clarion;
my $dbh=new Clarion "customer.dat";
print $dbh->file_struct;
for ( 1 .. $dbh->last_record ) {
my $r=$dbh->get_record_hash($_);
next if $r->{_DELETED};
print $r->{CODE}." ".$r->{NAME}." ".$r->{PHONE}."n";
}
$dbh->close();
METHODS
$dbh=new Clarion;
$dbh=new Clarion "test.dat";
This will create an object $dbh that will be used to interact with the various methods the module provides. If file name is specified then associate the DAT file with the object. "Encrypted" files are processed transparently, you do not need to specify the password of a file.
$dbh->open("test.dat");
Associate the DAT file with the object, opens file.
@r=$dbh->get_record($_,@fields);
@r=$dbh->get_record($_);
Returns a list of data (field values) from the specified record. The first parameter in the call is the number of the physical record. If you do not specify any other parameters, all fields are returned in the same order as they appear in the file. You can also put list of field names after the record number and then only those will be returned. The first value of the returned list is always the logical (0 or not 0) value saying whether the record is deleted or not.
$r=$dbh->get_record_hash;
Returns reference to hash containing field values indexed by field names. The name of the deleted flag is _DELETED. The first parameter in the call is the number of the physical record. If you do not specify any other parameters, all fields are returned. You can also put list of field names after the record number and then only those will be returned.
$n=$dbh->last_record;
Returns the number of recods in the database file.
$n=$dbh->bof;
Returns the physical number of first logical record.
$n=$dbh->eof;
Returns the physical number of last logical record.
$dbh->close;
This closes the database file that are associated with the $dbh.
$struct = $dbh->file_struct;
This returns CLARION file structure.
Download (0.006MB)
Added: 2007-05-15 License: Perl Artistic License Price:
1018 downloads
Slam Soccer 1.01
Slam Soccer is a comic style football game. more>>
Slam Soccer is a comic style football game.
Main features:
- Freeware and open source
- Funny 3d-comic-style
- Enthralling stadium atmosphere
- Keyboard and gamepad control
- 2-player mode
- Career and world cup
- Register in the online hall of fame
- Build your own stadium
- 80 teams
- 20 stadiums
- 10 weather conditions
- 50 adboards
- 10 referees
- 9 commentators (5 German, 2 English, 2 French)
Slam Soccer comes in 3 languages: German, English, French
<<lessMain features:
- Freeware and open source
- Funny 3d-comic-style
- Enthralling stadium atmosphere
- Keyboard and gamepad control
- 2-player mode
- Career and world cup
- Register in the online hall of fame
- Build your own stadium
- 80 teams
- 20 stadiums
- 10 weather conditions
- 50 adboards
- 10 referees
- 9 commentators (5 German, 2 English, 2 French)
Slam Soccer comes in 3 languages: German, English, French
Download (85.5MB)
Added: 2006-06-30 License: GPL (GNU General Public License) Price:
1228 downloads
MOOzilla 1.01
MOOzilla provides a MOO/MU* client that supports HTML rendering. more>>
MOOzilla provides a MOO/MU* client that supports HTML rendering.
MOOzilla is an HTML rendering MOO/MU* client developed as an add-on component for Mozilla. It allows inline HTML text to be rendered as part of a MOO/MU* session, similar to the Windows-only Pueblo client, but with the power of the Mozilla rendering engine.
Main features:
- Command history
- Scrollback buffer
- Text configuration
- Tab completion
- Context web search
- Automatic hyper-linking
- Command hyper-links
- Inline HTML rendering
- HTML entity rendering
- Independent Single and Multiline Text Edit
- Unicode UTF-8 input and output (screenshot)
- HTML logging (with timestamps) and log viewer
<<lessMOOzilla is an HTML rendering MOO/MU* client developed as an add-on component for Mozilla. It allows inline HTML text to be rendered as part of a MOO/MU* session, similar to the Windows-only Pueblo client, but with the power of the Mozilla rendering engine.
Main features:
- Command history
- Scrollback buffer
- Text configuration
- Tab completion
- Context web search
- Automatic hyper-linking
- Command hyper-links
- Inline HTML rendering
- HTML entity rendering
- Independent Single and Multiline Text Edit
- Unicode UTF-8 input and output (screenshot)
- HTML logging (with timestamps) and log viewer
Download (0.48MB)
Added: 2007-04-04 License: GPL (GNU General Public License) Price:
934 downloads
AutoScan 1.01
AutoScan is a utility for network exploration (Samba and nessus client). more>>
AutoScan is a utility for network exploration.
The objective of the program is to post the list of all equipment connected to the network. A list of ports preset is scanned for each equipment.
Main features:
- Automatic network discovery
- Entire subnets can be scanned simultaneously without human intervention
- Addition time-reality of the new machines put on the network
- Detection of the OS, brand and model known (Possibility to add an unknown equipment in the database)
- Ability to save the network state
- A Samba share browser
- A Nessus client
- For each machine, one can launch a script (ex:ping, nmap) and display the result
- For each port, one can launch an application (ex:rdesktop for the terminal server service)
<<lessThe objective of the program is to post the list of all equipment connected to the network. A list of ports preset is scanned for each equipment.
Main features:
- Automatic network discovery
- Entire subnets can be scanned simultaneously without human intervention
- Addition time-reality of the new machines put on the network
- Detection of the OS, brand and model known (Possibility to add an unknown equipment in the database)
- Ability to save the network state
- A Samba share browser
- A Nessus client
- For each machine, one can launch a script (ex:ping, nmap) and display the result
- For each port, one can launch an application (ex:rdesktop for the terminal server service)
Download (14.7MB)
Added: 2007-06-02 License: GPL (GNU General Public License) Price:
967 downloads
openPlaG 1.01
openPlaG is an online function graph plotter, written in PHP. more>>
openPlaG is an online function graph plotter, written in PHP. This application can compute and plot a very high amount of functions, including many probability functions and is fairly good configurable.
Instructions:
To run the program, youll need access to a web server with PHP 4 or 5 and GDlib running. I dont know with which PHP4 versions it works, but at least with 4.4.1 it does. For lower versions just try it out.
The downloaded program is a zipped tarball, which contains these files:
- function.php the iframe content where the graph (png-image) is shown.
- gnu_gpl.txt GNU GENERAL PUBLIC LICENSE Version 2. Read it, dont change it.
- graph.css the used style sheet. This is very minimalistic.
- graph.php calculates the graph and draws the image.
- init.php security check and formulae (functions) definitions.
- instructions.html explains the use of the plotter.
- openPlaG.html start here when getting into the source code. This is the start page with the two iframes for the graph and the single value. You may want to change its name to index.html or something like that.
- single.php calculates a formula with a single value, not the whole graph. The result is shown in the second iframe.
Upload the files on your server. The program should work without problems, if server and PHP are configured properly. Make your changes as you want to, but dont forget to tell me if you make something really amazing or useful.
<<lessInstructions:
To run the program, youll need access to a web server with PHP 4 or 5 and GDlib running. I dont know with which PHP4 versions it works, but at least with 4.4.1 it does. For lower versions just try it out.
The downloaded program is a zipped tarball, which contains these files:
- function.php the iframe content where the graph (png-image) is shown.
- gnu_gpl.txt GNU GENERAL PUBLIC LICENSE Version 2. Read it, dont change it.
- graph.css the used style sheet. This is very minimalistic.
- graph.php calculates the graph and draws the image.
- init.php security check and formulae (functions) definitions.
- instructions.html explains the use of the plotter.
- openPlaG.html start here when getting into the source code. This is the start page with the two iframes for the graph and the single value. You may want to change its name to index.html or something like that.
- single.php calculates a formula with a single value, not the whole graph. The result is shown in the second iframe.
Upload the files on your server. The program should work without problems, if server and PHP are configured properly. Make your changes as you want to, but dont forget to tell me if you make something really amazing or useful.
Download (0.024MB)
Added: 2007-07-31 License: GPL (GNU General Public License) Price:
815 downloads
Mcube 1.01
Mcube is a 4x4x4 Rubiks Cube solver. more>>
Mcube project is a 4x4x4 Rubiks Cube solver.
Mcube solves 4x4x4 Rubiks Cubes. It is platform independent and supports both a pipable console-only format and a graphical format.
CGI version:
First finished release of mcube Solves 4x4x4 rubiks cube via a CGI web-based environment. The cube class can be used in other programs as well.
Command-line version:
This is the command-line version of the 4x4x4 solver. The algorithm is identical to the normal (CGI) version. Use this if you like do-it-yourself console programs.
Enhancements:
- Fixed concise() bug not updating mov[] correctly.
- Added "input page" generator on output page, for easier debugging.
<<lessMcube solves 4x4x4 Rubiks Cubes. It is platform independent and supports both a pipable console-only format and a graphical format.
CGI version:
First finished release of mcube Solves 4x4x4 rubiks cube via a CGI web-based environment. The cube class can be used in other programs as well.
Command-line version:
This is the command-line version of the 4x4x4 solver. The algorithm is identical to the normal (CGI) version. Use this if you like do-it-yourself console programs.
Enhancements:
- Fixed concise() bug not updating mov[] correctly.
- Added "input page" generator on output page, for easier debugging.
Download (MB)
Added: 2006-12-26 License: GPL (GNU General Public License) Price:
1048 downloads
eArea 1.01
eArea is a simple cross-browser WYSIWYG text editor. more>>
eArea is a simple cross-browser WYSIWYG text editor. It works on Explorer, Firefox/Mozila and Safari/Konqueror.
eArea project even with OS X Dashboard widgets! If eArea comes across a browser it doesnt support (like Opera), it will display an ordinary < textarea > instead.
How does it work?
Putting eArea onto a webpage is really simple. All you need to do is upload the eArea folder to your website and paste a snippet of code into your HTML.
Everything about eArea is customisable: from what buttons are shown to the size of the text area and the style of the text in it. All from within the snippet of code in your HTML! You can even have as many eAreas on you pages as you like!
<<lesseArea project even with OS X Dashboard widgets! If eArea comes across a browser it doesnt support (like Opera), it will display an ordinary < textarea > instead.
How does it work?
Putting eArea onto a webpage is really simple. All you need to do is upload the eArea folder to your website and paste a snippet of code into your HTML.
Everything about eArea is customisable: from what buttons are shown to the size of the text area and the style of the text in it. All from within the snippet of code in your HTML! You can even have as many eAreas on you pages as you like!
Download (0.030MB)
Added: 2006-05-05 License: LGPL (GNU Lesser General Public License) Price:
1268 downloads
De-interlace 1.01
De-interlace plug-in does a simple interpolation between the odd or even fields in an image to correct this. more>>
When an image is taken from a video capture source (f.i. a freeze-frame), sometimes only either the odd or the even fields in the frame get captured, resulting in an image which, line by line, is data-black-data-black-etc.
De-interlace plug-in does a simple interpolation between the odd or even fields in an image to correct this.
<<lessDe-interlace plug-in does a simple interpolation between the odd or even fields in an image to correct this.
Download (0.005MB)
Added: 2006-09-21 License: GPL (GNU General Public License) Price:
1131 downloads
Math::Vec 1.01
Math::Vec is a Object-Oriented Vector Math Methods in Perl. more>>
Math::Vec is a Object-Oriented Vector Math Methods in Perl.
SYNOPSIS
use Math::Vec;
$v = Math::Vec->new(0,1,2);
or
use Math::Vec qw(NewVec);
$v = NewVec(0,1,2);
@res = $v->Cross([1,2.5,0]);
$p = NewVec(@res);
$q = $p->Dot([0,1,0]);
or
use Math::Vec qw(:terse);
$v = V(0,1,2);
$q = ($v x [1,2.5,0]) * [0,1,0];
NOTICE
This module is still somewhat incomplete. If a function does nothing, there is likely a really good reason. Please have a look at the code if you are trying to use this in a production environment.
<<lessSYNOPSIS
use Math::Vec;
$v = Math::Vec->new(0,1,2);
or
use Math::Vec qw(NewVec);
$v = NewVec(0,1,2);
@res = $v->Cross([1,2.5,0]);
$p = NewVec(@res);
$q = $p->Dot([0,1,0]);
or
use Math::Vec qw(:terse);
$v = V(0,1,2);
$q = ($v x [1,2.5,0]) * [0,1,0];
NOTICE
This module is still somewhat incomplete. If a function does nothing, there is likely a really good reason. Please have a look at the code if you are trying to use this in a production environment.
Download (0.010MB)
Added: 2007-07-03 License: Perl Artistic License Price:
847 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above flac 1.01 search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed