www myspace data 0.13
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 5913
WWW::Myspace::Data 0.13
WWW::Myspace::Data is a WWW::Myspace database interaction. more>>
WWW::Myspace::Data is a WWW::Myspace database interaction.
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 );
<<lessSYNOPSIS
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 );
Download (0.016MB)
Added: 2007-07-26 License: Perl Artistic License Price:
824 downloads
WWW::Myspace 0.60
WWW::Myspace is a Perl module to access MySpace.com profile information from Perl. more>>
WWW::Myspace is a Perl module to access MySpace.com profile information from Perl.
WARNING - DO NOT USE THIS MODULE FOR MASS MESSAGING OR COMMENTING.
Myspace will cripple or disable your account:
Older accounts:
Messages will appear in your Sent folder but not in the receivers inbox, although theyll be able to see it if theyre paging through from another message. The receiver will get a "New Comments" notification and be able to see your comment, but it wont appear on the profile page.
Newer accounts:
If you created your myspace account in or after June 2006 (approximately), and you use a "bot" (including this module) to send messages, your message sending ability will be disabled and your account may be deleted. This is due to security features myspace has implemented to prevent spam abuse by people using multiple accounts.
SYNOPSIS
WWW::Myspace.pm provides methods to access your myspace.com account and functions automatically. It provides a simple interface for scripts to log in, access lists of friends, scan users profiles, retreive profile data, send messages, and post comments.
use WWW::Myspace;
my $myspace = WWW::Myspace->new ($account, $password);
OR
my $myspace = new WWW::Myspace; # Prompts for email and password
unless ( $myspace->logged_in ) { die "Login failed: " . $myspace->error }
my ( @friends ) = $myspace->get_friends();
This module is designed to help you automate and centralize redundant tasks so that you can better handle keeping in personal touch with numerous friends or fans, or coordinate fan communications among multiple band members. This module operates well within MySpaces security measures. If youre looking for a spambot, this aint it.
WWW::Myspace works by interacting with the site through a UserAgent object, using HTTP::Request::Form to process forms. Since by nature web sites are dynamic, if you find that some interaction with the site breaks, check for a new version of this module (or if you go source diving, submit a patch). You can run "cpan -i WWW::Myspace" as a cron job or before running your scripts, if appropriate, to make sure you have the latest version.
<<lessWARNING - DO NOT USE THIS MODULE FOR MASS MESSAGING OR COMMENTING.
Myspace will cripple or disable your account:
Older accounts:
Messages will appear in your Sent folder but not in the receivers inbox, although theyll be able to see it if theyre paging through from another message. The receiver will get a "New Comments" notification and be able to see your comment, but it wont appear on the profile page.
Newer accounts:
If you created your myspace account in or after June 2006 (approximately), and you use a "bot" (including this module) to send messages, your message sending ability will be disabled and your account may be deleted. This is due to security features myspace has implemented to prevent spam abuse by people using multiple accounts.
SYNOPSIS
WWW::Myspace.pm provides methods to access your myspace.com account and functions automatically. It provides a simple interface for scripts to log in, access lists of friends, scan users profiles, retreive profile data, send messages, and post comments.
use WWW::Myspace;
my $myspace = WWW::Myspace->new ($account, $password);
OR
my $myspace = new WWW::Myspace; # Prompts for email and password
unless ( $myspace->logged_in ) { die "Login failed: " . $myspace->error }
my ( @friends ) = $myspace->get_friends();
This module is designed to help you automate and centralize redundant tasks so that you can better handle keeping in personal touch with numerous friends or fans, or coordinate fan communications among multiple band members. This module operates well within MySpaces security measures. If youre looking for a spambot, this aint it.
WWW::Myspace works by interacting with the site through a UserAgent object, using HTTP::Request::Form to process forms. Since by nature web sites are dynamic, if you find that some interaction with the site breaks, check for a new version of this module (or if you go source diving, submit a patch). You can run "cpan -i WWW::Myspace" as a cron job or before running your scripts, if appropriate, to make sure you have the latest version.
Download (0.13MB)
Added: 2006-12-18 License: Perl Artistic License Price:
1044 downloads
MySpace Blog Editor 0.3
MySpace Blog Editor is an extension which allows you to post directly from within Firefox to your MySpace blog. more>>
MySpace Blog Editor is an extension which allows you to post directly from within Firefox to your MySpace blog.
The MySpace Blog Editor allows you to post directly from within Firefox to your MySpace blog aswell as save notes, drag and drop formatted text from webpages, handle images and much more.
<<lessThe MySpace Blog Editor allows you to post directly from within Firefox to your MySpace blog aswell as save notes, drag and drop formatted text from webpages, handle images and much more.
Download (0.030MB)
Added: 2007-04-10 License: MPL (Mozilla Public License) Price:
975 downloads
WWW::Myspace::FriendAdder 0.12
WWW::Myspace::FriendAdder Perl module will interactively add friends to your Myspace account. more>>
WWW::Myspace::FriendAdder Perl module will interactively add friends to your Myspace account.
SYNOPSIS
This module gives you a little more flexibility when adding friends to your Myspace account. It is interactive and will occasionally prompt you for input. Youll have the most success when using it at the command line, but you do have the option of suppressing its reporting and interactive nature if you want to run it from a cgi script or if you just find it annoying. Hey, youve got your reasons, right? This module is an extension of Grant Grueningers handy WWW::Myspace module.
use WWW::Myspace;
use WWW::Myspace::FriendAdder;
my $myspace = WWW::Myspace->new();
my $adder = WWW::Myspace::FriendAdder->new( $myspace );
my @friend_ids = (List, of, friend, ids);
$adder->send_friend_requests( @friend_ids );
By default, this routine will try to add as many friends as possible until it it reaches max_count, which defaults to 50, but can be set to any number of your choosing. See below. When Myspace prompts you for user input, the routine will pause and allow you as much time as you need to fill out the Myspace form. Once you have done so, you may prompt the script to continue or to exit. Upon its exit, the script will report on its success and/or failure.
<<lessSYNOPSIS
This module gives you a little more flexibility when adding friends to your Myspace account. It is interactive and will occasionally prompt you for input. Youll have the most success when using it at the command line, but you do have the option of suppressing its reporting and interactive nature if you want to run it from a cgi script or if you just find it annoying. Hey, youve got your reasons, right? This module is an extension of Grant Grueningers handy WWW::Myspace module.
use WWW::Myspace;
use WWW::Myspace::FriendAdder;
my $myspace = WWW::Myspace->new();
my $adder = WWW::Myspace::FriendAdder->new( $myspace );
my @friend_ids = (List, of, friend, ids);
$adder->send_friend_requests( @friend_ids );
By default, this routine will try to add as many friends as possible until it it reaches max_count, which defaults to 50, but can be set to any number of your choosing. See below. When Myspace prompts you for user input, the routine will pause and allow you as much time as you need to fill out the Myspace form. Once you have done so, you may prompt the script to continue or to exit. Upon its exit, the script will report on its success and/or failure.
Download (0.014MB)
Added: 2007-07-26 License: Perl Artistic License Price:
830 downloads
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>>
MySpace Data Mining Tools are a set of Java classes designed to mine information from MySpace profile and blog pages using a multi-threaded Web page access method.
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.
<<lessEnhancements:
- 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.
Download (0.035MB)
Added: 2006-07-30 License: GPL (GNU General Public License) Price:
1191 downloads
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 tool lets you important headlines from your blog, LiveJournal, a news feed, or other source into your MySpace (or Friendster) page.
MySpace Feed converts the headline text into an image. We have a script that updates the images once a day.
<<lessMySpace Feed converts the headline text into an image. We have a script that updates the images once a day.
Download (0.072MB)
Added: 2006-09-07 License: GPL (GNU General Public License) Price:
1146 downloads
netspeed 0.13
netspeed is a GNOME applet that shows the network traffic in kbytes/s. more>>
Netspeed is just a little GNOME-applet that shows how much traffic occurs on a specified network device (for example eth0).
You get the best impression of it, if you look at the screenshots below.
Enhancements:
- The "layout-engine" for different panel-configurations was rewritten
- Basic IPv6 support
- Icontheme support
- "dummy*" devices are now ignored in the "search for running device" handler
- Try device with default gateway set first in the "search for running device" handler
<<lessYou get the best impression of it, if you look at the screenshots below.
Enhancements:
- The "layout-engine" for different panel-configurations was rewritten
- Basic IPv6 support
- Icontheme support
- "dummy*" devices are now ignored in the "search for running device" handler
- Try device with default gateway set first in the "search for running device" handler
Download (0.63MB)
Added: 2005-07-29 License: GPL (GNU General Public License) Price:
1549 downloads
WWW::Mixi::OO::Page 0.03
WWW::Mixi::OO::Page is a WWW::Mixi::OOs Pages base class. more>>
WWW::Mixi::OO::Page is a WWW::Mixi::OOs Pages base class.
SYNOPSIS
package WWW::Mixi::OO::Foo;
use base qw(WWW::Mixi::OO::Page);
sub uri {
shift->absolute_uri(foo.pl);
}
# some implementations...
METHODS
new
# subclass
sub new {
my $this = shift->SUPER::new(@_);
# some initializations...
}
# call
my $page = $pkg->new($session);
constructor of page. please override if you need some initializations.
uri
# subclass
sub uri {
my ($this, %options) = @_;
$this->SUPER::uri(_path => foo,
_params => {
a => b,
},
%options);
}
# call
my $uri = $page->uri([opt => val], ...);
return URI of page.
parse_uri
# subclass
sub parse_uri {
my ($this, $data, %options) = @_;
$this->copy_hash_val($data->{params}, %options, page);
if ($data->{path} eq "show_friend") {
# blah...
}
if ($data->{uri}->...) {
# maybe you wont use this
}
$this->SUPER::uri($data, %options);
}
# call
my %options = $page->analyze_uri($uri);
return page information of URI.
parse
# subclass
sub parse {
my ($this, %options) = @_;
# parse...
my $part = $this->parse_extract_parts(qw/.../);
return () unless defined $part;
# return
return ({ a => b, c => d }, { a => e, c => f }, ...);
}
# call
my @datas = $page->parse;
page parser. please return hashref array.
parse_banner
my $data = $page->parse_banner;
parse banner. structure:
link: link to ad page.
subject: subject of ad(banners alt text).
image: image of banner
height: height of image
width: width of image
parse_mainmenu
my @data = $page->parse_mainmenu;
parse mainmenu. structure:
link: link to page
subject: subject of page
parse_tool_bar
my @data = $page->parse_tool_bar;
parse toolbar. structure:
link: link to page
subject: subject of page
image: image of toolbar.
height: height of image
width: width of image
get
$page->get([opt => val], ...);
handy method. call ->set_content and ->parse.
set_content
$page->set_content($uri);
or
$page->set_content(%options);
set content to specified by uri or options.
<<lessSYNOPSIS
package WWW::Mixi::OO::Foo;
use base qw(WWW::Mixi::OO::Page);
sub uri {
shift->absolute_uri(foo.pl);
}
# some implementations...
METHODS
new
# subclass
sub new {
my $this = shift->SUPER::new(@_);
# some initializations...
}
# call
my $page = $pkg->new($session);
constructor of page. please override if you need some initializations.
uri
# subclass
sub uri {
my ($this, %options) = @_;
$this->SUPER::uri(_path => foo,
_params => {
a => b,
},
%options);
}
# call
my $uri = $page->uri([opt => val], ...);
return URI of page.
parse_uri
# subclass
sub parse_uri {
my ($this, $data, %options) = @_;
$this->copy_hash_val($data->{params}, %options, page);
if ($data->{path} eq "show_friend") {
# blah...
}
if ($data->{uri}->...) {
# maybe you wont use this
}
$this->SUPER::uri($data, %options);
}
# call
my %options = $page->analyze_uri($uri);
return page information of URI.
parse
# subclass
sub parse {
my ($this, %options) = @_;
# parse...
my $part = $this->parse_extract_parts(qw/.../);
return () unless defined $part;
# return
return ({ a => b, c => d }, { a => e, c => f }, ...);
}
# call
my @datas = $page->parse;
page parser. please return hashref array.
parse_banner
my $data = $page->parse_banner;
parse banner. structure:
link: link to ad page.
subject: subject of ad(banners alt text).
image: image of banner
height: height of image
width: width of image
parse_mainmenu
my @data = $page->parse_mainmenu;
parse mainmenu. structure:
link: link to page
subject: subject of page
parse_tool_bar
my @data = $page->parse_tool_bar;
parse toolbar. structure:
link: link to page
subject: subject of page
image: image of toolbar.
height: height of image
width: width of image
get
$page->get([opt => val], ...);
handy method. call ->set_content and ->parse.
set_content
$page->set_content($uri);
or
$page->set_content(%options);
set content to specified by uri or options.
Download (0.024MB)
Added: 2007-08-18 License: Perl Artistic License Price:
797 downloads
Saper X.0.13
Saper project is a console version of mines with many features. more>>
Saper project is a console version of mines with many features.
It features an AI, different surfaces to play on (Euclids plain, Kleins bottle and Torus), and some basic settings.
<<lessIt features an AI, different surfaces to play on (Euclids plain, Kleins bottle and Torus), and some basic settings.
Download (0.018MB)
Added: 2006-12-26 License: GPL (GNU General Public License) Price:
1038 downloads
Unofficial Myspace Toolbar 1.4.91
Unofficial Myspace Toolbar provides a way to automatically login to Myspace. more>>
Unofficial Myspace Toolbar provides a way to automatically login to Myspace.
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.
<<lessAutomatically 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.
Download (0.059MB)
Added: 2007-07-09 License: MPL (Mozilla Public License) Price:
838 downloads
WWW::Scraper::BAJobs 0.01
WWW::Scraper::BAJobs it Scrapes BAJobs.com. more>>
WWW::Scraper::BAJobs it Scrapes BAJobs.com.
SYNOPSIS
require WWW::Scraper;
$search = new WWW::Scraper(BAJobs);
This class is an BAJobs specialization of WWW::Search. It handles making and interpreting BAJobs searches http://www.BAJobs.com.
This class exports no public interface; all interaction should be done through WWW::Search objects.
<<lessSYNOPSIS
require WWW::Scraper;
$search = new WWW::Scraper(BAJobs);
This class is an BAJobs specialization of WWW::Search. It handles making and interpreting BAJobs searches http://www.BAJobs.com.
This class exports no public interface; all interaction should be done through WWW::Search objects.
Download (0.037MB)
Added: 2006-08-26 License: Perl Artistic License Price:
1154 downloads
Metawriter 0.0.13
Metawriter provides an editor for interlinked texts. more>>
Metawriter provides an editor for interlinked texts.
It is useful for writing highly structured documentation, or creating a mindmap with link tracking.
Each text is given a name, a title, a group, and a state marker.
The content syntax is similar to that used by a Wiki.
<<lessIt is useful for writing highly structured documentation, or creating a mindmap with link tracking.
Each text is given a name, a title, a group, and a state marker.
The content syntax is similar to that used by a Wiki.
Download (0.11MB)
Added: 2007-01-22 License: GPL (GNU General Public License) Price:
1005 downloads
WWW-OpenSVN 0.1.2
WWW::OpenSVN is an automated interface for the OpenSVN online Subversion repositories service. more>>
WWW::OpenSVN is an automated interface for the OpenSVN online Subversion repositories service. At the moment it allows one to backup the dumps of ones repositories.
<<less Download (0.003MB)
Added: 2007-03-20 License: Perl Artistic License Price:
954 downloads
WWW::NanoRef 0.01
WWW::NanoRef is a Perl module that uses the API published by nanoref.com to produce shortened URLs. more>>
WWW::NanoRef is a Perl module that uses the API published by nanoref.com to produce shortened URLs.
Installation:
perl Makefile.PL
make
make test
make install
Enhancements:
- Initial implementation.
- Supports retrieving a shortened URL and allows for setting a password for viewing stats.
<<lessInstallation:
perl Makefile.PL
make
make test
make install
Enhancements:
- Initial implementation.
- Supports retrieving a shortened URL and allows for setting a password for viewing stats.
Download (0.003MB)
Added: 2005-11-10 License: Perl Artistic License Price:
1443 downloads
SVGSlice 0.13
SVGSlice is a simple tool which generates chopped up images from Inkscape SVG drawings. more>>
SVGSlice application can generate chopped up images from Inkscape SVG drawings.
To figure out where to cut, SVGSlice can use Inkscapes built in guides (for simpler, grid-like cuts), or it can use a specially named "slices" layer that contains rectangles that mark areas to slice.
Demo files showing both approaches are included.
<<lessTo figure out where to cut, SVGSlice can use Inkscapes built in guides (for simpler, grid-like cuts), or it can use a specially named "slices" layer that contains rectangles that mark areas to slice.
Demo files showing both approaches are included.
Download (0.005MB)
Added: 2006-04-17 License: GPL (GNU General Public License) Price:
1288 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 www myspace data 0.13 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