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 49.600.577 Times

Interactive Chess Tutor freeware
Filter: All | Freeware | Demo
 

Interactive Chess Tutor

< 1 2 3 4 5 > 
Added: February 14, 2010 | Visits: 1.150

IO::Interactive IO::Interactive is a Perl module with utilities for interactive I/O. SYNOPSIS use IO::Interactive qw(is_interactive interactive busy); if ( is_interactive() ) { print "Running interactivelyn"; } # or... print {interactive} "Running interactivelyn"; $fh = busy {...



Platforms: *nix

License: Freeware Size: 5.12 KB Download (88): IO::Interactive Download

Added: October 15, 2010 | Visits: 1.277

Fantasy Chess v2 Revision Fantasy Chess is a chess game environment with a game server, GTK GUI, private and public AI, and a lot of libraries to help developers..





Platforms: *nix

License: Freeware Size: 1.7 MB Download (113): Fantasy Chess v2 Revision Download

Added: March 24, 2010 | Visits: 1.267

Games::Chess Games::Chess Perl module represent chess positions and games. SYNOPSIS use Games::Chess qw(:constants); my $p = Games::Chess::Position->new; $p->at(0,0,BLACK,ROOK); $p->at(7,7,WHITE,ROOK); print $p->to_text; The Games::Chess package provides the class Games::Chess::Piece to represent...


Platforms: *nix

License: Freeware Size: 49.15 KB Download (109): Games::Chess Download

Added: May 03, 2010 | Visits: 1.194

Interactive BDD Environment Interactive BDD Environment project is a shell like utility for working with ROBDDs. IBEN is a tool used for teaching Reduced Ordered Binary Decision Diagrams. It allows the student to work with ROBDDs without learning a complex C or C++ interface to an ROBDD package. One can enter the...


Platforms: *nix

License: Freeware Size: 102.4 KB Download (101): Interactive BDD Environment Download

Added: April 20, 2010 | Visits: 2.023

Chess::PGN::Parse Chess::PGN::Parse is a Perl module that reads and parses PGN (Portable Game Notation) Chess files. SYNOPSIS use Chess::PGN::Parse; use English qw( -no_match_vars ); my $pgnfile = "kk_2001.pgn"; my $pgn = new Chess::PGN::Parse $pgnfile or die "cant open $pgnfilen"; while...


Platforms: *nix

License: Freeware Size: 26.62 KB Download (246): Chess::PGN::Parse Download

Added: May 22, 2010 | Visits: 1.485

Chess::PGN::Filter Chess::PGN::Filter is a Perl extension for converting PGN files to other formats. SYNOPSIS use Chess::PGN::Filter; filter(source => $pgn,filtertype => XML); OR my %substitutions = ( hsmyers => Myers, Hugh S (ID), ); my @exclude = qw( WhiteElo BlackElo EventDate ); filter(...


Platforms: *nix

License: Freeware Size: 18.43 KB Download (153): Chess::PGN::Filter Download

Added: August 08, 2010 | Visits: 934

Emacs Chess Emacs Chess is an object-oriented library written in Elisp for manipulating chess objects (games, plies, positions, etc.), and for displaying them..


Platforms: *nix

License: Freeware Size: 389.12 KB Download (97): Emacs Chess Download

Added: April 14, 2010 | Visits: 1.432

IRC-Chess IRC-Chess project is a 2-player chess game for IRC which turns a computer into an IRC chess bot. It consists of a Java chess server, with frontend scripts to convert an IRC client into a chess bot. Players then communicate with the bot using standard IRC commands, and dont require any special...


Platforms: *nix

License: Freeware Size: 60.42 KB Download (174): IRC-Chess Download

Added: April 08, 2010 | Visits: 1.173

The friendly interactive shell The friendly interactive shell is a user friendly shell intended mostly for interactive use. - If you want to see screenshots of fish in action, click here. - If you are familiar with the basics of shells,read this page for a short introduction to fish. - If you are dont know how to use a...


Platforms: *nix

License: Freeware Size: 768 KB Download (94): The friendly interactive shell Download

Added: November 10, 2010 | Visits: 1.326

Interactive Bandwidth Monitor Ibmonitor is an interactive Linux console application which shows bandwidth consumed on all interfaces. This project is different from existing similar utilities in that it can show the values in Kbits/sec (Kbps) and Kbytes/sec (KBps) simultaneously. It also displays the total data transferred in...


Platforms: *nix

License: Freeware Size: 16.38 KB Download (101): Interactive Bandwidth Monitor Download

Added: August 17, 2010 | Visits: 1.168

Chess::ICClib Chess::ICClib is a Perl interface to Internet Chess Server commands. SYNOPSIS use Chess::ICClib; my $icc = Chess::ICClib->new([-prompt=>$ICC], [-host=>$host,-port=>$port] [-user=>$user,-pass=>$password]); $icc->ICCCommand("finger romm"); Chess::ICClib - Perl interface to Internet Chess...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (105): Chess::ICClib Download

Added: January 08, 2010 | Visits: 851

Chess::FIDE Chess::FIDE is a Perl extension for FIDE Rating List. SYNOPSIS use Chess::FIDE; my $fide = Chess::FIDE->new(-file=>filename); $fide->fideSearch("surname eq Kasparov"); Chess::FIDE - Perl extension for FIDE Rating List. FIDE is the International Chess Federation that every quarter of the...


Platforms: *nix

License: Freeware Size: 1.1 MB Download (101): Chess::FIDE Download

Added: April 20, 2010 | Visits: 824

Chess::FIDE::Player Chess::FIDE::Player is a Perl module to parse player data from FIDE Rating List. SYNOPSIS use Chess::FIDE::Player qw(@FIDE_field); my $player = Chess::FIDE::Player->new(%param); print $player->id() . "n"; $player->value(field); Chess::FIDE::Player - Parse player data from FIDE Rating...


Platforms: *nix

License: Freeware Size: 1.1 MB Download (97): Chess::FIDE::Player Download

Added: September 12, 2010 | Visits: 1.584

Makin Bakon Typing Tutor Makin Bakon Typing Tutor project is a terminal-based typing tutor game written in C++ (with STL) and Curses. It contains both structured and fortune-based lessons. Learn to type to a professional standard while youre saving Pigs bacon! Warning: Includes material that may offend.. Get...


Platforms: *nix

License: Freeware Size: 245.76 KB Download (135): Makin Bakon Typing Tutor Download

Added: August 15, 2010 | Visits: 897

Chess::Elo Chess::Elo is a Perl module to calculate Chess "Elo" ratings. SYNOPSIS use Chess::Elo qw(:all); # Alice is going to thump Bob... my ($alice_elo, $bob_elo) = (2100, 1200); # Oh no, Alice lost to Bob! my $result = 0; # 0.5 for draw, 1 for win my @new_elo_alice_bob = elo ($alice, 0,...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (96): Chess::Elo Download

Added: January 25, 2010 | Visits: 1.199

Sigma Chess Sigma Chess is a master strength Macintosh chess program for both OS X and Classic Mac OS. The feature set includes: Optional HIARCS engine, UCI Engine support, Databases, PGN/EPD, basic desktop publishing, endgame databases, novice levels, a true perspective 3D board, ExaChess compatibility and...


Platforms: Mac

License: Freeware Download (164): Sigma Chess Download

Released: March 07, 2012  |  Added: March 18, 2012 | Visits: 2.068

Chess Game Chess Game World is a game developed for Chess fans. You can compete with real players all over the world or watch other games in progress. Play in the practice mode if you want to play with the computer. The ELO rating system is introduced in this game. You'll get rate points just as...


Platforms: Windows

License: Freeware Size: 5.33 MB Download (373): Chess Game Download

Released: December 06, 2016  |  Added: December 20, 2016 | Visits: 2.442

Interactive Calendar These days, being efficient means being organized - that is, able to efficiently plan available time, not miss appointments, relocate without losing much time and so forth. All of this requires keeping countless events in your memory and making sure none of them are conflicting or using...


Platforms: Windows, Windows 8, Windows 7, Windows Server

License: Freeware Size: 17.98 MB Download (225): Interactive Calendar Download

Released: August 18, 2012  |  Added: August 18, 2012 | Visits: 1.040

Free Chess Free Chess Game allows you to play as White or Black, with all regular chess rules such as three move repetition and 50 move rule and En Passant. Save Games and retrieve PGN and FEN strings.


Platforms: Windows

License: Freeware Download (83): Free Chess Download

Released: September 06, 2012  |  Added: September 06, 2012 | Visits: 604

Chess Marvel Play a traditional game chess against a computer opponent, or play against another human player. Set up the game board for practice play. Play at different levels, for beginning or experienced players. Change the colors of the chess pieces.


Platforms: Windows

License: Freeware Size: 1.15 MB Download (61): Chess Marvel Download

< 1 2 3 4 5 >