Skip to main content

5 Interesting Websites

We often get bored by surfing the same websites everyday like Facebook, Wikipedia, etc. To get rid of the boredom, we may visit some interesting and entertaining websites. Here's the top 5 interesting websites to visit.

#1 The Useless Web

The Useless Web is really useless but full of entertainment! It redirects a visitor to other useless, funny & interesting websites. This one is a good place to kill boring times. Click on the link to visit useless web: http://www.theuselessweb.com/

#2  Incredibox

Incredibox is the most perfect place for music lovers. One can easily create his own sound with a few proper clicks by using this website & become a musician! Click on the link to visit Incredibox: http://www.incredibox.com/

#3 Weave Silk

Weave Silk is the best place for people who like to draw because it lets one draw his imagination with mouse cursor in the easiest way. This is the best place to kill boring times by creating amazing creative works of art! Click on the link to visit Weave Silk: http://weavesilk.com/

#4 Hacker Typer

 Is hacking cool? I mean come on, what else is cooler than this? But it's a matter of sorrow that very few people know how to hack! So, Hacker Typer has come forward to solve this problem. This website enables anyone to type like a hacker! Visit http://www.hackertyper.com/ to type like a hacker!

#5 The Faces of Facebook

 The Faces of Facebook is a collection of profile pictures of Facebook users. It loads 1.28 billion Facebook users in a single page. One can randomly click on any part of the screen and visit any Facebook user profile that is thrown up. Philosophically, The Faces of Facebook shows us how small in this world considering the number of Facebook profiles is almost equal to the population of India. Click on the link to visit The Faces of Facebook: http://www.thefacesoffacebook.com/

Comments

Popular posts from this blog

Currency Converter - USD & BDT [C Programming]

#include <stdio.h> void main() {     int i;     float usd, bdt;     printf("Press 1 to convert USD to BDT\nPress 2 to convert BDT to USD\n");     printf("Enter your choice: ");     scanf("%d", &i);     switch(i)     {         case 1:             printf("Enter amount in USD: ");             scanf("%f", &usd);             bdt = usd * 80;             printf("1 USD = 80 BDT\n");             printf("%0.3f USD = %0.3f BDT", usd, bdt);             break;         case 2:   ...

Greatest Value Among Three Numbers [C Programming]

#include <stdio.h> void main() {     int a, b, c;     printf("Enter a number in a:");     scanf("%d", &a);     printf("Enter a number in b:");     scanf("%d", &b);     printf("Enter a number in c:");     scanf("%d", &c);     if(a >= b && a >= c) // a > b, a > c     {         printf("%d is largest", a);     }     else if(b >= a && b >= c) // b > a, b > c     {         printf("%d is largest", b);     }     else if(c >= a && c >= b) // c > a, c > b     {         printf("%d is largest", c);     } }