oscar wilde
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 24
OSCAR Cluster 5.0
OSCAR Cluster is a Linux cluster installer based on best known practices. more>>
OSCAR version 4.0 is a snapshot of the best known methods for building, programming, and using clusters. OSCAR Cluster project consists of a fully integrated and easy to install software bundle designed for high performance cluster computing.
Everything needed to install, build, maintain, and use a modest sized Linux cluster is included in the suite, making it unnecessary to download or even install any individual software packages on your cluster.
<<lessEverything needed to install, build, maintain, and use a modest sized Linux cluster is included in the suite, making it unnecessary to download or even install any individual software packages on your cluster.
Download (5.8MB)
Added: 2006-11-12 License: GPL (GNU General Public License) Price:
1088 downloads
Net::Oscar 1.0
Net::Oscar project is a pure Perl implementation of the OSCAR protocol used by ICQ and AIM instant message clients. more>>
Net::Oscar project is a pure Perl implementation of the OSCAR protocol used by ICQ and AIM instant message clients.
<<less Download (MB)
Added: 2007-06-25 License: GPL (GNU General Public License) Price:
859 downloads
POE::Component::OSCAR 0.05
POE::Component::OSCAR is a POE component for the Net::OSCAR module. more>>
POE::Component::OSCAR is a POE component for the Net::OSCAR module.
SYNOPSIS
use POE qw(Component::OSCAR);
[ ... POE set up ... ]
sub _start { # start an OSCAR session $oscar = POE::Component::OSCAR->new();
# start an OSCAR session with automatic throttling of new connections
# to prevent being banned by the server
$oscar = POE::Component::OSCAR->new( throttle => 4 );
# set up the "im_in" callback to call your state, "im_in_state"
$oscar->set_callback( im_in => im_in_state);
# its good to detect errors if you dont want to get banned
$oscar->set_callback( error => error_state );
$oscar->set_callback( admin_error => admin_erro_stater );
$oscar->set_callback( rate_alert => rate_alert_state );
# sign on
$oscar->signon( screenname => $MY_SCREENNAME, password => $MY_PASSWORD );
}
sub im_in_state { my ($nothing, $args) = @_[ARG0..$#_]; my ($object, $who, $what, $away) = @$args;
print "Got $what from $whon";
}
<<lessSYNOPSIS
use POE qw(Component::OSCAR);
[ ... POE set up ... ]
sub _start { # start an OSCAR session $oscar = POE::Component::OSCAR->new();
# start an OSCAR session with automatic throttling of new connections
# to prevent being banned by the server
$oscar = POE::Component::OSCAR->new( throttle => 4 );
# set up the "im_in" callback to call your state, "im_in_state"
$oscar->set_callback( im_in => im_in_state);
# its good to detect errors if you dont want to get banned
$oscar->set_callback( error => error_state );
$oscar->set_callback( admin_error => admin_erro_stater );
$oscar->set_callback( rate_alert => rate_alert_state );
# sign on
$oscar->signon( screenname => $MY_SCREENNAME, password => $MY_PASSWORD );
}
sub im_in_state { my ($nothing, $args) = @_[ARG0..$#_]; my ($object, $who, $what, $away) = @$args;
print "Got $what from $whon";
}
Download (0.006MB)
Added: 2007-04-18 License: Perl Artistic License Price:
919 downloads
Simple PHP Calendar 1.11
Simple PHP Calendar is a a simple, extensible PHP calendar class. more>>
Simple PHP Calendar is a a simple, extensible PHP calendar class. The project focuses exclusively on generating an HTML representation for a given month. It is meant to be easily extended for use in other applications, such as input widgets for forms, or full event calendaring applications. Its output is completely customizable via CSS.
A simple example
After downloading the class and including it in your PHP script, youre ready to start using it. The constructor requires two paramets, a year and month. The following code produces a very plain looking calendar.
1 require_once( class.Calendar.php );
2 $cal = new Calendar (2004, 3 );
3 echo "".$cal->getFullMonthName()."";
4 echo $cal->display();
Customizing the display
You can use two methods to change how the calendar is displayed. Use setTableWidth to define how wide to make the table, in pixels or as a percentage of the screen. Use setDayNameFormat to change how weekdays are displayed in the header row using strftime formats.
1 require_once(class.Calendar.php);
2 $calendar = new Calendar (2004, 4);
3 $calendar->setTableWidth(50%);
4 $calendar->setDayNameFormat(%A);
5 echo "".$calendar->getBriefMonthName().";
6 echo $calendar->display();
Final Example
You can use CSS selectors to control the formatting of all aspects of the calendar, including adding borders and how empty boxes display. Lets wrap our talbe in a div named calendar and use the following styles.
/* overall table */
#calendar table {
border:1px solid #fff;
padding: 0;
margin:20px;
}
/* the day headers across the top */
#calendar th {
background: #565;
color: #fff;
margin: 3px;
padding: 2px 5px;
}
/* how days this month will look, make dates appear in top right */
#calendar td {
background: #eee;
color: #000;
padding: 2px;
margin:0;
height:60px;
text-align:right;
vertical-align:top;
border:1px solid #fff;
}
/* these are the days falling outside this month */
#calendar td.notInMonth {
background: #999;
}
Enhancements:
- The documentation has been polished.
- An example has been added for extending the class to customize how a calendar grid will display.
<<lessA simple example
After downloading the class and including it in your PHP script, youre ready to start using it. The constructor requires two paramets, a year and month. The following code produces a very plain looking calendar.
1 require_once( class.Calendar.php );
2 $cal = new Calendar (2004, 3 );
3 echo "".$cal->getFullMonthName()."";
4 echo $cal->display();
Customizing the display
You can use two methods to change how the calendar is displayed. Use setTableWidth to define how wide to make the table, in pixels or as a percentage of the screen. Use setDayNameFormat to change how weekdays are displayed in the header row using strftime formats.
1 require_once(class.Calendar.php);
2 $calendar = new Calendar (2004, 4);
3 $calendar->setTableWidth(50%);
4 $calendar->setDayNameFormat(%A);
5 echo "".$calendar->getBriefMonthName().";
6 echo $calendar->display();
Final Example
You can use CSS selectors to control the formatting of all aspects of the calendar, including adding borders and how empty boxes display. Lets wrap our talbe in a div named calendar and use the following styles.
/* overall table */
#calendar table {
border:1px solid #fff;
padding: 0;
margin:20px;
}
/* the day headers across the top */
#calendar th {
background: #565;
color: #fff;
margin: 3px;
padding: 2px 5px;
}
/* how days this month will look, make dates appear in top right */
#calendar td {
background: #eee;
color: #000;
padding: 2px;
margin:0;
height:60px;
text-align:right;
vertical-align:top;
border:1px solid #fff;
}
/* these are the days falling outside this month */
#calendar td.notInMonth {
background: #999;
}
Enhancements:
- The documentation has been polished.
- An example has been added for extending the class to customize how a calendar grid will display.
Download (0.002MB)
Added: 2007-01-24 License: GPL (GNU General Public License) Price:
1013 downloads
Argh! 0.2.3
Argh! is an esoteric programming language. more>>
Argh! is an esoteric programming language in the spirit of Befunge, Brainfuck, and friends. Argh! project is a nice and simple language with two dimensional code-flow, a combined code/data array, an infinite stack, regular characters for all instructions, no strange braces or symbols, no unnecessary arithmetic operators (add and sub are all you need), and countless other features it doesnt have.
The distribution includes interpreters for Argh! and Aargh! (an extended Argh! that is most likely Turing complete), the official specification, editing modes for emacs and vim, and lots of examples.
Installation
To build the interpreters simply type make. This will produce two binaries: `argh the Argh! interpreter and `aargh the extended Argh! (Aargh!) interpreter. For instructions on installing the Emacs Argh! mode please look at the comments in `argh-mode.el.
Usage
Usage is simple, just call the interpreter with the filename of the Argh!-program as first argument:
$ argh ./examples/hello.agh
If the interpreter gets called with no argument, it reads the Argh!-program from stdin.
You can even put "#!/path/to/argh-interpreter" in the first line of your code and make the Argh! program executable. (At least on systems, which understand #!-magic).
<<lessThe distribution includes interpreters for Argh! and Aargh! (an extended Argh! that is most likely Turing complete), the official specification, editing modes for emacs and vim, and lots of examples.
Installation
To build the interpreters simply type make. This will produce two binaries: `argh the Argh! interpreter and `aargh the extended Argh! (Aargh!) interpreter. For instructions on installing the Emacs Argh! mode please look at the comments in `argh-mode.el.
Usage
Usage is simple, just call the interpreter with the filename of the Argh!-program as first argument:
$ argh ./examples/hello.agh
If the interpreter gets called with no argument, it reads the Argh!-program from stdin.
You can even put "#!/path/to/argh-interpreter" in the first line of your code and make the Argh! program executable. (At least on systems, which understand #!-magic).
Download (0.021MB)
Added: 2005-04-15 License: GPL (GNU General Public License) Price:
1653 downloads
Gaim for UNIX 1.4.0
Gaim for UNIX - Universal instant messenger client for AIM, ICQ, MSN, IRC, Yahoo, and Jabber more>>
Gaim is a multi-protocol instant messaging client for Linux, BSD, MacOS X, and Windows. It is compatible with AIM (Oscar and TOC protocols), ICQ, MSN Messenger, Yahoo, IRC, Jabber, Gadu-Gadu, and Zephyr networks.
Gaim users can log in to multiple accounts on multiple IM networks simultaneously. This means that you can be chatting with friends on AOL Instant Messenger, talking to a friend on Yahoo Messenger, and sitting in an IRC channel all at the same time.
Gaim supports many features of the various networks, such as file transfer (coming soon), away messages, typing notification, and MSN window closing notification.
It also goes beyond that and provides many unique features.
A few popular features are Buddy Pounces, which give the ability to notify you, send a message, play a sound, or run a program when a specific buddy goes away, signs online, or returns from idle; and plugins, consisting of text replacement, a buddy ticker, extended message notification, iconify on away, and more.
Enhancements:
- Fix system log start times for some protocols
- SILC compiles with newer SILC toolkit versions (Pekka Riikonen)
- Fixed a bug where buddy icon cache files were left in the icon cache directory after they were no longer in use.
- Attempt to detect the file type of a buddy icon when saving.
- Additional Yahoo! boot protection (Peter Lawler)
- A few Yahoo! memory leaks plugged (Peter Lawler)
- Fixed handling of the new Yahoo! profile page. (Joshua Honeycutt, Peter Lawler)
- Fixed localized Yahoo! room lists. Please refer to the Yahoo! section of the Gaim FAQ for details. (Peter Lawler)
- Enabled sending files to ICQ users using ICQ 5.02 and newer (Jonathan Clark)
<<lessGaim users can log in to multiple accounts on multiple IM networks simultaneously. This means that you can be chatting with friends on AOL Instant Messenger, talking to a friend on Yahoo Messenger, and sitting in an IRC channel all at the same time.
Gaim supports many features of the various networks, such as file transfer (coming soon), away messages, typing notification, and MSN window closing notification.
It also goes beyond that and provides many unique features.
A few popular features are Buddy Pounces, which give the ability to notify you, send a message, play a sound, or run a program when a specific buddy goes away, signs online, or returns from idle; and plugins, consisting of text replacement, a buddy ticker, extended message notification, iconify on away, and more.
Enhancements:
- Fix system log start times for some protocols
- SILC compiles with newer SILC toolkit versions (Pekka Riikonen)
- Fixed a bug where buddy icon cache files were left in the icon cache directory after they were no longer in use.
- Attempt to detect the file type of a buddy icon when saving.
- Additional Yahoo! boot protection (Peter Lawler)
- A few Yahoo! memory leaks plugged (Peter Lawler)
- Fixed handling of the new Yahoo! profile page. (Joshua Honeycutt, Peter Lawler)
- Fixed localized Yahoo! room lists. Please refer to the Yahoo! section of the Gaim FAQ for details. (Peter Lawler)
- Enabled sending files to ICQ users using ICQ 5.02 and newer (Jonathan Clark)
Download (5MB)
Added: 2009-04-01 License: Freeware Price:
213 downloads
pork 0.99.8.1
pork is an ncurses-based AOL instant messenger client. more>>
pork is an ncurses-based AOL instant messenger client. It uses the OSCAR protocol (the one the windows client uses) to access AIM.
Pork features Perl scripting; an online help system; the ability to configure nearly all aspects of the programs look-and-feel; an alias system; and a powerful, fully-configurable key binding system. It supports being logged in with more than one screen name at the same time.
The default look-and-feel of the client is modeled after the ircII IRC client. Anyone comfortable using ircII (or any clients derived from it; e.g., epic, BitchX, etc.) will feel comfortable using pork.
Installation:
The `configure shell script attempts to guess correct values for various system-dependent variables used during compilation.
It uses those values to create a `Makefile in each directory of the package. It may also create one or more `.h files containing system-dependent definitions.
Finally, it creates a shell script `config.status that you can run in the future to recreate the current configuration, a file `config.cache that saves the results of its tests to speed up
reconfiguring, and a file `config.log containing compiler output (useful mainly for debugging `configure).
If you need to do unusual things to compile the package, please try to figure out how `configure could check whether to do them, and mail diffs or instructions to the address given in the `README so they can be considered for the next release.
If at some point `config.cache contains results you dont want to keep, you may remove or edit it.
The file `configure.in is used to create `configure by a program called `autoconf. You only need `configure.in if you want to change it or regenerate `configure using a newer version of `autoconf.
The simplest way to compile this package is:
1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system.
If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute
`configure itself.
Running `configure takes awhile. While running, it prints some messages telling which features it is checking for.
2. Type `make to compile the package.
3. Optionally, type `make check to run any self-tests that come with the package.
4. Type `make install to install the programs and any data files and documentation.
5. You can remove the program binaries and object files from the source code directory by typing `make clean. To also remove the files that `configure created (so you can compile the package for a different kind of computer), type `make distclean.
There is also a `make maintainer-clean target, but that is intended mainly for the packages developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.
<<lessPork features Perl scripting; an online help system; the ability to configure nearly all aspects of the programs look-and-feel; an alias system; and a powerful, fully-configurable key binding system. It supports being logged in with more than one screen name at the same time.
The default look-and-feel of the client is modeled after the ircII IRC client. Anyone comfortable using ircII (or any clients derived from it; e.g., epic, BitchX, etc.) will feel comfortable using pork.
Installation:
The `configure shell script attempts to guess correct values for various system-dependent variables used during compilation.
It uses those values to create a `Makefile in each directory of the package. It may also create one or more `.h files containing system-dependent definitions.
Finally, it creates a shell script `config.status that you can run in the future to recreate the current configuration, a file `config.cache that saves the results of its tests to speed up
reconfiguring, and a file `config.log containing compiler output (useful mainly for debugging `configure).
If you need to do unusual things to compile the package, please try to figure out how `configure could check whether to do them, and mail diffs or instructions to the address given in the `README so they can be considered for the next release.
If at some point `config.cache contains results you dont want to keep, you may remove or edit it.
The file `configure.in is used to create `configure by a program called `autoconf. You only need `configure.in if you want to change it or regenerate `configure using a newer version of `autoconf.
The simplest way to compile this package is:
1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system.
If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute
`configure itself.
Running `configure takes awhile. While running, it prints some messages telling which features it is checking for.
2. Type `make to compile the package.
3. Optionally, type `make check to run any self-tests that come with the package.
4. Type `make install to install the programs and any data files and documentation.
5. You can remove the program binaries and object files from the source code directory by typing `make clean. To also remove the files that `configure created (so you can compile the package for a different kind of computer), type `make distclean.
There is also a `make maintainer-clean target, but that is intended mainly for the packages developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.
Download (0.48MB)
Added: 2005-10-13 License: GPL (GNU General Public License) Price:
1471 downloads
BBCD - Bootable Cluster CD 2.2.1c
The BCCD was created to facilitate instruction of parallel computing aspects and paradigms. more>>
BCCD - Bootable Cluster CD was created to facilitate instruction of parallel computing aspects and paradigms. Part of the difficulty instructors face is lack of dedicated resources to explore distributed computing aspects lack of time to preconfigure and test the supporting environment.
The BCCD image addresses this problem by providing a non-destructive overlay way to run a full-fledged parallel computing environment on just about any workstation-class system...Were happy to say that this now includes the MAC too!
The BCCD does share similarities with a few diskless solutions for clustering, such as the Warewulf project, the thin-OSCAR approach, Cluster Knoppix (only an openMosix system, no MPI/LAM/PVM build tools, ...), and so on. This is definitely the trend in HPC. But the main differences are that the BCCD will always fit in your pocket, be highly customizable for specific institutions needs, and will always be geared toward education and not dedicated clusters.
The "gar" build system also sets the BCCD apart from other projects. "gar" is a mix between BSDs "ports" system, Linux from scratch, and gentoo Linux. With gar, you can build an entire BCCD image from net-fetched sources in about two hours (assuming you have a primed ccache!).
The BCCD is also distinctly different from NPACI-Rocks, OSCAR, Cluster in a box or other type of mass-imaging clustering project for two reasons:
1. Its a non-destructive overlay on top of the current hardware. Once a system is rebooted, it reverts back to its original state. It is intended to be booted "over top" of a currently-configured Windows/Linux/BSD/etc. system.
2. Its focus in on educational aspects of High-Performance Computing (HPC) instead of the HPC core. Students will have a much better appreciation and understanding of how to tweak an MTU setting or wire the topology across a cluster if they understand how a distributed computation is laid out! Emphasis is placed upon building, configuring, and running distributed applications.
<<lessThe BCCD image addresses this problem by providing a non-destructive overlay way to run a full-fledged parallel computing environment on just about any workstation-class system...Were happy to say that this now includes the MAC too!
The BCCD does share similarities with a few diskless solutions for clustering, such as the Warewulf project, the thin-OSCAR approach, Cluster Knoppix (only an openMosix system, no MPI/LAM/PVM build tools, ...), and so on. This is definitely the trend in HPC. But the main differences are that the BCCD will always fit in your pocket, be highly customizable for specific institutions needs, and will always be geared toward education and not dedicated clusters.
The "gar" build system also sets the BCCD apart from other projects. "gar" is a mix between BSDs "ports" system, Linux from scratch, and gentoo Linux. With gar, you can build an entire BCCD image from net-fetched sources in about two hours (assuming you have a primed ccache!).
The BCCD is also distinctly different from NPACI-Rocks, OSCAR, Cluster in a box or other type of mass-imaging clustering project for two reasons:
1. Its a non-destructive overlay on top of the current hardware. Once a system is rebooted, it reverts back to its original state. It is intended to be booted "over top" of a currently-configured Windows/Linux/BSD/etc. system.
2. Its focus in on educational aspects of High-Performance Computing (HPC) instead of the HPC core. Students will have a much better appreciation and understanding of how to tweak an MTU setting or wire the topology across a cluster if they understand how a distributed computation is laid out! Emphasis is placed upon building, configuring, and running distributed applications.
Download (200MB)
Added: 2006-03-26 License: GPL (GNU General Public License) Price:
1316 downloads
Syntax CMS 1.3.0
Syntax CMS simplifies publishing varied content to a site. more>>
SyntaxCMS simplifies publishing various types of content to a site, facilitates creating and managing arbitrary relationships among content items, automates and accelerates custom development, and encourages reuse of site components with other SyntaxCMS installations.
Syntax CMS is built using PHP and MySQL.
For Content Managers and Creators
- Create and edit site content online.
- Approve content before publishing to web.
- Set content items to publish/expire at a given time.
- Build complex site hierarchies using sections to organize content without creating HTML or template files.
- Restrict access and actions to content types by groups of users.
For Developers
- Define new content types on-the-fly. SyntaxCMS automatically provides forms for adding and editing content and base classes for working with content types in PHP code.
- Use the Collections and Filters API to query the database for matching objects without having to write SQL.
- Customize the look and layout of any part of the site using PHP.
Enhancements:
- Various performance enhancements and API improvements.
- New modules for working with RSS/Atom feeds, publishing a blog, and better default behavior.
<<lessSyntax CMS is built using PHP and MySQL.
For Content Managers and Creators
- Create and edit site content online.
- Approve content before publishing to web.
- Set content items to publish/expire at a given time.
- Build complex site hierarchies using sections to organize content without creating HTML or template files.
- Restrict access and actions to content types by groups of users.
For Developers
- Define new content types on-the-fly. SyntaxCMS automatically provides forms for adding and editing content and base classes for working with content types in PHP code.
- Use the Collections and Filters API to query the database for matching objects without having to write SQL.
- Customize the look and layout of any part of the site using PHP.
Enhancements:
- Various performance enhancements and API improvements.
- New modules for working with RSS/Atom feeds, publishing a blog, and better default behavior.
Download (2.9MB)
Added: 2006-05-05 License: Common Public License Price:
1267 downloads
Twisted Words 0.4.0
Twisted Words provides implementations of a handful of IM protocols, including IRC, MSNP8, OSCAR, TOC, and Jabber. more>>
Twisted Words library provides implementations of a handful of IM protocols, including IRC, MSNP8, OSCAR, TOC, and Jabber.
Twisted Words provides two separate high-level end-user features:
a multiprotocol instant messaging server
a multiprotocol instant messaging client
These are both still in the early stages of development and are not expected to work flawlessly in all configurations, however each is quite usable for a limited set of functionality. A Twisted Words server can be created with just a couple commands:
$ mktap words --irc-port 6667 --pb-port 8787 --passwd password_file --group somegroup
$ twistd -f words.tap
The Twisted Words client is named im and is usable as an IRC client, and possibly an AIM client (depending on the phase of the moon).
Low Level Functionality:
Twisted Words also includes:
Low-level protocol implementations of OSCAR (AIM and ICQ), IRC, MSN, TOC (AIM).
Jabber libraries.
Prototypes of chat server and client frameworks built on top of the protocols.
<<lessTwisted Words provides two separate high-level end-user features:
a multiprotocol instant messaging server
a multiprotocol instant messaging client
These are both still in the early stages of development and are not expected to work flawlessly in all configurations, however each is quite usable for a limited set of functionality. A Twisted Words server can be created with just a couple commands:
$ mktap words --irc-port 6667 --pb-port 8787 --passwd password_file --group somegroup
$ twistd -f words.tap
The Twisted Words client is named im and is usable as an IRC client, and possibly an AIM client (depending on the phase of the moon).
Low Level Functionality:
Twisted Words also includes:
Low-level protocol implementations of OSCAR (AIM and ICQ), IRC, MSN, TOC (AIM).
Jabber libraries.
Prototypes of chat server and client frameworks built on top of the protocols.
Download (0.13MB)
Added: 2006-05-29 License: MIT/X Consortium License Price:
1246 downloads
SIM Instant Messenger 0.9.4.3
SIM Instant Messenger provides an plugins-based instant messenger with support for various protocols. more>>
SIM Instant Messenger provides an plugins-based instant messenger with support for various protocols.
Based on the Qt library it works on X11 (optional with KDE-support), MS Windows and MacOS X.
Main modules
- Core (_core) is the program interface
- Migrate (__migrate) Converts the old SIM 0.8.3-settings to the new 0.9x format
- Homedir (__homedir) sets the configuration-directory
Protocols modules
All protocols support richtext-messages, file transfer, typing notification, server-side contact list (with postponed synchronization - you can change contact list in offline mode and after log on all changes will be synchronized with server), new account registration, various searches and HTTP-polling.
You can use multiple accounts for each protocol.
- Oscar - ICQ and AIM support
- Jabber
- LiveJournal
- MSN
- Yahoo!
Enhancements:
Build system
- Autotools: fix libXss detection.
- Add initial CMake support.
Core
- Disable history filter when it is empty.
- Remove "To container" menu when separate containers are disabled.
- Auto scroll message view only if it is scrolled to the bottom.
- XFree: fix problems with Composite extension enabled.
ICQ plugin
- More fixes for receiving certain messages.
<<lessBased on the Qt library it works on X11 (optional with KDE-support), MS Windows and MacOS X.
Main modules
- Core (_core) is the program interface
- Migrate (__migrate) Converts the old SIM 0.8.3-settings to the new 0.9x format
- Homedir (__homedir) sets the configuration-directory
Protocols modules
All protocols support richtext-messages, file transfer, typing notification, server-side contact list (with postponed synchronization - you can change contact list in offline mode and after log on all changes will be synchronized with server), new account registration, various searches and HTTP-polling.
You can use multiple accounts for each protocol.
- Oscar - ICQ and AIM support
- Jabber
- LiveJournal
- MSN
- Yahoo!
Enhancements:
Build system
- Autotools: fix libXss detection.
- Add initial CMake support.
Core
- Disable history filter when it is empty.
- Remove "To container" menu when separate containers are disabled.
- Auto scroll message view only if it is scrolled to the bottom.
- XFree: fix problems with Composite extension enabled.
ICQ plugin
- More fixes for receiving certain messages.
Download (MB)
Added: 2007-03-05 License: GPL (GNU General Public License) Price:
979 downloads
jcq2k 1.0.5
jcq2k is an ICQ Java client, implemented as an opensource LGPL library, for handling the TCP-based ICQ2000 OSCAR v.7 protocol. more>>
jcq2k is an ICQ Java client, implemented as an opensource LGPL library, for handling the TCP-based ICQ2000 OSCAR v.7 protocol. Incoming offline messages do not work but it looks like that the fix by James Hui solves this issue.
<<less Download (0.35MB)
Added: 2006-07-18 License: LGPL (GNU Lesser General Public License) Price:
1198 downloads
climm 0.6.4
A very portable text-mode ICQ clone. more>>
climm 0.6.4 provides you a professional and very portable text-mode ICQ clone which is designed to compile under Linux, BSD, AIX, HPUX, Windows, AmigaOS and with restrictions BeOS. Originally written by Matthew D. Smith, a great part of climm has been rewritten by Rdiger Kuhlmann, in particular the support for the new version 8 of the OSCAR protocol that became necessary, the internationalization, the file transfer and some restructuring of the code.
Major Features:
- Login: login with both the old v6 and the new v8 protocol
- Register: register new uins and setup configuration with an easy to use setup wizard
- Password: changing password
- Reconnect: reconnects when kicked by server
- Contact list: complete contact list with several ways for a concise display of online/offline users
- Status: set status arbitrarily
- Messages: send and receive messages and urls
- Acknowledged messages: send ackowledged messages to clients who understand them
- UTF-8 encoded messages: send UTF-8 encoded messages to clients who understand them
- sms: send SMS to users cell phone
- User info: request and update all user and personal information
- Search: easy search command, can search by (nearly) any information
- Visibility: be visible to certain users even when invisible, or be invisible to certain users at any time
- Ignore: ignore certain users completely
- Chat group: request user from interest group and set owns interest group
- Events: can beep or execute arbitrary commands when other users go online, offline or send a message.
- Connections: can show a users connection info and last seen online time
- Peek: check whether someone is offline or just invisible
- tcp: full support of v8 direct connections
- SSL: supports SSL encrypted connections a la licq
- Tcl: supports scripting via the Tcl scripting language
- File transfer: full support of sending/receiving v6,v7,v8 (batch) file transfers
- Auto messages: auto replys if away, request and send auto messages
- Identification: recognizes climm/mICQ, licq, Miranda, StrICQ, &RQ, alicq, SIM, Kopete, vICQ including version number, and YSM, libicq2000-based, ICQ 2001, ICQ 2002, Trillian, ICQ2go, ICQ Lite, partially ICQ 2000
- History: writes a log of all messages to and from a user
- Debugging: easy debugging by selecting what data to display, including concise packet monitor
- i18n: translations include English, German, Serbian, Portuguese, Ukrainian, Japanese, partially Russian, French, Spanish, Romanian, Italian.
- Transcoding: transcode texts for Russian and Japanese users.
- Birthday flag: show if it is users birthday
- Socks5: supports connections via socks5
Enhancements:
- Lots of bugs were fixed.
- Some improvements were made to XMPP.
- SOCKS 5 configuration per connection was implemented.
- Layout changes related to XMPP were made.
Added: 2009-02-27 License: GPL Price: FREE
10 downloads
Alicq 0.8.9
Alicq is a pure Tcl/Tk implementation of ICQ client. more>>
Alicq is a pure Tcl/Tk implementation of ICQ client. Alicq has flexible modularized architecture, support for ICQv8 (ICQ2000/OSCAR) protocol.
Why would you use it?
- It is small
- It is modular and extendable in best tradition of the Tcl scripting language. New modules are easy to write, and dozen lines Tcl module can do a lot
- It is crossplatfrom
- It supports unicode
- It allows localization and internationalization
- It can be controlled from command line or other programs
Main features:
General features
- Multiplatform. Can work in Unix, Windows, MacOS environments on different processor architectures. It can be run on any system having Tcl/Tk interpreter
- Highly modularized architecture, which allows easily create new and replace existing modules
- It can be controlled from command line using send command available in Tk for X11 windowing system
- Interface can be translated into different languages easily, Alicq is locale-aware
- ICQ support is based on Tcl ICQ library
- Unicode messages
- Allows specify encoding for contacts which do not support unicode
- Big messages splitting and combining
- Server-side contact list support: reading, adding, deleting and modifying contacts and groups is server-side list to keep it synchronous with local one
- ICQ Whitepages support
- New UIN registration
- HTTP(S) proxy support
- Several proxies can be specified
Interface
- Interface can be customized via X resource database
- Basic contact-list module provide standard features, such as show/hide offline contacts, show/hide empty groups
- Nested groups supported to simplify usage of big contact lists (this information is only awailable in local contact list)
- Contacts can be members of different groups at the same time (available only in local contact list)
- Different modes of contact and groups sorting. Making new sorting rule is very easy
- Different modes of contact grouping: plain, by groups, by status, offline/online. Making new grouping rule is very easy
- Quicksearch allows quickly find contact in contact list by typing its alias or ICQ UIN
- Tabbed contact dialog window.
Other useful features
- Antispam module provides spam-filtering feature
- Experimantal encryption module allows use GPG to encrypt/decrypt important messages sent via ICQ server
- Url highlighting and launching is provided by URL module
- Saving of windows sizes and positions
Enhancements:
- Fixes in user interface
- Updated configuration dialog
- Enhancements in messages and error handling
- Additional modules: spelling, translit
- Bugfixes
<<lessWhy would you use it?
- It is small
- It is modular and extendable in best tradition of the Tcl scripting language. New modules are easy to write, and dozen lines Tcl module can do a lot
- It is crossplatfrom
- It supports unicode
- It allows localization and internationalization
- It can be controlled from command line or other programs
Main features:
General features
- Multiplatform. Can work in Unix, Windows, MacOS environments on different processor architectures. It can be run on any system having Tcl/Tk interpreter
- Highly modularized architecture, which allows easily create new and replace existing modules
- It can be controlled from command line using send command available in Tk for X11 windowing system
- Interface can be translated into different languages easily, Alicq is locale-aware
- ICQ support is based on Tcl ICQ library
- Unicode messages
- Allows specify encoding for contacts which do not support unicode
- Big messages splitting and combining
- Server-side contact list support: reading, adding, deleting and modifying contacts and groups is server-side list to keep it synchronous with local one
- ICQ Whitepages support
- New UIN registration
- HTTP(S) proxy support
- Several proxies can be specified
Interface
- Interface can be customized via X resource database
- Basic contact-list module provide standard features, such as show/hide offline contacts, show/hide empty groups
- Nested groups supported to simplify usage of big contact lists (this information is only awailable in local contact list)
- Contacts can be members of different groups at the same time (available only in local contact list)
- Different modes of contact and groups sorting. Making new sorting rule is very easy
- Different modes of contact grouping: plain, by groups, by status, offline/online. Making new grouping rule is very easy
- Quicksearch allows quickly find contact in contact list by typing its alias or ICQ UIN
- Tabbed contact dialog window.
Other useful features
- Antispam module provides spam-filtering feature
- Experimantal encryption module allows use GPG to encrypt/decrypt important messages sent via ICQ server
- Url highlighting and launching is provided by URL module
- Saving of windows sizes and positions
Enhancements:
- Fixes in user interface
- Updated configuration dialog
- Enhancements in messages and error handling
- Additional modules: spelling, translit
- Bugfixes
Download (0.16MB)
Added: 2006-05-24 License: GPL (GNU General Public License) Price:
1250 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
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 oscar wilde 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