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

Blah Blah Blah Blah Blah freeware
Filter: All | Freeware | Demo
 

Blah Blah Blah Blah Blah

< 1 2 3 > 
Added: May 06, 2010 | Visits: 836

Rose::URI Rose::URI is a standalone URI class allowing easy and efficient manipulation of query parameters and other URI components. SYNOPSIS use Rose::URI; $uri = Rose::URI->new(http://un:pw@foo.com/bar/baz?a=1&b=two+3); $scheme = $uri->scheme; $user = $uri->username; $pass = $uri->password;... Platforms: *nix

License: Freeware Size: 8.19 KB Download (99): Rose::URI Download

Added: March 03, 2010 | Visits: 954

Tie::File Tie::File can access the lines of a disk file via a Perl array. SYNOPSIS # This file documents Tie::File version 0.96 use Tie::File; tie @array, Tie::File, filename or die ...; $array[13] = blah; # line 13 of the file is now blah print $array[42]; # display line 42 of the file $n_recs... Platforms: *nix

License: Freeware Size: 67.58 KB Download (97): Tie::File Download

Added: July 14, 2010 | Visits: 2.050

MySQL PHP to Posgres Converter MySQL PHP to PostgreSQL is an application that takes a php page that uses mysql calls and changes them into PostgreSQL calls. This allows any website (if it converts properly) that was written in PHP for MySQL to run as a website written to run on PostgreSQL. - Step 1: Download and uncompress... Platforms: *nix

License: Freeware Size: 11.26 KB Download (108): MySQL PHP to Posgres Converter Download

Added: October 25, 2010 | Visits: 974

Geo::Coordinates::VandH Geo::Coordinates::VandH is a Perl module that can convert and manipulate telco V and H coordinates. SYNOPSIS To convert V: 5498 H: 2895 to lat/long coordinates: use Geo::Coordinates::VandH; $blah=new Geo::Coordinates::VandH; ($lat,$lon) = $blah->vh2ll(5498,2895); printf... Platforms: *nix

License: Freeware Size: 4.1 KB Download (115): Geo::Coordinates::VandH Download

Added: October 19, 2010 | Visits: 1.335

Net::UP::Notify Net::UP::Notify is a Perl module that can send "Net Alerts" to cellular phones with the "Unwired Planet" browser (AKA phone.com, AKA OpenWave UP.Browser). SYNOPSIS use Net::UP::Notify; $blah=new Net::UP::Notify; $blah->subscriberid("111111111-9999999_atlsnup2.adc.nexteldata.net");... Platforms: *nix

License: Freeware Size: 3.07 KB Download (109): Net::UP::Notify Download

Added: August 25, 2010 | Visits: 1.448

Text::Emoticon::MSN Text::Emoticon::MSN is a Perl module with emoticon filter of MSN Messenger. SYNOPSIS use Text::Emoticon::MSN; my $emoticon = Text::Emoticon::MSN->new( imgbase => "http://example.com/emo", ); my $text = "Yet Another Perl Hacker ;-)"; print $emoticon->filter($text); # it prints # Yet... Platforms: *nix

License: Freeware Size: 3.07 KB Download (108): Text::Emoticon::MSN Download

Added: October 09, 2010 | Visits: 706

Apache::CustomKeywords Apache::CustomKeywords is a customizable toolbar for MSIE. SYNOPSIS # 1. As an Apache proxy Listen 8888 < VirtualHost *:8888 > PerlTransHandler +Apache::CustomKeywords CustomKeyword cpan http://search.cpan.org/search?mode=module&query=%s CustomKeyword perldoc... Platforms: *nix

License: Freeware Size: 3.07 KB Download (86): Apache::CustomKeywords Download

Added: July 05, 2010 | Visits: 613

ScitePM ScitePM is a lightweight, Gtk-based project manager for use with the SciTE editor. It allows the user to organize a set of files as a project, like most IDEs, and then open them within SciTE. ScitePM uses the SciTE "Director" interface to communicate with SciTE. Note also that SciTE must be... Platforms: *nix

License: Freeware Size: 57.34 KB Download (89): ScitePM Download

Added: October 27, 2010 | Visits: 625

jGetFile jGetFile project is geared towards mass downloading specifically non-html files from the web. Web crawlers and website downloads are widely available and work very well. Not all web-based file crawlers are equal however. Few file crawers handle this href scenario: < a... Platforms: *nix

License: Freeware Size: 1.8 MB Download (90): jGetFile Download

Added: August 15, 2010 | Visits: 2.228

gvrpcd GVRP stands for GARP (Generic Attribute Registration Protocol) VLAN Registration Protocol. This project is a Layer 2 network protocol, for automatic configuration of switches in a VLAN network. Each VLAN switch is configured with the VLANs it is part of. GVRP will spread this information and... Platforms: *nix

License: Freeware Size: 4.1 KB Download (146): gvrpcd Download

Added: June 05, 2010 | Visits: 1.074

JAUUS Jauus is a software patching program that works over the Internet by making a single TCP connection to a host server. JAUUS project works on any Java-supported platform for any language or file type. The client/server sees each file as an object, and passes it over the network as such.... Platforms: *nix

License: Freeware Size: 35.84 KB Download (96): JAUUS Download

Added: February 20, 2010 | Visits: 973

Pod::WSDL::Doc Pod::WSDL::Doc is a Perl module that represents the WSDL pod for the documentation of methods (internal use only). SYNOPSIS use Pod::WSDL::Doc; my $doc = new Pod::WSDL::Doc(_DOC This method is for blah ...); This module is used internally by Pod::WSDL. It is unlikely that you have to... Platforms: *nix

License: Freeware Size: 27.65 KB Download (100): Pod::WSDL::Doc Download

Added: July 10, 2010 | Visits: 939

WWW::Mixi::OO::Page WWW::Mixi::OO::Page is a WWW::Mixi::OOs Pages base class. SYNOPSIS package WWW::Mixi::OO::Foo; use base qw(WWW::Mixi::OO::Page); sub uri { shift->absolute_uri(foo.pl); } # some implementations... METHODS new # subclass sub new { my $this = shift->SUPER::new(@_); # some... Platforms: *nix

License: Freeware Size: 24.58 KB Download (90): WWW::Mixi::OO::Page Download

Added: February 27, 2010 | Visits: 731

Sub::Regex Sub::Regex is a Perl module to create synonymous subroutines. SYNOPSIS use Sub::Regex; sub /look(s|ing)?_for/ ($){ foobar blah blah } look_for(Amanda); looks_for(Amanda); looking_for(Amanda); lOoKiNg_fOr(Amanda); Sub::Regex is a small tool for users to create a subroutine with... Platforms: *nix

License: Freeware Size: 2.05 KB Download (102): Sub::Regex Download

Released: June 05, 2012  |  Added: June 05, 2012 | Visits: 404

Gammon Fortune How fortunate are the Internet Backgammon players who come across the Gammon-Fortune site! Here, in the space of just a few web pages, are the pearls of web wisdom about the Backgammon game. Everything that you could possibly think of or dream about in playing a better Backgammon game is here.... Platforms: Windows

License: Freeware Size: 297 KB Download (52): Gammon Fortune Download

Added: May 10, 2013 | Visits: 446

XiTemplate XiTemplate is an easy to use and very fast PHP template engine. Although PHP is technically a template system by itself since PHP code and HTML code can coexist in the same file, XiTemplate addresses some common problems with this approach. XiTemplate is not the only template engine available so... Platforms: Windows, Mac, *nix, PHP, BSD Solaris

License: Freeware Download (52): XiTemplate Download

Added: August 07, 2013 | Visits: 639

Url Rewrite Filter It will allow the webmaster to control the rewrite of URLs before the page is loaded.UrlRewriteFilter uses an xml file for configuration. Most parameters can be Perl5 style Regular Expressions or Wildcard Expressions.Here are some key features of "Url Rewrite Filter":dlTE URL Tidyness / URL... Platforms: Java

License: Freeware Size: 133.12 KB Download (48): Url Rewrite Filter Download

Added: June 08, 2013 | Visits: 643

Custom Field Template The Custom Field Template plugin adds the default custom fields on the Write Post/Page. The template format is almost same as the one of the rc:custom_field_gui plugin. The difference is following. * You can set any number of the custom field templates and switch the templates when you write/edit... Platforms: PHP

License: Freeware Size: 204.8 KB Download (47): Custom Field Template Download

Added: August 18, 2013 | Visits: 575

Path Rules Path Rules implements Rules conditions for checking the URL against a given string for triggering actions.Eg.Setup a rule with the event 'User is going to view a page', add 'Check path' condition with path 'project' and Operator 'Begins with'.The rule will be triggered by: *... Platforms: PHP

License: Freeware Size: 10 KB Download (39): Path Rules Download

Added: November 23, 2013 | Visits: 304

DebugHeaders DebugHeaders is a WSGI middleware will display the headers of the incoming request and the outgoing response. You can also optionally display the request or response body. Use it like this: from debugheaders import DebugHeaders def application(environ, start_response): blah blah blah... Platforms: *nix

License: Freeware Size: 10.24 KB Download (39): DebugHeaders Download

< 1 2 3 >