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

Blessed Thistle software
Filter: All | Freeware | Demo
 

Blessed Thistle

< 1 2 3 
Added: July 14, 2010 | Visits: 1.227

Data::Type Data::Type is a Perl module with versatile data and value types. SYNOPSIS use Data::Type qw(:all); use Error qw(:try); try { verify $email , EMAIL; verify $homepage , URI(http); verify $cc , CREDITCARD( MASTERCARD, VISA ); verify $answer_a , YESNO; verify $gender , GENDER; verify... Platforms: *nix

License: Freeware Size: 22.53 KB Download (97): Data::Type Download

Added: November 08, 2010 | Visits: 533

ObjStore::Internals ObjStore::Internals is a Perl module with a few notes on the implementation. SYNOPSIS You dont have to understand anything about the technical implementation. Just know that: ObjectStore is outrageously powerful; sophisticated; and even over-engineered. The perl interface is optimized to... Platforms: *nix

License: Freeware Size: 163.84 KB Download (87): ObjStore::Internals Download

Added: January 05, 2010 | Visits: 1.107

Class::Accessor::Fast::Contained Class::Accessor::Fast::Contained is a Perl module for fast accessors with data containment. SYNOPSIS package Foo; use base qw(Class::Accessor::Fast::Contained); # The rest is the same as Class::Accessor::Fast This module does two things differently to the venerable Class::Accessor::Fast... Platforms: *nix

License: Freeware Size: 5.12 KB Download (101): Class::Accessor::Fast::Contained Download

Added: April 02, 2010 | Visits: 805

Storable Storable package contains persistence for Perl data structures. SYNOPSIS use Storable; store %table, file; $hashref = retrieve(file); use Storable qw(nstore store_fd nstore_fd freeze thaw dclone); # Network order nstore %table, file; $hashref = retrieve(file); # There is NO... Platforms: *nix

License: Freeware Size: 174.08 KB Download (89): Storable Download

Added: June 07, 2010 | Visits: 568

PApp::Storable Storable module is a persistence for Perl data structures. SYNOPSIS use Storable; store %table, file; $hashref = retrieve(file); use Storable qw(nstore store_fd nstore_fd freeze thaw dclone); # Network order nstore %table, file; $hashref = retrieve(file); # There is NO nretrieve() #... Platforms: *nix

License: Freeware Size: 399.36 KB Download (88): PApp::Storable Download

Added: March 03, 2010 | Visits: 1.318

IO::Pipe::Producer IO::Pipe::Producer is a Perl module that provides two modules getSubroutineProducer and getSystemProducer. SYNOPSIS # Module which provides 2 methods: getSubroutineProducer # and getSystemProducer. They take a subroutine reference # (with associated arguments) and a system call #... Platforms: *nix

License: Freeware Size: 6.14 KB Download (101): IO::Pipe::Producer Download

Added: February 18, 2010 | Visits: 1.300

HTML::Template::JIT HTML::Template::JIT is a just-in-time compiler for HTML::Template. Templates are compiled into native machine code using Inline::C. When using HTML::Template::JIT, the compiled code is stored to disk and reused on subsequent calls. HTML::Template::JIT is up to 8 times as fast as HTML::Template... Platforms: *nix

License: Freeware Size: 30.72 KB Download (145): HTML::Template::JIT Download

Added: September 04, 2010 | Visits: 552

ImplicitThis ImplicitThis is a syntactical sugar for OO methods. SYNOPSIS use ImplicitThis; ImplicitThis::imply(); sub new { my $type = shift; my %args = @_; # must be blessed hash object bless { foo => $args{foo}, bar => $args{bar}, }, $type; } sub my_accessor { # $this is read for us. $bar... Platforms: *nix

License: Freeware Size: 4.1 KB Download (87): ImplicitThis Download

Added: September 11, 2010 | Visits: 1.032

Pogo Pogo is a Perl interface for GOODS. SYNOPSIS use Pogo; $pogo = new Pogo sample.cfg; # connect to a database $root = $pogo->root_tie; # get a reference to root hash in the database $root->{key1} = "string"; # store a string into the database $value = $root->{key1}; # $value is "string"... Platforms: *nix

License: Freeware Size: 12.29 KB Download (126): Pogo Download

Added: October 06, 2010 | Visits: 716

Devel::TrackObjects Devel::TrackObjects is a Perl module to track use of objects. SYNOPSIS cmdline perl -MDevel::TrackObjects=/^IO::/ server.pl inside use Devel::TrackObjects qr/^IO::/; use Devel::TrackObjects -verbose; use IO::Socket; ... my $sock = IO::Socket::INET->new... ...... Platforms: *nix

License: Freeware Size: 4.1 KB Download (100): Devel::TrackObjects Download

Added: January 16, 2010 | Visits: 868

Exception::Class::TCF Exception::Class::TCF is a Java/C++ style exception handling. SYNOPSIS try BLOCK [ [catch] NAME FUN_REF ]* throw [ EXCEPTION LIST ] package EnclosureException; @ISA = qw(Exception::Class::TCF); package main; use Exception::Class::TCF; try { if ($Lost) { throw new... Platforms: *nix

License: Freeware Size: 11.26 KB Download (88): Exception::Class::TCF Download

Added: November 24, 2010 | Visits: 1.909

Net::YMSG Net::YMSG is a Perl interface to the Yahoo! Messenger IM protocol. SYNOPSIS use Net::YMSG; my $yahoo = Net::YMSG->new( id => your_yahoo_id, password => your_password, ); $yahoo->login or die "Cant login Yahoo!Messenger"; $yahoo->send(recipient_yahoo_id, Hello World!); Net::YMSG is a... Platforms: *nix

License: Freeware Size: 15.36 KB Download (305): Net::YMSG Download

Added: October 19, 2010 | Visits: 835

UNIVERSAL::derived_classes SYNOPSIS require UNIVERSAL::derived_classes; package A; package B; @ISA = qw( A ); package C; @ISA = qw( B ); package main; my @derived_classes = A->derived_classes; # B, C my @derived_classes_reversed = A->derived_classes_reversed; # C, B UNIVERSAL::derived_classes provides the... Platforms: *nix

License: Freeware Size: 3.07 KB Download (97): UNIVERSAL::derived_classes Download

Added: July 25, 2010 | Visits: 1.046

Text::Template::Inline Text::Template::Inline allows easy formatting of hierarchical data. SYNOPSIS # you can import any name you want instead of "render" use Text::Template::Inline render; # yields "Replace things and stuff." render { foo => things, bar => stuff, }, q ; # yields "Three Two One Zero"... Platforms: *nix

License: Freeware Size: 6.14 KB Download (94): Text::Template::Inline Download

Released: June 10, 2010  |  Added: June 21, 2010 | Visits: 916

LeKuSoft DVD Copy LeKuSoft DVD Copy is a powerful yet easy-to-handle application that can copy and backup DVD (DVD-9 and DVD-5) to common blank DVDs perfectly with one click. It can copy protected DVD in 1:1 ratio, split 1 DVD-9 disk to 2 DVD-5 disks, and compress DVD-9 to DVD-5. Itâ„¢s your ideal choice to make a... Platforms: Windows, Other

License: Shareware Cost: $38.99 USD Size: 2.97 MB Download (641): LeKuSoft DVD Copy 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

Released: November 02, 2012  |  Added: November 02, 2012 | Visits: 704

A Country Thanksgiving: Email Stationery A Country Thanksgiving Email Stationery by Cloudeight, featuring nostalgic art by John Zed King. This set of 12 scrolling, musical email stationery come in a self-installing file ready to use in your email. Selections include Blessed Thanksgiving, Coming Home, Give Thanks, Country Morning and... Platforms: Windows

License: Freeware Size: 491 KB Download (53): A Country Thanksgiving: Email Stationery Download

Released: November 11, 2012  |  Added: November 11, 2012 | Visits: 338

The Finch Project Data Evolution for Java. Finch is a Data Transformation System based on JDBC and other Java blessed specifications. Finch is based on a component task architecture allowing users to create complex data manipulation jobs. Platforms: Windows, Mac, Linux

License: Freeware Size: 1.58 MB Download (52): The Finch Project Download

Added: November 07, 2013 | Visits: 457

Falling Angel A free fantasy novel for your Mac Falling Angel is a free interactive fiction novel with a fantasy theme. Once a blessed angel gifted with wings and beauty, you stand now defiled at the exit from Hell. Lucifer has a grip on your soul, but for the moment, you remain free from the claims of heaven... Platforms: Mac

License: Freeware Size: 307.2 KB Download (32): Falling Angel Download

Added: June 13, 2013 | Visits: 502

Poker Dice Thumbs Up! Killer Dice blessed as one of ChezMark's MacPicks! From ChezMark: "Here are some of the best or most interesting additions to the InfoMac Shareware Archives for the week of October 19-25, 1998, and given an honorable mention again for the week of April 17-23, 2000. Killer Dice... It's... Platforms: Mac

License: Shareware Cost: $0.00 USD Size: 11.55 MB Download (47): Poker Dice Download

< 1 2 3