java irc chat
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2793
Wap IRC Gateway 0.30
Wap-IRC gateway allows you to chat on IRC with any WAP-enabled mobile phone. more>>
Wap-IRC gateway allows you to chat on IRC with any WAP-enabled mobile phone. It works by running the server program on a Unix-like system that is accessible over the Internet. It doesnt require phones which have programs written in Java.
I am Tomas Vilda, student studying at University of Vilnius, Lithuania. I started interested in wap when I bought my first wap enabled mobile phone. I searched for the running irc-wap gateway. But with no success. Actually, I found some, but no such, that I make to connect to specified IRC server. Then I found wapirc gateway written by Alan Cox . I tried it on my FreeBSD server. During compilation I got error, because of bad Makefile. So I compiled it by correcting Makefile and ran successful. My mobile is Siemens C55. To start using this wapirc gateway I have to make some modifications. They are listed below.
Enhancements:
- cgi/main():refresh included into main-cgi, saves us .htaccess and external wmlscript
- cgi/write_wml(): fixed bug in linked nicks with ACTIONs and * in there.
- server/parseinput(): Added /me Command for * ACTION in channels
- cgi/write_card(): get refresh timer from config.h
- server/removeallitems(): doing a list cleanup when disconnecting, so we can rejoin after quit without part
- server/print_out(): screenbuffer with latest messages, scrolling top down
- cgi/write_card(): reload on a regular basis, when not typing something in. New formular works on more phones, informative header
- cgi/wml_link()/wml_header(): wml1.2 compatible links/input field for accesskey element
- cgi/write_wml(): new linewise printout, italic makeup, nicks are linked setting defaultvalues for talking on channels and privat.
- cgi/main(): Expire header
- Makefile: make install
<<lessI am Tomas Vilda, student studying at University of Vilnius, Lithuania. I started interested in wap when I bought my first wap enabled mobile phone. I searched for the running irc-wap gateway. But with no success. Actually, I found some, but no such, that I make to connect to specified IRC server. Then I found wapirc gateway written by Alan Cox . I tried it on my FreeBSD server. During compilation I got error, because of bad Makefile. So I compiled it by correcting Makefile and ran successful. My mobile is Siemens C55. To start using this wapirc gateway I have to make some modifications. They are listed below.
Enhancements:
- cgi/main():refresh included into main-cgi, saves us .htaccess and external wmlscript
- cgi/write_wml(): fixed bug in linked nicks with ACTIONs and * in there.
- server/parseinput(): Added /me Command for * ACTION in channels
- cgi/write_card(): get refresh timer from config.h
- server/removeallitems(): doing a list cleanup when disconnecting, so we can rejoin after quit without part
- server/print_out(): screenbuffer with latest messages, scrolling top down
- cgi/write_card(): reload on a regular basis, when not typing something in. New formular works on more phones, informative header
- cgi/wml_link()/wml_header(): wml1.2 compatible links/input field for accesskey element
- cgi/write_wml(): new linewise printout, italic makeup, nicks are linked setting defaultvalues for talking on channels and privat.
- cgi/main(): Expire header
- Makefile: make install
Download (0.019MB)
Added: 2006-06-16 License: GPL (GNU General Public License) Price:
1248 downloads
AjaxChat 1.2
AjaxChat is a simple, fast, and customizable chat server that uses Ajax. more>>
AjaxChat is a simple, fast, and customizable chat server that uses Ajax to smoothly refresh and display the chat zone and the nickname zone.
AjaxChat project supports customized CSS stylesheets and plugins.
Online chat is a generic term for what are now mostly known as instant messaging applications-computer programs that enable two-way typing to connect users to each other.
However, there are net dating systems and other online services that do not use these applications to provide chat facilities, e.g., Delphi, often relying on HTTP-based protocols instead. Sometimes these are called a chat room or chat extending the physical metaphors of sites and magazines which many web services exploit.
Today there are many chat rooms, some incorporating instant messaging features without having to install additional chat software. These chatrooms often have friend finders built in.
Some of these systems also provide telephone voice mail access. These are usually known generically as just chat systems.
A chat log is a record of a chat. Sometimes this is put on the web.
The earliest online chat system widely used was probably the Unix talk facility. The earliest one in general use was likely the French Minitel. During the 1980s, online chat was made available on CompuServe and DDial servers, and later on GEnie. In 1988, Internet Relay Chat (IRC) protocol, an instant messaging tool, was developed and became the de-facto standard for online chat.
Enhancements:
- An optimized chat weight, a simplified initialization process, and simplified theme creation.
<<lessAjaxChat project supports customized CSS stylesheets and plugins.
Online chat is a generic term for what are now mostly known as instant messaging applications-computer programs that enable two-way typing to connect users to each other.
However, there are net dating systems and other online services that do not use these applications to provide chat facilities, e.g., Delphi, often relying on HTTP-based protocols instead. Sometimes these are called a chat room or chat extending the physical metaphors of sites and magazines which many web services exploit.
Today there are many chat rooms, some incorporating instant messaging features without having to install additional chat software. These chatrooms often have friend finders built in.
Some of these systems also provide telephone voice mail access. These are usually known generically as just chat systems.
A chat log is a record of a chat. Sometimes this is put on the web.
The earliest online chat system widely used was probably the Unix talk facility. The earliest one in general use was likely the French Minitel. During the 1980s, online chat was made available on CompuServe and DDial servers, and later on GEnie. In 1988, Internet Relay Chat (IRC) protocol, an instant messaging tool, was developed and became the de-facto standard for online chat.
Enhancements:
- An optimized chat weight, a simplified initialization process, and simplified theme creation.
Download (0.22MB)
Added: 2006-10-06 License: BSD License Price:
1115 downloads
XHR Chat 1.0
XHR Chat is a demonstration type chat script I wrote when experimenting with xmlHttpRequest. more>>
XHR Chat is a demonstration type chat script I wrote when experimenting with xmlHttpRequest. It never refreshes, keeps an infinite post log, and checks for new posts once a second.
XHR Chat will degrade gracefully if the browser doesnt support xmlHttpRequest, just so long it still has javascript enabled.
<<lessXHR Chat will degrade gracefully if the browser doesnt support xmlHttpRequest, just so long it still has javascript enabled.
Download (0.003MB)
Added: 2006-03-20 License: GPL (GNU General Public License) Price:
1326 downloads
Java::Import 0.03
Java::Import is Perl module to use Java classes in Perl. more>>
Java::Import is Perl module to use Java classes in Perl.
SYNOPSIS
use Java::Import qw(
some.package.SomeClass
);
my $instance = new some.package.SomeClass();
$instance->someMethod();
my $ret_val = some::package::SomeClass::someStaticMethod();
$ret_val->someMethod();
$ret_val2 = $instance->someOtherMethod($ret_val);
$ret_val2->someMethod();
my $java_array_ref $instance->someMethod2();
foreach my $obj ( @$java_array_ref ) {
$obj->someMethod();
}
The purpose of this module is to provide a simple method for using Java classes from a Perl program while using the latest in Open Source Java Technology. Thus, this module makes great use of the GNU Compiler Tools for Java in its implimentation.
<<lessSYNOPSIS
use Java::Import qw(
some.package.SomeClass
);
my $instance = new some.package.SomeClass();
$instance->someMethod();
my $ret_val = some::package::SomeClass::someStaticMethod();
$ret_val->someMethod();
$ret_val2 = $instance->someOtherMethod($ret_val);
$ret_val2->someMethod();
my $java_array_ref $instance->someMethod2();
foreach my $obj ( @$java_array_ref ) {
$obj->someMethod();
}
The purpose of this module is to provide a simple method for using Java classes from a Perl program while using the latest in Open Source Java Technology. Thus, this module makes great use of the GNU Compiler Tools for Java in its implimentation.
Download (0.028MB)
Added: 2006-12-01 License: Perl Artistic License Price:
1059 downloads
Java SOS 5.45
Java SOS is a set of configurable Java servlets for fast site building. more>>
Java SOS is a set of configurable Java servlets for fast site building, including Forums, Chat, and Calendar servlets, etc.
Coldbeans Software* implemented next version of Servlets Office Suite (JSOS). This product is a collection of servlets and filters for Java(tm) technology "out of the box" ready for building web-pages.
What does this collection need for? You know CGI scripts. Many sites on the Net need interactive capabilities to request information from the visitors and respond them. Most of those use scripts such as Perl, PHP, etc. But this approach has some disadvantages. Namely, for each new request a new process starts on the server where the site is hosted which requires additional computing resources, slows down executing all job.
Servlets require only one process no matter how many requests are being handled. These need less resources. They are faster and 100% portable. There are great engines to run them. Here are some: JRun, ServletExec, Jserv, Tomcat etc . That is all true. But why are CGI scripts still used?
They are old good technology people got used to. There are a lot of scripts all over the Net. Unfortunately, the last does not go to servlets. Fortunately, there is JSOS.
JSOS plays the same role as a set of CGI scripts and can be used by webmasters for adding dynamic capabilities to their sites.
JSOS has got a rich set of servlets such as Message Board, Chat, File Manager, Calendar and many others. You can use them instead of CGI scripts to build your site. As a matter of fact, it is the fastest way to make a site serving for needs of some community and the easiest way for managing the site. Last version of components supports WAP/WML also.
At this moment JSOS is probably the largest Java servlets collection over the Net and continues to grow. With WAP/WML support JSOS is probably the first Java scripts set for the mobile world.
Who will use this bundle?
- J2EE compatible servers vendors. Having a rich set of components is an extra argument for their potential customers
- Internet Service Providers. Most of them currently offer free CGI scripts preinstalled for subscribers. Nobody do that for servlets. Why?
- Web developers going to replace old CGI scripts with modern approach.
- Customers who need support mobile users in their web-based applications
Especially, we would like to point your attention to the fact that JSOS can be used to build Intranet sites. Do you need discussion groups? Do you need back your developers with the common knowledge base? Buddy chat? Take a look at Coldbeans servlets. It is the fastest way to assemble your site/portal from Coldbeans web components.
All JSOS servlets are easy to use. They are configurable so they will meet your design requirements.
JSOS is free for any non-commercial use. Please read our license file.
Some of free servlets may have minor restrictions such as copyright logo, restricted set of pages, etc.
Enhancements:
- New components and code base updates.
<<lessColdbeans Software* implemented next version of Servlets Office Suite (JSOS). This product is a collection of servlets and filters for Java(tm) technology "out of the box" ready for building web-pages.
What does this collection need for? You know CGI scripts. Many sites on the Net need interactive capabilities to request information from the visitors and respond them. Most of those use scripts such as Perl, PHP, etc. But this approach has some disadvantages. Namely, for each new request a new process starts on the server where the site is hosted which requires additional computing resources, slows down executing all job.
Servlets require only one process no matter how many requests are being handled. These need less resources. They are faster and 100% portable. There are great engines to run them. Here are some: JRun, ServletExec, Jserv, Tomcat etc . That is all true. But why are CGI scripts still used?
They are old good technology people got used to. There are a lot of scripts all over the Net. Unfortunately, the last does not go to servlets. Fortunately, there is JSOS.
JSOS plays the same role as a set of CGI scripts and can be used by webmasters for adding dynamic capabilities to their sites.
JSOS has got a rich set of servlets such as Message Board, Chat, File Manager, Calendar and many others. You can use them instead of CGI scripts to build your site. As a matter of fact, it is the fastest way to make a site serving for needs of some community and the easiest way for managing the site. Last version of components supports WAP/WML also.
At this moment JSOS is probably the largest Java servlets collection over the Net and continues to grow. With WAP/WML support JSOS is probably the first Java scripts set for the mobile world.
Who will use this bundle?
- J2EE compatible servers vendors. Having a rich set of components is an extra argument for their potential customers
- Internet Service Providers. Most of them currently offer free CGI scripts preinstalled for subscribers. Nobody do that for servlets. Why?
- Web developers going to replace old CGI scripts with modern approach.
- Customers who need support mobile users in their web-based applications
Especially, we would like to point your attention to the fact that JSOS can be used to build Intranet sites. Do you need discussion groups? Do you need back your developers with the common knowledge base? Buddy chat? Take a look at Coldbeans servlets. It is the fastest way to assemble your site/portal from Coldbeans web components.
All JSOS servlets are easy to use. They are configurable so they will meet your design requirements.
JSOS is free for any non-commercial use. Please read our license file.
Some of free servlets may have minor restrictions such as copyright logo, restricted set of pages, etc.
Enhancements:
- New components and code base updates.
Download (1.0MB)
Added: 2007-08-16 License: Free for non-commercial use Price:
805 downloads
Java Brainfuck Compiler 2.0
Java Brainfuck Compiler is an optimising Brainfuck to Java bytecode compiler. more>>
The Java Brainfuck Compiler is a compiler for the uniquely powerful Brainfuck language, which produces Java bytecode that will run on any Java Virtual Machine (with no intermediate steps such as going by way of Java code).
<<less Download (0.010MB)
Added: 2005-04-18 License: GPL (GNU General Public License) Price:
1682 downloads
ParaIrcLib 0.1
ParaIrcLib is a small library for IRC clients, written in Java and should work with JRE 1.4 and higher. more>>
ParaIrcLib is a small library for IRC clients, written in Java and should work with JRE 1.4 and higher.
At the Moment all IRC features except DCC-File-Transfer are supported.
The main reason ParaIrcLib was made for is ParaIrc.If you want to know how to build your own Java IrcClient with the Help of ParaIrcLib, just have a look at the ParaIrc source code.
<<lessAt the Moment all IRC features except DCC-File-Transfer are supported.
The main reason ParaIrcLib was made for is ParaIrc.If you want to know how to build your own Java IrcClient with the Help of ParaIrcLib, just have a look at the ParaIrc source code.
Download (0.022MB)
Added: 2006-09-21 License: GPL (GNU General Public License) Price:
1128 downloads
java-diff 1.0.5
java-diff is a set of Java classes which implement the longest common subsequences algorithm. more>>
java-diff is a set of Java classes which implement the longest common subsequences algorithm.
java-diff compares the elements in two arrays, returning a list of Difference objects, each of which describes an addition, deletion, or change between the two arrays.
<<lessjava-diff compares the elements in two arrays, returning a list of Difference objects, each of which describes an addition, deletion, or change between the two arrays.
Download (0.015MB)
Added: 2006-08-23 License: LGPL (GNU Lesser General Public License) Price:
1165 downloads
Naken Chat 2.12
Naken Chat is a public chat server written in C (originally in Java). more>>
Naken Chat is a public chat server written in C (originally in Java). Naken Chat project allows multiple people to connect to it and talk simultaneously to each other or in private messages.
The goal of Naken Chat is to be as small and fast as possible using the least amount of your computers memory with the most amount of features. The current size of the Naken Chat binary on a Linux box is about 38k after being "stripped".
Ive fully tested this program on FreeBSD, Linux, Solaris, Windows 98 and XP, and MacOSX.
The Naken Chat server can be connected to through many different client programs including telnet, a Java applet, Windows clients, and J2ME Naken Chat Client for mobile phones.
Main features:
- Private channels created by anyone (with channel-ops)
- Channel locking to not allow unwanted visitors in
- Channel squelching to make annoying people in your channel shut up
- Gagging to make annoying users not be able to write to you
- Private messages
- User levels
- Idle users can be knocked offline after an idle period
- Channels are now optional
- Username/Password file so only known people can log in
- Beeps for when someone gets a private messages
- Private message highlighting
- Special Channels
- Main: The main channel.. can also be called channel 0
- Hidden caves: if you go to a channel that has a number and the number is between 1000 and 1999, the channel wont be listed when people type .w to see whos online. This feature is no longer compiled in by default.
- Site Banning
- Sysop (special power) functions
- Cross channel yelling so users in one channel can send a message to people in all the channels
- Hushing Yells so a user wont see any messages that were yelled
- If user types too much too fast they are bumped offline
- Internationalization (so Swedish/Norweigan/Hebrew/Arabic/etc. chars work)
- If you type: .w it will give you only that line number or .w would filter for that string
- Chat Logging
- Ability to hide IPs (for security)
- Sysop hiding
- Time stamping
- Many more features I cant remember at this time.
<<lessThe goal of Naken Chat is to be as small and fast as possible using the least amount of your computers memory with the most amount of features. The current size of the Naken Chat binary on a Linux box is about 38k after being "stripped".
Ive fully tested this program on FreeBSD, Linux, Solaris, Windows 98 and XP, and MacOSX.
The Naken Chat server can be connected to through many different client programs including telnet, a Java applet, Windows clients, and J2ME Naken Chat Client for mobile phones.
Main features:
- Private channels created by anyone (with channel-ops)
- Channel locking to not allow unwanted visitors in
- Channel squelching to make annoying people in your channel shut up
- Gagging to make annoying users not be able to write to you
- Private messages
- User levels
- Idle users can be knocked offline after an idle period
- Channels are now optional
- Username/Password file so only known people can log in
- Beeps for when someone gets a private messages
- Private message highlighting
- Special Channels
- Main: The main channel.. can also be called channel 0
- Hidden caves: if you go to a channel that has a number and the number is between 1000 and 1999, the channel wont be listed when people type .w to see whos online. This feature is no longer compiled in by default.
- Site Banning
- Sysop (special power) functions
- Cross channel yelling so users in one channel can send a message to people in all the channels
- Hushing Yells so a user wont see any messages that were yelled
- If user types too much too fast they are bumped offline
- Internationalization (so Swedish/Norweigan/Hebrew/Arabic/etc. chars work)
- If you type: .w it will give you only that line number or .w would filter for that string
- Chat Logging
- Ability to hide IPs (for security)
- Sysop hiding
- Time stamping
- Many more features I cant remember at this time.
Download (0.026MB)
Added: 2007-06-28 License: Free To Use But Restricted Price:
857 downloads
Java Tetris 1.0
Java Tetris project is a simple Tetris game. more>>
Java Tetris project is a simple Tetris game.
Java Tetris is a game written with Eclipse and the VE Plugin. It is a nice starting point if you want to learn Java and Eclipse.
The game can be started as Java applet or Java application.
Enhancements:
- The dependency on jdom was removed.
- The jar is now only 30kb.
- A bug was fixed in the score list.
<<lessJava Tetris is a game written with Eclipse and the VE Plugin. It is a nice starting point if you want to learn Java and Eclipse.
The game can be started as Java applet or Java application.
Enhancements:
- The dependency on jdom was removed.
- The jar is now only 30kb.
- A bug was fixed in the score list.
Download (0.12MB)
Added: 2007-05-25 License: GPL (GNU General Public License) Price:
961 downloads
Java Web Shell 0.0.8
Java Web Shell is a web based interactive shell-type environment written in Java. more>>
Java Web Shell is a web based interactive shell-type environment written in Java.
Obviously, to use the shell, youll need to be using a browser that supports Java Applets, and this has been compiled using the Sun 1.4.1 JDK.
Head over to Sun and pick up the latest runtime enviroment if you dont already have it.
<<lessObviously, to use the shell, youll need to be using a browser that supports Java Applets, and this has been compiled using the Sun 1.4.1 JDK.
Head over to Sun and pick up the latest runtime enviroment if you dont already have it.
Download (0.013MB)
Added: 2007-03-12 License: GPL (GNU General Public License) Price:
968 downloads
MOHA Chat 0.1b10
MOHA Chat is a chat solution which comes with a intuitive Web client and can run on most shared hosts. more>>
MOHA Chat is a chat solution which comes with a intuitive Web client and can run on most shared hosts. MOHA Chat consumes fewer resources on the server side and is fast on the client side.
The project uses AJAX to retrieve the chat messages and user status. The client polls the server at regular intervals. It currently supports only one-to-one chatting with the Web client. The Web client encrypts messages using a key unique to the client when sending a message to the server and vice versa.
<<lessThe project uses AJAX to retrieve the chat messages and user status. The client polls the server at regular intervals. It currently supports only one-to-one chatting with the Web client. The Web client encrypts messages using a key unique to the client when sending a message to the server and vice versa.
Download (1.9MB)
Added: 2007-03-07 License: GPL (GNU General Public License) Price:
970 downloads
Ghoti IRC Client 0.86
Ghoti is a GUI-based IRC Client for unix/linux. more>>
Ghoti is a GUI-based IRC Client for unix/linux, written in Perl, and distributed under the GPL. Ghoti IRC Client has an uncanny similarity to mIRC.
Main features:
- Multi-server support
- Fully customisable GUI
- DCC Resume support
- Support for mIRC colours
- Robust CTCP flood protection
- Built in XDCC/CDCC file offering
- On-event sounds (if you really must)
<<lessMain features:
- Multi-server support
- Fully customisable GUI
- DCC Resume support
- Support for mIRC colours
- Robust CTCP flood protection
- Built in XDCC/CDCC file offering
- On-event sounds (if you really must)
Download (0.15MB)
Added: 2006-07-24 License: GPL (GNU General Public License) Price:
1190 downloads
jIRleeCh 1.3
jIRleeCh is a Java IRC client that is mainly used to ease the acquisition of XDCC packs. more>>
jIRleeCh project is a Java IRC client that is mainly used to ease the acquisition of XDCC packs.
It relieves the user from the need to know and type IRC commands to get XDCC Bot files or to use multiple tools and plugins to do so. It has an easy-to-use GUI interface with all the basic IRC client features.
It parses packetnews.com to search for packs. No IRC knowledge is needed to use it, as it automatically connects to a network, channel, and queues a pack.
<<lessIt relieves the user from the need to know and type IRC commands to get XDCC Bot files or to use multiple tools and plugins to do so. It has an easy-to-use GUI interface with all the basic IRC client features.
It parses packetnews.com to search for packs. No IRC knowledge is needed to use it, as it automatically connects to a network, channel, and queues a pack.
Download (1.0MB)
Added: 2006-10-19 License: GPL (GNU General Public License) Price:
1104 downloads
IoChatto 0.1
IoChatto is a chat client which you can use in the JXTA platform. more>>
IoChatto is a chat client which you can use in the JXTA platform.
Its interface is similar to many IRC chat clients, but you can have presence information for every channel, and its design is fully decentralized.
<<lessIts interface is similar to many IRC chat clients, but you can have presence information for every channel, and its design is fully decentralized.
Download (3.4MB)
Added: 2006-09-19 License: BSD License Price:
1130 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 java irc chat 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