Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.478.754 Times

E X T R E M E freeware
Filter: All | Freeware | Demo
 

E X T R E M E

< 1 2 3 4 5 > 
Added: February 03, 2010 | Visits: 1.857

ID3 mass tagger ID3 mass tagger is a portable command-line mass tagger for audio files. ID3 mass tagger is designed for non-interactively adding, updating or removing meta-information in a number of files with a single command. It can generate tag fields from the filename and rename files using an intuitive... Platforms: *nix

License: Freeware Size: 67.58 KB Download (161): ID3 mass tagger Download

Added: May 10, 2013 | Visits: 406

Feh script Feh script is an image viewer application.Features: - Simple image viewing. - Multiple image viewing (slideshow). feh {images}... loads and displays the first image, and then key controls, mouse clicks or mouse-wheel turns change slides. You can also specify a delay so that feh changes slides... Platforms: *nix, C/C++, BSD

License: Freeware Download (60): Feh script Download

Added: June 03, 2013 | Visits: 369

Extended Euclidean Algorithm for polynomials over GF(2^m) Contains two functions. The one function computes the greatest common divisor (gcd) of two polynomials a(x) and b(x) over GF(2^m). The other function performs the extended Euclidean algorithm where two polynomials u(x) and v(x) is calculated in addition to the gcd of a(x) and b(x) such that gcd =... Platforms: Matlab

License: Freeware Size: 10 KB Download (47): Extended Euclidean Algorithm for polynomials over GF(2^m) Download

Added: September 11, 2013 | Visits: 561

Extended DFT EDFT (Extended Discrete Fourier Transform) algorithm produces N-point DFT of sequence X where N is greater than the length of input data. Unlike the Fast Fourier Transform (FFT), where unknown readings outside of X are zero-padded, the EDFT algorithm for calculation of the DFT using only... Platforms: Matlab

License: Freeware Size: 235.52 KB Download (42): Extended DFT Download

Added: October 21, 2010 | Visits: 893

cats2procmailrc cats2procmailrc can generate a procmail recipe from my mail categories file. The intent is to have an extremely succinct file of easily editable one line rules, generally of the form: folder tag pattern I build my .procmailrc like this: cats2procmailrc -a announce-email "+%" -t maildir -L... Platforms: *nix

License: Freeware Size: 14.34 KB Download (96): cats2procmailrc Download

Added: May 12, 2010 | Visits: 1.760

Stat::lsMode Stat::lsMode Perl module can format file modes like the ls -l command does. SYNOPSIS use Stat::lsMode; $mode = (stat $file)[2]; $permissions = format_mode($mode); # $permissions is now something like `drwxr-xr-x $permissions = file_mode($file); # Same as above $permissions =... Platforms: *nix

License: Freeware Size: 4.1 KB Download (108): Stat::lsMode Download

Added: April 21, 2010 | Visits: 1.225

chkrootkit chkrootkit is a tool to locally check for signs of a rootkit. It contains: - chkrootkit: shell script that checks system binaries for rootkit modification. - ifpromisc.c: checks if the interface is in promiscuous mode. - chklastlog.c: checks for lastlog deletions. - chkwtmp.c: checks for... Platforms: *nix

License: Freeware Size: 36.86 KB Download (112): chkrootkit Download

Added: January 25, 2010 | Visits: 1.222

Folder Clean-Up The time has come, OS X Code (r,s) releases a first OS X application, Folder Clean-Up! So what does it do? The app is very similar to Chaos Antidote. However, there are two main differences, itls free and you just have to drop the messy folder you want to clean-up over the app and all files and... Platforms: Mac

License: Freeware Size: 40 KB Download (100): Folder Clean-Up Download

Released: November 14, 2012  |  Added: November 14, 2012 | Visits: 695

DHE Drive Info DHE Drive Info is a handy and reliable utility designed to display essential HDD information. It shows HDD (intern or extern) and USB-Stick information: IDENTIFY_DEVICE, Type, Size, Partitions, S.M.A.R.T. Values, S.M.A.R.T. Logs,Self-Tests, Temperatures, MBR, VBR, works with P-ATA, S-ATA, USB,... Platforms: Windows, XP, 7, 7x64

License: Freeware Download (422): DHE Drive Info Download

Released: November 22, 2012  |  Added: November 22, 2012 | Visits: 822

Custom Ringtones by the official: Movie Trailer Voice-Over Guy From Academy Award Winning Sound Designers comes the official "Movie Trailer Voice-Over Guy" directly to your computer, with a new twist for Customized Ringtones. We've all heard his voice in numerous Hollywood film trailers and commercials from around the world. His deep voice has been mixed... Platforms: Mac

License: Freeware Size: 1.7 MB Download (57): Custom Ringtones by the official: Movie Trailer Voice-Over Guy Download

Added: August 11, 2013 | Visits: 1.905

Contact form fields This module allows to add additional fields to site wide contact form like the profile module interface. Admin can define the fields and those will be available on site wide contact form. Please note that these fields will not be available to personal contact form for now as I don't see any... Platforms: PHP

License: Freeware Size: 20.48 KB Download (45): Contact form fields Download

Added: July 31, 2013 | Visits: 485

HyperControl for Cubase Release Notes: ???*Nz Fixed: When scrolling through insert slots arbitrary characters show up in display ???*Nz Fixed: When user selects insert on Axiom Pro, then cycles thru the insert FX slots 1-8. The names of the FX slots show up partially or not at all, and with arbitrary symbols. ???*Nz... Platforms: Mac

License: Freeware Size: 686.08 KB Download (48): HyperControl for Cubase Download

Added: June 19, 2010 | Visits: 1.052

XML::Records XML::Records is a Perl module for perlish record-oriented interface to XML. SYNOPSIS use XML::Records; my $p=XML::Records->new(data.lst); $p->set_records(credit,debit); my ($t,$r) while ( (($t,$r)=$p->get_record()) && $t) { my $amt=$r->{Amount}; if ($t eq debit) { ... } }... Platforms: *nix

License: Freeware Size: 7.17 KB Download (98): XML::Records Download

Added: March 16, 2010 | Visits: 790

Tie::CharArray Tie::CharArray module can access Perl scalars as arrays of characters. SYNOPSIS use Tie::CharArray; my $foobar = a string; tie my @foo, Tie::CharArray, $foobar; $foo[0] = A; # $foobar = A string push @foo, !; # $foobar = A string! print "@foon"; # prints: A s t r i n g ! tie my @bar,... Platforms: *nix

License: Freeware Size: 5.12 KB Download (96): Tie::CharArray Download

Added: September 02, 2010 | Visits: 2.496

Geo::ShapeFile Geo::ShapeFile is a Perl extension for handling ESRI GIS Shapefiles. SYNOPSIS use Geo::ShapeFile; my $shapefile = new Geo::ShapeFile("roads"); for(1 .. $shapefile->shapes()) { my $shape = $shapefile->get_shp_record($_); # see Geo::ShapeFile::Shape docs for what to do with $shape my... Platforms: *nix

License: Freeware Size: 276.48 KB Download (147): Geo::ShapeFile Download

Added: September 24, 2010 | Visits: 935

PDL::Fit::Levmar PDL::Fit::Levmar is a Perl module with Levenberg-Marquardt fit/optimization routines. Levenberg-Marquardt routines for least-squares fit to functions non-linear in fit parameters. This module provides a PDL ( PDL::PDL ) interface to the non-linear fitting library levmar (written in C). Levmar... Platforms: *nix

License: Freeware Size: 122.88 KB Download (104): PDL::Fit::Levmar Download

Added: January 25, 2010 | Visits: 813

zlj post Livejournal posting utility with a beautiful Aqua interface with support for: iTunes music detection (song/album/author) Log-in/password storing Mood setting Security setting Posting to communities MD5 password encryption Don the flyE Password saving option Widget minimization... Platforms: Mac

License: Freeware Download (101): zlj post Download

Released: June 21, 2012  |  Added: June 21, 2012 | Visits: 541

Expense Sharer A multitude of expense tracker programs exist for Palm OS devices. Most of them keep track of one persons expenses. Since 'Expense Sharer' is a book keeping program, it can keep track of one or several persons expenses and can split expenses between these persons.In 'Expense Sharer', each account... Platforms: Windows, Palm OS 1.0

License: Freeware Size: 1.03 MB Download (50): Expense Sharer Download

Added: May 10, 2013 | Visits: 518

Romanian Red Buttons Here is a set of red Romanian buttons. There are not only the standard OsCommerce buttons, but some for contributions installed . You can remove those you don't need. I'm not sure how "nice" they are, but I've used them on my site. Platforms: Windows, *nix, PHP, BSD

License: Freeware Download (57): Romanian Red Buttons Download

Added: July 24, 2013 | Visits: 632

UWB channel model The IEEE Multipath Channel block simulates an indoor UWB channel as described in "A Channel Model for Ultrawideband Indoor Communications" by J.R. Foerster, M. Pendergrass and A.F. Molisch, November 2003, and attempts to incorporate the processes used in their MATLAB scripts.The discrete input is... Platforms: Matlab

License: Freeware Size: 10 KB Download (48): UWB channel model Download

< 1 2 3 4 5 >