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

Architectural Term Arched Window software
Filter: All | Freeware | Demo
 

Architectural Term Arched Window

< 1 2 3 4 5 > 
Added: August 12, 2010 | Visits: 1.161

GO::Model::Term GO::Model::Term is a term or concept in an ontology. SYNOPSIS # From a file use GO::Parser; my $parser = new GO::Parser({handler=>obj}); # create parser object $parser->parse("gene_ontology.obo"); # parse file -> objects my $graph = $parser->handler->graph; # get L object my $term =...



Platforms: *nix

License: Freeware Size: 593.92 KB Download (97): GO::Model::Term Download

Added: June 19, 2010 | Visits: 1.775

Multi-Cursor Window Manager Multi-Cursor Window Manager is a modified Unix window manager which provides multiple cursors. This allows multiple users to simultaneously interact with a Unix desktop environment. Using a modified x2x client users can capture the keyboard and mouse input from their workstation and send to...





Platforms: *nix

License: Freeware Size: 1.5 MB Download (166): Multi-Cursor Window Manager Download

Added: July 27, 2010 | Visits: 988

Term::ReadLine::Gnu Term::ReadLine::Gnu is a Perl extension for the GNU Readline/History Library. SYNOPSIS use Term::ReadLine; $term = new Term::ReadLine ProgramName; while ( defined ($_ = $term->readline(prompt>)) ) { ... } This is an implementation of Term::ReadLine using the GNU Readline/History...


Platforms: *nix

License: Freeware Size: 66.56 KB Download (101): Term::ReadLine::Gnu Download

Added: June 20, 2010 | Visits: 798

Term::ANSIMenu Term::ANSIMenu is an infrastructure for creating menus in ANSI capable terminals. SYNOPSIS use Term::ANSIMenu; my $menu = Term::ANSIMenu->new( width => 40, help => [[, &standard_help], [hint 1, &help_item], [ undef, &standard_help], [hint 3, undef] ], title => title, items => [[1,...


Platforms: *nix

License: Freeware Size: 20.48 KB Download (94): Term::ANSIMenu Download

Added: April 03, 2010 | Visits: 1.425

PDL::Graphics::PGPLOT::Window PDL::Graphics::PGPLOT::Window is a OO interface to PGPLOT windows. SYNOPSIS perldl> use PDL::Graphics::PGPLOT::Window perldl> $win = PDL::Graphics::PGPLOT::Window->new(Device => /xs); perldl> $a = pdl [1..100] perldl> $b = sqrt($a) perldl> $win->line($b) perldl> $win->hold() perldl> $c...


Platforms: *nix

License: Freeware Size: 1.1 MB Download (106): PDL::Graphics::PGPLOT::Window Download

Added: March 09, 2010 | Visits: 1.774

Term::Animation Term::Animation is a Perl module that provides a framework to produce sprite animations using ASCII art. Each ASCII sprite is given one or more frames, and placed into the animation as an animation entity. An animation entity can have a callback routine that controls the position and frame of...


Platforms: *nix

License: Freeware Size: 18.43 KB Download (138): Term::Animation Download

Added: February 17, 2010 | Visits: 886

Term::Prompt Term::Prompt is a Perl extension for prompting a user for information. SYNOPSIS use Term::Prompt; $value = &prompt(...); use Term::Prompt qw(termwrap); print &termwrap(...); $Term::Prompt::MULTILINE_INDENT = ; PREREQUISITES You must have Text::Wrap and Term::ReadKey available on...


Platforms: *nix

License: Freeware Size: 11.26 KB Download (93): Term::Prompt Download

Added: August 13, 2010 | Visits: 1.165

Window Manager Icons Window Manager Icons purpose of the wm-icons project is to provide a themeable icon distribution for window managers..


Platforms: *nix

License: Freeware Size: 3.5 MB Download (93): Window Manager Icons Download

Added: October 21, 2010 | Visits: 1.035

Term::Shell Term::Shell is a simple command-line shell framework. SYNOPSIS package MyShell; use base qw(Term::Shell); sub run_command1 { print "command 1!n"; } sub smry_command1 { "what does command1 do?" } sub help_command1 { <


Platforms: *nix

License: Freeware Size: 17.41 KB Download (97): Term::Shell Download

Added: March 24, 2010 | Visits: 939

Term::TtyRec::Player Term::TtyRec::Player is a Perl module that playbacks ttyrec data. SYNOPSIS use Term::TtyRec::Player; use FileHandle; # $handle is any IO::* object my $handle = FileHandle->new(file.tty); my $player = Term::TtyRec::Player->new($handle); # options can be set as hashref my $player =...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (111): Term::TtyRec::Player Download

Added: September 19, 2010 | Visits: 776

Term::ShellUI Term::ShellUI is a fully-featured shell-like command line environment. SYNOPSIS use Term::ShellUI; my $term = new Term::ShellUI( commands => { "cd" => { desc => "Change to directory DIR", maxargs => 1, args => sub { shift->complete_onlydirs(@_); }, proc => sub { chdir($_[0] ||...


Platforms: *nix

License: Freeware Size: 43.01 KB Download (88): Term::ShellUI Download

Added: February 23, 2010 | Visits: 900

Term::GDBUI Term::GDBUI is a fully-featured shell-like command line environment. SYNOPSIS use Term::GDBUI; my $term = new Term::GDBUI(commands => get_commands()); # (see below for the code to get_commands) $term->run(); Term::GDBUI uses the history and autocompletion features of Term::ReadLine to...


Platforms: *nix

License: Freeware Size: 43.01 KB Download (95): Term::GDBUI Download

Added: August 12, 2010 | Visits: 1.422

No New Window No New Window forces Firefox to never open links in a new window automatically. If you want to open a link in a new window, you can still do that via the context menu, but if a website author specifies that a link should open in a new window, that is ignored. Please note that this extension...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (93): No New Window Download

Added: May 14, 2010 | Visits: 1.242

Term::TtyRec::Plus Term::TtyRec::Plus is a Perl module to read a ttyrec. SYNOPSIS Term::TtyRec::Plus is a module that lets you read ttyrec files. The related module, Term::TtyRec is designed more for simple interactions. Term::TtyRec::Plus gives you more information and, using a callback, lets you munge the...


Platforms: *nix

License: Freeware Size: 57.34 KB Download (102): Term::TtyRec::Plus Download

Added: July 26, 2010 | Visits: 914

Term::Gnuplot Term::Gnuplot is a Perl module for lowlevel graphics using gnuplot drawing routines. SYNOPSIS use Term::Gnuplot :ALL; list_terms(); change_term(dumb) or die "Cannot set terminal.n"; term_init(); # init() term_start_plot(); # graphics(); $xmax = scaled_xmax(); $ymax = scaled_ymax();...


Platforms: *nix

License: Freeware Size: 716.8 KB Download (93): Term::Gnuplot Download

Added: July 05, 2010 | Visits: 1.629

Window Maker Window Maker is an X11 window manager originally designed to provide integration support for the GNUstep Desktop Environment. In every way possible, it reproduces the elegant look and feel of the NEXTSTEP[tm] user interface. It is fast, feature rich, easy to configure, and easy to use. It is also...


Platforms: *nix

License: Freeware Size: 2.7 MB Download (126): Window Maker Download

Released: February 09, 2010  |  Added: March 02, 2010 | Visits: 3.435

Window Title Changer Change the title of a window with free Window Title Changer Software. Download and run the Window Title Changer and change title of any application's window within seconds. Icon of the corresponding application is also displayed along with the title of the Window allowing you to select an...


Platforms: Windows

License: Freeware Size: 8.01 KB Download (545): Window Title Changer Download

Released: May 14, 2011  |  Added: May 23, 2011 | Visits: 1.595

Chameleon Window Manager Lite Chameleon Window Manager Lite will allow you to control the windows of your programs using customizable buttons added to the title bars of the windows (Always on Top, Minimize to Tray, Minimize to Caption, Specify Transparency, Position window at left/right of screen).The interface supports skins...


Platforms: Windows

License: Freeware Size: 3.49 MB Download (107): Chameleon Window Manager Lite Download

Released: January 16, 2012  |  Added: February 06, 2012 | Visits: 1.187

Actual Window Rollup program Actual Window Rollup fills up the functionality gap that users, familiarized with Unix/Linux/MacOS window managers, notice while managing workspace in Windows. The program allows you to roll up and down windows by clicking on the special Roll Up button added to window's title bar. This feature...


Platforms: Windows

License: Demo Cost: $0.00 USD Size: 4.37 MB Download (91): Actual Window Rollup program Download

Released: August 10, 2012  |  Added: August 10, 2012 | Visits: 638

Window Gadgets QuikPix Game Window Gadgets QuikPix Game is a memory game that sits on your desktop. Window Gadgets are customizable mini applications for Microsoft Windows that can be resized and placed anywhere on your desktop. You can change the design of any gadget by clicking the top left button or connecting online to...


Platforms: Windows

License: Freeware Size: 3.29 MB Download (52): Window Gadgets QuikPix Game Download

< 1 2 3 4 5 >