Big Solitaire: New Release - Windows and OSX support


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Big Solitaire: New Release - Windows and OSX support
# 1  
Old 08-14-2008
Big Solitaire: New Release - Windows and OSX support

For people who like solitaire but don't want to have to where glasses. Solitaire where the cards have been made as big as possible. A Java application with Scalable Vector Graphics (SVG).
Image Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Big difference between UNIX systems? Which one as OSX replacement for a developer?

Hello Everyone I am a software developer and private OS X user. I was enthusiastic with what I learned about Linux (on my OS X) during the operating system module at school and I am using some of it. But I may not want to go the Apple way till the end. And OS X is a little too big to run on a... (5 Replies)
Discussion started by: JacobPhelps
5 Replies

2. HP-UX

How to split big file on HP-UX and join on Windows?

Hi HP-admins, I have 120GB file on HP-UX and need to split to 4GB pieces and join them on Windows. As I don't want to use zipsplit, tried to use split command and join on windows using "copy /b" but it doesn't work (It merges and creates new file but file is corrupt) What is the correct... (6 Replies)
Discussion started by: prvnrk
6 Replies

3. Windows & DOS: Issues & Discussions

Linux mount cifs with Windows ACL support

I'm in the process of migrating my windows file servers to a Ubuntu Samba server. My plan is to use cp -Rp to copy all the mounted files to the proper directory on my Ubuntu server. I can mount them just fine but if I run getfacl against a mounted directory its not showing any of my Windows... (0 Replies)
Discussion started by: binary-ninja
0 Replies
Login or Register to Ask a Question
SVG(3pm)						User Contributed Perl Documentation						  SVG(3pm)

NAME
SVG - Perl extension for generating Scalable Vector Graphics (SVG) documents VERSION Version 2.51, 30 March, 2012 Refer to SVG::Manual for the complete manual DESCRIPTION
SVG is a 100% Perl module which generates a nested data structure containing the DOM representation of an SVG (Scalable Vector Graphics) image. Using SVG, you can generate SVG objects, embed other SVG instances into it, access the DOM object, create and access javascript, and generate SMIL animation content. Refer to SVG::Manual for the complete manual. AUTHOR
Ronan Oger, RO IT Systemms GmbH, cpan@roitsystems.com CO-MAINTAINER Gabor Szabo CREDITS
I would like to thank the following people for contributing to this module with patches, testing, suggestions, and other nice tidbits: Peter Wainwright, Ian Hickson, Adam Schneider, Steve Lihn, Allen Day SEE ALSO
perl(1),SVG,SVG::DOM,SVG::XML,SVG::Element,SVG::Parser, SVG::Manual SVG::Extension <http://www.roitsystems.com/> ROASP.com: Serverside SVG server <http://www.roitsystems.com/> ROIT Systems: Commercial SVG perl solutions <http://www.w3c.org/Graphics/SVG/> SVG at the W3C Methods SVG provides both explicit and generic element constructor methods. Explicit generators are generally (with a few exceptions) named for the element they generate. If a tag method is required for a tag containing hyphens, the method name replaces the hyphen with an underscore. ie: to generate tag <column-heading id="new"> you would use method $svg->column_heading(id=>'new'). All element constructors take a hash of element attributes and options; element attributes such as 'id' or 'border' are passed by name, while options for the method (such as the type of an element that supports multiple alternate forms) are passed preceded by a hyphen, e.g '-type'. Both types may be freely intermixed; see the "fe" method and code examples througout the documentation for more examples. new (constructor) $svg = SVG->new(%attributes) Creates a new SVG object. Attributes of the document SVG element be passed as an optional list of key value pairs. Additionally, SVG options (prefixed with a hyphen) may be set on a per object basis: Example: my $svg1 = SVG->new; my $svg2 = SVG->new(id => 'document_element'); my $svg3 = SVG->new( -printerror => 1, -raiseerror => 0, -indent => ' ', -elsep => " ", # element line (vertical) separator -docroot => 'svg', # default document root element (SVG specification assumes svg). Defaults to 'svg' if undefined -xml_xlink => 'http://www.w3.org/1999/xlink', # required by Mozilla's embedded SVG engine -sysid => 'abc', # optional system identifier -pubid => "-//W3C//DTD SVG 1.0//EN", # public identifier default value is "-//W3C//DTD SVG 1.0//EN" if undefined -namespace => 'mysvg', -inline => 1 id => 'document_element', width => 300, height => 200, ); Default SVG options may also be set in the import list. See "EXPORTS" above for more on the available options. Furthermore, the following options: -version -encoding -standalone -namespace -inline -pubid (formerly -identifier) -sysid (standalone) may also be set in xmlify, overriding any corresponding values set in the SVG->new declaration xmlify (alias: to_xml render serialize serialise ) $string = $svg->xmlify(%attributes); Returns xml representation of svg document. XML Declaration Name Default Value -version '1.0' -encoding 'UTF-8' -standalone 'yes' -namespace 'svg' - namespace prefix for elements. Can also be used in any element method to over-ride the current namespace prefix. Make sure to have declared the prefix before using it. -inline '0' - If '1', then this is an inline document. -pubid '-//W3C//DTD SVG 1.0//EN'; -sysid 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd' perlify () return the perl code which generates the SVG document as it currently exists. toperl () Alias for method perlify() perl v5.14.2 2012-05-29 SVG(3pm)