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.225.918 Times

Jerry Garcia Tie freeware
Filter: All | Freeware | Demo
 

Jerry Garcia Tie

< 1 2 3 4 5 
Added: November 25, 2010 | Visits: 821

GNU Xnee Xnee is a suite of programs that can record, replay and distribute user actions under the X11 environment. Think of GNU Xnee as a robot that can imitate the job you just did. Xnee can be used to: - Automate tests e.g nightly automatic regression tests - Demonstrate programs e.g record and...



Platforms: *nix

License: Freeware Size: 491.52 KB Download (108): GNU Xnee Download

Added: June 23, 2010 | Visits: 696

DWH_File DWH_File module contains data and object persistence in deep and wide hashes. SYNOPSIS use DWH_File qw/ GDBM_File /; # the use argument set the DBM module used tie( %h, DWH_File, myFile, O_RDWR|O_CREAT, 0644 ); untie( %h ); # essential! Note: the files produced by DWH_File 0.22 are in...





Platforms: *nix

License: Freeware Size: 23.55 KB Download (92): DWH_File Download

Added: March 02, 2010 | Visits: 925

Basset::Container::Hash Basset::Container::Hash Perl module implements a layered hash. The easiest way to explain is with an example: my %x = (a => b); tie my %y, Basset::Container::Hash, %x; #<- %x is the parent of y. print $x{a}; #prints b print $y{a}; #prints b (inherited from x) $y{a} = foo; $y{z} = bar;...


Platforms: *nix

License: Freeware Size: 143.36 KB Download (94): Basset::Container::Hash Download

Added: July 11, 2010 | Visits: 922

XMMS-Control 0.05 XMMS-Control provides a Web-based control for XMMS. XMMS-Control is a web-based interface for the XMMS (X MultiMedia System). XMMS is an MP3 player for Linux based systems (it also plays other media formats). XMMS-Control is a graphical interface for the command-line utility XMMS-Shell....


Platforms: *nix

License: Freeware Size: 15.36 KB Download (98): XMMS-Control 0.05 Download

Added: February 21, 2010 | Visits: 1.207

c64img c64img is a PHP script that converts an image (JPEG, PNG, or GIF) to an image that can be shown on a Commodore 64 (FLI style). It searches for the best possible colors in the 160x200 (X-doubled) resolution, and uses a simple dithering method to distribute errors. This project outputs a...


Platforms: *nix

License: Freeware Size: 2.05 KB Download (100): c64img Download

Added: April 10, 2010 | Visits: 1.592

quickmail quickmail is a PHP script that reads email from an IMAP server and outputs it in RSS format that can be displayed in a browser (as XML, using included CSS) or RSS aggregator or WML for use on WAP devices (like mobile phones or PDAs). The output has been tested and found to be valid CSS, valid...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (101): quickmail Download

Added: April 18, 2010 | Visits: 765

C::DynaLib::Struct C::DynaLib::Struct is a tool for handling the C `struct data type. SYNOPSIS use C::DynaLib::Struct; Define C::DynaLib::Struct( $struct_tag, $template0, @field_names0, [$template1, @field_names1,] ... ); $rstruct = tie( $struct, $struct_tag [, @initializer_list] ); $value =...


Platforms: *nix

License: Freeware Size: 35.84 KB Download (98): C::DynaLib::Struct Download

Added: April 14, 2010 | Visits: 996

Hash::Type Hash::Type module contains pseudo-hashes as arrays tied to a "type" (list of fields). SYNOPSIS use Hash::Type; # create a Hash::Type my $personType = new Hash::Type(qw(firstname lastname city)); # create and populate some hashes tied to $personType tie %wolfgang, $personType, "wolfgang...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (97): Hash::Type Download

Added: March 20, 2010 | Visits: 734

Bundle::Perl6 Bundle::Perl6 is a Perl bundle to install Perl6-related modules. SYNOPSIS perl -MCPAN -e install Bundle::Perl6 CONTENTS Attribute::Handlers - Simpler definition of attribute handlers Attribute::Types - Attributes that confer type on variables Attribute::Overload - Attribute that makes...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (86): Bundle::Perl6 Download

Added: April 13, 2010 | Visits: 796

JavaArray JavaArray is a tied extension for Java arrays from Java.pm SYNOPSIS use Java; # Set up Java.pm to always return tied array references to me my $java = new Java(use_tied_arrays => 1); my $tied_array = $java->create_array("java.lang.String",5); OR # Roll my own tied arrays my...


Platforms: *nix

License: Freeware Size: 69.63 KB Download (94): JavaArray Download

Added: January 18, 2010 | Visits: 813

Gtk::CListModel Gtk::CListModel is a simple data model with Gtk::Clist views. SINOPSYS my $model = tie @data, Gtk::CListModel, titles => ["Fruit", "Price", "Quantity"]; # all data manipulation is done on @data now push @data, ["Oranges", 5, 16]; # Create a view (a Gtk::Clist widget) to represent the data...


Platforms: *nix

License: Freeware Size: 440.32 KB Download (88): Gtk::CListModel Download

Added: October 19, 2010 | Visits: 1.583

Splendid City Splendid City Team Sports Scheduler, and Sports Scheduling Software System is useful for people who organize team sports or game events. It can manage sports schedules of any size and complexity. Simply fill in the requested information into the wizard like interface, and Splendid City automates...


Platforms: *nix

License: Freeware Size: 38 MB Download (108): Splendid City Download

Added: June 20, 2010 | Visits: 882

DB_File DB_File is a Perl5 access to Berkeley DB version 1.x. SYNOPSIS use DB_File; [$X =] tie %hash, DB_File, [$filename, $flags, $mode, $DB_HASH] ; [$X =] tie %hash, DB_File, $filename, $flags, $mode, $DB_BTREE ; [$X =] tie @array, DB_File, $filename, $flags, $mode, $DB_RECNO ; $status =...


Platforms: *nix

License: Freeware Size: 87.04 KB Download (97): DB_File Download

Added: January 11, 2010 | Visits: 1.036

Filter::cpp Filter::cpp is a cpp source filter. SYNOPSIS use Filter::cpp ; This source filter pipes the current source file through the C pre-processor (cpp) if it is available. As with all source filters its scope is limited to the current source file only. Every file you want to be processed by the...


Platforms: *nix

License: Freeware Size: 40.96 KB Download (147): Filter::cpp Download

Added: March 11, 2010 | Visits: 1.027

Config::Magic SYNOPSIS Example 1 use Config::Magic; use Data::Dumper; $input=q{ Section 1 { [Section 4] #Comment style #1 //Comment style #2 ;Comment style #3 Monkey:1 Monkey=>2 Monkey:=3 < Section 2 > Foo = Bar Baz { Bip:1 Pants==5 } < /Section > < Tasty Cheese="3" / > < Section 5 >...


Platforms: *nix

License: Freeware Size: 20.48 KB Download (113): Config::Magic Download

Added: January 24, 2010 | Visits: 882

IPC::SharedCache IPC::SharedCache is a Perl module to manage a cache in SysV IPC shared memory. SYNOPSIS use IPC::SharedCache; # the cache is accessed using a tied hash. tie %cache, IPC::SharedCache, ipc_key => AKEY, load_callback => &load, validate_callback => &validate; # get an item from the cache...


Platforms: *nix

License: Freeware Size: 19.46 KB Download (99): IPC::SharedCache Download

Added: May 23, 2010 | Visits: 863

Sort::ArbBiLex Sort::ArbBiLex is a Perl module that can make sort functions for arbitrary sort orders. SYNOPSIS use Sort::ArbBiLex ( fulani_sort, # ask for a &fulani_sort to be defined "a A c C ch Ch CH ch Ch CH e E l L lh Lh LH n N r R s S u U z Z " ); @words = <>; @stuff =...


Platforms: *nix

License: Freeware Size: 16.38 KB Download (89): Sort::ArbBiLex Download

Added: September 23, 2010 | Visits: 1.170

HTML::Tree::Scanning HTML::Tree::Scanning contains an article: "Scanning HTML". SYNOPSIS # This an article, not a module. The following article by Sean M. Burke first appeared in The Perl Journal #19 and is copyright 2000 The Perl Journal. It appears courtesy of Jon Orwant and The Perl Journal. This document...


Platforms: *nix

License: Freeware Size: 112.64 KB Download (93): HTML::Tree::Scanning Download

Added: November 22, 2010 | Visits: 1.062

Acme::OneHundredNotOut Acme::OneHundredNotOut is a raise of the bat, a tip of the hat. I have just released my 100th module to CPAN, the first time that anyone has reached that target. As some of you may know, I am getting ready to go back to college and reinvent myself from being a programmer into being a...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (95): Acme::OneHundredNotOut Download

Added: November 03, 2010 | Visits: 1.841

Netscape::Cache Netscape::Cache is a Perl object class for accessing Netscape cache files. SYNOPSIS The object oriented interface: use Netscape::Cache; $cache = new Netscape::Cache; while (defined($url = $cache->next_url)) { print $url, "n"; } while (defined($o = $cache->next_object)) { print...


Platforms: *nix

License: Freeware Size: 16.38 KB Download (107): Netscape::Cache Download

< 1 2 3 4 5