green products
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 900
Green On Black 0.1
Green On Black is the adaptation for KDE 3.5.x of the Green On Black theme from KDE 3.2. more>>
Green On Black is the adaptation for KDE 3.5.x of the "Green On Black" theme from KDE 3.2.
<<less Download (0.67MB)
Added: 2007-04-13 License: GPL (GNU General Public License) Price:
927 downloads
LMartianGreen Plone Skin 1.5
LMartianGreen Plone Skin project consists of a Plone Skin for Plone 2.5. more>>
LMartianGreen Plone Skin project consists of a Plone Skin for Plone 2.5.
LMartianGreen is one of Plone skins from Alternative Plone Skins project.
You can install LMartianGreen Plone skin in the same way as other Plone products:
- Download zip. or .gz archive.
- Install as Zope product: extract Plone skin from archive to directory of products and restart Zope server.
- Install in your Plone instance with QuickInstaller (Plone Control Panel -> Add/remove Products)
- Now your Plone site should have the corresponding skin look.
Note: LMartianGreen Plone skin was created with Plone skin dump product.
<<lessLMartianGreen is one of Plone skins from Alternative Plone Skins project.
You can install LMartianGreen Plone skin in the same way as other Plone products:
- Download zip. or .gz archive.
- Install as Zope product: extract Plone skin from archive to directory of products and restart Zope server.
- Install in your Plone instance with QuickInstaller (Plone Control Panel -> Add/remove Products)
- Now your Plone site should have the corresponding skin look.
Note: LMartianGreen Plone skin was created with Plone skin dump product.
Download (0.024MB)
Added: 2007-03-29 License: ZPL (Zope Public License) Price:
942 downloads
Freedom Plone Skin 1.3.1
Freedom Plone Skin provides a skin based on Plone Skin Dump product. more>>
Freedom Plone Skin provides a skin based on Plone Skin Dump product.
Freedom is one of Plone skins from Alternative Plone Skins project.
You can install Freedom Plone skin in the same way as other Plone products:
- Install as Zope product: extract Plone skin from archive to directory of products and restart Zope server.
- Install in your Plone instance with QuickInstaller (Plone Control Panel -> Add/remove Products)
- Now your Plone site should have the corresponding skin look.
Note: Freedom Plone skin was created with Plone skin dump product.
<<lessFreedom is one of Plone skins from Alternative Plone Skins project.
You can install Freedom Plone skin in the same way as other Plone products:
- Install as Zope product: extract Plone skin from archive to directory of products and restart Zope server.
- Install in your Plone instance with QuickInstaller (Plone Control Panel -> Add/remove Products)
- Now your Plone site should have the corresponding skin look.
Note: Freedom Plone skin was created with Plone skin dump product.
Download (0.018MB)
Added: 2007-03-29 License: ZPL (Zope Public License) Price:
941 downloads
Device Control Device 0.13
Device Control Device is a platform independent remote telescope and device control program. more>>
Device Control Device is a platform independent remote telescope and device control program compatible with the INDI standard (see http://indi.sourceforge.net/).
This program is a client (a user interface) and provides functions to control devices connected to a remote system that is running an INDI server.
The features and the structure of the GUI are similar to the Kstars INDI client. The only advantages are support for Windows and lower resource requirements.
<<lessThis program is a client (a user interface) and provides functions to control devices connected to a remote system that is running an INDI server.
The features and the structure of the GUI are similar to the Kstars INDI client. The only advantages are support for Windows and lower resource requirements.
Download (0.073MB)
Added: 2005-09-11 License: GPL (GNU General Public License) Price:
1509 downloads
Graph::Flowchart 0.10
Graph::Flowchart is a Perl module that can generate easily flowcharts as Graph::Easy objects. more>>
Graph::Flowchart is a Perl module that can generate easily flowcharts as Graph::Easy objects.
SYNOPSIS
use Graph::Flowchart;
my $flow = Graph::Flowchart->new();
print $flow->as_ascii();
This module lets you easily create flowcharts as Graph::Easy objects. This means you can output your flowchart as HTML, ASCII, Boxart (unicode drawing) or SVG.
Classes
The nodes constructed by the various add_* methods will set the subclass of the node according to the following list:
start
The start block.
end
The end block, created by finish().
block
Orindary code blocks, f.i. from $b = 9;.
if, for, while, until
Blocks for the various constructs for conditional and loop constructs.
sub
For sub routine declarations.
use
For use, no and require statements.
goto, break, return, next, last, continue
Blocks for the various constructs for jumps/returns.
true, false, goto, call, return, break, next, continue
Classes for edges of the true and false if-branches, and for goto, as well as sub routine calls.
Each class will get some default attributes, like if constructs having a diamond-shape.
You can override the graph appearance most easily by changing the (sub)-class attributes:
my $chart = Graph::Flowchart->new();
$chart->add_block($a = 9;);
$chart->add_if_then($a == 9;, $b = 1;);
$chart->finish();
my $graph = $chart->as_graph();
Now $graph is a Graph::Easy object and you can manipulate the class attributes like so:
$graph->set_attribute(node.if, fill, red);
$graph->set_attribute(edge.true, color, green);
print $graph->as_html_file();
This will color all conditional blocks red, and edges that represent the true branch green.
<<lessSYNOPSIS
use Graph::Flowchart;
my $flow = Graph::Flowchart->new();
print $flow->as_ascii();
This module lets you easily create flowcharts as Graph::Easy objects. This means you can output your flowchart as HTML, ASCII, Boxart (unicode drawing) or SVG.
Classes
The nodes constructed by the various add_* methods will set the subclass of the node according to the following list:
start
The start block.
end
The end block, created by finish().
block
Orindary code blocks, f.i. from $b = 9;.
if, for, while, until
Blocks for the various constructs for conditional and loop constructs.
sub
For sub routine declarations.
use
For use, no and require statements.
goto, break, return, next, last, continue
Blocks for the various constructs for jumps/returns.
true, false, goto, call, return, break, next, continue
Classes for edges of the true and false if-branches, and for goto, as well as sub routine calls.
Each class will get some default attributes, like if constructs having a diamond-shape.
You can override the graph appearance most easily by changing the (sub)-class attributes:
my $chart = Graph::Flowchart->new();
$chart->add_block($a = 9;);
$chart->add_if_then($a == 9;, $b = 1;);
$chart->finish();
my $graph = $chart->as_graph();
Now $graph is a Graph::Easy object and you can manipulate the class attributes like so:
$graph->set_attribute(node.if, fill, red);
$graph->set_attribute(edge.true, color, green);
print $graph->as_html_file();
This will color all conditional blocks red, and edges that represent the true branch green.
Download (0.034MB)
Added: 2007-07-06 License: Perl Artistic License Price:
845 downloads
Download (210MB)
Added: 2006-01-02 License: GPL (GNU General Public License) Price:
1390 downloads
arrows 0.6
Iamge in which you find a path through a maze of arrows more>>
Iamge iproject) in which you find a path through a maze of arrows
The goal is to guide the blue spinning thing through a maze of arrows, collecting the green things to score points.
Arrows can be created and destroyed along the way. The player is chased by an enemy sprite which slowly catches up.
<<lessThe goal is to guide the blue spinning thing through a maze of arrows, collecting the green things to score points.
Arrows can be created and destroyed along the way. The player is chased by an enemy sprite which slowly catches up.
Download (0.032MB)
Added: 2006-11-28 License: GPL (GNU General Public License) Price:
1077 downloads
FreeTpl Shop 1.0
FreeTpl Shop is a Free PHP Shopping Cart. more>>
FreeTpl PHP Shopping Cart supports Downloadable products with instant activation option, especially useful for software companies selling their products via the Internet & could be easily integrated into any system widely utilizing the power of templates and web-administration tools.
Shopping Basket with advanced Sales Mechanisms (Products reviews and ratings, Discounts mechanism, Shipping and Stock mechanisms, etc), Web-based Administration with Order Maintenance, Product Maintenance, User/Shopper Maintenance, multiple payment processing capabilities (including support of Verisign, Paypal and Authorize.net payment systems). The project provides an easy, quick and flexible web interface that allows adding high performance Shopping basket to your web site.
<<lessShopping Basket with advanced Sales Mechanisms (Products reviews and ratings, Discounts mechanism, Shipping and Stock mechanisms, etc), Web-based Administration with Order Maintenance, Product Maintenance, User/Shopper Maintenance, multiple payment processing capabilities (including support of Verisign, Paypal and Authorize.net payment systems). The project provides an easy, quick and flexible web interface that allows adding high performance Shopping basket to your web site.
Download (5.3MB)
Added: 2007-04-29 License: GPL (GNU General Public License) Price:
911 downloads
VeriSign EV Green Bar Extension 1.0.1.2814
VeriSign EV Green Bar Extension enables Firefox to recognize SSL servers that have implemented the EV Certificate. more>>
VeriSign EV Green Bar Extension enables Firefox to recognize SSL servers that have implemented the Extended Validation Certificate as currently supported by Microsoft in IE7. Installing this extension brings identical functionality to Firefox.
VeriSign EV Green Bar Extension add-on adds extended validation (EV) certificate support to Firefox. The address bar turns green and displays certificate owner and CA issuer information when the browser receives an EV certificate. Additional information is available when the certificate label in the address bar is clicked.
<<lessVeriSign EV Green Bar Extension add-on adds extended validation (EV) certificate support to Firefox. The address bar turns green and displays certificate owner and CA issuer information when the browser receives an EV certificate. Additional information is available when the certificate label in the address bar is clicked.
Download (0.030MB)
Added: 2007-07-23 License: MPL (Mozilla Public License) Price:
853 downloads
LBlueGray Plone Skin 2.1.2
LBlueGray Plone Skin provides a skin based on Plone Skin Dump product. more>>
LBlueGray Plone Skin provides a skin based on Plone Skin Dump product.
LBlueGray is one of Plone skins from Alternative Plone Skins project.
You can install LBlueGray Plone skin in the same way as other Plone products:
- Download zip. or .gz archive.
- Install as Zope product: extract Plone skin from archive to directory of products and restart Zope server.
- Install in your Plone instance with QuickInstaller (Plone Control Panel -> Add/remove Products)
- Now your Plone site should have the corresponding skin look.
Note: LBlueGray Plone skin was created with Plone skin dump product.
<<lessLBlueGray is one of Plone skins from Alternative Plone Skins project.
You can install LBlueGray Plone skin in the same way as other Plone products:
- Download zip. or .gz archive.
- Install as Zope product: extract Plone skin from archive to directory of products and restart Zope server.
- Install in your Plone instance with QuickInstaller (Plone Control Panel -> Add/remove Products)
- Now your Plone site should have the corresponding skin look.
Note: LBlueGray Plone skin was created with Plone skin dump product.
Download (0.014MB)
Added: 2007-03-29 License: ZPL (Zope Public License) Price:
945 downloads
CreamCaustic Plone Skin 1.3
CreamCaustic Plone Skin provides a skin based on Plone Skin Dump product. more>>
CreamCaustic Plone Skin provides a skin based on Plone Skin Dump product.
You can install CreamCaustic Plone skin in the same way as other Plone products:
- Download zip. or .gz archive.
- Install as Zope product: extract Plone skin from archive to directory of products and restart Zope server.
- Install in your Plone instance with QuickInstaller (Plone Control Panel -> Add/remove Products)
- Now your Plone site should have the corresponding skin look.
Note: CreamCaustic Plone skin was created with Plone skin dump product.
<<lessYou can install CreamCaustic Plone skin in the same way as other Plone products:
- Download zip. or .gz archive.
- Install as Zope product: extract Plone skin from archive to directory of products and restart Zope server.
- Install in your Plone instance with QuickInstaller (Plone Control Panel -> Add/remove Products)
- Now your Plone site should have the corresponding skin look.
Note: CreamCaustic Plone skin was created with Plone skin dump product.
Download (0.027MB)
Added: 2007-03-29 License: ZPL (Zope Public License) Price:
568 downloads
Term::ANSIScreen 1.42
Term::ANSIScreen is a Perl module for terminal control using ANSI escape sequences. more>>
Term::ANSIScreen is a Perl module for terminal control using ANSI escape sequences.
SYNOPSIS
# qw/:color/ is exported by default, i.e. color() & colored()
use Term::ANSIScreen qw/:color :cursor :screen :keyboard/;
print setmode(1), setkey(a,b);
print "40x25 mode now, with a mapped to b.";
; resetkey; setmode 3; cls;
locate 1, 1; print "@ This is (1,1)", savepos;
print locate(24,60), "@ This is (24,60)"; loadpos;
print down(2), clline, "@ This is (3,15)n";
setscroll 1, 20;
color black on white; clline;
print "This line is black on white.n";
print color reset; print "This text is normal.n";
print colored ("This text is bold blue.n", bold blue);
print "This text is normal.n";
print colored [bold blue], "This text is bold blue.n";
print "This text is normal.n";
use Term::ANSIScreen qw/:constants/; # constants mode
print BLUE ON GREEN . "Blue on green.n";
$Term::ANSIScreen::AUTORESET = 1;
print BOLD GREEN . ON_BLUE "Bold green on blue.", CLEAR;
print "nThis text is normal.n";
# Win32::Console emulation mode
# this returns a Win32::Console object on a Win32 platform
my $console = Term::ANSIScreen->new;
$console->Cls; # also works on non-Win32 platform
Term::ANSIScreen is a superset of Term::ANSIColor (as of version 1.04 of that module). In addition to color-sequence generating subroutines exported by :color and :constants, this module also features :cursor for cursor positioning, :screen for screen control, as well as :keyboard for key mapping.
NOTES
All subroutines in Term::ANSIScreen will print its return value if called under a void context.
The cursor position, current color, screen mode and keyboard mappings affected by Term::ANSIScreen will last after the program terminates. You might want to reset them before the end of your program.
<<lessSYNOPSIS
# qw/:color/ is exported by default, i.e. color() & colored()
use Term::ANSIScreen qw/:color :cursor :screen :keyboard/;
print setmode(1), setkey(a,b);
print "40x25 mode now, with a mapped to b.";
; resetkey; setmode 3; cls;
locate 1, 1; print "@ This is (1,1)", savepos;
print locate(24,60), "@ This is (24,60)"; loadpos;
print down(2), clline, "@ This is (3,15)n";
setscroll 1, 20;
color black on white; clline;
print "This line is black on white.n";
print color reset; print "This text is normal.n";
print colored ("This text is bold blue.n", bold blue);
print "This text is normal.n";
print colored [bold blue], "This text is bold blue.n";
print "This text is normal.n";
use Term::ANSIScreen qw/:constants/; # constants mode
print BLUE ON GREEN . "Blue on green.n";
$Term::ANSIScreen::AUTORESET = 1;
print BOLD GREEN . ON_BLUE "Bold green on blue.", CLEAR;
print "nThis text is normal.n";
# Win32::Console emulation mode
# this returns a Win32::Console object on a Win32 platform
my $console = Term::ANSIScreen->new;
$console->Cls; # also works on non-Win32 platform
Term::ANSIScreen is a superset of Term::ANSIColor (as of version 1.04 of that module). In addition to color-sequence generating subroutines exported by :color and :constants, this module also features :cursor for cursor positioning, :screen for screen control, as well as :keyboard for key mapping.
NOTES
All subroutines in Term::ANSIScreen will print its return value if called under a void context.
The cursor position, current color, screen mode and keyboard mappings affected by Term::ANSIScreen will last after the program terminates. You might want to reset them before the end of your program.
Download (0.015MB)
Added: 2006-06-14 License: Perl Artistic License Price:
1227 downloads
Zen 1.0
Zen is a Gnome theme that aims to be clear, soft and configurable in colours more>>
Zen is a Gnome theme that aims to be clear, soft and configurable in colours
Colours for selected text, progress bar and Metacity borders can be changed running ./configure at the root of the theme directory (usually ~/.themes/Zen/).
Default is purple, other ones are blue, grey, brown, orange, yellow, olive and green.
Zen for Metacity theme is based on Clear-alternative-wide an is provided by Billy Cantrell
<<lessColours for selected text, progress bar and Metacity borders can be changed running ./configure at the root of the theme directory (usually ~/.themes/Zen/).
Default is purple, other ones are blue, grey, brown, orange, yellow, olive and green.
Zen for Metacity theme is based on Clear-alternative-wide an is provided by Billy Cantrell
Download (0.039MB)
Added: 2007-01-26 License: GPL (GNU General Public License) Price:
1004 downloads
Paranoid 0.99.9
Paranoid is breakout clone with a very retro feel. more>>
Paranoid is breakout clone with a very retro feel - green arcady graphics with vertical scanlines at an extremely small resolution (200x160 emulated on 640x480), beepy sound effects and chip music will all take you back at least 15 years.
This version is almost finnished, it just needs some original music. It currently contains 40 levels of increasing difficulty which should keep you busy for a couple of hours.
<<lessThis version is almost finnished, it just needs some original music. It currently contains 40 levels of increasing difficulty which should keep you busy for a couple of hours.
Download (0.32MB)
Added: 2005-08-11 License: GPL (GNU General Public License) Price:
1543 downloads
MidnightDream 0.2
MidnightDream 0.2 is yet another great addition for Gnome users. It is actually a colorful all-in-one theme that uses clearlooks and pixbuf engine more>>
MidnightDream 0.2 is yet another great addition for Gnome users. It is actually a colorful all-in-one theme that uses clearlooks and pixbuf engine. You can change all the colors to the ones that fits better your desktop, so you can change the orange set to a green one, or a blue one if you like it!
Now you can have 3 panels versions. By default the classic panel is active, 'cause you liked it. Also you can have a darker version for the ones that wanted more dark in their lives. And for the few people who likes white panels you can chose them!
<<less Added: 2008-10-20 License: GPL Price: FREE
13 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above green products search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed