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 49.600.736 Times

Collage Template Creative software
Filter: All | Freeware | Demo
 

Collage Template Creative

< 1 2 3 4 5 > 
Released: June 25, 2009  |  Added: July 01, 2009 | Visits: 1.508

4Videosoft DVD to Creative Zen Converter 4Videosoft DVD to Creative Zen Converter is a professional yet easy-to-use DVD to Creative Zen software. The main function of this DVD to Creative Zen Converter is to transfer DVD to Creative player supporting AVI format. 4Videosoft DVD to Creative Converter is able to convert DVD movie to...



Platforms: Windows

License: Shareware Cost: $24.95 USD Size: 9.95 MB Download (129): 4Videosoft DVD to Creative Zen Converter Download

Released: August 20, 2009  |  Added: August 27, 2009 | Visits: 1.274

4Easysoft DVD to Creative Zen Converter 4Easysoft DVD to Creative Zen Converter owns the ability to transfer or convert DVD to Creative Zen supporting formats, like convert DVD to Creative Zen MP4, H.264/MPEG-4 AVC (.mp4), AVI and MPG. This DVD to Creative Zen Converter comes with the function to convert DVD to MP3, M4A, WAV, WMA...





Platforms: Windows

License: Shareware Cost: $25.95 USD Size: 5.88 MB Download (95): 4Easysoft DVD to Creative Zen Converter Download

Released: May 15, 2009  |  Added: October 10, 2009 | Visits: 3.976

HTML Template Browser Anyone who has worked with web templates, knows how difficult it can be to see all the templates you've downloaded. That's what HTML Template Browser is for. Point it at a directory and it will find all the main pages of a template (index.html, default.htm, etc.) and list them in a browse window....


Platforms: Windows

License: Freeware Size: 1.17 MB Download (562): HTML Template Browser Download

Released: July 30, 2011  |  Added: August 17, 2011 | Visits: 1.874

4Videosoft Creative Zen Video Converter 4Videosoft Creative Zen Video Converter is the best Creative Zen video converter for all the Zen versions: Zen Vision W, Zen Vision M, Zen, Zen Vision, etc. It is the most professional Creative Zen Video Converter to convert all the popular formats to Creative Zen supported video formats: MP4,...


Platforms: Windows, Other

License: Shareware Cost: $24.95 USD Size: 9.09 MB Download (549): 4Videosoft Creative Zen Video Converter Download

Released: December 17, 2009  |  Added: December 24, 2009 | Visits: 3.484

Magic Collage Magic Collage is an automatic and easy to use photo collage creator software that lets you to create impressive photo collage automatically in a few clicks! Magic Collage creates photo collage by using a special photo processing engine that can automatic place and arrange the photos from...


Platforms: Windows

License: Shareware Cost: $26.95 USD Size: 1.09 MB Download (614): Magic Collage Download

Added: January 18, 2010 | Visits: 1.669

Aapl C++ Template Library Aapl is a C++ template library for generic programming. Aapl supports different generic programming paradigms by providing variations of standard data structures. For example, a by-value linked list template may be used to store a user supplied type such as an integer. A different list...


Platforms: *nix

License: Freeware Size: 122.88 KB Download (100): Aapl C++ Template Library Download

Added: January 18, 2010 | Visits: 1.753

Template::Ast Template::Ast is a Perl module to process ASTs for Perl Template Toolkit. SYNOPSIS use Template::Ast; # Rebuild AST stored in file: $ast = Template::Ast->read(foo.ast) or die Template::Ast->error(); # Writing existing AST to file: $ast = { Marry => [24, F], John => [21, M] };...


Platforms: *nix

License: Freeware Size: 20.48 KB Download (155): Template::Ast Download

Added: October 15, 2010 | Visits: 1.176

Piffle::Template Piffle::Template is a Perlish templating language. SYNOPSIS use Piffle::Template; use Piffle::Template qw{template_to_perl expand_template}; # OO syntax, with output stored and returned: print Piffle::Template->expand(source_file => foo/fish.xml, include_path => [foo/inc,foo]); #...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (94): Piffle::Template Download

Added: October 21, 2010 | Visits: 1.437

Template::Plugin::Digest::MD5 Template::Plugin::Digest::MD5 is a TT2 interface to the MD5 Algorithm. SYNOPSIS [% USE Digest.MD5 -%] [% checksum = content FILTER md5 -%] [% checksum = content FILTER md5_hex -%] [% checksum = content FILTER md5_base64 -%] [% checksum = content.md5 -%] [% checksum = content.md5_hex -%]...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (90): Template::Plugin::Digest::MD5 Download

Added: January 01, 2010 | Visits: 1.468

Template::Plugin::Digest::SHA1 Template::Plugin::Digest::SHA1 is a TT2 interface to the SHA1 Algorithm. SYNOPSIS [% USE Digest.SHA1 -%] [% checksum = content FILTER sha1 -%] [% checksum = content FILTER sha1_hex -%] [% checksum = content FILTER sha1_base64 -%] [% checksum = content.sha1 -%] [% checksum =...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (93): Template::Plugin::Digest::SHA1 Download

Added: October 13, 2010 | Visits: 1.683

Template::Plugin::Lingua::EN::Inflect Template::Plugin::Lingua::EN::Inflect is a Perl interface to Lingua::EN::Inflect module. SYNOPSIS [% USE infl = Lingua.EN.Inflect; -%] [% FILTER inflect(number => 42); -%] There PL_V(was) NO(error). PL_ADJ(This) PL_N(error) PL_V(was) fatal. [% END; -%] [% "... and "; infl.ORD(9);...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (87): Template::Plugin::Lingua::EN::Inflect Download

Added: August 05, 2010 | Visits: 1.714

Template::Provider::OpenOffice Template::Provider::OpenOffice is a OpenOffice (ODT) Provider for Template Toolkit. This module extends Template::Provider to automatically extract the content.xml file from an OpenOffice zip file and run it through Template::Toolkit for processing. We use OpenOffice::OODoc to actually open...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (128): Template::Provider::OpenOffice Download

Added: April 12, 2010 | Visits: 1.404

Template::FAQ Template::FAQ contains Frequently Asked Questions about the Template Toolkit. Template Toolkit Language Why doesnt [% a = b IF c %] work as expected? Because the parser interprets it as [% a = (b IF c) %] Do this instead: [% SET a = b IF c %] If Im using TT to write out a TT...


Platforms: *nix

License: Freeware Size: 778.24 KB Download (97): Template::FAQ Download

Added: March 23, 2010 | Visits: 1.419

Template::Plugins Template::Plugins is a Perl module with plugin provider. SYNOPSIS use Template::Plugins; $plugin_provider = Template::Plugins->new(%options); ($plugin, $error) = $plugin_provider->fetch($name, @args); The Template::Plugins module defines a provider class which can be used to load and...


Platforms: *nix

License: Freeware Size: 778.24 KB Download (170): Template::Plugins Download

Added: June 02, 2010 | Visits: 1.523

Template::Tools::ttree Template::Tools::ttree module can process entire directory trees of templates. SYNOPSIS ttree [options] [files] The ttree script is used to process entire directory trees containing template files. The resulting output from processing each file is then written to a corresponding file in a...


Platforms: *nix

License: Freeware Size: 768 KB Download (97): Template::Tools::ttree Download

Added: August 15, 2010 | Visits: 1.294

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 (100): Template::Plugin::XML::Style Download

Added: June 23, 2010 | Visits: 1.674

Template::Tutorial::Web Template::Tutorial::Web is a Perl module for generating web content using the template toolkit. This tutorial document provides a introduction to the Template Toolkit and demonstrates some of the typical ways it may be used for generating web content. It covers the generation of static pages...


Platforms: *nix

License: Freeware Size: 778.24 KB Download (112): Template::Tutorial::Web Download

Added: November 05, 2010 | Visits: 1.229

Template::Manual::Directives Template::Manual::Directives is a Perl module that contains template directives. Accessing and Updating Template Variables GET The GET directive retrieves and outputs the value of the named variable. [% GET foo %] The GET keyword is optional. A variable can be specified in a directive...


Platforms: *nix

License: Freeware Size: 778.24 KB Download (105): Template::Manual::Directives Download

Added: November 06, 2010 | Visits: 1.763

Template::Tutorial Template::Tutorial are template toolkit tutorials. This section includes tutorials on using the Template Toolkit. Subjects currently include an general overview of the Template Toolkit, showing users how to get quickly up to speed building web content, and a tutorial on generating and using...


Platforms: *nix

License: Freeware Size: 778.24 KB Download (140): Template::Tutorial Download

Added: March 14, 2010 | Visits: 1.166

Template::Manual::Views Template::Manual::Views is a template toolkit views (experimental). This section describes dynamic views: a powerful but experimental new feature in version 2.01 of the Template Toolkit. A view is effectively a collection of templates and/or variable definitions which can be passed around as...


Platforms: *nix

License: Freeware Size: 778.24 KB Download (99): Template::Manual::Views Download

< 1 2 3 4 5 >