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

Oop software
Filter: All | Freeware | Demo
 

Oop

< 1 2 3 4 5 > 
Added: March 24, 2010 | Visits: 998

Myco::Devel Myco::Devel is a Perl module for myco Developers Guide. This guide is intended for developers wanting to build applications with myco. You should have a decent grasp of the Perl programming language, or else a solid grasp of another programming language (C, PHP, etc.). Familiarity with Object... Platforms: *nix

License: Freeware Size: 102.4 KB Download (89): Myco::Devel Download

Added: February 16, 2010 | Visits: 1.249

Text::Textile Text::Textile is a humane web text generator. SYNOPSIS use Text::Textile qw(textile); my $text = < Platforms: *nix

License: Freeware Size: 31.74 KB Download (144): Text::Textile Download

Added: November 06, 2010 | Visits: 1.366

Class.Jabber.PHP Class.Jabber.PHP provides a medium-level API to interact with the Jabber network. Class.Jabber.PHP is a class which you can use to connect to the Jabber network. It allows you to easily connect to a server and interact with it. It supports all packet types (message, iq, and presence), is very... Platforms: *nix

License: Freeware Size: 16.38 KB Download (144): Class.Jabber.PHP Download

Added: March 07, 2010 | Visits: 1.468

MP3::Info MP3::Info is a Perl module that can manipulate / fetch info from MP3 audio files. SYNOPSIS #!perl -w use MP3::Info; my $file = Pearls_Before_Swine.mp3; set_mp3tag($file, Pearls Before Swine, q"77s", Sticks and Stones, 1990, q"(c) 1990 77s LTD.", rock & roll); my $tag =... Platforms: *nix

License: Freeware Size: 99.33 KB Download (100): MP3::Info Download

Added: February 08, 2010 | Visits: 919

safox safox is a simple PHP API for XML handling. safox merges the DOM approach with XML, and it provides a simple, object-oriented API for PHP-based XML generation, parsing, manupilation, and traversal. SAFOX provides a generation package and a package that parses XML documents and returns... Platforms: *nix

License: Freeware Size: 10.24 KB Download (87): safox Download

Added: October 05, 2010 | Visits: 644

Jcode Jcode is a Japanese Charset Handler. SYNOPSIS use Jcode; # # traditional Jcode::convert($str, $ocode, $icode, "z"); # or OOP! print Jcode->new($str)->h2z->tr($from, $to)->utf8; < Japanese document is now available as Jcode::Nihongo. > Jcode.pm supports both object and traditional... Platforms: *nix

License: Freeware Size: 348.16 KB Download (99): Jcode Download

Added: November 12, 2010 | Visits: 1.106

Oak::Web::HTML::A Oak::Web::HTML::A is a HTML tag (Container). A Container to hold objects inside an A tag. Perl Oak Component Tree - Web Interface Components. This package brings the Web Component library, used to create web interfaces to your applications. See also the Forest Web Application Builder, a tool... Platforms: *nix

License: Freeware Size: 21.5 KB Download (95): Oak::Web::HTML::A Download

Added: May 25, 2010 | Visits: 2.235

Curl HTTP Client Curl HTTP Client is a PHP class that implements an HTTP client using the PHP Curl library extension. Frequently, in my daytime job I have to fetch data from various url’s, either by sending get or post request, binding to different IP address etc. Long time I used my own socket based HTTP... Platforms: *nix

License: Freeware Size: 3.07 KB Download (126): Curl HTTP Client Download

Added: April 17, 2010 | Visits: 837

eTcl 1.0 eTcl is a "batteries-included", thread-enabled Tcl/Tk runtime, available as a single standalone executable. eTcl includes several popular extensions (Sqlite, Thread, Zlib, ...), together with a Tcl wrapper for the Pixane image processing library. Installation: Just copy executable wherever... Platforms: *nix

License: Shareware Cost: $0.00 USD Size: 3.4 MB Download (89): eTcl 1.0 Download

Added: May 11, 2010 | Visits: 1.803

CLIP CLIP is a Clipper/XBase compatible compiler with initial support other xBase dialects. CLIP project features support for international languages and character sets. It also features OOP, a multiplatform GUI based on GTK/GTKextra, all SIX/Comix features (including hypertext indexing), SQL and... Platforms: *nix

License: Freeware Size: 4.4 MB Download (255): CLIP Download

Added: November 12, 2010 | Visits: 2.108

Cryptomak Cipher Tools Cryptomak Cipher Tools project consists of a collection of PHP scripts for encryption purposes. Cryptomak contains a cipher and tools for encryption utilities written in PHP, including substitution, vigenere, affine, transposition, and index of coincidence. It is powered by the Phrame... Platforms: *nix

License: Freeware Size: 112.64 KB Download (315): Cryptomak Cipher Tools Download

Added: April 13, 2010 | Visits: 670

Text::Kakasi Text::Kakasi is a perl frontend to kakasi. SYNOPSIS use Text::Kakasi; # functional $res = Text::Kakasi::getopt_argv(-JJ, -c, -w); $str = Text::Kakasi::do_kakasi($japanese_text); # object-oriented $obj = Text::Kakasi->new(-JJ, -c, -w); $str = $obj->get($japanese_text); This module... Platforms: *nix

License: Freeware Size: 22.53 KB Download (90): Text::Kakasi Download

Added: August 09, 2010 | Visits: 1.261

phpPeanuts phpPeanuts is a framework for developing business applications in php4 and 5. PphPeanuts supports a development style that is both Model Driven and based on extreme programming (XP). In the early stages of development phpPeanuts is at its most effective: create some business components and... Platforms: *nix

License: Freeware Size: 307.2 KB Download (90): phpPeanuts Download

Added: February 03, 2010 | Visits: 1.077

Dialog Dialog is a Perl interface to dialog(3). SYNOPSIS B< use Dialog; > #now we are creating the new dialog window $dlg = Dialog->new(title, y,x,height,width); #inserting input line $line = $dlg->inputline(name, y, x, width, text); #adding button $btn = $dlg->button(name, y, x, text,... Platforms: *nix

License: Freeware Size: 8.19 KB Download (89): Dialog Download

Added: June 21, 2010 | Visits: 860

CGI::Ex::Conf CGI::Ex::Conf is a Perl module with Conf Reader/Writer for many different data format types. SYNOPSIS use CGI::Ex::Conf qw(conf_read conf_write); my $hash = conf_read("/tmp/foo.yaml"); conf_write("/tmp/foo.yaml", {key1 => $val1, key2 => $val2}); ### OOP interface my $cob =... Platforms: *nix

License: Freeware Size: 215.04 KB Download (89): CGI::Ex::Conf Download

Added: May 07, 2010 | Visits: 986

Lightweight C++ Lightweight C++ is a programming language that looks like C++ (a lightweight C++ dialect) and is directly translated to readable C by the lwc preprocessor. Its more "K&R" and, well, more lightweight. Important thing about lightweight C++ is that by studying the generated C code it is easy to... Platforms: *nix

License: Freeware Size: 215.04 KB Download (127): Lightweight C++ Download

Added: January 25, 2010 | Visits: 973

BuildSim BuildSim is an engineering simulation and process development tool. This bronze edition is a free version. Platforms: Mac

License: Freeware Size: 1.8 MB Download (155): BuildSim Download

Released: August 01, 2011  |  Added: September 22, 2011 | Visits: 2.220

BlueBoxPHP The Easy Way to Create Professional Quality Websites 100% Free MySQL & PHP Code Generator. Unlimited number of applications, Unlimited number of projects, Unlimited number of pages. Easy to use with No programming required, Includes View, Add, Edit, Delete and Export modes, just... Platforms: Windows

License: Freeware Size: 5.59 MB Download (307): BlueBoxPHP Download

Released: February 23, 2013  |  Added: March 25, 2013 | Visits: 1.898

ApPHP Business Directory script ApPHP Business Directory is a simple, but powerful Business Directory solution. This script allows to add categories, then associate added businesses to these categories. You may also add business profiles including basic business contact info, business description, website link, e-mail contact,... Platforms: Windows, *nix

License: Shareware Cost: $49.90 USD Size: 680.55 KB Download (128): ApPHP Business Directory script Download

Released: May 23, 2011  |  Added: May 17, 2012 | Visits: 1.607

ASP NET PayPal Control for Website Payments Standard SpiceLogic Inc. offers a single DLL ASP.NET Web Form Server Control / ASP.NET MVC Component that will do everything for you if you want to develop an e-commerce web application with PayPal Website Payments Standard. Enhanced Design time Smart Tag GUI will guide you to generate any kind of PayPal... Platforms: Windows

License: Shareware Cost: $145.00 USD Size: 3.1 MB Download (99): ASP NET PayPal Control for Website Payments Standard Download

< 1 2 3 4 5 >