performs
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1131
Mac::Errors 1.13
Mac::Errors is a Perl module with constants for Mac error codes. more>>
Mac::Errors is a Perl module with constants for Mac error codes.
SYNOPSIS
use Mac::Errors qw(openErr);
if( $value == openErr ) { ... }
my $error = $MacErrors{ $symbol }; # -- OR -- my $error = $MacErrors{ $number };
my $symbol = $error->symbol; my $number = $error->number; my $desc = $error->description;
# in MacPerl, $^E is meaningful, and we tie $MacError to it use Mac::Errors qw( $MacError );
open FILE, $foo or die $^E; # error number open FILE, $foo or die $MacError; # gets description from $^E
The %MacErrors hash indexes error information by the error number or symbol. Each value is a Mac::Errors object which has the symbol, number, and description.
The $MacError scalar performs some tied magic to translate MacPerls $^E to the error text.
<<lessSYNOPSIS
use Mac::Errors qw(openErr);
if( $value == openErr ) { ... }
my $error = $MacErrors{ $symbol }; # -- OR -- my $error = $MacErrors{ $number };
my $symbol = $error->symbol; my $number = $error->number; my $desc = $error->description;
# in MacPerl, $^E is meaningful, and we tie $MacError to it use Mac::Errors qw( $MacError );
open FILE, $foo or die $^E; # error number open FILE, $foo or die $MacError; # gets description from $^E
The %MacErrors hash indexes error information by the error number or symbol. Each value is a Mac::Errors object which has the symbol, number, and description.
The $MacError scalar performs some tied magic to translate MacPerls $^E to the error text.
Download (0.053MB)
Added: 2007-03-07 License: Perl Artistic License Price:
963 downloads
exrtools 0.4
exrtools project is a set of simple command-line utilities for manipulating with high dynamic range images in OpenEXR format. more>>
exrtools project is a set of simple command-line utilities for manipulating with high dynamic range images in OpenEXR format. OpenEXR is a high dynamic-range (HDR) image file format developed by Industrial Light & Magic for use in computer imaging applications.
exrtools was developed to help experiment with batch processing of HDR images for tone mapping. Each application is small and reasonably self-contained such that the source code may be of most value to others.
exrtools currently only works with RGBA OpenEXR files. As well, the code assumes that the EXR files and PNG files all use sRGB primaries and gamma function. Fixing this is not very difficult, and the code to fix allows for some interesting possibilities. That said, I do not have time right now, so this will have to wait.
exrtools and its source code is released under an MIT-style license and may be used in both commercial and non-commercial applications without fee.
Applications
exrblur
Applies a gaussian blur to an image.
exrchr
Applies spatially-varying chromatic adaptation to an image.
exricamtm
Performs tone mapping using the iCAM method.
exrnlm
Performs non-linear masking correction to an image.
exrnormalize
Normalize an image.
exrpptm
Performs tone mapping using the photoreceptor physiology method.
exrstats
Displays statistics about an image.
exrtopng
Converts an image to PNG format.
jpegtoexr
Converts an image to EXR format from JPEG.
pngtoexr
Converts an image to EXR format from PNG.
ppmtoexr
Converts an image to EXR format from PPM. Works with the 16 bit per channel PPM files from dcraw for digital cameras with RAW modes.
Enhancements:
- Added the ppmtoexr application to convert from PPM formats including the 48 bit per pixel format output by dcraw.
<<lessexrtools was developed to help experiment with batch processing of HDR images for tone mapping. Each application is small and reasonably self-contained such that the source code may be of most value to others.
exrtools currently only works with RGBA OpenEXR files. As well, the code assumes that the EXR files and PNG files all use sRGB primaries and gamma function. Fixing this is not very difficult, and the code to fix allows for some interesting possibilities. That said, I do not have time right now, so this will have to wait.
exrtools and its source code is released under an MIT-style license and may be used in both commercial and non-commercial applications without fee.
Applications
exrblur
Applies a gaussian blur to an image.
exrchr
Applies spatially-varying chromatic adaptation to an image.
exricamtm
Performs tone mapping using the iCAM method.
exrnlm
Performs non-linear masking correction to an image.
exrnormalize
Normalize an image.
exrpptm
Performs tone mapping using the photoreceptor physiology method.
exrstats
Displays statistics about an image.
exrtopng
Converts an image to PNG format.
jpegtoexr
Converts an image to EXR format from JPEG.
pngtoexr
Converts an image to EXR format from PNG.
ppmtoexr
Converts an image to EXR format from PPM. Works with the 16 bit per channel PPM files from dcraw for digital cameras with RAW modes.
Enhancements:
- Added the ppmtoexr application to convert from PPM formats including the 48 bit per pixel format output by dcraw.
Download (0.29MB)
Added: 2007-01-05 License: GPL (GNU General Public License) Price:
1022 downloads
librmrtsp
librmrtsp is provided as a library to allow other free software projects to include the functionality in there software. more>>
librmrtsp performs the same function as imfetch, however it is provided as a library to allow other free software projects to include the functionality in there software.
librmrtsp is based on code from the xine project, but has been extensively modified to remove buffer overruns, crashes and dependencies on the rest of the xine source tree.
The idea is continue process in order to produce a high quality library that could be used by other projects like xine and Fido.
<<lesslibrmrtsp is based on code from the xine project, but has been extensively modified to remove buffer overruns, crashes and dependencies on the rest of the xine source tree.
The idea is continue process in order to produce a high quality library that could be used by other projects like xine and Fido.
Download (MB)
Added: 2006-12-05 License: GPL (GNU General Public License) Price:
613 downloads
Web Form Factory 0.1.3
Web Form Factory is a simple application that binds HTML forms to a database. more>>
Web Form Factory is a simple application that binds HTML forms to a database. It analyzes the HTML file you supply and identifies all the common input types it contains, including text fields, drop down lists, checkboxes, radio buttons, and text areas.
Once all the input types have been detected, it then performs some validation tests that ensures that enough information is contained within the HTML form to allow the program to bind the inputs properly. It then generates the required backend PHP code and returns the form back to the you in a zip file.
Enhancements:
- Form Validation Capabilities were added.
- The user can easily specify which fields are mandatory, and the location and appearance of error messages can be configured.
- A new Tag engine was added.
- Tags can be used to make form generation even simpler and faster by eliminating repetitive form coding tasks.
<<lessOnce all the input types have been detected, it then performs some validation tests that ensures that enough information is contained within the HTML form to allow the program to bind the inputs properly. It then generates the required backend PHP code and returns the form back to the you in a zip file.
Enhancements:
- Form Validation Capabilities were added.
- The user can easily specify which fields are mandatory, and the location and appearance of error messages can be configured.
- A new Tag engine was added.
- Tags can be used to make form generation even simpler and faster by eliminating repetitive form coding tasks.
Download (0.16MB)
Added: 2006-08-25 License: BSD License Price:
1157 downloads
Benchmark::Forking 0.99
Benchmark::Forking is a Perl module to run benchmarks in separate processes. more>>
Benchmark::Forking is a Perl module to run benchmarks in separate processes.
SYNOPSIS
use Benchmark::Forking qw( timethis timethese cmpthese );
timethis ($count, "code");
timethese($count, {
Name1 => sub { ...code1... },
Name2 => sub { ...code2... },
});
cmpthese($count, {
Name1 => sub { ...code1... },
Name2 => sub { ...code2... },
});
Benchmark::Forking->enabled(0); # Stop using forking feature
...
Benchmark::Forking->enabled(1); # Begin using forking again
The Benchmark::Forking module changes the behavior of the standard Benchmark module, running each piece of code to be timed in a separate forked process. Because each child exits after running its timing loop, the computations it performs cant propogate back to affect subsequent test cases.
This can make benchmark comparisons more accurate, because the separate test cases are mostly isolated from side-effects caused by the others. Benchmark scripts typically dont depend on those side-effects, so in most cases you can simply use or require this module at the top of your existing code without having to change anything else. (A few key exceptions are noted in "BUGS".)
<<lessSYNOPSIS
use Benchmark::Forking qw( timethis timethese cmpthese );
timethis ($count, "code");
timethese($count, {
Name1 => sub { ...code1... },
Name2 => sub { ...code2... },
});
cmpthese($count, {
Name1 => sub { ...code1... },
Name2 => sub { ...code2... },
});
Benchmark::Forking->enabled(0); # Stop using forking feature
...
Benchmark::Forking->enabled(1); # Begin using forking again
The Benchmark::Forking module changes the behavior of the standard Benchmark module, running each piece of code to be timed in a separate forked process. Because each child exits after running its timing loop, the computations it performs cant propogate back to affect subsequent test cases.
This can make benchmark comparisons more accurate, because the separate test cases are mostly isolated from side-effects caused by the others. Benchmark scripts typically dont depend on those side-effects, so in most cases you can simply use or require this module at the top of your existing code without having to change anything else. (A few key exceptions are noted in "BUGS".)
Download (0.006MB)
Added: 2007-04-30 License: Perl Artistic License Price:
907 downloads
powernap 30
Powernap is a small Python extension for accurate sleeping. more>>
Powernap is a small Python extension for accurate sleeping. Pythons time.sleep() function is fairly inaccurate. It is definitely not accurate enough for music, games, or graphics. powernap can sleep too long or too short, and usually does.
Using Linuxs real-time clock (RTC) allows for more accurate timing. This extension wraps all the messy RTC stuff and provides nap(), which performs the same job as sleep(), but more accurately.
Even more usefully, it provides rnap(), which is a padding nap. That is, if you call rnap(30), it will nap for however many milliseconds are required to make the time since the last nap 30 milliseconds. rtc_on() sets up the real-time clock, and rtc_off() turns it off. It also switches the scheduler to SCHED_FIFO.
Enhancements:
- This is the second public release.
- Most of the timing was moved into the C extension.
- rnap(), the rolling padding nap, is provided.
<<lessUsing Linuxs real-time clock (RTC) allows for more accurate timing. This extension wraps all the messy RTC stuff and provides nap(), which performs the same job as sleep(), but more accurately.
Even more usefully, it provides rnap(), which is a padding nap. That is, if you call rnap(30), it will nap for however many milliseconds are required to make the time since the last nap 30 milliseconds. rtc_on() sets up the real-time clock, and rtc_off() turns it off. It also switches the scheduler to SCHED_FIFO.
Enhancements:
- This is the second public release.
- Most of the timing was moved into the C extension.
- rnap(), the rolling padding nap, is provided.
Download (0.009MB)
Added: 2006-07-13 License: GPL (GNU General Public License) Price:
1201 downloads
qt-recordmydesktop 0.3.6
qt-recordmydesktop is a recordMyDesktop GUI created in QT language for the KDE desktop. more>>
qt-recordmydesktop is a recordMyDesktop GUI created in QT language for the KDE desktop.
recordMyDesktop is a desktop session recorder for GNU/linux that attemps to be easy to use, yet also effective at its primary task.
As such, the program is separated in two parts; a simple command line tool that performs the basic tasks of capturing and encoding and an interface that exposes the program functionality in a usable way.
<<lessrecordMyDesktop is a desktop session recorder for GNU/linux that attemps to be easy to use, yet also effective at its primary task.
As such, the program is separated in two parts; a simple command line tool that performs the basic tasks of capturing and encoding and an interface that exposes the program functionality in a usable way.
Download (0.18MB)
Added: 2007-08-18 License: GPL (GNU General Public License) Price:
829 downloads
MP3 as CD verifier 2 0.1a
MP3 as CD verifier 2 performs lookups on CDDB servers. more>>
MP3 as CD verifier 2 performs lookups on CDDB servers in an attempt to determine whether one or multiple directories of downloaded/ripped MP3 files has correct track lengths.
Please remember that mp3ascd uses the alphabetically sorted list of .mp3 files per directory Hence it is possible that if your filenames are somehow mismatched (case?), they may be sorted incorrectly. If youre getting a mismatch that you think is wrong, run mp3ascd with default options to make sure that the enumerated list of files it finds is sorted correctly.
To install, firstly make sure the script is executable.
I copy mine into a directory in my PATH, such as /usr/bin/. It should work on a multitude of platforms, but if it does not work on yours, please let me know.
Enhancements:
- Improved readability
- Summary reports (recursive), including non-matching directories
- ID3 tag presence info shown in full display mode
<<lessPlease remember that mp3ascd uses the alphabetically sorted list of .mp3 files per directory Hence it is possible that if your filenames are somehow mismatched (case?), they may be sorted incorrectly. If youre getting a mismatch that you think is wrong, run mp3ascd with default options to make sure that the enumerated list of files it finds is sorted correctly.
To install, firstly make sure the script is executable.
I copy mine into a directory in my PATH, such as /usr/bin/. It should work on a multitude of platforms, but if it does not work on yours, please let me know.
Enhancements:
- Improved readability
- Summary reports (recursive), including non-matching directories
- ID3 tag presence info shown in full display mode
Download (0.011MB)
Added: 2006-07-22 License: GPL (GNU General Public License) Price:
1190 downloads
gtk-recordMyDesktop 0.3.5
gtk-recordMyDesktop is a GUI frontend for recordMyDesktop desktop capture application to be used on the GNOME desktop. more>>
gtk-recordMyDesktop is a GUI frontend for recordMyDesktop desktop capture application to be used on the GNOME desktop.
recordMyDesktop is a desktop session recorder for linux that attemps to be easy to use, yet also effective at its primary task. As such, the program is separated in two parts; a simple command line tool that performs the basic tasks of capturing and encoding and an interface that exposes the program functionality in a usable way.
The commandline tool (which essentially is recordMyDesktop), is written in C, while the frontend (gtk-recordMyDesktop), is written in python and pyGtk.
recordMyDesktop offers also the ability to record audio, along with video, without the need of any later proccesing or mixing.
<<lessrecordMyDesktop is a desktop session recorder for linux that attemps to be easy to use, yet also effective at its primary task. As such, the program is separated in two parts; a simple command line tool that performs the basic tasks of capturing and encoding and an interface that exposes the program functionality in a usable way.
The commandline tool (which essentially is recordMyDesktop), is written in C, while the frontend (gtk-recordMyDesktop), is written in python and pyGtk.
recordMyDesktop offers also the ability to record audio, along with video, without the need of any later proccesing or mixing.
Download (0.18MB)
Added: 2007-07-14 License: GPL (GNU General Public License) Price:
522 downloads
Dump/Restore 0.4b41
Dump/Restore are utilities to dump and restore an ext2 partition. more>>
Dump/Restore project examines files in a filesystem, determines which ones need to be backed up, and copies those files to a specified disk, tape or other storage medium.
Subsequent incremental backups can then be layered on top of the full backup.
The restore command performs the inverse function of dump; it can restore a full backup of a filesystem.
Single files and directory subtrees may also be restored from full or partial backups in interractive mode.
Enhancements:
- This is a maintenance release, fixing a few bugs related to the restoration of ACLs and huge backups (symtab over 2GB in size).
- The directory hash indexing has been made optional since it may require too much memory when restoring huge backups.
<<lessSubsequent incremental backups can then be layered on top of the full backup.
The restore command performs the inverse function of dump; it can restore a full backup of a filesystem.
Single files and directory subtrees may also be restored from full or partial backups in interractive mode.
Enhancements:
- This is a maintenance release, fixing a few bugs related to the restoration of ACLs and huge backups (symtab over 2GB in size).
- The directory hash indexing has been made optional since it may require too much memory when restoring huge backups.
Download (0.28MB)
Added: 2006-01-02 License: BSD License Price:
1396 downloads
Auto Contrast
Auto Contrast is a script-fu based on a technique by lylejk of dpreview.com that performs an entirely automatic contrast adjust. more>>
Auto Contrast is a script-fu based on a technique by lylejk of dpreview.com that performs an entirely automatic contrast adjustment.
You may like the effect, dislike it, or not see a change, but its worth a try!
<<lessYou may like the effect, dislike it, or not see a change, but its worth a try!
Download (MB)
Added: 2006-08-16 License: GPL (GNU General Public License) Price:
1179 downloads
Serbert 0.1.0
Serbert is a serial bit error rate tester. more>>
Serbert is a command line utility which performs a Bit Error Rate Test (BERT) on serial lines for Unix and its variants. It does this by transmitting bytes, and waiting for their uncorrupted return.
Serbert, however, does not provide a true Bit Error Rate Test (BERT), as it does not check the individual bits returned. It uses the operating systems standard serial interface, which provides the status of each returned byte.
<<lessSerbert, however, does not provide a true Bit Error Rate Test (BERT), as it does not check the individual bits returned. It uses the operating systems standard serial interface, which provides the status of each returned byte.
Download (0.10MB)
Added: 2005-04-08 License: GPL (GNU General Public License) Price:
1661 downloads
Helma for liunx 1.6.2
Web application framework for fast,efficient scripting and serving of website. more>> Helma is written in Java and employs Javascript for its server-side scripting environment, removing the need for compilation cycles and reducing development costs while giving you instant access to leverage the whole wealth of Java libraries out there.
Helma pioneered the simple and codeless mapping of application objects to database tables. In addition, an embedded object-oriented database performs automatic data persistence of unmapped objects.
Helma has proven itself to be stable and fast, capable of serving high traffic sites with hundreds of thousands of dynamic pages per day. The Austrian Broadcasting Corporation, popular weblog hosting sites such as antville.org, twoday.net, and blogger.de, among many others, have successfully been deploying Helma for several years.<<less
Download (6.21MB)
Added: 2009-04-04 License: Freeware Price: Free
204 downloads
ARPSpoofDetector 0.1.3
ARPSpoofDetector performs active and passive detection of ARP spoofing and IP (IPv4) address collision. more>>
ARPSpoofDetector performs active and passive detection of ARP spoofing and IP (IPv4) address collision. The program can send healing packets with regular ARP information.
ARPSpoofDetector is new GPL project initialized by NetMasters.CZ customers (specially 100MEGA Distribution). We didnt find suitable intrusion detection system or another applicable software to solve ARP spoofing detection and IP collision without false alarms and with easy configuration for our customers.
Main features:
- passive ARP spoofing detection from broadcast ARP reply packets
- passive IP collision detection from broadcast ARP packets and netbios packets
- active IP collision detection by sending ARP request packets
Log example:
Mon Jul 23 21:49:26 2007
Warning: IP 192.168.1.10 collision detected!
SERVER MAC address: 00:4f:ED:7C:3A:B9
ATTACKER MAC address: 00:20:38:7C:3A:CE
Attacker NETBIOS name: PERSEUS
Attacker NETBIOS group: WORKGROUP
Last attacker IP was 192.168.1.9
IP changes history:
From: Mon Jul 23 21:48:47 2007 To: Mon Jul 23 21:49:10 2007 was IP 192.168.1.3 (maybe over DHCP)
From: Mon Jul 23 21:49:10 2007 To: Mon Jul 23 21:49:26 2007 was IP 192.168.1.6 (maybe over DHCP)
<<lessARPSpoofDetector is new GPL project initialized by NetMasters.CZ customers (specially 100MEGA Distribution). We didnt find suitable intrusion detection system or another applicable software to solve ARP spoofing detection and IP collision without false alarms and with easy configuration for our customers.
Main features:
- passive ARP spoofing detection from broadcast ARP reply packets
- passive IP collision detection from broadcast ARP packets and netbios packets
- active IP collision detection by sending ARP request packets
Log example:
Mon Jul 23 21:49:26 2007
Warning: IP 192.168.1.10 collision detected!
SERVER MAC address: 00:4f:ED:7C:3A:B9
ATTACKER MAC address: 00:20:38:7C:3A:CE
Attacker NETBIOS name: PERSEUS
Attacker NETBIOS group: WORKGROUP
Last attacker IP was 192.168.1.9
IP changes history:
From: Mon Jul 23 21:48:47 2007 To: Mon Jul 23 21:49:10 2007 was IP 192.168.1.3 (maybe over DHCP)
From: Mon Jul 23 21:49:10 2007 To: Mon Jul 23 21:49:26 2007 was IP 192.168.1.6 (maybe over DHCP)
Download (0.034MB)
Added: 2007-08-12 License: GPL v3 Price:
807 downloads
FFTExplorer 1.16
FFTExplorer project is a graphic spectrum analysis program. more>>
FFTExplorer project is a graphic spectrum analysis program.
FFTExplorer is a GUI that performs spectral analysis on real-time data from a sound card or other source, and can analyze the spectra of various sound file types.
It can display time-domain and frequency-domain data in a number of ways, and is an easy-to-use introduction to the topic of spectrum analysis.
Beyond performing a fast Fourier transform on arbitrary data sources, it can also perform moving average noise reduction for the treatment of signals accompanied by noise.
It contains a lengthy combination essay/help file on the various topics the program covers, some step-by-step examples using its own internal signal source, and a detailed example using an external source.
Enhancements:
- Updated source to conform to gcc 4.1 requirements.
<<lessFFTExplorer is a GUI that performs spectral analysis on real-time data from a sound card or other source, and can analyze the spectra of various sound file types.
It can display time-domain and frequency-domain data in a number of ways, and is an easy-to-use introduction to the topic of spectrum analysis.
Beyond performing a fast Fourier transform on arbitrary data sources, it can also perform moving average noise reduction for the treatment of signals accompanied by noise.
It contains a lengthy combination essay/help file on the various topics the program covers, some step-by-step examples using its own internal signal source, and a detailed example using an external source.
Enhancements:
- Updated source to conform to gcc 4.1 requirements.
Download (0.15MB)
Added: 2006-10-16 License: GPL (GNU General Public License) Price:
1108 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 performs 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