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

Rose Gadgets Desktop freeware
Filter: All | Freeware | Demo
 

Rose Gadgets Desktop

< 1 2 3 4 5 > 
Added: April 06, 2010 | Visits: 992

gnome-python-desktop gnome-python-desktop package contains a few python modules that used to live in gnome-python-extras: - gnomeapplet - gnomeprint, gnomeprint.ui - gtksourceview - wnck - totem.plparser - gtop - nautilusburn - mediaprofiles - metacity Whats New in This Release: General: - With recent... Platforms: *nix

License: Freeware Size: 645.12 KB Download (98): gnome-python-desktop Download

Added: July 25, 2010 | Visits: 956

Q Desktop Services The QDS library allows Qt applications to access features provided in common desktop APIs in a portable way, without requiring dependencies on any desktop platform library. This is especially useful for applications targeting the Unix desktops, because Qt/X11 is very generic and only provides... Platforms: *nix

License: Freeware Size: 245.76 KB Download (100): Q Desktop Services Download

Added: October 19, 2010 | Visits: 1.730

AntiRight Desktop Environment AntiRight Desktop Environment is a lightweight and scripted desktop environment that uses the Motif toolkit. Development is carried out with a minimalistic philosophy in mind. The software consists of a text editor, a desktop panel, a sticky note utility, system management panels, a file... Platforms: *nix

License: Freeware Size: 102.4 KB Download (97): AntiRight Desktop Environment Download

Added: April 24, 2010 | Visits: 1.397

AMA Desktop Linux 1.07 AMA Desktop Linux is a Linux Distribution for AMA Computer University. It aims to provide an interface that is comfortable to existing Microsoft Windows users. Whats New in This Release: AMA Desktop 2007 had many different exclusive applications and patches designed to make everything work... Platforms: *nix

License: Freeware Size: 697.7 MB Download (94): AMA Desktop Linux 1.07 Download

Added: April 03, 2010 | Visits: 962

Rose::Object::MakeMethods::Generic Rose::Object::MakeMethods::Generic is a Perl module that can create simple object methods. SYNOPSIS package MyObject; use Rose::Object::MakeMethods::Generic ( scalar => [ power, error, ], scalar --get_set_init => name, boolean --get_set_init => is_tall, boolean => [ is_red,... Platforms: *nix

License: Freeware Size: 28.67 KB Download (97): Rose::Object::MakeMethods::Generic Download

Added: June 04, 2010 | Visits: 1.482

Rose::DB::Object::Tutorial Rose::DB::Object::Tutorial is a guided tour of the basics of Rose::DB::Object. INTRODUCTION This document provides a step-by-step introduction to the Rose::DB::Object module distribution. It demonstrates all of the important features using a semi-realistic example database. This tutorial does... Platforms: *nix

License: Freeware Size: 481.28 KB Download (98): Rose::DB::Object::Tutorial Download

Added: March 18, 2010 | Visits: 915

Rose::DateTime::Util Rose::DateTime::Util Perl module contains some simple DateTime wrapper functions. SYNOPSIS use Rose::DateTime::Util qw(:all); $now = parse_date(now); $then = parse_date(12/25/2001 11pm); print $now->day_of_week; # e.g., "Monday" # "December 25th 2001 at 11:00:00 PM" $date_text =... Platforms: *nix

License: Freeware Size: 12.29 KB Download (89): Rose::DateTime::Util Download

Added: July 05, 2010 | Visits: 1.361

Rose::DB::Object::Helpers Rose::DB::Object::Helpers is a mix-in class containing convenience methods for Rose::DB::Object. SYNOPSIS package MyDBObject; use Rose::DB::Object; our @ISA = qw(Rose::DB::Object); use Rose::DB::Object::Helpers clone, { load_or_insert => find_or_create }; ... $obj =... Platforms: *nix

License: Freeware Size: 481.28 KB Download (114): Rose::DB::Object::Helpers Download

Added: October 02, 2010 | Visits: 965

Rose::DB::Object::QueryBuilder Rose::DB::Object::QueryBuilder is a Perl module that can build SQL queries on behalf of Rose::DB::Object::Manager. SYNOPSIS use Rose::DB::Object::QueryBuilder qw(build_select); # Build simple query $sql = build_select ( dbh => $dbh, select => COUNT(*), tables => [ articles ], columns... Platforms: *nix

License: Freeware Size: 481.28 KB Download (95): Rose::DB::Object::QueryBuilder Download

Added: August 27, 2010 | Visits: 1.132

Rose::Class::MakeMethods::Set Rose::Class::MakeMethods::Set is a Perl module to create class methods to manage sets. SYNOPSIS package MyClass; use Rose::Class::MakeMethods::Set ( inheritable_set => [ required_name => { add_implies => add_valid_name, test_method => name_is_required, }, ], inherited_set => [... Platforms: *nix

License: Freeware Size: 28.67 KB Download (101): Rose::Class::MakeMethods::Set Download

Added: October 18, 2010 | Visits: 894

Rose::Object Rose::Object is a simple object base class. SYNOPSIS package MyObject; use Rose::Object; our @ISA = qw(Rose::Object); sub foo { ... } sub bar { ... } ... my $o = MyObject->new(foo => abc, bar => 5); ... Rose::Object is a generic object base class. It provides very little... Platforms: *nix

License: Freeware Size: 28.67 KB Download (88): Rose::Object Download

Added: February 15, 2010 | Visits: 920

Rose::DateTime Rose::DateTime is a Perl module with DateTime helper functions and objects. SYNOPSIS use Rose::DateTime::Util qw(:all); $now = parse_date(now); $then = parse_date(12/25/2001 6pm); $date_text = format_date($then, "%D at %T %p"); ... use Rose::DateTime::Parser; $parser =... Platforms: *nix

License: Freeware Size: 11.26 KB Download (98): Rose::DateTime Download

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: November 09, 2010 | Visits: 936

Rose::HTML::Objects Rose::HTML::Objects is a Perl object-oriented interfaces for HTML. SYNOPSIS use Rose::HTML::Form; $form = Rose::HTML::Form->new(action => /foo, method => post); $form->add_fields ( name => { type => text, size => 20, required => 1 }, height => { type => text, size => 5, maxlength => 5... Platforms: *nix

License: Freeware Size: 133.12 KB Download (99): Rose::HTML::Objects Download

Added: June 22, 2010 | Visits: 1.265

Rose::HTML::Form Rose::HTML::Form is a HTML form base class. SYNOPSIS package PersonForm; use Rose::HTML::Form; our @ISA = qw(Rose::HTML::Form); use Person; sub build_form { my($self) = shift; $self->add_fields ( name => { type => text, size => 25, required => 1 }, email => { type => email, size... Platforms: *nix

License: Freeware Size: 102.4 KB Download (91): Rose::HTML::Form Download

Added: October 07, 2013 | Visits: 1.211

desktop-data-manager Desktop Data Manager is a Clipboard Manager for GNOME similar to Klipper for KDE. With DDM it is possible to display different types of content like text or images. Additional DDM includes a screenshot taking application which is able to take screenshots from a single window/subwindow, rectangle... Platforms: *nix

License: Freeware Size: 215.04 KB Download (102): desktop-data-manager Download

Added: January 02, 2010 | Visits: 1.017

Easy Media Desktop Easy Media Desktop is meant as a user-friendly interface to working with different types of media. Its primarily designed to be used by mobility impaired users that may be using a specialized interface that allows special switches to send signals to a PC as mouse clicks.. kavlon coloring book... Platforms: *nix

License: Freeware Size: 8.19 KB Download (99): Easy Media Desktop Download

Added: March 02, 2010 | Visits: 857

NicE Desktop NicE Desktop is a Debian-based, live Linux distribution. Being a live distribution, it runs from portable storage, such as a CD/DVD or USB flash drive. This operating system can be run in both text mode and graphical mode. NicE Desktop comes with many programs for both recreational and... Platforms: *nix

License: Freeware Size: 603 MB Download (94): NicE Desktop Download

Added: April 11, 2010 | Visits: 1.239

NoMachine NX Desktop Server NoMachine NX Desktop Server is a cost-effective solution that enables any business to deploy centralized applications to thin clients, mobile and home workers, over any network connection, with astonishing speed and ease of use. NX uses the power of the X-Window system to bring the network... Platforms: *nix

License: Freeware Size: 6.3 MB Download (110): NoMachine NX Desktop Server Download

Added: October 20, 2010 | Visits: 1.805

Asterisk Desktop Manager Asterisk Desktop Manager application interfaces your VOIP telephony with the desktop and Asterisk PBX. Asterisk Desktop Manager aims to integrate your desktop with the Asterisk PBX and hardware IP phone by providing some useful features such as automatic on-call volume reduction, one click... Platforms: *nix

License: Freeware Size: 9.1 MB Download (287): Asterisk Desktop Manager Download

< 1 2 3 4 5 >