Main > Free Download Search >

Free yahoo messenger for mac os x software for linux

yahoo messenger for mac os x

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2377
Yahoo! Messenger for RedHat 9 1.0.4-1

Yahoo! Messenger for RedHat 9 1.0.4-1


Yahoo! Messenger 1.0.4-1 for RedHat 9 more>> Yahoo! Messenger 1.0.4-1 for RedHat 9
Whats New In This Version?
Consistent Look - The popular animated emoticons included in other versions of Messenger are now in the Unix version.
Archiving - Archived messages are now rendered in HTML, work faster, and are more reliable.
Bugfixes - Sound on RedHat kernels now works reliably.
Content - Content added from Address Book.
Performance Improvements - P2P file transfer is now possible from Windows clients.
To install the Linux version of Messenger:
RedHat Linux:
1. Save the appropriate file listed below to your machine.
2. Log in as root and type
rpm -i
with the appropriate filename depending on your version to install the application.
3. Run /usr/bin/ymessenger from X Window to launch the application.
<<less
Download (693KB)
Added: 2009-04-28 License: Freeware Price: Free
224 downloads
 
Other version of Yahoo! Messenger for RedHat
Yahoo! Messenger for RedHat 8.0 1.0.4-1Yahoo! Messenger 1.0.4-1 for RedHat 8.0 Whats New In This Version? Consistent Look - The ... 3. Run /usr/bin/ymessenger from X Window to launch the application
License:Freeware
Download (674KB)
315 downloads
Added: 2009-04-29
Yahoo! Messenger for RedHat 7.x 1.0.4-1Yahoo! Messenger 1.0.4-1 for RedHat 7.x. Yahoo! Messenger for RedHat 7.x 1.0.4-1 - Jouke Visser ... Yahoo! Messenger 1.0.4-1 for RedHat 7.x Whats New In This Version? Consistent Look - The
License:Freeware
Download (944KB)
215 downloads
Added: 2009-03-31
Yahoo! Messenger for RedHat 6.x 1.0.4-1Yahoo! Messenger 1.0.4-1 for RedHat 6.x. Yahoo! Messenger for RedHat 6.x 1.0.4-1 - Jouke Visser ... Yahoo! Messenger 1.0.4-1 for RedHat 6.x Whats New In This Version? Consistent Look - The
License:Freeware
Download (933KB)
214 downloads
Added: 2009-04-01
Yahoo Messenger 1.0.4

Yahoo Messenger 1.0.4


Yahoo! Messenger for UNIX is an instant messenger. more>>
Yahoo! Messenger for Unix sends instant messages to your Windows and Unix friends!
Enhancements:
- Improved Emoticons - Improved Message Archive - Improved sound on RedHat kernels - Yahoo! Address Book integration - File transfer with Windows clients -
<<less
Download (0.91MB)
Added: 2005-06-15 License: LGPL (GNU Lesser General Public License) Price:
1171 downloads
Yahoo! Messenger for Debian Linux 1.0.4-1

Yahoo! Messenger for Debian Linux 1.0.4-1


Yahoo! Messenger 1.0.4-1 for Debian Linux more>> Yahoo! Messenger 1.0.4-1 for Debian Linux
Whats New In This Version?
Consistent Look - The popular animated emoticons included in other versions of Messenger are now in the Unix version.
Archiving - Archived messages are now rendered in HTML, work faster, and are more reliable.
Bugfixes - Sound on RedHat kernels now works reliably.
Content - Content added from Address Book.
Performance Improvements - P2P file transfer is now possible from Windows clients.
To install the Linux version of Messenger:
1. Save the appropriate file listed below to your machine.
2. Log in as root and type
dpkg -i ymessenger_1.0.4_1_i386.deb
to install the application
3. Run /usr/bin/ymessenger from X Window to launch the application.
<<less
Download (652KB)
Added: 2009-04-27 License: Freeware Price: Free
353 downloads
Net::YahooMessenger 0.16

Net::YahooMessenger 0.16


Net::YahooMessenger is a Perl interface to the Yahoo!Messenger IM protocol. more>>
Net::YahooMessenger is a Perl interface to the Yahoo!Messenger IM protocol.

SYNOPSIS

use Net::YahooMessenger;

my $yahoo = Net::YahooMessenger->new(
id => your_yahoo_id,
password => your_password,
);
$yahoo->login or die "Cant login Yahoo!Messenger";
$yahoo->send(recipient_yahoo_id, Hello World!);

MAINTAINERS WANTED

This module is not in active maintenance now. Thus it doesnt play well with recent Yahoo! protocol updates. If you are interested in taking over this module on CPAN, please let me know your CPAN author ID to me at miyagawa[at]cpan.org.

Net::YahooMessenger is a client class for connecting with the Yahoo!Messenger server, and transmitting and receiving a message.

Since implement of a protocol is the result of analyzing and investigating a packet, it has an inadequate place. However, it is working as expected usually.

<<less
Download (0.016MB)
Added: 2006-12-11 License: Perl Artistic License Price:
1052 downloads
Net::YahooMessenger::CRAM 0.16

Net::YahooMessenger::CRAM 0.16


Net::YahooMessenger::CRAM is a Yahoo Messenger Challenge-Response Authentication Mechanism. more>>
Net::YahooMessenger::CRAM is a Yahoo Messenger Challenge-Response Authentication Mechanism.

SYNOPSIS

my $cram = Net::YahooMessenger::CRAM->new();
$cram->set_id($your_yahoo_id);
$cram->set_password($your_password);
$cram->set_challenge_string($string_from_server);

my ($response_type6, $response_type96) = $cram->get_response_strings();

Net::YahooMessenger::CRAM is Challenge-Response Authentication Mechanism for Yahoo Messenger protocol version 9.

<<less
Download (0.016MB)
Added: 2006-12-12 License: Perl Artistic License Price:
621 downloads
POE::Component::YahooMessenger 0.05

POE::Component::YahooMessenger 0.05


POE::Component::YahooMessenger is a POE component for Yahoo! Messenger. more>>
POE::Component::YahooMessenger is a POE component for Yahoo! Messenger.

SYNOPSIS

use POE qw(Component::YahooMessenger);

# spawn YM session
POE::Component::YahooMessenger->spawn(Alias => ym);

# register your session for callbacks
$kernel->post(ym => register);

# tell YM how to connect
$kernel->post(ym => connect => {
id => your_id,
password => xxxxxxx,
});

# associate this callback with ym_goes_online
sub goes_online {
my $event = $_[ARG0];
printf "buddy %s goes onlinen", $event->buddy_id;
}

# send message
$kernel->post(ym => send_message => {
to => $buddy_id,
message => "Hello World",
});

# change your status
$kernel->post(ym => change_my_status => {
busy => 0, # 0 = not busy
message => "going for lunch now!",
});

# retrieve your buddies list
$kernel->post(ym => buddies => retrieve_buddies);
sub retrieve_buddies {
my $buddies = $_[ARG0];
for my $buddy_id (keys %$buddies) {
printf "%s (group: %s)n", $buddy_id, $buddies->{$buddy_id};
}
}

$poe_kernel->run();

POE::Component::YahooMessenger is a POE component to connect Yahoo! Messener. This module ripoffs a lot of code from Net::YahooMessenger for protocol implementations.

API is intentionally made similar to that of PoCo::IRC.

<<less
Download (0.006MB)
Added: 2006-12-12 License: Perl Artistic License Price:
1049 downloads
Galaxium Messenger 0.4.6

Galaxium Messenger 0.4.6


Galaxium Messenger is an Instant Messenger for GNOME using the MSN service. more>>
Galaxium is a MSN service messenger application that runs in the GNOME environment on Linux. Galaxium Messenger is written by Adam Peck and Philippe Durand, students of the Southern Alberta Institute of Technology.

Here you will find information about the development of this new instant messenger and have an opportunity to involve yourself in the process!

<<less
Download (0.63MB)
Added: 2007-01-01 License: GPL (GNU General Public License) Price:
1055 downloads
Kopete Massive Messenger 0.1

Kopete Massive Messenger 0.1


Kopete Massive Messenger is a Kommander script that lets you send repetitive messages to your Kopete contacts. more>>
Kopete Massive Messenger is a Kommander script that lets you send repetitive messages to your Kopete contacts.

<<less
Download (0.016MB)
Added: 2006-02-22 License: GPL (GNU General Public License) Price:
1355 downloads
Saurus CMS Free for Linux / Mac OS X 4.5.1

Saurus CMS Free for Linux / Mac OS X 4.5.1


Saurus CMS Free - content management system combining usability with technology more>> <<less
Download (10.59MB)
Added: 2009-04-01 License: Freeware Price: Free
209 downloads
Linux MSN Messenger Engine 1.0

Linux MSN Messenger Engine 1.0


Linux MSN Messenger Engine is a fully asynchronous, and fully multithreaded MSN messenger engine. more>>
Linux MSN Messenger Engine is a fully asynchronous, and fully multithreaded MSN messenger engine.
Preliminary releases will be statically combined with an ncurses console-based EPIC4-like interface for instant messaging functionality.
Enhancements:
- Code cleanup
<<less
Download (0.056MB)
Added: 2006-05-30 License: GPL (GNU General Public License) Price:
827 downloads
Yahoo!Marketing: BillingUser 4.04

Yahoo!Marketing: BillingUser 4.04


This provides you an useful and free program which is an object to represent a Yahoo Marketing BillingUser. more>> Yahoo! Marketing: BillingUser 4.04 provides you a useful and free program which is an object to represent a Yahoo Marketing BillingUser. This product will be a good choice for you!<<less
Added: 2008-05-07 License: Perl Artistic License Price: FREE
1 downloads
Sethi Yahoo News Grabber 1.0

Sethi Yahoo News Grabber 1.0


Sethi Yahoo News Grabber is a small script used for fetching news from Yahoo. more>>
Sethi Yahoo News Grabber is a small script used for fetching news from Yahoo.

Quick and dirty routine to get Yahoo news

Should save result to a text file and then SSI the sucker where you want

<<less
Download (MB)
Added: 2007-03-26 License: GPL (GNU General Public License) Price:
946 downloads
Yahoo::Marketing::BillingUser 0.08

Yahoo::Marketing::BillingUser 0.08


Yahoo::Marketing::BillingUser is an object to represent a Yahoo Marketing BillingUser. more>>
Yahoo::Marketing::BillingUser is an object to represent a Yahoo Marketing BillingUser.

SYNOPSIS

See http://ysm.techportal.searchmarketing.yahoo.com/docs/reference/dataObjects.asp for documentation of the various data objects.

METHODS

new

Creates a new instance

get/set methods

email
firstName
lastName
middleInitial
phone

get (read only) methods

<<less
Download (0.066MB)
Added: 2006-12-11 License: Perl Artistic License Price:
1047 downloads
DateTime::Format::Epoch::MacOS 0.10

DateTime::Format::Epoch::MacOS 0.10


DateTime::Format::Epoch::MacOS is a Perl module that can convert DateTimes to/from Mac OS epoch seconds. more>>
DateTime::Format::Epoch::MacOS is a Perl module that can convert DateTimes to/from Mac OS epoch seconds.

SYNOPSIS

use DateTime::Format::Epoch::MacOS;

my $dt = DateTime::Format::Epoch::MacOS->parse_datetime( 1051488000 );
DateTime::Format::Epoch::MacOS->format_datetime($dt);
# 1051488000

my $formatter = DateTime::Format::Epoch::MacOS->new();

my $dt2 = $formatter->parse_datetime( 1051488000 );

$formatter->format_datetime($dt2);
# 1051488000

This module can convert a DateTime object (or any object that can be converted to a DateTime object) to the number of seconds since the Mac OS epoch.
Note that the Mac OS epoch is defined in the local time zone. This means that these two pieces of code will print the same number of seconds, even though they represent two datetimes 6 hours apart:

$dt = DateTime->new( year => 2003, month => 5, day => 2,
time_zone => Europe/Amsterdam );
print $formatter->format_datetime($dt);

$dt = DateTime->new( year => 2003, month => 5, day => 2,
time_zone => America/Chicago );
print $formatter->format_datetime($dt);

Mac OS X is a Unix system, and uses the Unix epoch (1970-01-01T00:00:00). Use DateTime::Format::Epoch::Unix instead.

<<less
Download (0.017MB)
Added: 2006-08-15 License: Perl Artistic License Price:
1166 downloads
FlashGot 0.6.1 for Firefox

FlashGot 0.6.1 for Firefox


FlashGot - download one link, selected links or all the links of a page at the maximum speed with a single click. more>>
FlashGot - download one link, selected links or all the links of a page at the maximum speed with a single click, using the most popular external download managers for Windows, Mac OS X, Linux and FreeBSD (dozens currently supported products, see http://flashgot.net for details).
FlashGot offers also a Build Gallery functionality which helps to synthetize full media galleries in one page, from serial contents previously scattered on several pages, for easy and fast "download all".
FlashGot contextual menu
- for Windows (FlashGet, Free Download Manager, Fresh Download, GetRight, GigaGet, HiDownload, iGetter, InstantGet, Internet Download Accelerator, Internet Download Manager, LeechGet, Mass Downloader, Net Transport, NetXfer (Net Transport 2), NetAnts, ReGet, Star Downloader, Thunder (Chinese only popular product), TrueDownloader and Ukrainian Download Master [Russian language only] ), WellGet
- for Linux / FreeBSD / other Unix-like OSes (Aria, cURL, Downloader 4 X, GNOME Gwget and KDE KGet )
- for Mac OS X (iGetter and Speed Download)
<<less
Download (0.23MB)
Added: 2007-07-16 License: MIT/X Consortium License Price:
534 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5