winrar rapidshare zip
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 322
Long Range ZIP 0.18
Long Range ZIP is a compression program that can achieve very high compression ratios and speed when used with large files. more>>
Long Range ZIP is a compression program that can achieve very high compression ratios and speed when used with large files. It uses the combined compression algorithms of lzma for maximum compression, lzo for maximum speed, and the long range redundancy reduction of rzip.
It is designed to scale with increases with RAM size, improving compression further. A choice of either size or speed optimizations allows for either better compression than even lzma can provide, or better speed than gzip, but with bzip2 sized compression levels.
Enhancements:
- Blocks to be compressed by lzma are now scanned by lzo in advance to find incompressible data and bypass attempting to compress them.
- This speeds up substantially attempting to compress incompressible files, and should fix the "lzma getting stuck on an incompressible block" bug.
- Basic Darwin support was added.
- Compression mode was stratified for lower levels of lzma compression.
<<lessIt is designed to scale with increases with RAM size, improving compression further. A choice of either size or speed optimizations allows for either better compression than even lzma can provide, or better speed than gzip, but with bzip2 sized compression levels.
Enhancements:
- Blocks to be compressed by lzma are now scanned by lzo in advance to find incompressible data and bypass attempting to compress them.
- This speeds up substantially attempting to compress incompressible files, and should fix the "lzma getting stuck on an incompressible block" bug.
- Basic Darwin support was added.
- Compression mode was stratified for lower levels of lzma compression.
Download (0.32MB)
Added: 2006-11-10 License: GPL (GNU General Public License) Price:
1080 downloads
Jar Ajar 0.3.1
Jar Ajar is a JAR-based self-extractor for zip files. more>>
Jar Ajar is a JAR-based self-extractor for zip files. Jar Ajar project can package zipped files with descriptive images and text using a graphical interface.
When recipients launch the resulting JAR, Jar Ajar guides users through the unzip process.
Jar Ajar is designed specifically for software deployment of Java-based applications. By taking advantage of the Java environment that would already be found on the users platform, Jar Ajar is very lightweight and offers a consistent look and feel.
Packaging. Features to help you package files for deployment:
- Welcome message: supports HTML and CSS-compliant text.
- Logo & License: allows you to include a customized logo and license.
- Zip: Jar Ajar zips up your files into a self-extracting .jar file.
- Documented: instructions are built right into the sidebar for quick access.
Self-Extraction. The self-extractor means that you can install your package on any computer that support Java. The general sequence of events during an installation include:
- Greetings from your welcome message.
- Required acceptance of your license.
- Browse for installation location.
- Install the files, with feedback on which files have been installed.
- Wrap-up, including a reminder of where the files have been installed to, and the option to open a readme and launch your program.
Enhancements:
- New features in this release include the ability to display a license during self-extraction and a readme afterward.
- Jar Ajar can now also launch programs after extraction.
- Hyperlinkable text displays are now supported.
- User interface improvements were made.
<<lessWhen recipients launch the resulting JAR, Jar Ajar guides users through the unzip process.
Jar Ajar is designed specifically for software deployment of Java-based applications. By taking advantage of the Java environment that would already be found on the users platform, Jar Ajar is very lightweight and offers a consistent look and feel.
Packaging. Features to help you package files for deployment:
- Welcome message: supports HTML and CSS-compliant text.
- Logo & License: allows you to include a customized logo and license.
- Zip: Jar Ajar zips up your files into a self-extracting .jar file.
- Documented: instructions are built right into the sidebar for quick access.
Self-Extraction. The self-extractor means that you can install your package on any computer that support Java. The general sequence of events during an installation include:
- Greetings from your welcome message.
- Required acceptance of your license.
- Browse for installation location.
- Install the files, with feedback on which files have been installed.
- Wrap-up, including a reminder of where the files have been installed to, and the option to open a readme and launch your program.
Enhancements:
- New features in this release include the ability to display a license during self-extraction and a readme afterward.
- Jar Ajar can now also launch programs after extraction.
- Hyperlinkable text displays are now supported.
- User interface improvements were made.
Download (0.20MB)
Added: 2007-01-03 License: GPL (GNU General Public License) Price:
1028 downloads
Simple Web Share 0.1.1
SimpleWebShare is a small application for publishing a part of your hard disk on the Web. more>>
SimpleWebShare is a small application for publishing a part of your hard disk on the Web. Simple Web Share project displays files and directories in a list view and allows them to be downloaded, including on-the-fly zipping.
Main features:
- Display file and directory as list
- Download of file
- Download of directory with on-the-fly zip generation (with a customizable folders size limit)
- Simple HTTP Authentification
- Localized interface (currently french or english)
<<lessMain features:
- Display file and directory as list
- Download of file
- Download of directory with on-the-fly zip generation (with a customizable folders size limit)
- Simple HTTP Authentification
- Localized interface (currently french or english)
Download (0.063MB)
Added: 2006-06-06 License: GPL (GNU General Public License) Price:
1239 downloads
Archive::Zip 1.20
Archive::Zip is a Perl module which provides an interface to ZIP archive files. more>>
Archive::Zip is a Perl module which provides an interface to ZIP archive files.
SYNOPSIS
# Create a Zip file
use Archive::Zip qw( :ERROR_CODES :CONSTANTS );
my $zip = Archive::Zip->new();
# Add a directory
my $dir_member = $zip->addDirectory( dirname/ );
# Add a file from a string with compression
my $string_member = $zip->addString( This is a test, stringMember.txt );
$string_member->desiredCompressionMethod( COMPRESSION_DEFLATED );
# Add a file from disk
my $file_member = $zip->addFile( xyz.pl, AnotherName.pl );
# Save the Zip file
unless ( $zip->writeToFileNamed(someZip.zip) == AZ_OK ) {
die write error;
}
# Read a Zip file
my $somezip = Archive::Zip->new();
unless ( $somezip->read( someZip.zip ) == AZ_OK ) {
die read error;
}
# Change the compression type for a file in the Zip
my $member = $somezip->memberNamed( stringMember.txt );
$member->desiredCompressionMethod( COMPRESSION_STORED );
unless ( $zip->writeToFileNamed( someOtherZip.zip ) == AZ_OK ) {
die write error;
}
The Archive::Zip module allows a Perl program to create, manipulate, read, and write Zip archive files.
Zip archives can be created, or you can read from existing zip files.
Once created, they can be written to files, streams, or strings. Members can be added, removed, extracted, replaced, rearranged, and enumerated. They can also be renamed or have their dates, comments, or other attributes queried or modified. Their data can be compressed or uncompressed as needed.
Members can be created from members in existing Zip files, or from existing directories, files, or strings.
This module uses the Compress::Zlib library to read and write the compressed streams inside the files.
<<lessSYNOPSIS
# Create a Zip file
use Archive::Zip qw( :ERROR_CODES :CONSTANTS );
my $zip = Archive::Zip->new();
# Add a directory
my $dir_member = $zip->addDirectory( dirname/ );
# Add a file from a string with compression
my $string_member = $zip->addString( This is a test, stringMember.txt );
$string_member->desiredCompressionMethod( COMPRESSION_DEFLATED );
# Add a file from disk
my $file_member = $zip->addFile( xyz.pl, AnotherName.pl );
# Save the Zip file
unless ( $zip->writeToFileNamed(someZip.zip) == AZ_OK ) {
die write error;
}
# Read a Zip file
my $somezip = Archive::Zip->new();
unless ( $somezip->read( someZip.zip ) == AZ_OK ) {
die read error;
}
# Change the compression type for a file in the Zip
my $member = $somezip->memberNamed( stringMember.txt );
$member->desiredCompressionMethod( COMPRESSION_STORED );
unless ( $zip->writeToFileNamed( someOtherZip.zip ) == AZ_OK ) {
die write error;
}
The Archive::Zip module allows a Perl program to create, manipulate, read, and write Zip archive files.
Zip archives can be created, or you can read from existing zip files.
Once created, they can be written to files, streams, or strings. Members can be added, removed, extracted, replaced, rearranged, and enumerated. They can also be renamed or have their dates, comments, or other attributes queried or modified. Their data can be compressed or uncompressed as needed.
Members can be created from members in existing Zip files, or from existing directories, files, or strings.
This module uses the Compress::Zlib library to read and write the compressed streams inside the files.
Download (0.17MB)
Added: 2007-07-03 License: Perl Artistic License Price:
852 downloads
Dark Glass Icons 2.72
Dark Glass Icons is a KDE theme based on OS-K icons. more>>
Dark Glass Icons 2.72 is yet another great addition for everyone's computer. It is actually a KDE theme based on OS-K icons. Part of this set is a derivative of OS-K set, part is of the developers 3d stuff. The theme package is 126MB large. The png source file is 5MB.
Instructions:
- Installation - full pack
-
- Download the archive, uncompress and copy to /usr/share/icons
- then choose Dark-Glass icons from the KDE control center.
- Installation - script version
-
- Download the zip file
- Extract the zip file
- cd into the Dark-Glass-scripted folder
- Open a terminal there
- Run ./buildset
- Install the icon theme in KDE Control Panel
Enhancements:
- Some correction on open folder
- Folder locked, favorites.
- Added aMule icon and other actions.
- Changed Firefox, Opera, Konqueror icons and some color retouch in apps icons.
Added: 2009-02-25 License: GPL Price: FREE
15 downloads
LMartianGreen Plone Skin 1.5
LMartianGreen Plone Skin project consists of a Plone Skin for Plone 2.5. more>>
LMartianGreen Plone Skin project consists of a Plone Skin for Plone 2.5.
LMartianGreen is one of Plone skins from Alternative Plone Skins project.
You can install LMartianGreen Plone skin in the same way as other Plone products:
- Download zip. or .gz archive.
- Install as Zope product: extract Plone skin from archive to directory of products and restart Zope server.
- Install in your Plone instance with QuickInstaller (Plone Control Panel -> Add/remove Products)
- Now your Plone site should have the corresponding skin look.
Note: LMartianGreen Plone skin was created with Plone skin dump product.
<<lessLMartianGreen is one of Plone skins from Alternative Plone Skins project.
You can install LMartianGreen Plone skin in the same way as other Plone products:
- Download zip. or .gz archive.
- Install as Zope product: extract Plone skin from archive to directory of products and restart Zope server.
- Install in your Plone instance with QuickInstaller (Plone Control Panel -> Add/remove Products)
- Now your Plone site should have the corresponding skin look.
Note: LMartianGreen Plone skin was created with Plone skin dump product.
Download (0.024MB)
Added: 2007-03-29 License: ZPL (Zope Public License) Price:
942 downloads
Link Alert 0.7.2
Link Alert is a Firefox extension that changes the cursor to indicate the target of a link. more>>
Link Alert is a Firefox extension that changes the cursor to indicate the target of a link.
Highlights links to the following:
-New Windows
-Secure Sites
-Email Links
-Javascript
-Word Documents
-Excel Spreadsheets
-PDF Files
-Zip Files
-Applications
-Text Files
-Images
-RSS Feeds
-AIM: Links
-and more...
<<lessHighlights links to the following:
-New Windows
-Secure Sites
-Email Links
-Javascript
-Word Documents
-Excel Spreadsheets
-PDF Files
-Zip Files
-Applications
-Text Files
-Images
-RSS Feeds
-AIM: Links
-and more...
Download (0.012MB)
Added: 2007-07-16 License: MPL (Mozilla Public License) Price:
837 downloads
niche.sh 0.1 Alpha
niche.sh is an experimental shell written in java and c. more>>
niche.sh is an experimental shell written in java and c.
It aims to:
- be platform neutral
- operate multiple machines
- provide a simple efficient command line
niche.sh was written purely out of interest, please try it if you like but dont expect a finished product!
The c component of the shell has been compiled for Linux, Windows, Solaris, Mac OSX and FreeBSD. Results may vary depending on the exact version of your os all the files for all platforms are contained in a single zip file.
<<lessIt aims to:
- be platform neutral
- operate multiple machines
- provide a simple efficient command line
niche.sh was written purely out of interest, please try it if you like but dont expect a finished product!
The c component of the shell has been compiled for Linux, Windows, Solaris, Mac OSX and FreeBSD. Results may vary depending on the exact version of your os all the files for all platforms are contained in a single zip file.
Download (0.42MB)
Added: 2007-07-24 License: Free To Use But Restricted Price:
823 downloads
wmWeatherApp 0.0.3
wmWeatherApp is nothing more than a very simplistic weather dock app. more>>
wmWeatherApp is nothing more than a very simplistic weather dock app. There are several quite nice dockapps for this purpose, however they were all far too bloated for my needs therefore I created a very minimalist one.
This application simply grabs the image of the current weather (using your zipcode which you supply as a parameter to wmWeatherApp) and displays it as the background image of the dockapp.
You can left click on the dockapp and have it launch a web browser (which you can configure by setting the environment variable BROWSER) and show you the weather.
Quick usage instructions:
./configure && make && make install
wmWeatherApp -zip 61832 -delay 300
-zip specifies your zipcode
-delay specifies the update interval in seconds. 300 seconds is what I currently use.
The weather image is pulled from www.wunderground.com (which is the most reliable weather provider I have found). License is GPL.
<<lessThis application simply grabs the image of the current weather (using your zipcode which you supply as a parameter to wmWeatherApp) and displays it as the background image of the dockapp.
You can left click on the dockapp and have it launch a web browser (which you can configure by setting the environment variable BROWSER) and show you the weather.
Quick usage instructions:
./configure && make && make install
wmWeatherApp -zip 61832 -delay 300
-zip specifies your zipcode
-delay specifies the update interval in seconds. 300 seconds is what I currently use.
The weather image is pulled from www.wunderground.com (which is the most reliable weather provider I have found). License is GPL.
Download (0.31MB)
Added: 2006-10-26 License: GPL (GNU General Public License) Price:
1094 downloads
Archive::Any::Create 0.02
Archive::Any::Create is an abstract API to create archives (tar.gz and zip). more>>
Archive::Any::Create is an abstract API to create archives (tar.gz and zip).
SYNOPSIS
use Archive::Any::Create;
my $archive = Archive::Any::Create->new;
$archive->container(foo); # top-level directory
$archive->add_file(bar.txt, $data); # foo/bar.txt
$archive->add_file(bar/baz.txt, $data); # foo/bar/baz.txt
$archive->write_file(foo.tar.gz);
$archive->write_file(foo.zip);
$archive->write_filehandle(*STDOUT, tar.gz);
Archive::Any::Create is a wrapper module to create tar/tar.gz/zip files with a single easy-to-use API.
<<lessSYNOPSIS
use Archive::Any::Create;
my $archive = Archive::Any::Create->new;
$archive->container(foo); # top-level directory
$archive->add_file(bar.txt, $data); # foo/bar.txt
$archive->add_file(bar/baz.txt, $data); # foo/bar/baz.txt
$archive->write_file(foo.tar.gz);
$archive->write_file(foo.zip);
$archive->write_filehandle(*STDOUT, tar.gz);
Archive::Any::Create is a wrapper module to create tar/tar.gz/zip files with a single easy-to-use API.
Download (0.003MB)
Added: 2006-06-28 License: Perl Artistic License Price:
1214 downloads
Aqua_Project
Aqua_Project is a complete system set for KDE. more>>
Aqua_Project is a complete system set for KDE. I have assembled this set from icons by Everaldo, Louie Mantia and me. I used Louie Mantias mimetype and folder icons as a template.
I created this set because there are no iconsets for KDE that I find completely polished. I hope everyone enjoys this set and I give all credit to the great artists who made most of these icons.
To install this set:
1. download the zip file
2. extraxt the zip file
3. cd into the Aqua_Crystal folder
4. open a terminal there
5. run ./buildset
6. get a beer
7. Install the icon theme in KDE Control Panel
8. Enjoy
Enhancements:
- Added Baghira sidebar icons
- Added choice of Trash icons...before building set go to the filesystems folder, rename trashcan_empty to trashcan_empty1, rename trashcan_full to trashcan_full1, pick the Trashcan set you like and remove the number from the name then run ./buildset
<<lessI created this set because there are no iconsets for KDE that I find completely polished. I hope everyone enjoys this set and I give all credit to the great artists who made most of these icons.
To install this set:
1. download the zip file
2. extraxt the zip file
3. cd into the Aqua_Crystal folder
4. open a terminal there
5. run ./buildset
6. get a beer
7. Install the icon theme in KDE Control Panel
8. Enjoy
Enhancements:
- Added Baghira sidebar icons
- Added choice of Trash icons...before building set go to the filesystems folder, rename trashcan_empty to trashcan_empty1, rename trashcan_full to trashcan_full1, pick the Trashcan set you like and remove the number from the name then run ./buildset
Download (MB)
Added: 2007-04-03 License: GPL (GNU General Public License) Price:
937 downloads
aaquake2 0.1
aaquake2 is a text mode Quake II. more>>
aaquake2 project is a text mode Quake II.
Installing:
If you want to compile it yourself, first download and install the AA-lib library, if you dont have it already. Then get the Quake II source from id Softwares FTP or one of the mirrors, get ref_softaa source from this page and then issue the following commands:
unzip q2source-3.21.zip
tar -xzf quake2-ref_softaa-0.1.tar.gz
cd quake2-3.21/linux/
make
cd debugi386-glibc/
mkdir baseq2
cd baseq2/
ln -s ../gamei386.so
ln -s /path/to/quake2/baseq2/pak*.pak ./
cd ..
echo "." > /etc/quake2.conf
./quake2 +set vid_ref softaa
<<lessInstalling:
If you want to compile it yourself, first download and install the AA-lib library, if you dont have it already. Then get the Quake II source from id Softwares FTP or one of the mirrors, get ref_softaa source from this page and then issue the following commands:
unzip q2source-3.21.zip
tar -xzf quake2-ref_softaa-0.1.tar.gz
cd quake2-3.21/linux/
make
cd debugi386-glibc/
mkdir baseq2
cd baseq2/
ln -s ../gamei386.so
ln -s /path/to/quake2/baseq2/pak*.pak ./
cd ..
echo "." > /etc/quake2.conf
./quake2 +set vid_ref softaa
Download (0.012MB)
Added: 2006-12-11 License: GPL (GNU General Public License) Price:
1048 downloads
PyKaraoke 0.5
PyKaraoke is a CDG/MPEG Karaoke Player. more>>
PyKaraoke is a CDG and MPEG Karaoke Player.
Main features:
- CDG (MP3+G, OGG+G) playback
- MPEG playback
- Playlist
- Searchable song database
- Search inside ZIP files
PyKaraoke is built on two highly portable libraries, pygame and wxpython. Both of these are available for GTK and Linux, as well as other operating system environments.
PyKaraoke is written in the Python programming language. It has been developed and tested on Linux.
<<lessMain features:
- CDG (MP3+G, OGG+G) playback
- MPEG playback
- Playlist
- Searchable song database
- Search inside ZIP files
PyKaraoke is built on two highly portable libraries, pygame and wxpython. Both of these are available for GTK and Linux, as well as other operating system environments.
PyKaraoke is written in the Python programming language. It has been developed and tested on Linux.
Download (0.093MB)
Added: 2006-07-13 License: GPL (GNU General Public License) Price:
1205 downloads
AdvanceCOMP 1.15
AdvanceCOMP is a collection of recompression utilities for your .ZIP archives, .PNG snapshots, .MNG video clips and .GZ files. more>>
AdvanceCOMP is a collection of recompression utilities for your .ZIP archives, .PNG snapshots, .MNG video clips and .GZ files.
Its mainly intended for recompressing your rom, snapshot and clip collection of emulated games.
Main features:
- Recompress ZIP, GZ, PNG and MNG files using the Deflate 7-Zip implementation.
- Recompress MNG files using Delta and Move optimization.
Enhancements:
- This release fixed a lot of bugs for 64-bit platforms.
<<lessIts mainly intended for recompressing your rom, snapshot and clip collection of emulated games.
Main features:
- Recompress ZIP, GZ, PNG and MNG files using the Deflate 7-Zip implementation.
- Recompress MNG files using Delta and Move optimization.
Enhancements:
- This release fixed a lot of bugs for 64-bit platforms.
Download (0.25MB)
Added: 2005-11-01 License: GPL (GNU General Public License) Price:
1455 downloads
AdvanceSCAN 1.13
AdvanceSCAN project is a commandline ROM manager for emulators. more>>
AdvanceSCAN project is a commandline ROM manager for emulators.
AdvanceSCAN is a command line ROM manager for MAME, MESS, AdvanceMAME, AdvanceMESS, and Raine for Unix, DOS, and Windows.
Main features:
- Directly read, write zip archives without decompressing and recompressing them for the best performance.
- Add, copy, move and rename files in the zip archives. Any rom that you have is placed automatically in the correct zip.
- Recognize the text files added by rom sites and delete them.
- Recognize the text files added by the rom dumpers and keep or delete them.
- Its safe. On all the zip operations any file removed or overwritten is saved in the `rom_unknown `sample_unknown directories and kept for future uses. This will prevent any unwanted remove operation.
- Generate differential rom sets.
Enhancements:
- New rom zips are now created only if at least one unique rom is found. Roms shared with other games dont trigger the zip creation. For example, galaga88
- and pacmania share the rom ns1-mcu.bin. This functionality prevents the creation of the galaga88 zip from a correct copy of pacmania using only the
- ns1-mcu.bin file.
- Relaxed a consistency check for the local header in zip files. The crc and size entries are allowed to contain the real value also if a data descriptor is present.
<<lessAdvanceSCAN is a command line ROM manager for MAME, MESS, AdvanceMAME, AdvanceMESS, and Raine for Unix, DOS, and Windows.
Main features:
- Directly read, write zip archives without decompressing and recompressing them for the best performance.
- Add, copy, move and rename files in the zip archives. Any rom that you have is placed automatically in the correct zip.
- Recognize the text files added by rom sites and delete them.
- Recognize the text files added by the rom dumpers and keep or delete them.
- Its safe. On all the zip operations any file removed or overwritten is saved in the `rom_unknown `sample_unknown directories and kept for future uses. This will prevent any unwanted remove operation.
- Generate differential rom sets.
Enhancements:
- New rom zips are now created only if at least one unique rom is found. Roms shared with other games dont trigger the zip creation. For example, galaga88
- and pacmania share the rom ns1-mcu.bin. This functionality prevents the creation of the galaga88 zip from a correct copy of pacmania using only the
- ns1-mcu.bin file.
- Relaxed a consistency check for the local header in zip files. The crc and size entries are allowed to contain the real value also if a data descriptor is present.
Download (0.29MB)
Added: 2006-12-05 License: GPL (GNU General Public License) Price:
1055 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 winrar rapidshare zip 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