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

Winter Olympic Games History freeware
Filter: All | Freeware | Demo
 

Winter Olympic Games History

< 1 2 3 4 5 > 
Added: November 27, 2010 | Visits: 1.265

Games::Go::SGF2misc::SVG Games::Go::SGF2misc::SVG is a Perl package to simplify SGF game rendering using Image::LibrSVG. SYNOPSIS use Games::Go::SGF2misc::SVG; my $image = new Games::Go::SGF2misc::SVG(imagesize => 3in, boardsize => 19, gobanColor=> white ); $image->drawGoban(); $image->placeStone(b,cd);...



Platforms: *nix

License: Freeware Size: 6.14 KB Download (100): Games::Go::SGF2misc::SVG Download

Added: January 24, 2010 | Visits: 1.685

Games::OpenGL::Font::2D Games::OpenGL::Font::2D module can load/render 2D colored bitmap fonts via OpenGL. SYNOPSIS use Games::OpenGL::Font::2D; my $font = Games::OpenGL::Font::2D->new( file => font.bmp ); use SDL::App::FPS; my $app = SDL::App::FPS->new( ... ); # dont forget to change these on resize...





Platforms: *nix

License: Freeware Size: 22.53 KB Download (170): Games::OpenGL::Font::2D Download

Added: May 03, 2010 | Visits: 914

Games::Console Games::Console Perl module provide a 2D quake style in-game console. SYNOPSIS use Games::Console; my $console = Games::Console->new( font => $font_object, background_color => [ 1,1,0], background_alpha => 0.4, text_color => [ 1,1,1 ], text_alpha => 1, speed => 50, # in percent per...


Platforms: *nix

License: Freeware Size: 21.5 KB Download (97): Games::Console Download

Added: September 05, 2010 | Visits: 1.774

Games::Dice Games::Dice is a Perl module that can be used to simulate dice rolls. SYNOPSIS use Games::Dice roll; $strength = roll 3d6+1; use Games::Dice roll_array; @rolls = roll_array 4d8; Games::Dice simulates die rolls. It uses a function-oriented (not object-oriented) interface. No functions...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (99): Games::Dice Download

Added: November 20, 2010 | Visits: 1.242

Computer History Graphing Project Computer History Graphing Project is a computer family tree. The Computer History Graphing Project is an attempt to graph every computer standard, every piece of hardware, every OS, and every computer language in one big family tree..


Platforms: *nix

License: Freeware Download (95): Computer History Graphing Project Download

Added: March 20, 2010 | Visits: 923

Games::Alak Games::Alak is a simple game-tree implementation of a gomoku-like game. SYNOPSIS % perl -MGames::Alak -e Games::Alak::play ...Or just run Alak.pm as if it were a program... ...Program responds with output, and a prompt: Lookahead set to 3. I am X, you are O. Enter h for help X moves...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (120): Games::Alak Download

Added: July 04, 2010 | Visits: 954

Games::LMSolve::Base Games::LMSolve::Base is a base class for puzzle solvers. SYNOPSIS package MyPuzzle::Solver; use Games::LMSolve::Base; @ISA = qw(Games::LMSolve::Base); # Override these methods: sub input_board { ... } sub pack_state { ... } sub unpack_state { ... } sub display_state { ... } sub...


Platforms: *nix

License: Freeware Size: 21.5 KB Download (90): Games::LMSolve::Base Download

Added: November 09, 2010 | Visits: 1.977

Games::Go::SGF Games::Go::SGF is a Perl module that can parse and dissect Standard Go Format files. SYNOPSIS use Games::Go::SGF; my $sgf = new Games::Go::SGF($sgfdata); print "Game played on ".$sgf->date."n"; print $sgf->white. " (W) vs. ".$sgf->black." (B)n"; print "Board size: ".$sgf->size.". Komi:...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (95): Games::Go::SGF Download

Added: March 21, 2010 | Visits: 2.045

Games::Goban Games::Goban is a board for playing go, renju, othello, etc. SYNOPSIS use Games::Goban; my $board = new Games::Goban ( size => 19, game => "go", white => "Seigen, Go", black => "Minoru, Kitani", referee => &Games::Goban::Rules::Go, ); $board->move("pd"); $board->move("dd"); print...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (170): Games::Goban Download

Added: June 14, 2010 | Visits: 1.145

Games::AlphaBeta::Reversi Games::AlphaBeta::Reversi is a Reversi position class for use with Games::AlphaBeta. SYNOPSIS package My::Reversi; use base qw(Games::AlphaBeta::Reversi); # implement drawing routine sub draw { ... } package main; use My::Reversi; use Games::AlphaBeta; my ($p, $g); $p =...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (131): Games::AlphaBeta::Reversi Download

Added: February 27, 2010 | Visits: 895

Games::AlphaBeta::Position Games::AlphaBeta::Position is a base Position class for use with Games::AlphaBeta. SYNOPSIS package My::GamePos; use base qw(Games::AlphaBeta::Position); sub apply { ... } sub endpos { ... } # optional sub evaluate { ... } sub findmoves { ... } package main; my $pos =...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (91): Games::AlphaBeta::Position Download

Added: July 04, 2010 | Visits: 939

Games::Sequential::Position Games::Sequential::Position is a base Position class for use with Games::Sequential. SYNOPSIS package My::GamePos; use base Games::Sequential::Position; sub init { ... } # setup initial state sub apply { ... } package main; my $pos = My::GamePos->new; my $game =...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (96): Games::Sequential::Position Download

Added: March 27, 2010 | Visits: 2.484

Gnome Games 2.18.2.1 / Gnome Games is a collection of games for the GNOME desktop. There are sixteen games including card games, puzzle games, and arcade games. These games are designed to be simple but addictive – five minute games for when you need a break. Regretfully we cannot be held responsible for the...


Platforms: *nix

License: Freeware Size: 9 MB Download (279): Gnome Games 2.18.2.1 / Download

Added: March 01, 2010 | Visits: 1.034

Games::Sudoku::General Games::Sudoku::General is a Perl module that can solve sudoku-like puzzles. SYNOPSIS $su = Games::Sudoku::General->new (); print $su->problem(<solution(); 3 . . . . 8 . 2 . . . . . . 9 . . . . . 2 7 . 5 . . . 2 4 . 5 . . 8 . . . 8 5 . 7 4 . . 6 . 3 . . . . 9 4 . 1 . 4 . . . . 7...


Platforms: *nix

License: Freeware Size: 40.96 KB Download (98): Games::Sudoku::General Download

Added: July 14, 2010 | Visits: 1.003

History links This class can be used to keep track of the pages navigated by a user, so it can generate back or next links providing a similar effect to the use of the Javascript history.go() function. It uses sessions to store an array variable that holds the URL of each page of a site that the user...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (89): History links Download

Added: January 25, 2010 | Visits: 854

History Searcher History Searcher is a Mac OS X application that searches browser history and bookmark files (i.e., Safari, Firefox, Camino) for specific keywords. History Searcher will also display the contents of browser history file in an easy-to-read exportable format.


Platforms: Mac

License: Freeware Download (126): History Searcher Download

Released: June 02, 2011  |  Added: June 11, 2011 | Visits: 1.460

Ainvo History Cleaner Thank you for using our product. This popular free application perfectly clears the history of your programs. Thousands of people use it to keep their confidential information in secret. It is really easy to do it. Start searching the program history using the link "History search". Use the...


Platforms: Windows

License: Freeware Size: 3 MB Download (435): Ainvo History Cleaner Download

Released: June 25, 2011  |  Added: July 06, 2011 | Visits: 1.286

Auto Clear Recent Documents History Automatically clear the list of recent documents history at specified intervals. You can choose clearing interval. You can enabled and disable the clear documents history procedure. This application sits in the system tray at the bottom right corner of the screen. Once you install it,...


Platforms: Windows

License: Freeware Size: 324 KB Download (434): Auto Clear Recent Documents History Download

Released: January 06, 2012  |  Added: January 21, 2012 | Visits: 1.375

History Viewer Many of us have to share their computers. Therefore, the need to view what happened on the computer while you were away, is an undeniable fact. If you need a handy software that can help you view what has been done on your computer while you were away, then it's time to try History Viewer....


Platforms: Windows

License: Freeware Size: 1.6 MB Download (172): History Viewer Download

Released: August 01, 2012  |  Added: September 02, 2012 | Visits: 1.667

Windows Live History Manager Do you need to delete a specific message from Windows Live Messenger history, but you don't want to delete the entire history with that contact? Then stop searching, because Windows Live History Manager does just that. You can trace the sensitive messages, check them and delete. With just few...


Platforms: Windows

License: Freeware Size: 480.77 KB Download (97): Windows Live History Manager Download

< 1 2 3 4 5 >