gorilla
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 6
Gorilla
Gorilla icon theme is ready for general consumption. more>>
Gorilla icon theme is ready for general consumption.
Gorilla is part of the Gorilla metatheme and lives in gnome-themes-extras in GNOMEs CVS repository.
<<lessGorilla is part of the Gorilla metatheme and lives in gnome-themes-extras in GNOMEs CVS repository.
Download (0.13MB)
Added: 2005-11-17 License: GPL (GNU General Public License) Price:
1445 downloads
Password Gorilla 1.4
Password Gorilla is a password manager that stores your login information. more>> <<less
Download (0.18MB)
Added: 2006-07-06 License: GPL (GNU General Public License) Price:
1207 downloads
Bowzilla for Linux
Bowzilla is a mini Game for 2 players. more>>
Bowzilla is a mini Game for 2 players. Leaned against the old QBasic Gorilla, you must fire at your opponent in real-time.
Particularly the realistic blood is to be considered with the lightning strike. You have to find a whole in the target range. However, you should not expect to much from it.
<<lessParticularly the realistic blood is to be considered with the lightning strike. You have to find a whole in the target range. However, you should not expect to much from it.
Download (7.1MB)
Added: 2005-10-07 License: Freeware Price:
1479 downloads
Animal Toys Icons for Linux -
5 freeware icons of animals. more>> 5 freeware icons of animals.
Content:
Elephant, Giraffe, Gorilla, Lion, Zebra<<less
Download (174KB)
Added: 2009-04-17 License: Freeware Price: Free
191 downloads
Jini icon theme 0.6
Jini icon theme project consists of SVG vector themes. more>>
Jini icon theme project consists of SVG vector themes.
Jini Icon theme is SVG vector theme. Some elements derived from Gorilla theme, thanks jimmac. And all icons made by inkscape. There is 4 color theme,
Installation
For using jin4 jin5 jin6 icon theme, you should have install jin3 theme
To install the iconset please extract to
/home/ /.icons
or
/usr/share/icons
now use your Desktop Environments theme manager
to select the theme.
in GNOME you can find the theme manager in the menu
Desktop > Preferences > Theme
now click "Theme details" and then select the "Icon" tab,
Dropline Neu! should be available in the theme list :)
Enhancements:
- Add and edit more than 70 icons.
- Start adding kde icon.
- evolution mail icon size bug fix thanks to Christoph Trassl
<<lessJini Icon theme is SVG vector theme. Some elements derived from Gorilla theme, thanks jimmac. And all icons made by inkscape. There is 4 color theme,
Installation
For using jin4 jin5 jin6 icon theme, you should have install jin3 theme
To install the iconset please extract to
/home/ /.icons
or
/usr/share/icons
now use your Desktop Environments theme manager
to select the theme.
in GNOME you can find the theme manager in the menu
Desktop > Preferences > Theme
now click "Theme details" and then select the "Icon" tab,
Dropline Neu! should be available in the theme list :)
Enhancements:
- Add and edit more than 70 icons.
- Start adding kde icon.
- evolution mail icon size bug fix thanks to Christoph Trassl
Download (7.2MB)
Added: 2007-01-27 License: CeCILL (CeCILL Free Software License Agreement) Price:
605 downloads
Test::Chimps::Howto 0.07
Test::Chimps::Howto is a Perl module with a howto about Test::Chimps. more>>
Test::Chimps::Howto is a Perl module with a howto about Test::Chimps.
SYNOPSIS
This document briefly describes how to set up a Chimps server and a Chimps smoker to smoke a project.
THE SERVER
We will be setting up a smoke server for an imaginary company called Bananas 2.0, who make a trendy AJAX website for ordering bananas for primates online. To install the Chimps server, install the Test::Chimps package from CPAN on the machine that will be hosting the server CGI (in this case gorilla.bananas2.com).
root@gorilla:~# cpan Test::Chimps
This will install the various libraries that Chimps needs on the server-side. Next, you are going to need to create the server CGI. There is an example in the Test-Chimps distribution that looks a lot like this:
#!/usr/bin/env perl
use Test::Chimps::Server;
my $server = Test::Chimps::Server->new(
base_dir => /home/chimps,
list_template => list.tmpl,
variables_validation_spec => {
project => 1,
revision => 1,
committer => 1,
duration => 1,
osname => 1,
osvers => 1,
archname => 1
}
);
$server->handle_request;
This file should be put somewhere where the webserver can execute CGIs. In this case, it will be dropped in /usr/lib/cgi-bin and called chimps-server.pl.
The call to the Test::Chimps::Server constructor passes three arguments. The base_dir argument specifies that /home/chimps will be where the Chimps server will store its database, rate limiting file, and templates. The list_template argument says that the file list.tmpl will be used as the template for the front page (where smoke reports are listed). This file can be found in the examples subdirectory of the Test-Chimps distribution (and its too large to reproduce here). You should drop list.tmpl into /home/chimps/templates. Finally, variables_validation_spec tells the Chimps server which report variables the server will require. See "REPORT VARIABLES" in Test::Chimps for more information about report variables. There are also many more options that can be passed to the Test::Chimps::Server constructor for specifying where things should be stored and how to serve smoke reports.
You should now be able to hit http://gorilla.banana2.com/cgi-bin/chimps-server.pl and see an empty listing of smoke reports. Well fix the problem of it being empty in the next section.
<<lessSYNOPSIS
This document briefly describes how to set up a Chimps server and a Chimps smoker to smoke a project.
THE SERVER
We will be setting up a smoke server for an imaginary company called Bananas 2.0, who make a trendy AJAX website for ordering bananas for primates online. To install the Chimps server, install the Test::Chimps package from CPAN on the machine that will be hosting the server CGI (in this case gorilla.bananas2.com).
root@gorilla:~# cpan Test::Chimps
This will install the various libraries that Chimps needs on the server-side. Next, you are going to need to create the server CGI. There is an example in the Test-Chimps distribution that looks a lot like this:
#!/usr/bin/env perl
use Test::Chimps::Server;
my $server = Test::Chimps::Server->new(
base_dir => /home/chimps,
list_template => list.tmpl,
variables_validation_spec => {
project => 1,
revision => 1,
committer => 1,
duration => 1,
osname => 1,
osvers => 1,
archname => 1
}
);
$server->handle_request;
This file should be put somewhere where the webserver can execute CGIs. In this case, it will be dropped in /usr/lib/cgi-bin and called chimps-server.pl.
The call to the Test::Chimps::Server constructor passes three arguments. The base_dir argument specifies that /home/chimps will be where the Chimps server will store its database, rate limiting file, and templates. The list_template argument says that the file list.tmpl will be used as the template for the front page (where smoke reports are listed). This file can be found in the examples subdirectory of the Test-Chimps distribution (and its too large to reproduce here). You should drop list.tmpl into /home/chimps/templates. Finally, variables_validation_spec tells the Chimps server which report variables the server will require. See "REPORT VARIABLES" in Test::Chimps for more information about report variables. There are also many more options that can be passed to the Test::Chimps::Server constructor for specifying where things should be stored and how to serve smoke reports.
You should now be able to hit http://gorilla.banana2.com/cgi-bin/chimps-server.pl and see an empty listing of smoke reports. Well fix the problem of it being empty in the next section.
Download (0.027MB)
Added: 2006-10-17 License: Perl Artistic License Price:
1102 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 1
- 1
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above gorilla 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