Main > Free Download Search >

Free aims software for linux

aims

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1105
AIM 1.5

AIM 1.5


AIM is an instant messenger. more>>
"You don`t have to be an America Online member to experience the immediate cross-Internet communication made possible by AOL Instant Messenger.
This program allows Internet users to communicate via private, personalized text messages.
The program indicates when friends, family members, and business colleagues are online, making Internet communications faster, easier, and more efficient.
AOL Instant Messenger combines AOL`s popular Buddy List and Instant Message features, enabling users to send and respond to messages immediately."
Enhancements:
- Improved Popups Preferences
- Support for @mac.com addresses
- The wireless icon is the visual indication on the buddy list that a buddy is using a mobile device.
- File Transfer (with Drag&Drop support)
- Displays idle time
- Ability to install anywhere. (Extract everything into a single directory and then run aim with option "--install_dir %path" where %path is the path to directory containing all the libraries)
<<less
Download (1.07MB)
Added: 2005-04-25 License: LGPL (GNU Lesser General Public License) Price:
1714 downloads
Grails 0.5.6

Grails 0.5.6


Grails aims to bring the coding by convention paradigm to Groovy. more>>
Grails aims to bring the "coding by convention" paradigm to Groovy. Its an open-source web application framework that leverages the Groovy language and complements Java Web development.

You can use Grails as a standalone development environment that hides all configuration details or integrate your Java business logic.

The project aims to make development as simple as possible and hence should appeal to a wide range of developers not just those from the Java community.
<<less
Download (28.3MB)
Added: 2007-06-22 License: The Apache License 2.0 Price:
858 downloads
AIM Sniff 1.0 Beta

AIM Sniff 1.0 Beta


AIM Sniff is a utility for monitoring and archiving AOL Instant Messenger messages across a network. more>>
AIM Sniff is a utility for monitoring and archiving AOL Instant Messenger messages across a network.
You can either do a live dump (actively sniff the network) or read a PCAP file and parse the file for IM messages. You also have the option of dumping the information to a MySQL database, a flat file, STDOUT, or any combination of the three.
AIM Sniff allows administrators to see how often users are chatting to monitor for abuse and you can also use AIM Sniff to monitor for cases of harassment or pirated software trading. It has been tested on FreeBSD, Linux, and OS X.
AIM Sniff is licensed under the GNU General Public License (GPL).
Enhancements:
- Several bugfixes from the alpha release are included, as well as a few feature enhancements.
- Daemon mode is now working, and there is a feature to not use a handles file (useful when using the software behind a NAT).
- In addition, the install will prompt for MySQL admin credentials for creating the database.
- Issues with the MSN message types crashing the DB and connections to the DB timing out after a period of time have been fixed.
- Also fixed is "noise" from database SQL statements.
<<less
Download (0.040MB)
Added: 2006-01-23 License: GPL (GNU General Public License) Price:
1373 downloads
Net::AIM 1.22

Net::AIM 1.22


Net::AIM is a Perl extension for AOL Instant Messenger TOC protocol. more>>
Net::AIM is a Perl extension for AOL Instant Messenger TOC protocol.

SYNOPSIS

use Net::AIM;

$aim = new Net::AIM;
$conn = $aim->newconn(Screenname => Perl AIM,
Password => yaddayadda);
$aim->start;

This module implements an OO interface to the Aol Instant Messenger TOC protocol.

This version contains not much more than hacked code that merely connects to the aol TOC servers and acts on instant messages.

METHODS

Net::AIM->new()

This is the Net::AIM constructor. No arguments needed.

$aim->debug($debug)

Set whether to print DEBUGGING information to STDERRR. Accepts $debug which should be a boolean value.

$aim->set($key, $val)

This method simply sets $key to $val in an internal hash for variables

$aim->get($key)

This method simply gets the value of $key from the internal hash

$aim->newconn()

This method creates a new AIM::Connection object

$aim->getconn()

This method returns a pointer to the AIM::Connection object

$aim->do_one_loop()

This executes one read off the socket.

$aim->start()

This just starts an infinte loop of $aim->do_one_loop;

$aim->timeout($secs);

This sets or returns the current timeout in seconds for the select loop. Takes 1 optional argument. Fractional timeout values are ok.

$aim->add_buddy($send_bool, $group, @buddies);

This adds @buddies to your buddy list, under the group $group. if $send_bool evaluates to TRUE then the toc_add_buddy command is sent to the server. Otherwise it is not sent out. This function will also save the list internally.

$aim->add_permit($send_bool, $group, @buddies);

This adds @buddies to your permit list, under the group $group. if $send_bool evaluates to TRUE then the toc_add_permit command is sent to the server. Otherwise it is not sent out. This function will also save the list internally.

$aim->add_deny($send_bool, $group, @buddies);

This adds @buddies to your deny list, under the group $group. if $send_bool evaluates to TRUE then the toc_add_deny command is sent to the server. Otherwise it is not sent out. This function will also save the list internally.

$aim->remove_buddy($send_bool, $group, @buddies);

This removes @buddies from your buddy list. $group must be the group they were orginally set with for them to be deleted from the internal $aim memory and prevent them from getting added again incase a set_config method is called.

if $send_bool evaluates to TRUE then the toc_add_deny command is sent to the server. Otherwise it is not sent out. This function will also save the list internally.

$aim->set_idle($idle_time)

This method sets our idle time to $idle_time. If $idle_time is omitted it will be set to 0.

$aim->get_info($screen_name)

Sends an info request to the server for $screen_name. The server should reply with a URL which will contain the info requested about the user.

$aim->set_info($info)

This method sets your info or profile information to $info on the server.

$aim->evil($user, $anon)

Warn $screen_name. $anon: boolean value which will determine whether to warn the user anonymously or normally. Anonymous warnings are less severe.

$aim->send($message)

Send $message to the server. This is used internally by other functions to send commands to the server.

$aim->send(toc_add_buddy perlaim)

$aim->chat_invite($room, $msg, @buddies)

Invite @buddies to $room with the message $msg

$aim->chat_accept($room_id)

This will accept an invitation that was sent to us for $room_id

$aim->chat_leave($room_id)

This method instructs the server to take you out of the room $room_id

$aim->chat_whisper($room_id,$user,$msg)

Whisper $msg to $user in the room $room_id

$aim->chat_send($room_id, $message)

Send $message in chat room $room_id

$aim->chat_join($roomname)

Send a request to enter the room $roomname

$aim->send_im($screen_name, $message)

This method sends $message to $screen_name.

$aim->list_rooms();

This method returns an @array of rooms each consisting of ID:ROOM_NAME. For instance: 235236:Perl AIM Chat12 234323:Perl AIM Chat13 235832:Perl AIM Chat14 125082:Perl AIM Chat15

$aim->get_roomname($id)

This method returns the name of the room with id $id.

$aim->set_roomname($id, $roomname)

This saves $roomname in the $aim object in a %hash keyed on $id.

$aim->del_roomname($id)

Deletes $id and its associate value from our roomname hash in $aim

$aim->encode($str)

This method returns $str encoded as per the TOC specs: escaped special chars ({}[]$) and enclosed in quotes (")

$aim->send_config()

This method instructs the module to send our configurations which are the mode (permit/deny/all) and our buddy list to the server and to set it as our saved config on the server

$aim->send_buddies()

This method instructs the module to send all our current buddies to the AOL server.

$set_config_str($config_str, add_bool)

This parses a config string of the form: g Buddies p permit1 p permit2 d deny1 d deny2 b budd1 b budd2

Key: g - Buddy Group (All Buddies until the next g or the end of config are in this group.) b - A Buddy p - Person on permit list d - Person on deny list m - Permit/Deny Mode. Possible values are 1 - Permit All 2 - Deny All 3 - Permit Some 4 - Deny Some

$aim->normalize($data)

This method normalizes $data by killing all but strict alphnumeric characters. Typically used for screen_names.

<<less
Download (0.021MB)
Added: 2007-08-16 License: Perl Artistic License Price:
802 downloads
Galbum 0.1

Galbum 0.1


GAlbum is currently a small photo album application for Gtk+ and GNOME. more>>
GAlbum is currently a small photo album application for Gtk+ and GNOME. It aims to be a system for media data management.

Currently the available functions support browsing of a collection of digital photos. Galbum indexes photos by content rather than by file name so duplicated photos are handled correctly.

<<less
Download (1.7MB)
Added: 2006-11-27 License: GPL (GNU General Public License) Price:
1061 downloads
libgsf 1.14.5

libgsf 1.14.5


libgsf aims to provide an efficient extensible i/o abstraction for dealing with different structured file formats. more>>
libgsf aims to provide an efficient extensible i/o abstraction for dealing with different structured file formats.

<<less
Download (0.72MB)
Added: 2007-07-11 License: GPL (GNU General Public License) Price:
835 downloads
AIM for Linux 1.5.286

AIM for Linux 1.5.286


AOL Instant Messenger, AIM, is a free online chat service for linux. more>> AOL Instant Messenger, AIM, is a free online chat service for linux.
key features:
Improved Popups Preferences
The wireless icon is the visual indication on the buddy list that a buddy is using a mobile device.
File Transfer (with Drag&Drop support)
Displays idle time
<<less
Download (1.07MB)
Added: 2009-04-14 License: Freeware Price: Free
192 downloads
OBLISK 1.2.1

OBLISK 1.2.1


OBLISK is a packaging system that is distribution independent. more>>
OBLISK, the Open Binary Linux Install System Kit, aims to make any package install on any modern GNU/Linux system.

OBLISK packages are sent in an appdir-like package, so they can be ran entirely in place, but also have an installer, so they can be installed to /usr, or any other path.
<<less
Download (0.084MB)
Added: 2005-11-10 License: MIT/X Consortium License Price:
1443 downloads
TARIFA 1.1.1

TARIFA 1.1.1


TARIFA aims to provide the atomic keyword to C/C++ for better support of concurrency programming. more>>
TARIFA, which stands for Transactions by AssembleR Instrumentation FrAmework, aims to provide the "atomic" keyword to C/C++ for better support of concurrency programming.
Instead of using lock-based designs with all their problems (deadlocks, difficult design, lack of reusability), the "atomic" keyword provides transparent access to an underlying Software Transactional Memory which is responsible for all synchronization work.
Enhancements:
- This release contains a fixed and somewhat faster STM backend, several bugfixes in the instrumentation, improved tests, a general code clean-up, and a dummy STM backend for testing purposes.
<<less
Download (0.067MB)
Added: 2007-03-08 License: GPL (GNU General Public License) Price:
960 downloads
mediadbs 0.04

mediadbs 0.04


mediadbs is a digital media database system. more>>
mediadbs is a project that aims to produce a flexible database system for tracking and searching for multiple forms of electronic media (eg mp3, divx, ogg) distributed on multiple servers in a local network. It currently only supports mp3 format files.

<<less
Download (0.020MB)
Added: 2006-10-17 License: GPL (GNU General Public License) Price:
1102 downloads
DigiTools 1.0

DigiTools 1.0


DigiTools project aims to provide full hardware support on Linux for the specialized equipment. more>>
DigiTools project aims to provide full hardware support on Linux for the specialized equipment that comes standard with the ASUS Digimatrix barebones system.
Enhancements:
- Control of most of the Digimatrix hardware is possible in a limited manner, however currently no progress has been made on usage of the front panel buttons.
- This project is currently utilized by the GeeXboX project to provide better support of the Digimatrix as a home theatre system.
<<less
Download (0.042MB)
Added: 2006-08-01 License: GPL (GNU General Public License) Price:
1189 downloads
Media Listings

Media Listings


Media Listings project aims to provide a comfortable way to see the TV listings of supported TV channels. more>>
Media Listings project aims to provide a comfortable way to see the TV listings of supported TV channels. More exactly, it displays defined number of programs, which are yet to come, based on current date and time.

Clicking one of the displayed programs will start your default browser and navigate to appropriate additional info page of the program.

<<less
Download (0.012MB)
Added: 2007-04-04 License: GPL (GNU General Public License) Price:
940 downloads
OpenXAdES 2.3.7

OpenXAdES 2.3.7


OpenXAdES provides a legally binding digitally signed documents into life. more>>
OpenXAdES provides a legally binding digitally signed documents into life.

OpenXAdES enables people to work with legally-binding digital signatures (primarily giving and verifying them).

Legislation often defines a set of requirements that legal digital signature technologies and infrastructures must be compliant with, and OpenXAdES aims at meeting many, if not all, such requirements from different legislations.

<<less
Download (11MB)
Added: 2007-02-09 License: Other/Proprietary License Price:
987 downloads
Authorize.net AIM Client 1.0

Authorize.net AIM Client 1.0


Authorize.net AIM Client is a PHP client for the AIM API for Authorize.net. more>>
Authorize.net AIM Client is a PHP client for the AIM API for Authorize.net.

Authorize.net customers can use this class to submit credit card charges to authorize.net. This is a PHP port of the Java class com.admc.lm.AIM.

Make sure to verify the checksums, and do not obtain these files from any other location if you dont trust the source or cant verify the download. I am not responsible if you get robbed by hacked versions of my code.

You may redistribute Authorize.net AIM Client according to the BSD open source license.

<<less
Download (0.017MB)
Added: 2005-12-13 License: BSD License Price:
1411 downloads
Cameleon2 1.9.17

Cameleon2 1.9.17


Cameleon aims to become an integrated development environment for Objective-Caml, and eventually other languages. more>>
Cameleon project aims to become an integrated development environment for Objective-Caml, and eventually other languages.
Main features:
- graphical user interface,
- configuration management based on CVS,
- easy access to and browsing of documentation,
- various editors, according to customizable file types,
- use of plug-ins to define new features,
- highly customizable interface (menus, toolbar, keyboard shortcuts).
<<less
Download (0.44MB)
Added: 2006-11-28 License: GPL (GNU General Public License) Price:
620 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5