PROGRAM ON ATTENDANCE SYSTEM ON C PROGRAMMING

// Registration no    11108008
// Name            Kishore Rawat
// Course        B.Tech(Cse)
// Project        Attendence System


#include<stdio.h>
#include<conio.h>
#include<process.h>
struct student
{
    char name[20];
    int rollno;
    char attend;
}s[100];
int main()
{
    FILE *f;
    int i,n,a,b,dd,mm,yy,m,j;
    char c;
    clrscr();
    printf("\n\n\n\n\n                     ATTENDENCE SYSTEM\n\n");
    printf("                     * PRESS 3 TO VIEW PREVIOUS ATTENDENCE IF HAD TAKEN\n");
    printf("                     * PRESS 1 FOR GIVING INPUT\n");
    printf("                     * PRESS 2 FOR TAKING ATTENDENCE\n");
    printf("                     * PRESS 4 FOR EXIT\n");
    printf("     \n\n\t\t     :");
    scanf("%d",&m);

    if(m==1)
    {

        clrscr();
        printf("ENTER THE CLASS STRENTH  :  ");
        scanf("%d",&n);
        for(i=1;i<=n;i++)
        {
            printf("ENTER %d STUDENT NAME  :",i);
            scanf("%s",&s[i].name);
            printf("ENTER ITS ROLLNO  :");
            scanf("%d",&s[i].rollno);
        }
        f=fopen("make.txt","w");
        for(i=1;i<=n;i++)
        {
            fprintf(f,"Roll no: %d\tName: %s\n",s[i].rollno,s[i].name);
        }
    fclose(f);
    return main();
    }

    else if(m==2)
    {
        clrscr();
        printf("\n\t\t\tTAKING ATTENDENCE");
        printf("DATE(DD/MM/YY): ");
        scanf("%sd%sd%sd",&dd,&mm,&yy);
        printf("\t\tPRESS ENTER WHEN READY!!");
        for(i=0;i<n;i++)
        {
            printf("\nRoll no: %d \t \tName:%s  ",s[i].rollno,s[i].name);
                        printf("\n\nenter attendence status for %s:",s[i].name);
            scanf("%c",&s[i].attend);
                        continue;

        }
        f=fopen("make1.txt","a");
        printf("ATTENDANCE ON %sd-%sd-%sd",dd,mm,yy);
        for(i=0;i<n;i++)
        {
            fprintf(f,"Attendence: %c         Roll no: %d           Name: %s\n",s[i].attend,s[i].rollno,s[i].name);
        }
        fclose(f);
        getch();
        return main();
    }

    else if(m==3)
    {
        clrscr();
        f=fopen("make.txt","r");
        fprintf(f,"ATTNDENCE FOR DATE %sd-%sd-%sd",dd,mm,yy);
        for(i=0;i<=n;i++)
        {
            fprintf(f,"Name: %s   Roll no: %d    Attendence: %c ",s[i].name,s[i].rollno,s[i].attend);
        }
        getch();
        fclose(f);

    }
    else if(m==4)
    {
        printf("");
    }
    else if(m)
    {
        printf("INVALID SELECTION!!");
        return main();
    }
}





PROGRAM ON ATTENDANCE SYSTEM ON C PROGRAMMING

#include<stdio.h>
#include<conio.h>

struct student
{
    int rollno;
    char name[20];
    int number_present;
    int number_absent;
};
void main()
{
    struct student s[10];
    int i;
    clrscr();
    printf("enter the data for the students:\n\n");

    for(i=0;i<2;i++)
    {
        printf("enter the rollnumber:");
        scanf("%d",&s[i].rollno);
        printf("\n\nenter the name:");
        scanf("%s",&s[i].name);
        printf("\n\n enter the total days");
        scanf("%d",&s[i].number_present);
        printf("\n\nenter the absent days");
        scanf("%d",&s[i].number_absent);
    }

    printf("data for student:\n\n");

    for(i=0;i<2;i++)
    {
        printf("roll number=%d",s[i].rollno);
        printf("name=%s\n\n",s[i].name);
        printf("total present day=%d\n\n",s[i].number_present);
        printf("total absence day=%d\n\n",s[i].number_absent);
    }

    getch();
    }

PROGRAM ON SUPER MARKET BILLING ON C PROGRAMMING

 PROGRAM ON SUPER MARKET BILLING ON C PROGRAMMING

//NAME:--          ABHAY DWIVEDI
//Reg. No.:--      11109906
//Section:--       K1104
//Roll No.:--      RK1104A28

#include<stdio.h>
#include<conio.h>
struct slip
{
    char name[20];
    int qty;
    int price;
}s[100];
void main()
{
    int i,n,j=1;
    float d,t3=0,t=0,t1=0,t2=0,s1=0;
    clrscr();
    printf("\n\n\n\n\n\n\n            WELCOME TO SUPER MARKET BILLING");
    getch();
    clrscr();
    printf("ENTER NO. OF ITEM PURCHASE   :");
    scanf("%d",&n);
    for(i=1;i<=n;i++)
    {
        printf("ENTER %d ITEM NAME PURCHASE   :",i);
        scanf("%s",&s[i].name);
        printf("ENTER ITS QUANTIY  :");
        scanf("%d",&s[i].qty);
        printf("ENTER ITS PRICE   :");
        scanf("%d",&s[i].price);
    }
    clrscr();
    printf("\n\t\t\tPURCHASE BILL\n\n\n");
    gotoxy(1,6);
    printf("ITEM NAME  ");
    gotoxy(14,6);
    printf("QUANTITY  ");
    gotoxy(25,6);
    printf("PRICE ");
    gotoxy(35,6);
    printf("VAT ");
    gotoxy(40,6);
    printf("DISCOUNT");
    gotoxy(55,6);
    printf("TOTAL PRICE ");
    gotoxy(1,7);
    printf    ("_______________________________________________________________________");
    for(i=1;i<=n;i++)
    {
        gotoxy(1,8+j);
        printf("%s",s[i].name);
        gotoxy(14,8+j);
        printf("%d",s[i].qty);
        gotoxy(25,8+j);
        printf("%d",s[i].price);
        gotoxy(35,8+j);
        printf("5%");


        t=s[i].qty*s[i].price;
        t2=t+(0.05*t);

        if(t2<=2000)
        {
            gotoxy(40,8+j);
            printf("0%");
        }
        else
        if(t2>2000&&t2<5000)
        {
            d=10;
            gotoxy(40,8+j);
            printf("%f%",d);
        }
        else
        if(t2>=5000)
        {
            d=20;
            gotoxy(40,8+j);
            printf("%f%",d);
        }
        gotoxy(55,8+j);
        t3=(d/100)*t2;
        t1=t2- t3;
        printf("%f",t1);
        s1=s1+t1;
        j=j+2;
        t=0;
        t1=0;

    }
    printf("\n_______________________________________________________________________");
    printf("\n\nTOTAL SUM IS : %f",s1);
    getch();
    clrscr();
    printf(" \n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\t\tTHANKS FOR USING SOFTWARE");
    getch();
}



PROGRAM ON ATTENDANCE SYSTEM ON C PROGRAMMING

PROGRAM ON ATTENDANCE SYSTEM ON C PROGRAMMING

// Registration no    11108008
// Name            Kishore Rawat
// Course        B.Tech(Cse)
// Project        Attendence System


#include<stdio.h>
#include<conio.h>
#include<process.h>
struct student
{
    char name[20];
    int rollno;
    char attend;
}s[100];
int main()
{
    FILE *f;
    int i,n,a,b,dd,mm,yy,m,j;
    char c;
    clrscr();
    printf("\n\n\n\n\n                     ATTENDENCE SYSTEM\n\n");
    printf("                     * PRESS 3 TO VIEW PREVIOUS ATTENDENCE IF HAD TAKEN\n");
    printf("                     * PRESS 1 FOR GIVING INPUT\n");
    printf("                     * PRESS 2 FOR TAKING ATTENDENCE\n");
    printf("                     * PRESS 4 FOR EXIT\n");
    printf("     \n\n\t\t     :");
    scanf("%d",&m);

    if(m==1)
    {

        clrscr();
        printf("ENTER THE CLASS STRENTH  :  ");
        scanf("%d",&n);
        for(i=1;i<=n;i++)
        {
            printf("ENTER %d STUDENT NAME  :",i);
            scanf("%s",&s[i].name);
            printf("ENTER ITS ROLLNO  :");
            scanf("%d",&s[i].rollno);
        }
        f=fopen("make.txt","w");
        for(i=1;i<=n;i++)
        {
            fprintf(f,"Roll no: %d\tName: %s\n",s[i].rollno,s[i].name);
        }
    fclose(f);
    return main();
    }

    else if(m==2)
    {
        clrscr();
        printf("\n\t\t\tTAKING ATTENDENCE");
        printf("DATE(DD/MM/YY): ");
        scanf("%sd%sd%sd",&dd,&mm,&yy);
        printf("\t\tPRESS ENTER WHEN READY!!");
        for(i=0;i<n;i++)
        {
            printf("\nRoll no: %d \t \tName:%s  ",s[i].rollno,s[i].name);
                        printf("\n\nenter attendence status for %s:",s[i].name);
            scanf("%c",&s[i].attend);
                        continue;

        }
        f=fopen("make1.txt","a");
        printf("ATTENDANCE ON %sd-%sd-%sd",dd,mm,yy);
        for(i=0;i<n;i++)
        {
            fprintf(f,"Attendence: %c         Roll no: %d           Name: %s\n",s[i].attend,s[i].rollno,s[i].name);
        }
        fclose(f);
        getch();
        return main();
    }

    else if(m==3)
    {
        clrscr();
        f=fopen("make.txt","r");
        fprintf(f,"ATTNDENCE FOR DATE %sd-%sd-%sd",dd,mm,yy);
        for(i=0;i<=n;i++)
        {
            fprintf(f,"Name: %s   Roll no: %d    Attendence: %c ",s[i].name,s[i].rollno,s[i].attend);
        }
        getch();
        fclose(f);

    }
    else if(m==4)
    {
        printf("");
    }
    else if(m)
    {
        printf("INVALID SELECTION!!");
        return main();
    }
}







NIMBUZZER ROOM FLOODER FOR NIMBUZZ CHAT ROOM FLOOD

http://www.ziddu.com/download/17213735/numbuzzerflood.zip.html

JUST INSTALL THE SETUP FILE AND ENJOY




evogalx nimbuzz advance advance graber

DOWNLOAD FACEBOOK CHAT AND CHAT WITH YOUR FRIENDS


The facebook chat application no need to run your browser or anything just run the application and have fun.
You can chat with friends and other online users 

 

How to flood someone Facebook wall

Someone annoyed you? Wanna get revenge? Flooding his or her Facebook wallposts might be a good idea. But how to do it? So in this tutorial I'll be showing step by step tutorial on how to flood someone facebook wall just with a simple javascript coding.




Note: This tutorial is only for education. I'm not responsible for any harm that may follow. Use at your own risk.

Actually, there are a lot of way to flood someone wall. But in this tutorial, I'm only gonna show you the easiest way which is using Javasript. If you still wanna know the other ways, just google for it.

First of all, log in to your account or  you can create new fake account so you would not get caught. Now navigate to your victim wall. In this tutorial, The victim will be my fake account which I just created. Copy the script below and paste it on the url bar. Next, you just need to press "Enter".







Wait for a while and a box will popup. Fill in the amount of flood. In this case I choose the message to be posted 10 times. Next, press "OK" button to continue.


A second box will popup and asked you to fill in the message you wanna post. Just put whatever you like to flood your victim wallpost. Now hit the "OK" button to start the flooding process


Wait for a few seconds and refresh the page and check your victim wall. You will see the result. As the proof, you can see the image below.


Enjoy.

Note: Please do not post too much messages because Facebook maybe will ban your account.

NOTICE : You are not allowed to copy this artcle to your blog or website. However, if you like this article, you can use the HTML code below to direct links to this article.




ESET Smart Security 40314 -ESET download link

BAN JID LIST CREATER FOR NIMBUZZ XML CONSOLE

now ban multiple ids set just in few seconds from xml console its ronik xml script creator which can create 1000 jids ban script in 1 sec so just visit www.proflood-ronik.co.cc

WEB FLOOD ALL KIND OF FLOODER AND FLOOD BLOCKER

ALL TYPE OF FLOODERS INCLUDING FLOOD BLOCKER

ways to get your hacked idiz back

There are two ways to get your hacked idiz back.
At first, while creating your nimbuzz account, don't forget to save your email account and your phone number in nimbuzz server.
Go here:
http://wap.nimbuzz.com/wap/
And login with your id account

First way:
1. Go to Setting>Phone number
2. Select your continent
3. Select your country and enter your phone number
4. Save it
.
Second way:
1. Go to Setting>Email
2. Type your vailed email address
3. Save it
.
.
When your id get hacked, just go to:
1. "Forgot your password" in your nimbuzz software menu by using your phone number that you had saved it before. (Your current pasword will send to you by a messege)
2. Or go to this address http://www.nimbuzz.com/en/forgot_password and by using your email that you entered before. (Your current pasword will emailed to you)
.
.
I prefer to put both your email and phone number

Miranda installation and running process

first download the application here
then please install,
after you install Miranda, then the application is in the running to play the display will appear like this app.



then we need to setup an account to one of the existing protocol chat with Miranda logo menu click on the top left corner as shown above.
if true it would appear such an account register form below


submenu and select accounts and will appear as below form
then select the + button as shown in picture form, and will show the form as below:
input name for the title acccount, so easy you just enter the mosque itself as in the example, if you want to connect to nimbuzz, then select the protocol jabber
then clik ok button. then will return to the main account sperti form below
then select the name of the title of the account that we created earlier should not forget to tick the check option marknya and if true then the form above will change as shown below

move the contents of the account nimbuzz / jabber you in the box marked, if true then at least the contents of your account as an example the image below
sealnjutnya click ok button, and will return to the main app. In the main app it would appear Jabber logo, which is the logo lights in the lower left corner of the application, as shown below

left-right click on the logo of the lamp as shown and will show a submenu as below

then select a status mode that you want, for example, we want an online mode, then simply click menus online images of yellow light like the picture above.
after that wait a while, look at the image light in the main app when changes to the image being the process of incandescent means.
If returned to the original image means have failed to make connection / process connection
for this check your internet connection
etc.
when a successful connection, the icon lights in main app will turn into a white light


skrng we try to do the connection to the room.
easy way
click picture lights in the lower left corner (after a successful connection)
then select the submenu services -> Create / join groupchat
conference on the server textbox contents "conference.nimbuzz.com" (when his connections to nimbuzz)
then fill the room name ie "jakarta"
nick name usually the default. Had it not been filled nimbuzz current rules shall be filled with your nick name tanpa@nimbuzz.com
then click ok button, pretty easy right
if the room is not full and you will directly connect to the room you're going

FEW NIMBUZZ WEB FLOODERS

i dont like rosters which flood 1 at a time so here i go
checkout this 1 www.ronikroster.cz.cc
and u will never need other roster
this is fast smart and compact
www.ronikroster.cz.cc


www.angelflood.cz.cc
www.randomflood.com
www.errorflood4u.com
www.randomronik.com
www.nimpasschanger.tk

SINOBI CREATER LOVERBOY4U INFORMATION


SINOBI APPLICATION CREATER LOVERBOY4U PERSONAL TALK

NAME : RAHUL
PLACE : MP
QUESTION 1 : WHY YOU HAD PUT YOUR APPLICATION NAME SINOBI
ANSWER : JUST FOR FUN
QUESTION 2 : WHY YOU CREATED THIS APPLICATION
ANSWER : I LOVE FLOODING I HAD CREATED THIS APPLICATION FOR MY SELF .
AND WHEN I GOT BORRED I SUBMIT IT ONLINE FOR OTHER USERS
QUESTION 3 : WHAT YOU LIKE TO DO
ANSWER : EVERYTHING EXCEPT RAPE AND MEAT

AS TALKED WITH ME - RONIK
FRIENDS JOIN US AT WWW.OURWORLD.X10.MX
MEET RAHUL AT INSANEDREAMZ.IN

Sinobi pasword changer software

hello all.. this is pasword changer software of numbering ids!

easy to change it Smiley join www.roniksite.co.cc
enjoy with us and thanks loverboy4u by leaving comment for him :)
see screnshot=>



Code:
Link1:
OR
LInk 2:


enjoy with sinobi!
NOTICE:- USING MULTI ID PASSWORD CHANGER CAN BLOCK YOUR IDS FOREVER I SUGGEST YOU NOT TO USE IT

Sinobi cracking v1.0 password cracker by loverboy4u

Many users are still not able to use sinobi craking in correct way.

here is now, i will tell you proper use of sinobi cracking..

1. THIS VERSION IS FOR NUMERIC PASSWORDS.

2.when you are trying username to crack, then we don't know anything about passwords.. like how much digit is password and etc..

3. now we wil do hit & try method.

4. Select digit=5 ( means all numbers of 5 digit only will be taken as Passwords)

if you not get password in 5 digit, then

select digit=6 (means all number of 6 digit will be taken as passwords)


similarly Go on...


5. there is 2 phase (Open This application 2 times, in 1st select  "phase 1" and in 2nd select "Phase 2")
Note- each Phase(1 or 2) has differet Passsword list for each digit(means diferent for 5,6,7... digits)


steps to download & use=>

1.) you neeed to instal framework 4.0 for use it.

tested in windows xp pack 3

2.)
download sinobi cracking v1.0
Code:
 
join www.roniksite.co.cc and loverboy4u rocks;)
give  

BAN SET OF FLOODER ID SCRIPT ON WEB XML CONSOLE FOR NIMBUZZ

NOW YOU CAN BAN SET OF FLOODER ID SCRIPT ON WEB XML CONSOLE FOR NIMBUZZ

JUST FOLLOW THE COMMANDS

BAN SET OF FLOODER ID SCRIPT ON WEB XML CONSOLE FOR NIMBUZZ

http://xmlconsole.tk/

nimbuzz pc ( with chat room )


ba hajme 8.2 mb

Download

MOBILE HACKING

BOMBUS

Sinobiclub pc tool

Nimbuzz-Skype-Switch-Off
Sinobiclub autobot (10 id)
Download now
Sinobi Autobot Nimbuzz
Download now
Sinobi Status Roller 2
Download now
Sinobi Nickname Roller 1.0
Download now
Sinobiclub Password changer
Download now
Sinobiclub chat room flooder
Download now
Sinobiclub killer flood Continuee Edition
Download now
Sinobiclub Delete All Contacts Of Enemy id
Download now
Sinobiclub Chatroom Fun tool part 2 (Demo)
Download now

Nimbuzz All version- by ronik

Nimbuzz All version
Nimbuzz Original
Nimbuzz Vidio Chat
Nimbuzz v1.0.0 (Java)
Nimbuzz symbian v3.0 (unsighned)
Nimbuzz symbian v2.0.4 s60 v5
Nimbuzz symbian v2.0.4 s60 v3
Nimbuzz symbian v2.0.4 s60 v2
Nimbuzz 1.8(Modified with some special options)
Nimbuzz 1.7 ( J2ME for all models )
Nimbuzz V1.6.jar
Nimbuzz v2.0.3 Rev1535(symbian)
Nimbuzz v1.0.0 (symbian)
download nimbuzz java 1.8

bombus sky fluder - by ronik

WEL COME
Welcome115 2
Nim 1 3

Skyflood (1)
3 Skyflood2
3
Skyflood3
3 Skyflood4
3 Skyflood5
3 SKYFLOOD
3 Skyflood anime

bombus Palringo - by ronik

bombus Palringo
WEL COME
PALRINGO
Palringo new
Palringo motorola en
Palringo sagem huawei en
Palringo samsung en
Palringo sonyericsson en
Palringos60 50 gcce urel tcsigned Express Signed 1 4 0
Palringo nokia40 en
PidginMod
Palringos60 30 gcce urel tcsigned Express Signed 1 4 0

bombus Qip - by ronik

Welcome115 2
Qip2 1043
Qippda2020
Qippda2140sp
Qippda3000
Qippda2020
Qip1 1043
Qip uiq3 1043

Bombus staylish Writer - by ronik

WEL COME
Welcome115 2
HOME
Bombus staylish
BombusPSI
Bombusqdr47a3
BombusVacuum
Bombusultra
BombusVacuum
BombusPidgin
COWBOYS
GAJIM
GoogleBot
Bombus.avalon
EXOMOD
MirandaMod
Nimbuzzmod
NIMBOMB
PidginMod
SIMRAMOD
NT522
PidginMod
Googlemod

MAKE THE OWNER CRY the ronik web flooder flood for nimbuzz


http://ourworld.x10.mx/index.php?page=Advanced%20Flooder


ronik web flooder for nimbuzz

All Clients-jabber-clients

[cont]
Adium MacOS http://adium.im
Afflux Browser http://afflux-project.org
Agile Messenger Mobile http://www.agilemobile.com
AQQ Windows http://www.aqq.eu
Ayttm Linux http://www.ayttm.sourceforge.net
beejive Mobile http://www.beejive.com
BitlBee Linux http://www.bitlbee.org
Bombus Mobile http://bombus-im.org
BuddyMob Mobile http://www.buddymob.com
Chatopus Mobile http://www.chatopus.com
Citron Windows http://www.citron-im.com
Claros Chat Browser http://www.claros.org
climm Console/Text-Mode http://www.climm.org
Coccinella Linux, MacOS, Windows http://coccinella.im
eM Client Windows http://www.emclient.com
emite Browser http://www.google.com/p/emite/
Empathy Linux http://www.live.gnome.org/Empathy
Exodus Windows http://www.code.google.com/p/exodus/
Gajim Linux, Windows http://gajim.org/
Galaxium Linux http://www.code.google.com/p/galaxium/
glu Windows http://www.xeus-messenger.blogspot
GNU Freetalk Console/Text-Mode http://www.gnu.org/s/freetalk/
iChat MacOS http://www.apple.com
iJab Browser http://www.code.google.com/p/ijab/
IM+ Mobile http://www.shapeservices.com
imov MessengeMobile http://www.movsoftware.com
irssi-xmpp Console/Text-Mode http://www.cybione.org
Jabbear Windows, Browser http://www.jabbear.com
Jabber Mix Client Mobile http://www.jabbermixclient.sourceforge.net/
jabber.el Linux http://www.emacs-jabber.sourceforge.net/
Jabbim Linux, MacOS, Windows http://www.jabbim.com/
Jabbim for Android Mobile http://www.jabbim.com/
Jabiru Mobile http://www.jabiru.mzet.net
JAJC Windows http://www.jajc.jrudevels.org
Jappix Browser http://www.jappix.com
JBuddy Messenger Linux, MacOS, Windows http://www.zionsoftware.com
Jeti Linux, MacOS, Windows http://www.jeti-im.org
JWChat Browser http://www.jwchat.sourceforge.net
Kopete Linux http://kopete.kde.org
Lampiro Mobile http://www.lampiro.bluendo.com
m-im Mobile http://www.code.google.com/p/m-im
mcabber Console/Text-Mode http://www.mcabber.com
mChat Mobile http://www.smape.com
Miranda IM Windows http://www.miranda-im.org
Monal doe iPhone/Pad Mobile http://sworim.blogspot.com
OctroTalk Mobile http://www.octro.com
OneTeam for iPhone Mobile http://www.process-one.net
Oyo Linux, MacOS, Windows http://www.bristowsoftware.co.uk
Pandion Windows http://www.pandion.im
Peozio Console/Text-Mode http://www.poezio.eu
Pidgin Linux, MacOS, Windows http://pidgin.im
Psi Linux, MacOS, Windows http://www.psi-im.org
qutIM Linux, MacOS, Windows http://www.qutim.org
saje Linux, MacOS, Windows http://www.code.google.com/p/saje
SamePlace Browser http://www.sameplace.cc
Sim-IM Linux http://www.sim-im.org
SIP Communicator Linux, MacOS, Windows http://www.sip-communicator.org
Slimster Browser http://www.slimster.org
SoapBox Communicator Windows http://www.coversant.ne
Spark Linux, MacOS, Windows http://www.igniterealtime.org
SparkWeb Browser [url]www.igniterealtime.org[/url]
Synapse Linux http://www.synapse.im
Talkonaut Mobile http://www.talkonaut.com
Tigase Messenger Browser http://www.tigase.org
Tigase Minichat Browser http://www.tigase.org
Tkabber Linux, MacOS, http://www.tkabber.jabber.ru
Tlen Linux, MacOS, Windows http://www.www.tlen.pl
Trillian Pro Windows http://www.www.trillian.im
TrophyIM Browser http://www.code.google.com/p/trophyim/
V&V Messenger Windows http://www.altertech.net
Vacuum Linux, MacOS, Windows http://www.code.google.com/p/vacuum-im/
Vayusphere Mobile http://www.vayusphere.com
WTW Windows http://k2t.eu
xmppchat Browser http://www.babelmonkeys.de/xmppchat/
Yambi Windows http://www.yambi.com
Yaxim Mobile http://www.slideme.org