aim
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1116
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)
<<lessThis 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)
Download (1.07MB)
Added: 2005-04-25 License: LGPL (GNU Lesser General Public License) Price:
1714 downloads
SimpleAIM
A miniature console based AIM client written in pure Java. more>>
A miniature console based AIM client written in pure Java. It implements the TOC protocol and provides a solid framework for understanding and writing your own IM clients or bots. Project SimpleAIM is an open source development project aimed at providing platform independence and interoperability in the realm of instant messaging services.
This document describes the TOC protocol. The protocol is built on TCP. Framing is done by SFLAP, described at the bottom of this document. Inside each
SFLAP frame is a TOC command.
The TOC protocol is ASCII based, and special attention must be placed argument separation. The separator and the rules of separation are different for messages inbound
to TOC and outbound to the client. The rules of separation are described in sections below.
The TOC server is built mainly to service the TIC and TiK clients. Since the TIC client is a Java applet, and downloadable, TOC will NOT support multiple TOC protocol versions at the same time. Therefore, TiK users will be forced to upgrade if the protocol version changes.
TOC sends down the protocol version it expects the client to speak and understand. Note, the protocol version is a string.
<<lessThis document describes the TOC protocol. The protocol is built on TCP. Framing is done by SFLAP, described at the bottom of this document. Inside each
SFLAP frame is a TOC command.
The TOC protocol is ASCII based, and special attention must be placed argument separation. The separator and the rules of separation are different for messages inbound
to TOC and outbound to the client. The rules of separation are described in sections below.
The TOC server is built mainly to service the TIC and TiK clients. Since the TIC client is a Java applet, and downloadable, TOC will NOT support multiple TOC protocol versions at the same time. Therefore, TiK users will be forced to upgrade if the protocol version changes.
TOC sends down the protocol version it expects the client to speak and understand. Note, the protocol version is a string.
Download (0.070MB)
Added: 2006-06-17 License: GPL (GNU General Public License) Price:
1227 downloads
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.
<<lessSYNOPSIS
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.
Download (0.021MB)
Added: 2007-08-16 License: Perl Artistic License Price:
802 downloads
ptyaim 0.5.7
ptyaim is a very simple, extra special curses client for AOLs Instant Messenger (AIM) and ICQ services, plus IRC. more>>
ptyaim is a very simple, extra special curses client for AOLs Instant Messenger (AIM) and ICQ services, plus Internet Relay Chat (IRC). ptyaims project interface is somewhat inspired by naim. However, it uses no code from naim.
The latest version of ptyaim has been tested on Linux, FreeBSD, OpenBSD, NetBSD, Solaris, Tru64 Unix, Mac OS 10.3, and Microsoft Windows 2000. Most likely, it will work on other platforms, too.
Enhancements:
- This new version of ptyaim features improvements to the OSCAR plugin, including support for group chat.
- The TOC plugin has also been removed.
<<lessThe latest version of ptyaim has been tested on Linux, FreeBSD, OpenBSD, NetBSD, Solaris, Tru64 Unix, Mac OS 10.3, and Microsoft Windows 2000. Most likely, it will work on other platforms, too.
Enhancements:
- This new version of ptyaim features improvements to the OSCAR plugin, including support for group chat.
- The TOC plugin has also been removed.
Download (0.10MB)
Added: 2005-12-30 License: GPL (GNU General Public License) Price:
1393 downloads
JClaim 4.4.37
JClaim is an instant message client, tools, and development framework. more>>
JClaim is an instant message client, tools, and development framework. JClaim supports AIM, Yahoo!, MSN, ICQ, Jabber, and SMS.
The framework can be used for designing your own tools. The UI includes spell checking and a lot more. A Web interface is included for remote access.
<<lessThe framework can be used for designing your own tools. The UI includes spell checking and a lot more. A Web interface is included for remote access.
Download (MB)
Added: 2007-06-26 License: GPL (GNU General Public License) Price:
874 downloads
WebChat2aim 1.0
WebChat2aim is a server that will connect/disconnect your AIM bot. more>>
WebChat2aim is a server that will connect/disconnect your AIM bot. It provides a bridge API to connect your Web visitors to your AIM API.
The script allows your Web site to broadcast and then allow a CSR to answer the incoming requests. Your Web site uses curl et al to command and control the actual persistent AIM connection.
<<lessThe script allows your Web site to broadcast and then allow a CSR to answer the incoming requests. Your Web site uses curl et al to command and control the actual persistent AIM connection.
Download (MB)
Added: 2007-07-31 License: GPL (GNU General Public License) Price:
815 downloads
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.
<<lessYou 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.
Download (0.040MB)
Added: 2006-01-23 License: GPL (GNU General Public License) Price:
1373 downloads
naim 0.11.8.3.1
naim is the original ncurses (console) AIM client, which also supports IRC, ICQ, and Lily CMC. more>>
naim project is the original ncurses, console-based AIM client, which also supports IRC, ICQ, and Lily CMC.
For AIM and ICQ, it uses the TOC protocol, and includes many commonly-requested features found nowhere else, while still preserving naims classic look and feel.
Main features:
- naim includes unique features like zero-configuration peer to peer encryption, automatic message queueing, and incoming message modification (to correct common spelling mistakes and expand common abbreviations; see /help filter).
- naim also includes powerful dynamic module support, allowing developers to modify all major aspects of naims behavior.
- Third-party plug-ins have been used to extend naims functionality for use in embedded monitoring clients, and for use as host to automatic clients ("bots").
- The naim-modules package (distributed below) includes several example plug-ins, including a telnet server (nsocket), an interactive bot (naimusers), and a simple anti-spam measure (nantispam).
- When combined with GNU Screen, naim is great to use as a chat client as well as an answering machine. Individual users can detach, log out, pack up and go home, then log back in from anywhere on the Internet to resume their naim session.
- naim is maintained by an OPEN, DIRECTED COMMUNITY, and has been in development since October, 1998.
<<lessFor AIM and ICQ, it uses the TOC protocol, and includes many commonly-requested features found nowhere else, while still preserving naims classic look and feel.
Main features:
- naim includes unique features like zero-configuration peer to peer encryption, automatic message queueing, and incoming message modification (to correct common spelling mistakes and expand common abbreviations; see /help filter).
- naim also includes powerful dynamic module support, allowing developers to modify all major aspects of naims behavior.
- Third-party plug-ins have been used to extend naims functionality for use in embedded monitoring clients, and for use as host to automatic clients ("bots").
- The naim-modules package (distributed below) includes several example plug-ins, including a telnet server (nsocket), an interactive bot (naimusers), and a simple anti-spam measure (nantispam).
- When combined with GNU Screen, naim is great to use as a chat client as well as an answering machine. Individual users can detach, log out, pack up and go home, then log back in from anywhere on the Internet to resume their naim session.
- naim is maintained by an OPEN, DIRECTED COMMUNITY, and has been in development since October, 1998.
Download (0.40MB)
Added: 2007-07-13 License: GPL (GNU General Public License) Price:
834 downloads
daim-java 3.5.1
An instant messaging client and library supporting AIM and ICQ. more>>
daim-java is an instant messaging client and library supporting AIM and ICQ. A graphical user interface (GUI) for daim is in early development. Currently, the GUI only supports normal Instant Messaging and some Buddy List functionality. The features listed above as supported refer only to the library portion of daim. Most features have not yet been implemented in the Swing client. As soon as someone has created the GUI components for various protocol features, they can be added to the existing client quite easily.
daim supports scripting through Apache BSF. Sample Jython scripts can be found in the script/ directory in CVS, but any language supported by BSF is supported by daim, including JavaScript and Tcl (among others).
You may log in using your ICQ UIN and password using daim. daim has full support for the non-TCP portion of the ICQ protocol up to ICQ 2003a.
In addition to ICQ, daim can connect to Apples iChat client, and daim supports iChat available messages as well.
In addition to ICQ, daim can emulate Apples iChat client, and daim supports iChat available messages as well.
Main features:
- daim already supports many features, including Add-Ins, AIM Proxy, Buddy Icon, Chat, Direct IM, File Transfer, File Sharing, Send Buddy List and Trillian SecureIM. daim also supports retrieving News and Stocks. daim tries to support as many features as possible from WinAIM 5.2.
<<lessdaim supports scripting through Apache BSF. Sample Jython scripts can be found in the script/ directory in CVS, but any language supported by BSF is supported by daim, including JavaScript and Tcl (among others).
You may log in using your ICQ UIN and password using daim. daim has full support for the non-TCP portion of the ICQ protocol up to ICQ 2003a.
In addition to ICQ, daim can connect to Apples iChat client, and daim supports iChat available messages as well.
In addition to ICQ, daim can emulate Apples iChat client, and daim supports iChat available messages as well.
Main features:
- daim already supports many features, including Add-Ins, AIM Proxy, Buddy Icon, Chat, Direct IM, File Transfer, File Sharing, Send Buddy List and Trillian SecureIM. daim also supports retrieving News and Stocks. daim tries to support as many features as possible from WinAIM 5.2.
Download (MB)
Added: 2006-06-17 License: LGPL (GNU Lesser General Public License) Price:
1229 downloads

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
Gaim-Assistant 0.1.0
Gaim Assistant is a plugin to Gaim that will allow you to forward messages to a different screen name should you become away. more>>
Gaim Assistant is a plugin to Gaim that will allow you to forward messages to a
different screen name should you become away. Its quite handy for those of you
out there that use AIM over mobile devices as well as at home. It has some
neat features built into the current release.
Main features:
- Account Forwarding
- Forward Message Queuing
- Auto Response Throttling
- Forwarding Security Options
<<lessdifferent screen name should you become away. Its quite handy for those of you
out there that use AIM over mobile devices as well as at home. It has some
neat features built into the current release.
Main features:
- Account Forwarding
- Forward Message Queuing
- Auto Response Throttling
- Forwarding Security Options
Download (0.20MB)
Added: 2005-07-26 License: GPL (GNU General Public License) Price:
1553 downloads
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.
<<lessAuthorize.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.
Download (0.017MB)
Added: 2005-12-13 License: BSD License Price:
1411 downloads
Eimp 1.0
Eclipse Instant Messenger Plugin is a plugin for Eclipse. more>>
Eclipse Instant Messenger Plugin is a plugin for Eclipse. It integrates some popular im protocols(MSN,YAHOO,ICQ,AIM,etc.). Eclipse is a kind of universal tool platform - an open extensible IDE for anything and nothing in particular. You can have more infomation from www.eclipse.org.
<<less Download (2.8MB)
Added: 2006-06-16 License: BSD License Price:
1227 downloads
Jaffm 1.4
Jaffm is a lightweight GUI (wxGTK) file manager for Unix. more>>
Jaffm stands for "Just A Fucking File Manager" and is supposed to be a lightweight file-manager for Unix.
No needless features, only usefulness. Its direct aim is to brainwash those who use terminals as file managers.
Enhancements:
- The program is much faster.
- All known bugs which caused crashes were fixed.
- A status bar was introduced.
- Configuration was made easier to understand.
- Massive code cleanup was done.
- The license was changed from the GPL to a BSD-style license.
<<lessNo needless features, only usefulness. Its direct aim is to brainwash those who use terminals as file managers.
Enhancements:
- The program is much faster.
- All known bugs which caused crashes were fixed.
- A status bar was introduced.
- Configuration was made easier to understand.
- Massive code cleanup was done.
- The license was changed from the GPL to a BSD-style license.
Download (0.017MB)
Added: 2006-06-14 License: BSD License Price:
1227 downloads
wtime 0.2
wtime is a command line utility providing a way to track time spent on arbitrary tasks. more>>
wtime is a command line utility providing a way to track time spent on arbitrary tasks. The program serves as a front-end for plain text files that hold time data.
wtime provides a way to start/stop counting, display elapsed time, and display time spent in the selected time interval (defined by start and end date). The aim is to keep the program as simple as possible.
<<lesswtime provides a way to start/stop counting, display elapsed time, and display time spent in the selected time interval (defined by start and end date). The aim is to keep the program as simple as possible.
Download (0.004MB)
Added: 2006-06-17 License: MIT/X Consortium License Price:
1224 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 aim 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