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

Foo freeware
Filter: All | Freeware | Demo
 

Foo

< 1 2 3 4 5 
Added: August 15, 2010 | Visits: 1.307

Template::Plugin::XML::Style Template::Plugin::XML::Style is a Perl module for simple XML stylesheet transformations. SYNOPSIS [% USE xmlstyle table = { attributes = { border = 0 cellpadding = 4 cellspacing = 1 } } %] [% FILTER xmlstyle %] < table > < tr > < td >Foo< /td > < td >Bar< /td > < td >Baz< /td >...



Platforms: *nix

License: Freeware Size: 26.62 KB Download (101): Template::Plugin::XML::Style Download

Added: November 23, 2010 | Visits: 1.355

Template::Plugin::XML Template::Plugin::XML is a XML plugin for the Template Toolkit. SYNOPSIS [% USE XML; dom = XML.dom(foo.xml); xpath = XML.xpath(bar.xml); simple = XML.simple(baz.xml); rss = XML.simple(news.rdf); %] [% USE XML(file=foo.xml); dom = XML.dom xpath = XML.xpath # ...etc... %] [% USE...





Platforms: *nix

License: Freeware Size: 26.62 KB Download (107): Template::Plugin::XML Download

Added: March 08, 2010 | Visits: 876

Devel::GDB::Reflect Devel::GDB::Reflect is a reflection API for GDB/C++. SYNOPSIS use Devel::GDB; use Devel::GDB::Reflect; my $gdb = new Devel::GDB( -file => $foo ); my $reflector = new Devel::GDB::Reflect( $gdb ); print $gdb->get( "b foo.c:123" ); $gdb->print( "myVariable" ); Devel::GDB::Reflect...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (114): Devel::GDB::Reflect Download

Added: October 04, 2010 | Visits: 944

Hook::Scope Hook::Scope is a Perl extension for adding hooks for exiting a scope. SYNOPSIS use Hook::Scope; { Hook::Scope::POST(sub { print "I just left my scope"}); print "you will see this first!"; } use Hook::Scope qw(POST PRE); # only POST can be exported { POST { print "foo" }; POST sub {...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (97): Hook::Scope Download

Added: October 26, 2010 | Visits: 967

Test::Extreme Test::Extreme is a perlish unit testing framework. SYNOPSIS # In ModuleOne.pm combine unit tests with code package ModuleOne; use Test::Extreme; sub foo { return 23 }; sub test_foo { assert_equals foo, 23 } # at the end of the module run_tests ModuleOne if $0 =~ /ModuleOne.pm$/; #...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (98): Test::Extreme Download

Added: October 08, 2010 | Visits: 854

Devel::Hints Devel::Hints is a Perl module created to access compile-time hints at runtime. SYNOPSIS use Devel::Hints :all; LABEL: print cop_label(); # LABEL cop_label(0 => FOO); # "goto FOO;" is valid after this point! print cop_file(); # same as __FILE__ print cop_filegv(); # same as $::{_< ....


Platforms: *nix

License: Freeware Size: 44.03 KB Download (94): Devel::Hints Download

Added: July 14, 2010 | Visits: 977

IPC::PubSub IPC::PubSub is Perl module for Interprocess Publish/Subscribe channels. SYNOPSIS # A new message bus with the DBM::Deep backend # (Other possible backends include Memcached and PlainHash) my $bus = IPC::PubSub->new(DBM_Deep => /tmp/pubsub.db); # A channel is any arbitrary string my...


Platforms: *nix

License: Freeware Size: 19.46 KB Download (96): IPC::PubSub Download

Added: July 01, 2010 | Visits: 854

Locale::Maketext::Simple Locale::Maketext::Simple is a simple interface to Locale::Maketext::Lexicon. SYNOPSIS Minimal setup (looks for auto/Foo/*.po and auto/Foo/*.mo): package Foo; use Locale::Maketext::Simple; # exports loc loc_lang(fr); # set language to French sub hello { print loc("Hello, [_1]!",...


Platforms: *nix

License: Freeware Size: 16.38 KB Download (89): Locale::Maketext::Simple Download

Added: October 08, 2010 | Visits: 840

Object::Declare Object::Declare is a Perl module for declarative object constructor. SYNOPSIS use Object::Declare [MyApp::Column, MyApp::Param]; my %objects = declare { param foo => !is global, is immutable, valid_values are qw( more values ); column bar => field1 is value, field2 is...


Platforms: *nix

License: Freeware Size: 27.65 KB Download (99): Object::Declare Download

Added: August 10, 2010 | Visits: 870

XML::Essex::Event XML::Essex::Event is a base event class, also used for unknown event types. Stringifies as $event->type . "()" to indicate an event that has no natural way to represented in XML, or for ones that havent been handled yet in Essex. Methods new XML::Event->new( a => 1, b => 2 );...


Platforms: *nix

License: Freeware Size: 43.01 KB Download (95): XML::Essex::Event Download

Added: April 11, 2010 | Visits: 1.058

XML::Filter::DocSplitter XML::Filter::DocSplitter does multipass processing of documents. SYNOPSIS ## See XML::SAX::???? for an easier way to use this filter. use XML::SAX::Machines qw( Machine ) ; my $m = Machine( [ Intake => "XML::Filter::DocSplitter" => qw( Filter ) ], [ Filter => "My::Filter" => qw( Merger...


Platforms: *nix

License: Freeware Size: 43.01 KB Download (102): XML::Filter::DocSplitter Download

Added: June 24, 2010 | Visits: 1.302

XML::SAX::Machine XML::SAX::Machine is a Perl module that can manage a collection of SAX processors. SYNOPSIS ## Note: See XML::SAX::Pipeline and XML::SAX::Machines first, ## this is the gory, detailed interface. use My::SAX::Machines qw( Machine ); use My::SAX::Filter2; use My::SAX::Filter3; my...


Platforms: *nix

License: Freeware Size: 43.01 KB Download (103): XML::SAX::Machine Download

Added: July 22, 2010 | Visits: 918

XML::Filter::Dispatcher XML::Filter::Dispatcher is a path based event dispatching with DOM support. SYNOPSIS use XML::Filter::Dispatcher qw( :all ); my $f = XML::Filter::Dispatcher->new( Rules => [ foo => &handle_foo_start_tag, @bar => &handle_bar_attr, ## Send any elts and their contents to $handler...


Platforms: *nix

License: Freeware Size: 88.06 KB Download (93): XML::Filter::Dispatcher Download

Added: April 12, 2010 | Visits: 1.013

petardfs petardfs is a FUSE filesystem designed to hoist your applications with errors. With no configuration, petardfs takes a base filesystem and exposes it through FUSE. An XML configuration file is used to tell petardfs which files to report errors for and what error code to use. For example,...


Platforms: *nix

License: Freeware Size: 286.72 KB Download (103): petardfs Download

Added: September 18, 2010 | Visits: 1.098

Acme::Hyperindex Acme::Hyperindex is a Perl module to look deep into structures using a list of indexes. SYNOPSIS use strict; use Acme::Hyperindex; my @struct = ( { j_psi => [qw( eta_prime phi kaon )] }, { j_psi => [qw( selectron down tau_sneutrino )] }, { j_psi => [qw( upsilon gluino photino )] } );...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (97): Acme::Hyperindex Download

Added: September 11, 2010 | Visits: 871

allcookies allcookies is an extension which dumps ALL cookies (including session cookies) to Firefox standard cookies.txt file. The mandatory companion tool for downloading sites with WGET A very minimum extension : no psychedelic design. Just the needed feature. Why you need it : Many web sites are...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (106): allcookies Download

Added: October 08, 2010 | Visits: 953

Tie::Array::PackedC 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 (88): Tie::Array::PackedC Download

Added: March 16, 2010 | Visits: 884

TRONimation TRONimation is a 3-D editing and animation program that aims to be compact and easy to use. It is written in C, and requies the installation only of GL, GLU, and GLUT. One of my goals in writing this program is to make it as easy for using as much as possible. At the moment, I am rather focused...


Platforms: *nix

License: Freeware Size: 54.27 KB Download (94): TRONimation Download

Added: November 25, 2010 | Visits: 1.223

mass mass.pl is the implementation of a relatively simple idea. Instead of interactively doing some task on one machine, then duplicating the effort on N other machines, write a shell script, then scp it to N machines and execute it as root. Example (sic@foo)($:~/mass)- ./mass.pl --name solaris...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (105): mass Download

Added: August 19, 2010 | Visits: 755

LWPx::ParanoidAgent LWPx::ParanoidAgent is a Perl subclass of LWP::UserAgent that protects you from harm. SYNOPSIS require LWPx::ParanoidAgent; my $ua = LWPx::ParanoidAgent->new; # this is 10 seconds overall, from start to finish. not just between # socket reads. and it includes all redirects. so attackers...


Platforms: *nix

License: Freeware Size: 13.31 KB Download (92): LWPx::ParanoidAgent Download

< 1 2 3 4 5