create your own myspace layout
Free Myspace Layouts 1
Myspace layouts, free myspace layouts with myspace codes at Acelayouts.com. We offer a very fantastic collection of myspace layouts, free myspace layo... more>> <<less
Create Your Own Adventure 0.4 Beta
Create Your Own Adventure project is an interactive adventure in which the users themselves write the adventure. more>>
The user can upload a picture (in any format supported by Web browsers) and define how many choices the player will have. Its possible to connect choices to other parts of the story simply by selecting the chapter number from the dropdown list next to the choice.
Unofficial Myspace Toolbar 1.4.91
Unofficial Myspace Toolbar provides a way to automatically login to Myspace. more>>
Automatically login to Myspace, instantly access your messages, view hidden comments, create styled comments/bulletins and more with this intuitive and customizable toolbar!
NEW! Myspace Notifications: Find out if you have new comments, bulletins, etc without logging into myspace.
The toolbar can automatically hide when you are not using Myspace. To toggle this feature, click the "m" on the status bar.
WWW::Myspace::Data 0.13
WWW::Myspace::Data is a WWW::Myspace database interaction. more>>
SYNOPSIS
This module is the database interface for the WWW::Myspace modules. It imports methods into the callers namespace which allow the caller to bypass the loader object by calling the methods directly. This module is intended to be used as a back end for the Myspace modules, but it can also be called directly from a script if you need direct database access.
my %db = (
dsn => dbi:mysql:database_name,
user => username,
password => password,
);
# create a new object
my $data = WWW::Myspace::Data->new( $myspace, { db => %db } );
# set up a database connection
my $loader = $data->loader();
# initialize the database with Myspace login info
my $account_id = $data->set_account( $username, $password );
# now do something useful...
my $update = $data->update_friend( $friend_id );
MP3::Album::Layout 0.14
MP3::Album::Layout is a Perl extension to manage/represent a layout for a mp3 album. more>>
SYNOPSIS
use MP3::Album::Layout;
#create a new layout
my $layout = new MP3::Album::Layout;
#change the disc title
$layout->title("Perl conference");
#add a track
$layout->add_track(artist=>someone, title=>regex how to);
#edit track
$layout->edit_track(position=>1, artist=>still dont know the name);
MP3::Album::Layout represents a mp3 album layout, which contains the (artistic) information of a album.
MySpace Feed 1.01
MySpace Feed tool lets you important headlines from your blog, LiveJournal, a news feed, or other source into your MySpace. more>>
MySpace Feed converts the headline text into an image. We have a script that updates the images once a day.

RegexSR for liunx 1.0.0
A tool to create and test complex regular expressions. more>> RegexSR is a very easy-to-use and powerful tool (written in Java) to create and test complex regular expressions.
The plugin system provides extra functionalities, such as transforming expressions into Java code, and allows the user to create his own extensions.
Features include testing regular expressions, handling text through regular expressions or plugins, renaming files, developing plugins, and managing expressions in the repository.<<less
MySpace Data Mining Tools 1.1
MySpace Data Mining Tools are a set of Java classes designed to mine information from MySpace profile and blog pages. more>>
Enhancements:
- Direct database connectivity via JDBC was implemented for data storage.
- A basic user profile class was created to handle both user data compression and database access.
- Minor bugs were fixed for some of the raw data accessing routines.
Games::Tournament::BlackJack::Player 0.01
Games::Tournament::BlackJack::Player is a module to create your own entries to GTB Tournaments. more>>
The main purpose for this module is to allow users to develop new subclasses of Games::Tournament::BlackJack::Player for use in Games::Tournament::BlackJack tournaments. The Thousand-Oaks PerlMongers group will be organizing the official 2005 tournament that this codebase was originally written to support. The author felt it would be most appropriate to open the code running the tournament to reap the
usual litany of benefits.
All entries to this and future official tournaments must be submitted under a license approved under the Open Source Definition. ( http://www.opensource.org/docs/definition.php )
You can use this set of modules to:
=over 4
=item *
Develop and objectively evaluate BlackJack strategies.
=item *
Simulate a human player of varying memory facility (not yet implemented in 0.01)
=item *
Win the BlackJack programming competition.
=item *
Help find and eliminate any bugs in the competition engine prior
to the actual competition.
=back
There is further documentation in the modules themselves, and the discuss folder of the distribution. Start with C< Games::Tournament::BlackJack >.
This is an early version, much more documentation is planned, especially
on the user-developer side for tournament entrants.
Feedback, patches, etc.. are welcome (though I make no guarantees on
acceptance for patches.. or agreement for feedback.)
lyteRAD CE 2.4
With lyteRAD you can build desktop & mobile database applications easily. Create, share and sell your own solutions. Contains an Embedded DB for maintenance free simplicity, use visualizers for better insights, and even choose industry standard database servers as the backend. more>>
lyteRAD CE - With lyteRAD you can build desktop & mobile database applications easily. Create, share and sell your own solutions. Contains an Embedded DB for maintenance free simplicity, use visualizers for better insights, and even choose industry standard database servers as the backend. Build complete business solutions with zero code, Mobilize your applications and take it with you, Use visualizers to get deeper insights into your information, Create graphs and charts with just a few clicks, Use industry standard JDBC compliant databases for higher robustness, Available for Windows & linux. Build share and sell your applications at your own terms.
Enhancements:
Version 2.4
Table templates,one click web service, MultiItem datatype, Enhanced application widgets, many bug fixes and enhancements.
Version 2.3
Derived Fields in Reports, Enhanced UI, Statistics module, Math Triggers
Version 2.2
Row Markers, More Powerful Reports, Application Store
Version 2.1
System Requirements:<<less
ThemeKreator 0.3
ThemeKreator is a program to create and preview theme files (.thm) for SonyEricsson mobile phones. more>>
You can change the appearance of your mobile completely by creating you own display theme with this program.
Main features:
- Create, open, load, save themes
- Preview themes
- Validation of themes (color distance checks, etc.)
- Extract preview images of theme
- Detailed list of files in theme
Enhancements:
- Added French (complete) and Polish (partial) translations (thanks to both
- translators!)
- finished German translation
- K600i, K750i and W800i support
- New model selection dialog
- Support for inplace editing of images (with automatic refresh)
- Minor UI other enhancements
- Added dialog with all previews visible in one place
- Previews display transparent PNGs and animated GIFs now
- Improved detection and notification of broken themes
- Bugfix: fixed opening of themes created with the SonyEricsson "Themes Creator"
Log::Log4perl::Layout::XMLLayout 0.03
Log::Log4perl::Layout::XMLLayout is an XML Layout. more>>
SYNOPSIS
use Log::Log4perl::Layout::XMLLayout;
my $app = Log::Log4perl::Appender->new("Log::Log4perl::Appender::File");
my $logger = Log::Log4perl->get_logger("abc.def.ghi");
$logger->add_appender($app);
# Log with LocationInfo
my $layout = Log::Log4perl::Layout::XMLLayout->new(
{ LocationInfo => { value => TRUE },
Encoding => { value => iso8859-1}});
$app->layout($layout);
$logger->debug("Thats the message");
########################### Log4perl Config File entries for XMLLayout
log4perl.appender.A1.layout = Log::Log4perl::Layout::XMLLayout
log4perl.appender.A1.layout.LocationInfo = TRUE
log4perl.appender.A1.layout.Encoding =iso8859-1
###########################
Creates a XML layout according to http://jakarta.apache.org/log4j/docs/api/org/apache/log4j/xml/XMLLayout.html
Logfiles generated based on XMLLayout can be viewed and filtered within the log4j chainsaw graphical user interface (see example section below). chainsaw is part of the JAVA based log4j package and can be downloaded from http://jakarta.apache.org/
The output of the XMLLayout consists of a series of log4j:event elements as defined in the log4j.dtd. It does not output a complete well-formed XML file. The output is designed to be included as an external entity in a separate file to form a correct XML file.
For example, if abc is the name of the file where the XMLLayout ouput goes, then a well-formed XML file would be:
< ?xml version="1.0" ? >
< !DOCTYPE log4j:eventSet SYSTEM "log4j.dtd" [< !ENTITY data SYSTEM "abc" >] >
< log4j:eventSet version="1.2" xmlns:log4j="http://jakarta.apache.org/log4j/" > &data; < /log4j:eventSet >
This approach enforces the independence of the XMLLayout and the appender where it is embedded.
The version attribute helps components to correctly intrepret output generated by XMLLayout. The value of this attribute should be "1.1" for output generated by log4j versions prior to log4j 1.2 (final release) and "1.2" for relase 1.2 and later.
Neverwinter Nights: Shadows of Undrentide Patch 1.68
Neverwinter Nights (NWN) is a computer game set in a huge medieval fantasy world of Dungeons and Dragons. more>>
As a player, you are able to choose what skills and abilities you will develop as you voyage though the complex and dangerous fantasy world of Forgotten Realms. Be a deadly and dangerous Rogue moving through the shadows using stealth and secrecy, be a scholarly Wizard and wield powerful magic against your enemies, be a hulking Barbarian whose lust for battle is matched only by his terrible rage, be an armor-clad Paladin who protects the innocent and vanquishes his foes, be a crusading Cleric who heals the sick and defends the helpless… be all this and more.
Neverwinter Nights allows you to create your own worlds. This revolutionary game will come with all the tools needed to construct your own unique lands of adventure. The Neverwinter Nights Aurora Toolset allows even novice users to construct everything from a quiet, misty forest or a dripping cavern of foul evil, to a kings court. All the monsters, items, set pieces and settings are there for world builders to use. But do not stop there; construct traps, encounters, custom monsters and magic items to make your adventure unique.
But the Neverwinter experience is not just for one person- adventure with all your friends. Neverwinter Nights can be played online with up to 64 friends, all sharing in the adventure. You can organize and run your own adventures through the role of the Dungeon Master and control all the monsters, creatures and characters your friends meet as they journey on their quest. A powerful piece of software that is included with Neverwinter Nights, the DM Client, allows nearly unlimited control for running your own adventures for your friends.
Neverwinter Nights…endless adventure!
Gtk2::Ex::MindMapView::Layout::Column 0.000001
Gtk2::Ex::MindMapView::Layout::Column is a Perl module to display vertical layout of clusters. more>>
SYNOPSIS
use Gtk2::Ex::MindMapView::Layout::Column;
The Gtk2::Ex::MindMapView::Layout::Column is used to layout Gtk2::Ex::MindMapView::Items in columns on a Gnome2::Canvas.
INTERFACE
new(column_no=>$column_no)
Instantiates the column and saves the column number for future reference.
Each column is assigned a column number, which is used to determine which side of the root column it is on. The root column is always column zero. Columns to the right of the root have positive column numbers, columns to the left of the root column have negative column numbers.
add($predecessor_item, $item)
Each Gtk2::Ex::MindMapView::Item is added to a cluster in a column. The cluster groups items according to their predecessor.
layout()
Places Gtk2::Ex::MindMapView::Items on the canvas according to the cluster they belong to.
DIAGNOSTICS
Gtk2::Ex::MindMapView::Layout::Column requires a column_no
You must pass in a column_no argument when creating a Gtk2::Ex::MindMapView::Layout::Column.
Gtk2::Ex::MindMapView::Layout::Cluster 0.000001
Gtk2::Ex::MindMapView::Layout::Cluster is a vertical layout of view items. more>>
HEIRARCHY
Gtk2::Ex::MindMapView::Layout::Group
+----Gtk2::Ex::MindMapView::Layout::Cluster
SYNOPSIS
use Gtk2::Ex::MindMapView::Layout::Cluster;
INTERFACE
new(cluster_no=>$cluster_no)
Instantiates an array of Gtk2::Ex::MindMapView::Items. All items in a cluster have a common predecessor item.
add($item)
Adds a item to the cluster, and adjusts the height and width of the cluster.
layout()
Places the cluster items on the canvas, and right or left justifies them.
seq_no()
Returns a number which is used to order the clusters in a column.
DIAGNOSTICS
Gtk2::Ex::MindMapView::Layout::Cluster requires a cluster_no
You must pass in a cluster_no argument when creating a Gtk2::Ex::MindMapView::Layout::Cluster