lady gaga poker face
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 158
Party Poker 10.9
Games include Texas Hold em (No Limit and Fixed Limit), Omaha and Omaha Hi-Lo, Seven-card Stud and Seven-card Stud Hi-Lo. Players can play for either... more>> <<less
Download (660KB)
Added: 2009-03-31 License: Freeware Price: Free
219 downloads
Other version of Party Poker
License:Freeware
Ugly Poker 1.0
Ugly Poker is a free video poker game for linux. more>>
Ugly Poker is a free video poker game for linux.
Ugly Poker is a Free Linux Game of Video Poker that might remind you of your favorite casino video poker machine youve played in Las Vegas or another casino somewhere in the world like gold studded Monaco, on a steamboat near Louisiana, around beautiful Lake Tahoe in Nevada, or Atlantic City on the boardwalk along the Atlantic Ocean.
With Ugly Poker, you can be reminded of those places just mentioned - without leaving your home. Call it ugly and convenient!
<<lessUgly Poker is a Free Linux Game of Video Poker that might remind you of your favorite casino video poker machine youve played in Las Vegas or another casino somewhere in the world like gold studded Monaco, on a steamboat near Louisiana, around beautiful Lake Tahoe in Nevada, or Atlantic City on the boardwalk along the Atlantic Ocean.
With Ugly Poker, you can be reminded of those places just mentioned - without leaving your home. Call it ugly and convenient!
Download (1.8MB)
Added: 2005-12-09 License: Freeware Price:
1418 downloads
Money Poker 3.2
Money Poker features poker ring games and tournaments for free or with real money with real live players from all over the world. Games are available ... more>> <<less
Download (6KB)
Added: 2009-04-12 License: Freeware Price: Free
196 downloads
Real Poker 0.2.8
Real Poker project is a poker simulation. more>>
Real Poker project is a poker simulation.
New poker games may be created by the user. Hand simulations may be run.
Upon execution the first thing that is displayed is the main window for Real Poker.
Poker games may be created, saved, deleted, and edited. Poker games may also be filtered through a learning process, the results of which are used by the robot players.
There is a game library provided with Real Poker "out of the box" which includes four poker games: Seven Card Stud, Five Card Stud, Texas Holdem, and Five Card Draw. The game library file is named "games.lib".
A game library may contain a maximum of 50 games. When Real Poker is first loaded, the default game library (games.lib) will automatically be loaded provided it is present in the .RP directory within your HOME directory (see the INSTALL file).
Use your mouse to click on the GAME LIBRARY drop-down item under the MISC menu selection to perform various functions concerning the game library.
<<lessNew poker games may be created by the user. Hand simulations may be run.
Upon execution the first thing that is displayed is the main window for Real Poker.
Poker games may be created, saved, deleted, and edited. Poker games may also be filtered through a learning process, the results of which are used by the robot players.
There is a game library provided with Real Poker "out of the box" which includes four poker games: Seven Card Stud, Five Card Stud, Texas Holdem, and Five Card Draw. The game library file is named "games.lib".
A game library may contain a maximum of 50 games. When Real Poker is first loaded, the default game library (games.lib) will automatically be loaded provided it is present in the .RP directory within your HOME directory (see the INSTALL file).
Use your mouse to click on the GAME LIBRARY drop-down item under the MISC menu selection to perform various functions concerning the game library.
Download (0.25MB)
Added: 2007-01-10 License: GPL (GNU General Public License) Price:
1028 downloads
Pyramid - Poker of ZYH 2.0
Pyramid - Poker of ZYH is a free solitaire card game. As an applet or as an application, this program should work on any platform that supports Java.... more>> <<less
Download (287KB)
Added: 2009-04-21 License: Freeware Price: Free
288 downloads
Other version of Pyramid - Poker of ZYH
License:Freeware
Pacific Poker 1.1
Remember those Friday night poker games with your buddies? Are you a shark looking for a game anytime? 888.com, the most respected and trusted name in... more>> <<less
Download (1KB)
Added: 2009-04-24 License: Freeware Price: Free
182 downloads
Online Poker 1.1.2
Poker Eon features exciting poker tournaments and ring games 24/7! We have something to offer for every player, from beginners to seasoned players – w... more>> <<less
Download (6028KB)
Added: 2009-03-31 License: Freeware Price: Free
206 downloads
Stamits Online Poker 0.1
Stamits Online Poker project is a simple OpenGL poker game that can be played online with another person. more>>
Stamits Online Poker project is a simple OpenGL poker game that can be played online with another person.
Compilation:
Make sure you have the GNU C and C++ compilers.
Get MOGUL, the Minimal OpenGL Utility Library, compile and install it (or use a compiled binary version, if there is one available). Instructions should be included.
Open `Makefile and uncomment the lines below the label `Unix configuration.
Say `make. The result should be an executable named `sopoker in the current working directory.
<<lessCompilation:
Make sure you have the GNU C and C++ compilers.
Get MOGUL, the Minimal OpenGL Utility Library, compile and install it (or use a compiled binary version, if there is one available). Instructions should be included.
Open `Makefile and uncomment the lines below the label `Unix configuration.
Say `make. The result should be an executable named `sopoker in the current working directory.
Download (0.15MB)
Added: 2007-03-21 License: GPL (GNU General Public License) Price:
949 downloads
KPoker 0.7
KPoker project is a Video Poker game. more>>
KPoker project is a Video Poker game.
KPoker is a KDE-compilant clone of those highly addictive pocket video poker games which are sometimes called "Videopoker".
Enhancements:
- added two player game
- fixed some and added many bugs
<<lessKPoker is a KDE-compilant clone of those highly addictive pocket video poker games which are sometimes called "Videopoker".
Enhancements:
- added two player game
- fixed some and added many bugs
Download (0.29MB)
Added: 2006-11-28 License: GPL (GNU General Public License) Price:
1065 downloads
Games::Cards::Poker 1.2.565CHh5
Games::Cards::Poker is a Perl module for Pure Perl Poker functions. more>>
Games::Cards::Poker is a Perl module for Pure Perl Poker functions.
SYNOPSIS
use Games::Cards::Poker;
# Deal Four (4) players hands and score them...
my $players = 4; # number of players to get hands dealt
my $hand_size = 5; # number of cards to deal to each player
my @hands = ();# player hand data
my @deck = Shuffle(Deck());
while($players--) {
push(@{$hands[$players]}, pop(@deck)) foreach(1..$hand_size);
printf("Player$players score:%4d hand:@{$hands[$players]}n",
ScoreHand(@{$hands[$players]}));
}
Poker provides a few functions for creating decks of cards and manipulating them for simple Poker games or simulations.
<<lessSYNOPSIS
use Games::Cards::Poker;
# Deal Four (4) players hands and score them...
my $players = 4; # number of players to get hands dealt
my $hand_size = 5; # number of cards to deal to each player
my @hands = ();# player hand data
my @deck = Shuffle(Deck());
while($players--) {
push(@{$hands[$players]}, pop(@deck)) foreach(1..$hand_size);
printf("Player$players score:%4d hand:@{$hands[$players]}n",
ScoreHand(@{$hands[$players]}));
}
Poker provides a few functions for creating decks of cards and manipulating them for simple Poker games or simulations.
Download (0.072MB)
Added: 2006-09-19 License: Perl Artistic License Price:
1138 downloads
PokerTH 0.5
PokerTH is a Texas Holdem Poker Engine. more>>
PokerTH is a Texas Holdem Poker Engine.
PokerTH is a Single-Player Poker Game written in C++/QT4.
You can play the popular Texas Holdem Poker against up to four computer-opponents. Its available for Linux and Windows.
<<lessPokerTH is a Single-Player Poker Game written in C++/QT4.
You can play the popular Texas Holdem Poker against up to four computer-opponents. Its available for Linux and Windows.
Download (7.4MB)
Added: 2007-06-17 License: GPL (GNU General Public License) Price:
1037 downloads
JPokerTM 0.2
JPokerTM is a JPoker Tournament Manager, a Poker Tournament application. more>>
JPokerTM is a JPoker Tournament Manager, a Poker Tournament application.
As I am a very keen Python user and also an avid Poker player, I decided to write an Open Source Cross-Platform application in Jython (a Java implementation of Python - see www.jython.org) to firstly make my life easier during our own home games (replacing written notes regarding blinds etc balanced against a pot plant).
There are many many improvements I want to make to this application, which is why it is currently designated as Alpha. However it is perfectly adequate as it stands to support my own home games, so I consider this a reasonable point to release it as v0.1. I would really like to have the chip value display working and that will probably go in v0.2.
This application is not really intended for use in huge tournaments like the WSOP where there will be more that 18 levels, it is more for home games and small card room tournaments. However if I get requests to support larger tournaments, I would certainly consider them.
Enhancements:
- BUGFIX* Added Ante Display.
- Added a chip value display to the tournament window.
- Added a preferences menu option which allows Currency (also FTR (fit to receive) display size in a future release) preferences to be selected.
- Preferences loaded from a file (if not present, default file created on startup).
- *BUGFIX* Pound sign display issue corrected by above.
- *BUGFIX* Ante format was not being provided if selected (TYPO).
- Blind structures now contained in external files, which are loaded into the application on startup.
- Files are simple csv (easily editable in an external application).
<<lessAs I am a very keen Python user and also an avid Poker player, I decided to write an Open Source Cross-Platform application in Jython (a Java implementation of Python - see www.jython.org) to firstly make my life easier during our own home games (replacing written notes regarding blinds etc balanced against a pot plant).
There are many many improvements I want to make to this application, which is why it is currently designated as Alpha. However it is perfectly adequate as it stands to support my own home games, so I consider this a reasonable point to release it as v0.1. I would really like to have the chip value display working and that will probably go in v0.2.
This application is not really intended for use in huge tournaments like the WSOP where there will be more that 18 levels, it is more for home games and small card room tournaments. However if I get requests to support larger tournaments, I would certainly consider them.
Enhancements:
- BUGFIX* Added Ante Display.
- Added a chip value display to the tournament window.
- Added a preferences menu option which allows Currency (also FTR (fit to receive) display size in a future release) preferences to be selected.
- Preferences loaded from a file (if not present, default file created on startup).
- *BUGFIX* Pound sign display issue corrected by above.
- *BUGFIX* Ante format was not being provided if selected (TYPO).
- Blind structures now contained in external files, which are loaded into the application on startup.
- Files are simple csv (easily editable in an external application).
Download (0.42MB)
Added: 2006-08-27 License: GPL (GNU General Public License) Price:
1154 downloads
Another Gallery 1.3
Another Gallery is a PHP port of the Zgal gallery generator. more>>
Another Gallery is a PHP port of the Zgal gallery generator. Another Gallery project supports themes and rollover buttons.
ImageMagick creates thumbs with a higher quality than GD2.x. If you want to use Perl and ImageMagick you need the Image::Size perl module to generate the thumbnails. It is easy to install :o)
tar xvfz Image-Size-2.98.tar.gz
cd Image-Size-2.98
To build:
perl Makefile.PL
make && make test
If Image::Size passes all tests, then:
make install
// Sorry no time to write a good readme.
This is a PHP port of my other sourceforge project Zgal http://zgal.sf.net Zgal generates a static html photo gallery.
1. copy your jpegs in this directory.
2. start make_thumbnails.pl ( before install Image-magick )
3. Edit some settings in phpgallery.php an rename it to index.php
4. Add the pagetitle and Subtitles in index.txt
5. Point your webbrowser to index.php
6. switch the theme with the following cmds.
index.php?theme=face
index.php?theme=blue_drops
inde.php?theme=graffiy_grey
index.php?theme=grey_brain
index.php?theme=simple_grey
index.php?theme=standard
index.php?theme=violet
index.php?theme=blue_matrix
index.php?theme=green_matrix
index.php?theme=red_letters
<<lessImageMagick creates thumbs with a higher quality than GD2.x. If you want to use Perl and ImageMagick you need the Image::Size perl module to generate the thumbnails. It is easy to install :o)
tar xvfz Image-Size-2.98.tar.gz
cd Image-Size-2.98
To build:
perl Makefile.PL
make && make test
If Image::Size passes all tests, then:
make install
// Sorry no time to write a good readme.
This is a PHP port of my other sourceforge project Zgal http://zgal.sf.net Zgal generates a static html photo gallery.
1. copy your jpegs in this directory.
2. start make_thumbnails.pl ( before install Image-magick )
3. Edit some settings in phpgallery.php an rename it to index.php
4. Add the pagetitle and Subtitles in index.txt
5. Point your webbrowser to index.php
6. switch the theme with the following cmds.
index.php?theme=face
index.php?theme=blue_drops
inde.php?theme=graffiy_grey
index.php?theme=grey_brain
index.php?theme=simple_grey
index.php?theme=standard
index.php?theme=violet
index.php?theme=blue_matrix
index.php?theme=green_matrix
index.php?theme=red_letters
Download (0.36MB)
Added: 2006-01-30 License: GPL (GNU General Public License) Price:
1364 downloads
pokertimer 0.1
pokertimer project is just a very little script for poker-turnaments. more>>
pokertimer project is just a very little script for poker-turnaments.
Just execute the file. (You may want to configure the file to fit your desired blind-structure).
<<lessJust execute the file. (You may want to configure the file to fit your desired blind-structure).
Download (0.002MB)
Added: 2007-01-11 License: GPL (GNU General Public License) Price:
1124 downloads
!Everest Poker [$100 free] v2005
Everest Poker is the first multi-lingual and multi-player online poker room application of the world. The software is translated into more than eleven... more>> <<less
Download (214KB)
Added: 2009-04-23 License: Freeware Price: Free
207 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 lady gaga poker face 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