myspace
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 23
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
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
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
Download (41KB)
Added: 2009-04-08 License: Freeware Price: Free
206 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::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
MySpace Friend Renamer .86
MySpace Friend Renamer provides an extension that allows you to rename your MySpace Friends. more>>
MySpace Friend Renamer provides an extension that allows you to rename your MySpace Friends.
This adds a right click option to Myspace Pages and allows you to change the display name for any of your friends. Handy if your friends change names often, or pick strange and obscure names.
Also in response to comments. If a tab is not in focus when the page loads, the extension will not rename.
I believe that the extension will conflict with other extensions that change pages when they load. If I find a better way to do it, I will change it.
<<lessThis adds a right click option to Myspace Pages and allows you to change the display name for any of your friends. Handy if your friends change names often, or pick strange and obscure names.
Also in response to comments. If a tab is not in focus when the page loads, the extension will not rename.
I believe that the extension will conflict with other extensions that change pages when they load. If I find a better way to do it, I will change it.
Download (0.004MB)
Added: 2007-04-05 License: MPL (Mozilla Public License) Price:
934 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
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
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
PHP-Spacester 0.0.2
PHP-Spacester is a clone of the MySpace and Friendster social networking sites. more>>
PHP-Spacester is a clone of the MySpace and Friendster social networking sites. It strives to be dynamic.
PHP-Spacester project will also support the XDNS (Xotmid Distributed Network System), which means that all sites can be connected to hubs that are in turn connected to each other, allowing all sites to share data
PHP-Spacester started off as a fork of Astrospaces, and shows its support to their team. If you have any questions please ask on our mailing list or forums.
<<lessPHP-Spacester project will also support the XDNS (Xotmid Distributed Network System), which means that all sites can be connected to hubs that are in turn connected to each other, allowing all sites to share data
PHP-Spacester started off as a fork of Astrospaces, and shows its support to their team. If you have any questions please ask on our mailing list or forums.
Download (0.90MB)
Added: 2006-08-14 License: GPL (GNU General Public License) Price:
1171 downloads
Contact Grabber 0.3
Contact Grabber is a class library that can be used to fetch contacts from several e-mail and social networking sites. more>>
Contact Grabber is a class library that can be used to fetch contacts from several e-mail and social networking sites on the behalf of a given user.
The project can currently retrieve user contacts from Yahoo!, Gmail, MSN Messenger, Rediff, Orkut, and MySpace.
Enhancements:
- Contacts may be saved as CSV files.
<<lessThe project can currently retrieve user contacts from Yahoo!, Gmail, MSN Messenger, Rediff, Orkut, and MySpace.
Enhancements:
- Contacts may be saved as CSV files.
Download (0.082MB)
Added: 2007-06-23 License: GPL (GNU General Public License) Price:
858 downloads
Activism Network 3.2.1
Activism Network is a Web-based system that allows activists or anyone else to share contacts, resources (files), events. more>>
Activism Network is a Web-based system that allows activists or anyone else to share contacts, resources (files), events, email lists, and campaigns. etc.
It uses Google Maps.
It is similar to Friendster/MySpace, but more focussed on networking and less on the social aspect.
This area is for developers and users of the software who want to understand how it works, provide feedback, download the source code, report bugs, request features, or otherwise help out.
You can get an account, and then start commenting and writing your own pages.
<<lessIt uses Google Maps.
It is similar to Friendster/MySpace, but more focussed on networking and less on the social aspect.
This area is for developers and users of the software who want to understand how it works, provide feedback, download the source code, report bugs, request features, or otherwise help out.
You can get an account, and then start commenting and writing your own pages.
Download (0.81MB)
Added: 2007-08-10 License: GPL (GNU General Public License) Price:
805 downloads
Appleseed 0.7.2
Appleseed is a social networking software, similar to Friendster or Myspace. more>>
Appleseed project is an effort to create open source Social Networking software that is based on a distributed model. For instance, a profile on one Appleseed website could "friend" a profile on another Appleseed website, and the two profiles could interact with each other.
Apart from being distributed, Appleseed will also have a strong focus on privacy and security, as well as a commitment to seeing the user as an online citizen, as opposed to a consumer to be targetted. This is in stark contrast to current social networking websites, who rely heavily on ad placement and data mining of their users.
The first goal is to create a codebase for basic interaction, such as creating profiles, creating and participating in message groups, journals and comments, etc.
Eventually, Appleseed will encompass many different aspects, from mail to messaging to journals/blogs to photo uploads and management. A module architecture is also in the works for even greater extensibility.
Development currently uses Object Oriented PHP4, MySQL (InnoDB), XHTML, Javascript, and CSS2. Mozilla/Firefox will be the target platform.
<<lessApart from being distributed, Appleseed will also have a strong focus on privacy and security, as well as a commitment to seeing the user as an online citizen, as opposed to a consumer to be targetted. This is in stark contrast to current social networking websites, who rely heavily on ad placement and data mining of their users.
The first goal is to create a codebase for basic interaction, such as creating profiles, creating and participating in message groups, journals and comments, etc.
Eventually, Appleseed will encompass many different aspects, from mail to messaging to journals/blogs to photo uploads and management. A module architecture is also in the works for even greater extensibility.
Development currently uses Object Oriented PHP4, MySQL (InnoDB), XHTML, Javascript, and CSS2. Mozilla/Firefox will be the target platform.
Download (0.43MB)
Added: 2007-07-03 License: GPL (GNU General Public License) Price:
844 downloads
Media Pirate 2.3
Media Pirate allows you to download videos and flash movies from websites. more>>
Media Pirate allows you to download videos and flash movies from websites.
More and more websites publish their videos in those neat flash players. But if you want to download a video there is no download link. This doesnt mean that you cant download it. Media Pirate creates a download link for you!
Media Pirate helps you to download videos from the following websites:
blip.tv break.com dailymotion.com ifilm.com media.putfile.com metacafe.com myvideo.de video.google.com vids.myspace.com vidilife.com youtube.com zippyvideos.com
To convert the video files to other formats go to:
Media Converter
This is very useful if you dont have a FLV player.
Media Pirate - The video downloader is the service that 100% works!!
Hint: It opens a new tab with the mediapirate.org website where you can find the download link.
<<lessMore and more websites publish their videos in those neat flash players. But if you want to download a video there is no download link. This doesnt mean that you cant download it. Media Pirate creates a download link for you!
Media Pirate helps you to download videos from the following websites:
blip.tv break.com dailymotion.com ifilm.com media.putfile.com metacafe.com myvideo.de video.google.com vids.myspace.com vidilife.com youtube.com zippyvideos.com
To convert the video files to other formats go to:
Media Converter
This is very useful if you dont have a FLV player.
Media Pirate - The video downloader is the service that 100% works!!
Hint: It opens a new tab with the mediapirate.org website where you can find the download link.
Download (0.014MB)
Added: 2007-04-10 License: MPL (Mozilla Public License) Price:
673 downloads
MyxerMagic Web Extensions 1.0.0
MyxerMagic Web Extensions is a Firefox extension that allows you to quickly send any image on the web to a mobile phone. more>>
MyxerMagic Web Extensions is a Firefox extension that allows you to quickly send any image on the web directly to your mobile phone - right from the context menu of your favorite web browser!
Grab photos of friends and family from Flickr, Yahoo!, whatever. Better yet, grab photos of more attractive strangers from other places on the web.
Get the hottest celebrity shots from...wherever you surf! Dont hold your breath waiting for Bob Marley action shots to make it onto Cingulars deck.
Want album artwork from your favorite bands? Its waiting for you at their website or MySpace page.
Or, simply round out your stalker lifestyle by carrying around the MySpace profile picture of that hottie you almost asked out that one time but then, well, after that incident with the rabid poodle...
<<lessGrab photos of friends and family from Flickr, Yahoo!, whatever. Better yet, grab photos of more attractive strangers from other places on the web.
Get the hottest celebrity shots from...wherever you surf! Dont hold your breath waiting for Bob Marley action shots to make it onto Cingulars deck.
Want album artwork from your favorite bands? Its waiting for you at their website or MySpace page.
Or, simply round out your stalker lifestyle by carrying around the MySpace profile picture of that hottie you almost asked out that one time but then, well, after that incident with the rabid poodle...
Download (0.036MB)
Added: 2007-07-18 License: MPL (Mozilla Public License) Price:
906 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 2
- 1
- 2
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above myspace 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