Main > Free Download Search >

Free round brown software for linux

round brown

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 295
Murrina-Brown 0.1

Murrina-Brown 0.1


Murrina-Brown 0.1 is yet another great addition for Gnome users. It is actually a port of Mac OS X theme, Muku v1.2. The dock on the bottom is avant-window-navigator more>>
Murrina-Brown 0.1 is yet another great addition for Gnome users. It is actually a port of Mac OS X theme, Muku v1.2. The dock on the bottom is avant-window-navigator. Emerald theme is included.
<<less
Added: 2008-10-23 License: GPL Price: FREE
14 downloads
PodBrowser 0.10

PodBrowser 0.10


PodBrowser is a documentation browser for Perl. more>>
PodBrowser is a documentation browser for Perl. You can view the documentation for Perls builtin functions, its "perldoc" pages, pragmatic modules and the default and user-installed modules.

PodBrowser is a more feature-complete version of podviewer, which comes with Gtk2::PodViewer.

<<less
Download (0.030MB)
Added: 2006-08-08 License: GPL (GNU General Public License) Price:
1172 downloads
Rockin Rounded Corners 1.0

Rockin Rounded Corners 1.0


Rockin Rounded Corners is an easy way to add rounded corners to any element on your web site. more>>
Rockin Rounded Corners is an easy way to add rounded corners to any element on your web site. Upload this script to your site to allow your web site visiters to quickly and easily generate the code needed to add rounded corners, or use it for your own site.
Main features:
- Easy to install. Just unzip and upload, or if youre using it on a local server, just unzip!
- 18 different rounded corner styles to choose from.
- Simple, clean code that is easy to apply site-wide
- Choose from HTML or PHP code for the rounded corners. The PHP code is slimmer, but theres HTML for those without PHP installed.
- An easy way to add a cool new feature to your web site.
<<less
Download (0.061MB)
Added: 2006-02-06 License: Freeware Price:
1358 downloads
Brownstone 0.1

Brownstone 0.1


Brownstone is a KDE theme with a pale imitation of nature... Inspired by Green Leaf more>>
Brownstone is a KDE theme with a pale imitation of nature... Inspired by Green Leaf

http://www.kde-look.org/content/show.php/Green+Leaf?content=54875

The JPEGs I have posted doesnt really do justice..a decent png was >300 kb so couldnt upload it..

My part is basically a config file for domino made by me.. everything else is available in kde-look

I have found that most themes are usually leaning towards blue or a specific shade of a colour..so i have tried to make this as colour neutral theme as possible..

More specifically I have tried to get the effect of grey stone on brown earth with greenery after rainfall.. when the sun has come out.. since thats the most soothing image i can think of..and has lots of soft colours..

The other stuff u see are available in kde-look:

Style:

Domino
(I am using the kubuntu package)

Windec:

Crystal

Wallpaper:

Soft green
http://www.kde-look.org/content/show.php/More+green?content=41884

Colour:

Brown Terra
http://www.kde-look.org/content/show.php/Brown+Terra?content=53421

Iconset:

Ekisho_project
http://www.kde-look.org/content/show.php/Ekisho_Project?content=55588

I have made a small change to the icon set config after installation:
In file associations in control centre

goto inode>folder and change the icon to "folder_grey" in filesystems

because the default icon was too bright for this theme..the new icon is shown in the first screenshot

However for some reason the brighter icon appears in the Quick file menu..if someone can point me to the config where i can change that would appreciate it..

Not too sure about how much i have succeeded in getting the effect i wanted..but i hope you like it..feedback appreciated.
<<less
Download (MB)
Added: 2007-04-16 License: GPL (GNU General Public License) Price:
923 downloads
Pontoon 1.0

Pontoon 1.0


Pontoon is a PHP CMS framework. more>>
Pontoon is a PHP CMS framework. Pontoon supports you, when you develop in PHP.
Enhancements:
- A minor fix was made to html/classes/textpage.class.
- Error handling was made tighter.
- Error handling was added to Web pages.
- "die" statements were removed from MySQL function calls.
- html/libs/.htaccess and html/styles/blue.css were added.
- The default slogan in html/classes/config.class was changed.
- The nodename variable was fixed for the case where Pontoon isnt installed in document root.
<<less
Download (0.009MB)
Added: 2007-01-23 License: GPL (GNU General Public License) Price:
1622 downloads
Games::Tournament::RoundRobin 0.01

Games::Tournament::RoundRobin 0.01


Games::Tournament::RoundRobin is a Perl module for Round-Robin Tournament Schedule Pairings. more>>
Games::Tournament::RoundRobin is a Perl module for Round-Robin Tournament Schedule Pairings.

SYNOPSIS

$schedule = Games::Tournament::RoundRobin->new;

$pairings = $schedule->indexesInRound($roundm);
$round = $schedule->meeting($member1, [$member2, $member3]);
...

Every member of a league of 2n players can be paired with every other member in 2n-1 rounds.

If the league members are (Inf, 1 .. 2n-1), then in round i, i can be paired with Inf, and a can meet b, where a+b = 2i (mod 2n-1).

METHODS

new

Games::Tournament::RoundRobin->new( v => 5, league => [Ha, Be, He])
Games::Tournament::RoundRobin->new( league => {A => $a, B => $b, C => $c})
where v (optional) is the number of league members, and league (optional) is a list (or a hash) reference to the individual unique league members. One of v, or league (which takes precedence) is necessary, and if league is not given, the members are identified by the numbers 0 .. n-1.

If the league is a list (or hash) of n objects, they should be instances of a class that overloads both string quoting with a name method and arithmetical operations with an index method. The index method, called on the n objects in order, should return the n numbers, 0 .. n-1, and in that order if they are presented as an array. If they are presented as a hash, the hash is stored internally as an array and the keys are discarded.

If the league is a list of strings or numbers, indexes are constructed for the values on the basis of their positions in the list, and if a hash of strings or numbers, on the basis of the lexicographic order of their keys. Each string is expected to be unique.
If n is odd, an additional n-1, Bye or object (a Games::League::Member object, by default) member, depending on the type of the first member in the league, is added at the end and n is increased by 1.
indexesInRound

$schedule->indexesInRound($m)

Returns an array reference of the pairings in round $m. This method is useful if you are using numbers to represent your league members. It is not so useful if you are using strings or objects and you dont know their index numbers. Positions in the array represent members. The values represent their partners. Each member is thus represented twice.

roundsInTournament

$t = $schedule-> roundsInTournament;
$round1 = $t[0];
$inRound1FourthWith = $t->[0]->[3];
$inLastRoundLastWith = $$t[-1][-1];

Returns, as a reference to an array of arrays, the pairings in all rounds of the tournament. This method is useful if you are using the algorithm indexes.
partner

$schedule->partner($member, $m)

Returns the partner of $member in round $m.

membersInRound

$schedule->membersInRound($m)

Returns an hash reference of the pairings in round $m. This method is useful if you are using strings or objects. Keys in the hash represent league members. If the league members are objects, their names are used as keys. If 2 names are the same, the names are changed to $name.1, $name.2 etc. The values are their partners. Each player is thus represented twice.

memberSchedule

$schedule->memberSchedule($member)

Returns, as an array reference, the partners who $member is matched with in the order in which they meet, ie round by round.

meeting

$schedule->meeting($member,$partner)

Returns the rounds (TODO and the venue) at which $member meets $partner.

meetings

$schedule->meetings($member1,[$member2,$member3,...])

Returns, as an array reference, the rounds (TODO and the venue) at which $member1 meets $member2, $member3, ...

index

$schedule->index($member)

Returns $members index, the number which is used to pair it with other members. The index is the position, 0..n-1, of the $member in the league argument to the constructor (if an array) or the constructed array (if a hash.)
If $member is not a member of the array, or is itself an index, undef is returned.

member

$schedule->member($index)
$schedule->member($name)
$bye = $schedule->member( $schedule->size-1 )

Returns the member represented by $index, a number which ranges from 0..n-1, or by $name, a string. If there is no such member, undef is returned.

partners

$schedule->partners($index)
$schedule->partners($name)

Returns an array reference of all the partners of the $indexed or $named member, in index order, or the order in the league argument.

realPartners

$schedule->realPartners($index)

Returns an array reference of all the partners of the $indexed member, excluding the Bye member. Dont use this if you have no Bye member, as it just leaves off the last member.

size

$schedule->size

Returns the number of members in the round robin. Sometimes this may not be the same as the number of league members specified, because the array of league members takes precedence if supplied, and a bye is added if the number is odd.

rounds

$schedule->rounds

Returns the number of rounds in the round robin. This equals the number of league members, minus 1.

<<less
Download (0.010MB)
Added: 2007-01-05 License: Perl Artistic License Price:
1024 downloads
JTourney 1.0

JTourney 1.0


JTourney is a Java based tool to support tournament directors conducting small to medium scale round based tournaments. more>>
JTourney is a Java based tool to support tournament directors conducting small to medium scale round based tournaments for multiplayer games.
JTourney tries to encaspulate over 10 years of experience with various tournament formats for different games. Those tournaments were conducted either manually or with the help (of many kind people and) a predecessor programm, which finally became too old and too small.
The need for JTourney arose since the tournaments conducted were rather flexibile: Players could hop on and hop off between rounds, the games played might allow variable number of players. Beside this flexibility JTourney could of course be used to support more rigid tournament formats, but this is not its focus.
Main features:
- Keeping player lists.
- Playcing players on tables for next round by variuos strategies.
- Generate score sheets for tables.
- Keeping track of game scores
- Calculating player scores, tiebreakers and rankings
How it works?
JTourney is a very simple design. It merely parses text files into its memory and composes new ones on design. While parsing its internal datafiles it also feeds this internal information to the RenderMode, therefore it provides you with more beautiful information than just the raw internal text files.
Note the system never stores things like standings or total scores of players internally. It turned out, that parsing input is very fast and never is a real problem for (say) 100 participants and 12 rounds (this is not a limit, it can most likely handle much more participants and more rounds) on a recent PC.
While this architecture is from the computer stone age it is flexible and powerful. Maybe a bit volatile, but after all it is entirely appropriate to put whatever kind of GUI on top if necessary!
<<less
Download (1.8MB)
Added: 2006-03-23 License: LGPL (GNU Lesser General Public License) Price:
1310 downloads
Bralkomon 1.0

Bralkomon 1.0


Bralkomon is another system monitor Superkramba theme. more>>
Bralkomon is another system monitor Superkramba theme. It is based on Cynapses.

If you have a beautiful lady coming round, or maybe you just want to chill; put on some smooth jazz, put Bralkomon on your desktop, and let the good times roll.

Did I mention Bralkomon is scientifically designed to be the perfect accompaniment to smooth jazz? Oh yeah.

P.S. You might want to change the name of the network device. The .skz file is just a ZIP archive. Open it up, and edit the .theme file. Instructions lie within.

<<less
Download (0.041MB)
Added: 2006-06-20 License: GPL (GNU General Public License) Price:
1223 downloads
Mirro 1.0 Beta

Mirro 1.0 Beta


Mirro is an application used to find the closest mirror to your connection. more>>
Mirro is an application used to find the closest mirror to your connection.

Mirro will find the closest mirror to your connection, given a file containing addresses. It pings every site extremely quickly, and sorts the reponses based on the number of hops and the round-trip time.

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

<<less
Download (0.020MB)
Added: 2007-04-24 License: GPL (GNU General Public License) Price:
913 downloads
Convulsion 0.0.5

Convulsion 0.0.5


Convulsion is a drop-in CVS repository browser for PHP. more>>
Convulsion is a drop-in CVS repository browser for PHP. It makes use of the libraries developed for the Chora module of the Horde project, but does not require that Horde be installed and working to be used.

You can browse directories and files, view a files revision history, compare two versions, and retrieve its ChangeLog. Convulsion also supports automatic obfuscation of e-mail addresses and syntax highlighting of most common languages.

Convulsions output is standards-compliant, accessible, and customisable by means of CSS.

Using Convulsion with Apache 2.x

Please note that in order to use Convulsion with the 2.x series of the Apache web server, you will need to set the value of the "AcceptPathInfo" directive to a value other than "Off". This can be done in the main Apache config, in the < VirtualHost > section for your site or using a .htaccess file.
<<less
Download (0.018MB)
Added: 2005-09-28 License: GPL (GNU General Public License) Price:
1487 downloads
Xyria:DNSd 0.7.5

Xyria:DNSd 0.7.5


Xyria:DNSd is an high performance DNS server. more>>
Xyria:DNSd is an high performance DNS server that supports only the most important features and resource records while being extremely fast and secure.
Xyria:DNSd peoject also supports round-robin load balancing.
Main features:
- extemely fast implementation (main target)
- very secure
- ip-address based listen()ing
- supporting IPv6 addresses and resource records
- load ballancing via round robbin
- running under an low-privileged UID & GID
- running under little endian systems: (at least) Linux, Solaris, OpenBSD
- nice configuration syntax/easy to configure
- DNSd able to forward querys
- DNSd can run as caching only-server
Enhancements:
- The database was modified. Now DNSd uses a hashed array of pointers to binary trees including single linked lists for double valued hashes.
- It sorts the zones (by TTL) by itself (the admin doesnt has to care in which order he has to place the zones in the config file).
- Some code cleanup and a small bugfix are also included.
<<less
Download (0.091MB)
Added: 2006-02-20 License: BSD License Price:
1343 downloads
Siren 0.03

Siren 0.03


Siren is a music player for GNOME with an extremely minimalist interface. more>>
Siren is a music player for GNOME with an extremely minimalist interface. It is written in Perl and uses the GTK2-Perl libraries, and GStreamer.

<<less
Download (0.015MB)
Added: 2005-08-08 License: GPL (GNU General Public License) Price:
1547 downloads
xquarto 2.5

xquarto 2.5


xquarto project is a two-player board game based on logic. more>>
xquarto project is a two-player board game based on logic.

Xquarto is a board game designed for the X windows environment. The game is a two-player game, although for the moment,it is only possible to play against the computer. The board is composed of 4x4 squares and 16 pieces. Each piece has four
properties: black or brown, horizontal or vertical, solid or hollow, round or square. This makes up 16 possible combinations and there is exactly one piece for each possibility.

Initially, the board is empty and it is successively filled with pieces. The game is over when a row, a column or a diagonal has four pieces carrying a common property in it, e.g. four black (brown) pieces, four square (round) pieces, four filled
(hollow) pieces, four horizontal (vertical) pieces. In the original quarto rules, the player who is the first to complete a row, column or diagonal as described above wins. This is the implicit mode under which xquarto runs. A variant of the game (tic rules) consists rather of avoiding alignments, i.e. the player who is forced to complete
an alignment loses.

The game is a two-player game. Player 1 chooses one of the 16 pieces. Player 2 then places this piece on one of the 16 squares of the board and chooses a piece out of the remaining 15 pieces which he gives to player 1, who places this piece on one of the remaining 15 squares on the board, etc...

Xquarto supports three different player combinations: human vs computer, computer vs human and human vs human (possibly through the local network in the latter case). The default combination is human vs computer, i.e. the human player starts the game against the computer. This can be changed by clicking on the "Actions" menu (see below for more details).

The rules are really very simple - believe me!

<<less
Download (0.034MB)
Added: 2006-11-28 License: GPL (GNU General Public License) Price:
1060 downloads
GNOME Crontab Editor 0.0.5

GNOME Crontab Editor 0.0.5


The GNOME Crontab Editor is a graphical interface to the crontab program. more>>
The GNOME Crontab Editor is a graphical interface to the crontab program. You can use it to create, delete and edit scheduled tasks using a simple point-and-click interface.

The GNOME Crontab Editor is written in Perl and uses the Gtk-Perl modules, as well as Locale::Maketext and Gtk::HandyCList.

As of version 0.0.5, the Gnome Crontab Editor supports editing remote crontab files using SSH. To use this feature, you will need to have ssh-agent running, or your public key installed on the remote host.

<<less
Download (0.032MB)
Added: 2005-08-03 License: GPL (GNU General Public License) Price:
1546 downloads
Sunergos Blue 0.0.4

Sunergos Blue 0.0.4


Sunergos Blue is a simple Login Manager for Gnome. more>>
Sunergos Blue is a simple Login Manager for Gnome.

Simple and clean, with nothing distribution specific, The sunergos gdm theme features round-cornered, semi-transparent box for logins, a semi-transparent round-cornered bar at the bottom for restarting or halting the system, and a semi-transparent round-cornered top bar displaying the hostname and time.

<<less
Download (0.23MB)
Added: 2006-09-26 License: GPL (GNU General Public License) Price:
1123 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5