









Serving Software Downloads in 976 Categories, Downloaded 31.080.672 Times
Acid Dreams is a Windows screen saver which displays colorful moving patterns fairly quickly on most computers. The screen saver is very customizable, allowing for nearly endless possible combinations of different effects and colors. The small file size makes it an easy download. Its nostalgic...
Platforms: Windows
License: Shareware | Cost: $9.95 USD | Size: 81 KB | Download (173): Acid Dreams Download |
Want to know , how a tie-dye is made ? This application gives brief introduction about tie-dye process ,the process of tie dye (with pictures) and video to know how to do a shoulder burst style and 4 other spins. Requirements: Windows Phone 8.1, Windows Phone 8
Platforms: Windows Phone
License: Freeware | Size: 4 MB | Download (8): Tie-dye Download |
Create beautiful digital works of art using the colorful tools Tie-Dye Brush, Hue Brush, Shaded Brush and Standard Brush.
You will also find a powerful smudge tool that lets you blend and smoothen colors together, as well as an ordinary eraser.
Platforms: Mac
License: Shareware | Cost: $5.99 USD | Size: 819.2 KB | Download (27): HuePaint Download |
Turn your photos into grungey 90s tie dye t-shirts. Tie dye background licensed from greengabbro.net under Creative Commons license (CC BY-NC-SA 2.5.) If you like Grunge Tee, try the Windows 8.1 version, available now in the Windows Store. You can now invert your grunge tee image: more tie dye!...
Platforms: Windows Phone
License: Freeware | Size: 1024 KB | Download (7): Grunge Tee Download |
Take a trip back in time to the days of flower power, peace signs and surfboards. Let Hippie Trip get you into that Groovy feeling again. In this fast paced tap game, your Hippie vans are drawn, like lemmings, to the sea. Don't let them take the plunge or....Game Over Dude! And be sure to watch...
Platforms: iOS
License: Freeware | Size: 15.4 MB | Download (7): Hippie Trip Download |
This animated screensaver features the famous tie fighter of star wars flying around your screen.
Platforms: Windows
License: Freeware | Size: 1.13 MB | Download (353): Tie Fighter Screen Saver Download |
SharePoint Wiki Redirect provides an easy way to manage different versions of wiki pages and control which version is displayed by default. This free SharePoint wiki web part gives you the ability to quickly toggle between the SharePoint wiki versions edited most recently, the latest...
Platforms: Windows
License: Demo | Cost: $0.00 USD | Size: 291.2 KB | Download (319): SharePoint Wiki Redirect Download |
Cache::Memcached::Tie is a Perl module created for using Cache::Memcached as hash. SYNOPSIS #!/usr/bin/perl -w use strict; use Cache::Memcached::Tie; my %hash; my $memd=tie %hash,Cache::Memcached::Tie, {servers=>[192.168.0.77:11211]}; $hash{b}=[a,{b=>a}]; print $hash{a}; print...
Platforms: *nix
License: Freeware | Size: 15.36 KB | Download (73): Cache::Memcached::Tie Download |
Cache-Memcached-Tie is a tie for Cache::Memcached. Installation: To install this module type the following: perl Makefile.PL make make test make install.
Platforms: *nix
License: Freeware | Size: 15.36 KB | Download (73): Cache-Memcached-Tie Download |
Locale::Maketext::Lexicon::Tie is a Perl module to use tied hashes as lexicons for Maketext. SYNOPSIS package Hello::I18N; use base Locale::Maketext; use Locale::Maketext::Lexicon { en => [ Tie => [ DB_File => en.db ] ], }; This module lets you easily tie the %Lexicon hash to a database...
Platforms: *nix
License: Freeware | Size: 83.97 KB | Download (73): Locale::Maketext::Lexicon::Tie Download |
Wiki::Gateway is a Perl library for interacting with remote wikis. SYNOPSIS use Wiki::Gateway; $result = Wiki::Gateway::getPage(http://interwiki.sourceforge.net/cgi-bin/wiki.pl, $wiki_type, SandBox); $result = Wiki::Gateway::putPage(http://interwiki.sourceforge.net/cgi-bin/wiki.pl,...
Platforms: *nix
License: Freeware | Size: 17.41 KB | Download (75): Wiki::Gateway Download |
Tie::FileLRUCache is a lightweight but robust filesystem based persistent LRU cache. SYNOPSIS OBJECT INTERFACE use Tie::FileLRUCache; my $cache = Tie::FileLRUCache->new({ -cache_dir => $directory, -keep_last => 100 }); # Inserting value into LRU cache using -key $cache->update({ -key =>...
Platforms: *nix
License: Freeware | Size: 17.41 KB | Download (70): Tie::FileLRUCache Download |
Tie::ListKeyedHash is a system allowing the use of anonymous arrays as keys to a hash. SYNOPSIS use Tie::ListKeyedHash; [$X =] tie %hash, Tie::ListKeyedHash; my $live_key = [key,items,live]; $hash{$live_key} = Hello!; $hash{[key,trees,grow]} = Goodbye!; print...
Platforms: *nix
License: Freeware | Size: 16.38 KB | Download (70): Tie::ListKeyedHash Download |
Tie::Array::PackedC is a tie a Perl array to a C-style array (packed; elements of a single, simple data type). SYNOPSIS use Tie::Array::PackedC qw(packed_array packed_array_string); my $ref=packed_array(1,2,3,4); my $ref2=packed_array_string(my $s,1,2,3,4); use Tie::Array::PackedC...
Platforms: *nix
License: Freeware | Size: 6.14 KB | Download (70): Tie::Array::PackedC Download |
Tie::UrlEncoder is a Perl module for interpolatably URL-encode strings. Syntactic sugar for URL-Encoding strings. Tie::UrlEncoder imports a tied hash %urlencode into your package, which delivers a RFC 1738 URL Encoded string of whatever is given to it, for easy embedding of URL-Encoded strings...
Platforms: *nix
License: Freeware | Size: 3.07 KB | Download (71): Tie::UrlEncoder Download |
Wiki::Toolkit::Store::Mediawiki is a Mediawiki (MySQL) storage backend for Wiki::Toolkit. SYNOPSIS Implementation of Wiki::Toolkit::Store::Database which reads and writes to a Mediawiki 1.6 database running in MySQL. This is module is intended to be capable of running concurrently with a...
Platforms: *nix
License: Freeware | Size: 15.36 KB | Download (77): Wiki::Toolkit::Store::Mediawiki Download |
Wiki::Toolkit::Formatter::Mediawiki is a Mediawiki-style formatter for Wiki::Toolkit. SYNOPSIS This package implements a formatter for the Wiki::Toolkit module which attempts to duplicate the behavior of the Mediawiki application (a set of PHP scripts used by Wikipedia and friends). use...
Platforms: *nix
License: Freeware | Size: 6.14 KB | Download (82): Wiki::Toolkit::Formatter::Mediawiki Download |
Tie::CountLoop is a Perl module that helps you have a counter looping in a scalar with min max and increment value. SYNOPSIS use Tie::CountLoop; tie my $counter , Tie::CountLoop,15 ,-1 ,15 ,7 ,0; my $t = tied $counter; $t->increment( 1 ); for ( 1 .. 20 ) { print " <<$counter>> <$_>...
Platforms: *nix
License: Freeware | Size: 3.07 KB | Download (71): Tie::CountLoop Download |
Wiki::Toolkit::Plugin::RSS::Reader is a Perl module to retrieve RSS feeds for inclusion in Wiki::Toolkit nodes. Use this Wiki::Toolkit plugin to retrieve an RSS feed from a given URL so that you can include it in a wiki node. SYNOPSIS use Wiki::Toolkit::Plugin::RSS::Reader; my $rss =...
Platforms: *nix
License: Freeware | Size: 5.12 KB | Download (78): Wiki::Toolkit::Plugin::RSS::Reader Download |
CGI::Wiki::Plugin::RSS::Reader is a Perl module retrieve RSS feeds for inclusion in CGI::Wiki nodes. Use this CGI::Wiki plugin to retrieve an RSS feed from a given URL so that you can include it in a wiki node. SYNOPSIS use CGI::Wiki::Plugin::RSS::Reader; my $rss =...
Platforms: *nix
License: Freeware | Size: 4.1 KB | Download (75): CGI::Wiki::Plugin::RSS::Reader Download |