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.054.257 Times

Msn Games Text Twist freeware
Filter: All | Freeware | Demo
 

Msn Games Text Twist

< 1 2 3 4 5 
Added: July 07, 2010 | Visits: 638

Text::vFile::toXML Text::vFile::toXML can convert vFiles into equivalent XML. SYNOPSIS This module converts iCalendar (iCal : generically, vFile) files into their (equivalent) XML (xCalendar / xCal) representation, according to Royers IETF Draft (http://tools.ietf.org/html/draft-royer-calsch-xcal-03). #...



Platforms: *nix

License: Freeware Size: 5.12 KB Download (94): Text::vFile::toXML Download

Added: February 26, 2010 | Visits: 1.586

Davids Perl Games Davids Perl Games project is a collection of ASCII graphics arcade style games written in Perl. These games are recreations of simple ASCII graphics games originally written in BASIC. They are ideal for use as Perl programming tutorials. Some of the first few games are PerlBlaster (defend...





Platforms: *nix

License: Freeware Size: 64.51 KB Download (106): Davids Perl Games Download

Added: January 01, 2010 | Visits: 1.466

Games::Tournament::RoundRobin 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...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (116): Games::Tournament::RoundRobin Download

Added: May 14, 2010 | Visits: 762

Text::WagnerFischer Text::WagnerFischer is an implementation of the Wagner-Fischer edit distance. SYNOPSIS use Text::WagnerFischer qw(distance); print distance("foo","four");# prints "2" print distance([0,1,2],"foo","four");# prints "3" my @words=("four","foo","bar"); my...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (103): Text::WagnerFischer Download

Added: July 09, 2010 | Visits: 641

Text::Refer Text::Refer can parse Unix "refer" files. SYNOPSIS Pull in the module: use Text::Refer; Parse a refer stream from a filehandle: while ($ref = input Text::Refer *FH) { # ...do stuff with $ref... } defined($ref) or die "error parsing input"; Same, but using a parser object for more...


Platforms: *nix

License: Freeware Size: 31.74 KB Download (92): Text::Refer Download

Added: August 11, 2010 | Visits: 1.558

Games::WoW::PVP Games::WoW::PVP is a Perl module with the great new Games::WoW::PVP! SYNOPSIS Quick summary of what the module does. Perhaps a little code snippet. use Games::WoW::PVP; my $WoW = Games::WoW::PVP->new(); # looking for a character my %hash = $WoW->search_player( { country => EU, # EU...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (187): Games::WoW::PVP Download

Added: October 05, 2010 | Visits: 825

Text::PromptBalanced Text::PromptBalanced aid in creating CLI prompts that keep track of balanced text. SYNOPSIS use Text::PromptBalanced qw(balance_factory); ($state,$balance) = balance_factory( string => { type => toggle, open => " }, paren => { type => balanced, open => (, close => ), ignore_in => string...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (94): Text::PromptBalanced Download

Added: October 22, 2010 | Visits: 1.444

Games::Maze::SVG::Manual Games::Maze::SVG::Manual is a Perl module with manual for the Games::Maze::SVG modules. PURPOSE The Games::Maze::SVG module supports the creation of 2-dimensional mazes in an SVG format suitable for printing or playing interactively. This module use the Games::Maze module to perform the...


Platforms: *nix

License: Freeware Size: 35.84 KB Download (104): Games::Maze::SVG::Manual Download

Added: May 15, 2010 | Visits: 1.023

Text::Graph Text::Graph is a Perl extension for generating text-based graphs. SYNOPSIS use Text::Graph; blah blah blah Some data is easier to analyze graphically than in its raw form. In many cases, however, a full-blown multicolor graphic representation is overkill. In these cases, a simple graph can...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (100): Text::Graph Download

Added: September 08, 2010 | Visits: 873

Games::PerlWar Games::PerlWar is a Perl variant of the classic Corewar game. This is a sparring program, similar to the programmed reality of the Matrix. It has the same basic rules, rules like gravity. What you must learn is that these rules are no different than the rules of a computer system. Some of...


Platforms: *nix

License: Freeware Size: 31.74 KB Download (87): Games::PerlWar Download

Added: March 24, 2010 | Visits: 1.271

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 (114): Games::Chess Download

Added: March 27, 2010 | Visits: 1.168

Text::EP3::Verilog Text::EP3::Verilog Perl module contains a verilog extension for the EP3 preprocessor. SYNOPSIS use Text::EP3; use Text::EP3::Verilog; This module is an EP3 extension for the Verilog Hardware Description Language. The signal directive @signal key definition Take a list of signals and...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (102): Text::EP3::Verilog Download

Added: April 03, 2010 | Visits: 1.986

Games::Battleship::Craft Games::Battleship::Craft is a Battleship craft class. SYNOPSIS use Games::Battleship::Craft; my $craft = Games::Battleship::Craft->new( id => T, name => tug boat, points => 1, ) $points_remaining = $craft->hit; A Games::Battleship::Craft object represents the profile of a Battleship...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (268): Games::Battleship::Craft Download

Added: July 17, 2010 | Visits: 1.014

Games::Battleship Games::Battleship - "You sunk my battleship!" SYNOPSIS use Games::Battleship; $g = Games::Battleship->new(qw( Gene Aeryk )); $g->add_player(Stephanie); $winner = $g->play(); print $winner->name(), " wins!n"; @player_objects = @{ $g->players }; $player_obj = $g->player(Professor...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (110): Games::Battleship Download

Added: April 19, 2010 | Visits: 1.159

Games::Battleship::Player Games::Battleship::Player is a Battleship player class. SYNOPSIS use Games::Battleship::Player; $aeryk = Games::Battleship::Player->new(name => Aeryk); $gene = Games::Battleship::Player->new(name => Gene); print Player 1: , $aeryk->name, "n", Player 2: , $gene->name, "n";...


Platforms: *nix

License: Freeware Size: 11.26 KB Download (113): Games::Battleship::Player Download

Added: January 03, 2010 | Visits: 835

Text::VimColor Text::VimColor is a syntax color text in HTML or XML using Vim. SYNOPSIS use Text::VimColor; my $syntax = Text::VimColor->new( file => $0, filetype => perl, ); print $syntax->html; print $syntax->xml; This module tries to markup text files according to their syntax. It can be used to...


Platforms: *nix

License: Freeware Size: 20.48 KB Download (87): Text::VimColor Download

Added: February 15, 2010 | Visits: 830

Text::Convert::ToImage Text::Convert::ToImage is a Perl module. SYNOPSIS use Text::Convert::ToImage; my $tti = Text::Convert::ToImage->new(); my $length = length($email); if ($length > 150) { $email = "Your text length of $length is too large:"; } my $config = { TEXT => $email ? $email : "y@hn.org",...


Platforms: *nix

License: Freeware Size: 11.26 KB Download (98): Text::Convert::ToImage Download

Added: October 24, 2010 | Visits: 700

Text::Yats Text::Yats is Yet Another Template System. SYNOPSIS use Text::Yats; my $template = < < ENDHTML; < html > < head > < title >$title - $version< /title > < /head > < body > < form > < select name="names" >< !--{1}-- > < option $selected >$list< /option > < !--{2}-- >< /select > <...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (89): Text::Yats Download

Added: November 26, 2010 | Visits: 1.316

Common Text Transformation Library Common Text Transformation Library, CTTL for short, is a set of C++ classes and functions to understand and modify text data. Common Text Transformation Library implementation is based on STL classes and algorithms. Concept of a substring plays major role in design of the text transformation...


Platforms: *nix

License: Freeware Size: 163.84 KB Download (100): Common Text Transformation Library Download

Added: September 15, 2010 | Visits: 717

Text::Indent Text::Indent is a simple indentation of text shared among modules. SYNOPSIS In your main program: use Text::Indent; my $indent = Text::Indent->new; $indent->spaces(2); In a module to produce indented output: use Text::Indent; my $indent = Text::Indent->instance; $indent->increase;...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (104): Text::Indent Download

< 1 2 3 4 5