Chat with Strangers to Improve Your English

Saturday, July 30, 2011

Omegle 
Omegle is a famous service that you might have known for random text chats with strangers, recently it has introduced web cam chat with strangers. You can have video chat with random strangers. No age limit or registration is required. Webcam is needed and you can also save your conversation log to your pc or share it on Facebook.


OmegleWorld
OmegleWorld was created for you to talk to strangers in your own country. Simply select an Omegle site designed for your country.

Lollichat
Lollichat is an awesome website for making new friends around the world. Just enable your webcam and enter into the website. Click New Start, it automatically connects with people randomly.

Camfrog 
Camfrog is a free live webcam software for windows and mac osx which allows video sharing in chat rooms. It has number of users with hundreds of communities all over the network. It has crossed more than 30 million downloads and millions of registered users

Chatroulette

Chatroulette is a web application which uses peer-to-peer connection. It was created by a russian school boy. Every new conversation is started by clicking the New game button. Webcam is compulsory and you can report inappropriate videos and users.

TinyChat

This service is from the famous network tinychat. It is also similar like chatroulette, which allows webcam chat with random strangers. You need to install flash for seeing the User Interface. Webcam is must and registration is via your Facebook account. You should connect through your facebook account.

6Rounds
6rounds is not only a place for video chat, but it also allows people to listen to music, play games and watch YouTube videos. The random strangers are displayed as 3D bubbles with their profile. Just select the person from that and have a random chat. You must be 18+ to use this website. registration required.

AnybodyThere
Anybodythere is an amazing site which selects random people according to your taste. Just ask a question or share your thoughts, you will be shown with people of same kind of interests. Awesome isn’t it ?

CamStumble 
It’s really an excellent website for video, audio, and live chat randomly via the stumble factor. Each user may stumble onto as many other users as they want.

ShufflePeople 
Shufflepeople is similar to chatroulette website, It also has a header like ” Chat Roulette style webcam chat “.

Randomdorm
Randomdorm is specially designed for college students. It needs registration and while registering it accepts only email ids which has .edu email id provided by your University or college. It has Facebook integration, but again your facebook account should be registered with your university email id. Webcam is only optional. It allows text, voice and video chat.

Zupyo
http://zupyo.com/ 

JayDoe
http://jaydoe.net/

Kittehroulette
http://kittehroulette.com

FlirtSpin
http://flirtspin.com/

RanChat
http://ranchat.com/

Roulette Chat
http://www.roulettechat.fr/

Diropia
http://www.diropia.com/

TinyChat
http://www.tinychat.com/
 MeBeam
http://www.mebeam.com/

TokBox
http://www.tokbox.com/

Ekko
http://www.ekko.tv/

Palbee
http://www.palbee.com/

Vawkr
http://vawkr.com/

Note : If you’re not above 18, please do not enter the above websites. Because sometimes it shows adult content. 

C Programming - Program Mencari Nilai Max dan Min dari Tiga Bilangan

Thursday, July 14, 2011
#include <stdio.h>

int main()
{
    int a, b, c, min, max;
    printf("beri nilai a : ");
    scanf("%d", &a);
    printf("beri nilai b : ");
    scanf("%d", &b);

    printf("beri nilai c : ");
    scanf("%d", &c);

    min = (min=(a < b) ? a : b) < c ? min : c;
    max = (max=(a > b) ? a : b) > c ? max : c;

    printf("bilangan minimum : %d\n", min);
    printf("bilangan maximum : %d\n", max);

    return 0;
}

C Programming - Program Membuat Kalkulator Sederhana

#include <stdio.h>

int main()
{
    char op;
    int bil1, bil2;
    printf("Tuliskan bilangan, operator, bilangan :");
    scanf("%d %c %d", &bil1, &op, &bil2);

    switch(op)
    {
        case '+': printf("= %d", bil1 + bil2); break;
        case '-': printf("= %d", bil1 - bil2); break;
        case '*': printf("= %d", bil1 * bil2); break;
        case '/': printf("= %d", bil1 / bil2); break;
        default : printf("operator tidak dikenal!");
    }
    printf("\n\n");

    return 0;
}

C Programming - Program Mencari Nama Hari

Wednesday, July 13, 2011
#include <stdio.h>

int main()
{
    int kode;
    printf("Menetukan hari.\n");
    printf("input kode [1 - 7]: ");
    scanf("%d", &kode);
    switch (kode)
    {
        case 1:puts("hari minggu"); break;
        case 2:puts("hari senin"); break;
        case 3:puts("hari selasa"); break;
        case 4:puts("hari rabu"); break;
        case 5:puts("hari kamis"); break;
        case 6:puts("hari jumat"); break;
        case 7:puts("hari sabtu"); break;
        default:puts("kode salah");
    }

    return 0;
}

C Programming - Program Menganalisa Sirkuit Sederhana

#include <stdio.h>

typedef double resistance;

int main()
{
    resistance R1, R2, R3;
    double TotalR, Voltase, Arus;
    /* Minta tiga resistan dan voltase */
    printf("berikan tiga resistan (ohm) :");
    scanf("%lf %lf %lf", &R1, &R2, &R3);
    printf("voltase yang digunakan (volt) :");
    scanf("%lf", &Voltase);

    /* Hitung total resistan dan arus */
    TotalR = 1.0 / (1.0 / R1 + 1.0 / R2 + 1.0 / R3);
    Arus = Voltase / TotalR;

    /* Tampilkan Arus */
    printf("Arusnya = %.2lf amps.\n", Arus);

    return 0;
}

C Programming - Program Menghitung Jumlah Deret Aritmatika

Tuesday, July 12, 2011
#include <stdio.h>

int main()
{
    float a, b, sn;
    int n, i;
    printf("berikan suku pertama : ");
    scanf("%f", &a);
    printf("berikan beda :");
    scanf("%f", &b);
    printf("jumlah deret sampai suku keberapa ?");
    scanf("%d", &n);

    sn = (n/2)*(2*a+((n-1)*b));

    printf("\njumlah deret hingga %d suku = %.2f\n", n, sn);
    return 0;
}

C Programming - Program Mencari Regangan Jembatan

#include <stdio.h>

int main()
{
    float L,l,d;
    printf ("Mencari regangan jembatan. \n");

    printf("Input panjang rentangan: ");
    scanf("%f", &l);
    printf("Input lengkungan : ");
    scanf("%f", &d);

    L=(float)l+(float)(8.0*(d*d))/(float)3.0*l;

    printf("Panjang kabel=%.3f\n", L);
    return 0 ;
}

C Programming - Program Konversi Suhu Celcius ke Fahrenheit

Monday, July 11, 2011

#include <stdio.h>

int main()
{
    int c, f;

    printf("berikan nilai temperatur dalam celcius :");
    scanf("%d", &c);
    f = (9*c)/5 + 32;
    printf("%d derajat celcius = %d derajat Fahrenheit. \n", c, f);

    return 0;
}

C Programming - Program Untuk Mencari Luas Persegi Panjang


#include <stdio.h>

int main()
{
    float Luas;
    int p, l;
    float persegi (int, int);


    printf("Menghitung luas persegi panjang.\n");
    printf("input nilai panjang dan lebar :");
    scanf("%d %d", &p, &l);
    Luas = persegi(p, l);
    printf("luas persegi panjang = %.2f\n", Luas);
    return 0;
}

float persegi (int p,int l)
{
    float Luas;
    Luas = p * l;
    return Luas;
}

English Tutorial Program - To Infinitive

Wednesday, July 6, 2011

Belajar bahasa inggris dengan program? Kenapa tidak?
Kali ini Batercus lagi belajar to infinitive, ini dia videonya:


link ke youtube disini
download programnya disini
download quiznya disini

English Tutorial Program - Participle

Tuesday, July 5, 2011

Belajar bahasa inggris dengan program? Kenapa tidak?
Kali ini Batercus lagi belajar participle, ini dia videonya:
link ke youtube disini
download programnya disini
download quiznya disini

English Tutorial Program - Gerund

Monday, July 4, 2011

Belajar bahasa inggris dengan program? Kenapa tidak?
Kali ini Batercus lagi belajar gerund, ini dia videonya:
link ke youtube disini
download programnya disini
download quiznya disini

English Tutorial Program - Eliptic Contraction

Sunday, July 3, 2011

Belajar bahasa inggris dengan program? Kenapa tidak?
Kali ini Batercus lagi belajar eliptic contraction, ini dia videonya:


link ke youtube disini
download programnya disini
download quiznya disini

Cara Menggunakan Game Shark Untuk Emulator PS1 (psxfin)

Friday, July 1, 2011
Lihat juga tutorial emulator ps2 PCSX2 0.9.8 complete (maximum speed) disini

Sebelum menggunakan program game shark ini, Anda harus memiliki emulator ps1 terlebih dahulu, klik disini untuk melihat, mendownload, dan konfigurasi emulator ps1 (full psxfin).

Setelah itu Anda dapat melihat video tutorial cara menggunakan game shark di emulator ps1:

Link ke youtube klik disini
Download Program Game Shark (CEP) disini

Selain cara diatas, Anda juga dapat menggunakan cheat dengan software cheat engine, klik disini untuk penjelasan lebih lanjut, dan yang paling ampuh dalam hal ngecheat yaitu dengan menggunakan code breaker ( sejenis game shark ) untuk lebih jelasnya lihat disini.

Jika Anda masih bingung dengan video di atas coba Anda lihat juga video ini: (credit to: Jack Donny Leonard)



Jika Anda menggunakan emulator ps1 (ePSXe) Anda dapat menggunakan cheat/gameshark dengan CEP versi terbaru. Selengkapnya lihat disini.

English Tutorial Program - Conditional


Belajar bahasa inggris dengan program? Kenapa tidak?
Kali ini Batercus lagi belajar conditional, ini dia videonya:


link ke youtube disini
download programnya disini
download quiznya disini