othello 0.01
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 311
Games::Othello 0.01
Games::Othello is a Perl extension for modelling a game of Othello. more>>
Games::Othello is a Perl extension for modelling a game of Othello.
SYNOPSIS
use Games::Othello;
my $game = Games::Othello->new();
while( !game->over ) {
printf "It is presently %ss move",
($game->whos_move eq b) ? black, white;
my @possible_moves = values $game->possible_moves();
if ( ! @possible_moves ) {
print "You have no moves available, you must pass.
$game->pass_to_opponent;
} else {
foreach ( my $move ) @possible_moves ) {
printf
"You will take %d of your opponents chips if you place your chip on %d,%d",
scalar @{ $move->{chips} }, $move->{x}, $move->{y};
}
my ($locx, $locy) = get_move();
my $flipped = $game->place_chip( $locx, $locy );
}
my $layout = $game->chip_layout();
foreach my $row ( @$layout ) {
foreach my $pos ( @$row ) {
printf %3s,
($pos eq b) ? B # Black occupied square.
: ($pos eq w) ? W # White occupied square.
: # Un-occupied square.
}
print "nn";
}
}
my ($black_score, $white_score) = $game->score;
<<lessSYNOPSIS
use Games::Othello;
my $game = Games::Othello->new();
while( !game->over ) {
printf "It is presently %ss move",
($game->whos_move eq b) ? black, white;
my @possible_moves = values $game->possible_moves();
if ( ! @possible_moves ) {
print "You have no moves available, you must pass.
$game->pass_to_opponent;
} else {
foreach ( my $move ) @possible_moves ) {
printf
"You will take %d of your opponents chips if you place your chip on %d,%d",
scalar @{ $move->{chips} }, $move->{x}, $move->{y};
}
my ($locx, $locy) = get_move();
my $flipped = $game->place_chip( $locx, $locy );
}
my $layout = $game->chip_layout();
foreach my $row ( @$layout ) {
foreach my $pos ( @$row ) {
printf %3s,
($pos eq b) ? B # Black occupied square.
: ($pos eq w) ? W # White occupied square.
: # Un-occupied square.
}
print "nn";
}
}
my ($black_score, $white_score) = $game->score;
Download (0.005MB)
Added: 2006-12-28 License: Perl Artistic License Price:
1041 downloads
Othello Game 0.2.1
Othello Game is a classic strategy game, also known as Reversi. more>>
Othello Game is a classic strategy game, also known as Reversi. Its objective is to finish the game with the greater amount of pieces (circles) of the same color.
This version of the Othello game supports the writing of AI plugins in C++ or Python, network games, and interface themes.
Enhancements:
- pkgconfig support was added.
- It is now easier to write AI plugins.
- An installation guide, and a tutorial for writing plugins were incuded.
- It is now possible to disable Python support from the configuration.
- New icons were provided.
<<lessThis version of the Othello game supports the writing of AI plugins in C++ or Python, network games, and interface themes.
Enhancements:
- pkgconfig support was added.
- It is now easier to write AI plugins.
- An installation guide, and a tutorial for writing plugins were incuded.
- It is now possible to disable Python support from the configuration.
- New icons were provided.
Download (0.63MB)
Added: 2007-08-16 License: GPL (GNU General Public License) Price:
805 downloads
Fotoblog 0.01
Fotoblog is a web based picture gallery that automatically receives and publishes real-time pictures from your mobile phone. more>>
v Every picture is published along with the text sent from the mobile phone.
Main features:
- POP3 support
- STDIN support (when piped directly from sendmail)
- image pagination with a configurable number of columns and images per page
- an image rotation function via the Web
- photo tag editing via the Web
- automatic thumbnail generation
- a user access log with originating IP and network display (php-whois required)
- user account maintenance via the Web
- a photo search function
- multi-language support
- EXIM support (for extracting the real picture date and time).
<<lessMain features:
- POP3 support
- STDIN support (when piped directly from sendmail)
- image pagination with a configurable number of columns and images per page
- an image rotation function via the Web
- photo tag editing via the Web
- automatic thumbnail generation
- a user access log with originating IP and network display (php-whois required)
- user account maintenance via the Web
- a photo search function
- multi-language support
- EXIM support (for extracting the real picture date and time).
Download (0.015MB)
Added: 2006-11-07 License: GPL (GNU General Public License) Price:
1081 downloads
Othello Master 0.7.8
Othello Master project is a 3-D Othello (Reversi) gaming environment. more>> <<less
Download (1.9MB)
Added: 2006-10-25 License: GPL (GNU General Public License) Price:
635 downloads
hsclock 0.01.0
hsclock is an accurate, multi-zone GTK clock. more>>
hsclock is a small, accurate, multi-zone GTK clock that can also run in a tty.
Currently configuration is solely by commandline options. hsclock uses GTK timeouts to synchronize with the system clock, making display updates accurate to within milliseconds.
The time output format can be set with a date-like format option.
<<lessCurrently configuration is solely by commandline options. hsclock uses GTK timeouts to synchronize with the system clock, making display updates accurate to within milliseconds.
The time output format can be set with a date-like format option.
Download (0.30MB)
Added: 2006-09-27 License: GPL (GNU General Public License) Price:
1126 downloads
WWW::Poll 0.01
WWW::Poll is a Perl extension to build web polls. more>>
WWW::Poll is a Perl extension to build web polls.
Perl module to build and run web polls with built-in administrative capabilities.
SYNOPSIS
use Poll;
my $poll = new Poll;
$poll->path(/system/path/to/data/directory);
# Voting and returning poll results
$poll->vote($ans_key);
$html = $poll->get_html();
print "Content-type: text/htmlnn";
print $html;
#- Create a new Poll -#
$poll->question(Should Trent Lott change his barber?);
$poll->add_answers( "Yes", "No", "Whos Trent Lott?", etc );
$poll->create();
<<lessPerl module to build and run web polls with built-in administrative capabilities.
SYNOPSIS
use Poll;
my $poll = new Poll;
$poll->path(/system/path/to/data/directory);
# Voting and returning poll results
$poll->vote($ans_key);
$html = $poll->get_html();
print "Content-type: text/htmlnn";
print $html;
#- Create a new Poll -#
$poll->question(Should Trent Lott change his barber?);
$poll->add_answers( "Yes", "No", "Whos Trent Lott?", etc );
$poll->create();
Download (0.011MB)
Added: 2006-08-25 License: Perl Artistic License Price:
1155 downloads
Tivoli 0.01
Tivoli is a Perl extension for Tivoli TME10. more>>
Tivoli is a Perl extension for Tivoli TME10.
SYNOPSIS
Not (yet) Autoloader implemented.
use Tivoli::DateTime;
use Tivoli::Logging;
use Tivoli::Fwk;
use Tivoli::Endpoints;
This Module will handle about everything you may need for Tivoli TME10. If anything has been left out, please contact me at tivoli.rhase@muc-net.de so it can be added.
Tivoli::DateTime
This Package will handle about everything you may need for handling the date / time.
Tivoli::Logging
This Package will handle about everything you may need for Logging.
Tivoli::Fwk
This Package will handle about everything you may need for Framework.
Tivoli::Endpoints
This Package will handle about everything you may need for Endpoints.
<<lessSYNOPSIS
Not (yet) Autoloader implemented.
use Tivoli::DateTime;
use Tivoli::Logging;
use Tivoli::Fwk;
use Tivoli::Endpoints;
This Module will handle about everything you may need for Tivoli TME10. If anything has been left out, please contact me at tivoli.rhase@muc-net.de so it can be added.
Tivoli::DateTime
This Package will handle about everything you may need for handling the date / time.
Tivoli::Logging
This Package will handle about everything you may need for Logging.
Tivoli::Fwk
This Package will handle about everything you may need for Framework.
Tivoli::Endpoints
This Package will handle about everything you may need for Endpoints.
Download (0.014MB)
Added: 2007-05-25 License: Perl Artistic License Price:
885 downloads
Lexi 0.01
Lexi project is a dict client and vocabulary builder. more>>
Lexi project is a dict client and vocabulary builder.
Lexi is a dict client that also serves as a personalized vocabulary builder.
It caches definitions and has a persistent word list.
The interface is structured to be quick and easy and features synonym clicking, drag and drop word queries, and spelling suggestions.
<<lessLexi is a dict client that also serves as a personalized vocabulary builder.
It caches definitions and has a persistent word list.
The interface is structured to be quick and easy and features synonym clicking, drag and drop word queries, and spelling suggestions.
Download (0.025MB)
Added: 2006-10-31 License: GPL (GNU General Public License) Price:
1089 downloads
Oracle::SQL 0.01
Oracle::SQL is a Perl extension for building SQL statements. more>>
Oracle::SQL is a Perl extension for building SQL statements.
SYNOPSIS
use Oracle::SQL;
No automatically exported routines. You have to specifically to import the methods into your package.
use Oracle::SQL qw(:sql);
use Oracle::SQL /:sql/;
use Oracle::SQL :sql;
This is a package initializing object for Oracle::SQL::Builder.
<<lessSYNOPSIS
use Oracle::SQL;
No automatically exported routines. You have to specifically to import the methods into your package.
use Oracle::SQL qw(:sql);
use Oracle::SQL /:sql/;
use Oracle::SQL :sql;
This is a package initializing object for Oracle::SQL::Builder.
Download (0.008MB)
Added: 2006-09-02 License: Perl Artistic License Price:
1152 downloads
blah 0.01
blah project consists of a utility for maintaining a list of frequently copy-and-pasted text. more>>
blah project consists of a utility for maintaining a list of frequently copy-and-pasted text.
When an item is selected from the menu the corresponding text is automatically placed into the clipboard.
You can then use the paste feature in another application to transfer the text.
The current version is functional and usable. However, my goal is to re-design/re-write the code as a GNOME panel app.
Enhancements:
- added rpm bult from archive.
<<lessWhen an item is selected from the menu the corresponding text is automatically placed into the clipboard.
You can then use the paste feature in another application to transfer the text.
The current version is functional and usable. However, my goal is to re-design/re-write the code as a GNOME panel app.
Enhancements:
- added rpm bult from archive.
Download (0.009MB)
Added: 2007-02-07 License: GPL (GNU General Public License) Price:
990 downloads
Tie::Eudora 0.01
Tie::Eudora is a Perl module that can encode/decode emails, read/write emails in Eudora mailbox files. more>>
Tie::Eudora is a Perl module that can encode/decode emails, read/write emails in Eudora mailbox files.
SYNOPSIS
####
# Subroutine interface
#
$encoded_email = decode_record($mailbox_email);
@email = decode_field($encoded_email);
$encoded_email = encode_field (@email);
$mailbox_email = encode_record($encoded_email);
#####
# Object Interface
#
$eudora = Tie::Form->new(@options);
$encoded_email = $eudora->decode_record($record);
@email = $eudora->decode_field($encoded_email);
$encoded_email = $eudora->encode_field (@email);
$mailbox_email = $eudora->encode_record($encoded_email);
$mailbox_email = $eudora->get_record();
$success = $eudora->put_record($mailbox_email);
####
# use file subroutines to write/read Eudora mailbox files
#
tie *MAILBOX, Tie::Eudora;
open MAILBOX,>,$mbx;
print MAILBOX @mailbox;
close MAILBOX;
open MAILBOX,<<less
SYNOPSIS
####
# Subroutine interface
#
$encoded_email = decode_record($mailbox_email);
@email = decode_field($encoded_email);
$encoded_email = encode_field (@email);
$mailbox_email = encode_record($encoded_email);
#####
# Object Interface
#
$eudora = Tie::Form->new(@options);
$encoded_email = $eudora->decode_record($record);
@email = $eudora->decode_field($encoded_email);
$encoded_email = $eudora->encode_field (@email);
$mailbox_email = $eudora->encode_record($encoded_email);
$mailbox_email = $eudora->get_record();
$success = $eudora->put_record($mailbox_email);
####
# use file subroutines to write/read Eudora mailbox files
#
tie *MAILBOX, Tie::Eudora;
open MAILBOX,>,$mbx;
print MAILBOX @mailbox;
close MAILBOX;
open MAILBOX,<<less
Download (0.065MB)
Added: 2007-01-11 License: Perl Artistic License Price:
1018 downloads
Ultimate Othello 1789
Ultimate Othello is the ultimate Othello game. more>>
Ultimate Othello is the ultimate Othello game. Enjoy its new, aqua-friendly graphics, full Cocoa interface (on MacOS X) and animations.
The next generation Ultimate Othello is becoming usable and somewhat more ultimate than the previous version !
It features network play with chat and multiple enhaced AIs, and is released under the Gnu Public Licence for both Linux and Mac OS X.
<<lessThe next generation Ultimate Othello is becoming usable and somewhat more ultimate than the previous version !
It features network play with chat and multiple enhaced AIs, and is released under the Gnu Public Licence for both Linux and Mac OS X.
Download (0.47MB)
Added: 2005-09-06 License: GPL (GNU General Public License) Price:
1515 downloads
scl+sssl 0.01
scl is a small crypto library and a collection of C++ classes for public and private key cryptography. more>>
scl is a small crypto library and a collection of C++ classes for public and private key cryptography. One way hash algorithms, pseudo random number generators and other stuff are included as well. It supports a wide variety of encryption algorithms.
sssl is a small secure socket library and uses the small crypto library to ensure data encryption over an ordinary TCP channel. This is a hybrid system with protocol negotiation and key exchange when a new connection is accepted by the TCP server.
The library is easy to use and acts as a wrapper over the ordinary socket functions. Utilities for key generation and library tests are included in the package.
<<lesssssl is a small secure socket library and uses the small crypto library to ensure data encryption over an ordinary TCP channel. This is a hybrid system with protocol negotiation and key exchange when a new connection is accepted by the TCP server.
The library is easy to use and acts as a wrapper over the ordinary socket functions. Utilities for key generation and library tests are included in the package.
Download (0.33MB)
Added: 2006-08-07 License: GPL (GNU General Public License) Price:
1175 downloads
Qubit 0.01
Qubit (Qmail Ultimate Backend Integration Tool) is a fully Web-based qmail server configuration and administration suite. more>>
Qubit (Qmail Ultimate Backend Integration Tool) is a fully Web-based qmail server configuration and administration suite.
Qubit project is based on the qmailrules qmail server installation style. It has the same features as other similar tools (like vqadmin and qmailadmin), and it also gives you full control to administer your server with all sorts of features and applications.
<<lessQubit project is based on the qmailrules qmail server installation style. It has the same features as other similar tools (like vqadmin and qmailadmin), and it also gives you full control to administer your server with all sorts of features and applications.
Download (0.038MB)
Added: 2006-02-22 License: GPL (GNU General Public License) Price:
1341 downloads
MorphixLiveKiosk 0.01
Morphix project is a derivative of Knoppix, another live CD distribution. more>>
Morphix project is a derivative of Knoppix, another live CD distribution. Morphix is modular; this means that it consists of a number of parts which together form a working distribution. What does this mean to a normal user?
Well, thats the good part: it doesnt even know about the modules. They are invisible to it, save the startup-output on the console. So, if you dont care about how it works, just grab one of the combined ISOs and boot it!
There are different pre-made cd images with a whole range of (currently GUI-centered) software. It has an easy-to-use installer, if you wish to install it to your harddisk, but it doesnt need to be installed. It doesnt touch the rest of your system without specifically asking you.
<<lessWell, thats the good part: it doesnt even know about the modules. They are invisible to it, save the startup-output on the console. So, if you dont care about how it works, just grab one of the combined ISOs and boot it!
There are different pre-made cd images with a whole range of (currently GUI-centered) software. It has an easy-to-use installer, if you wish to install it to your harddisk, but it doesnt need to be installed. It doesnt touch the rest of your system without specifically asking you.
Download (146.8MB)
Added: 2006-09-06 License: GPL (GNU General Public License) Price:
1143 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 othello 0.01 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