Friday, March 30, 2012

how to fine any file from uploadorb.com or jumbofiles.com easily



Now days two file sharing websites named uploadorb.com and jumbofiles.com getting more popularoty because they allow highspeed download with resume support and without any waiting and restrictions.

So, all are demanding that they got jumbofiles or uploadorb download link for any files which they download.

But on some websites people do some irritating file sharing site's download link who do not give resume and give limited downlaod speed and also we have to wait t download our files.

So, here I am giving you a trick to find any of files on jumbofiles or uploadorb using google.

To get ur wished file on jumbofiles or uploadorb just search on google like this

site:uploadorb.com ur file name

or

site:jumbofiles.com ur file name

for example I want idm then I will search like this

 site:uploadorb.com idm

and you will only get uploadorb.com download links.

So, friends this is the trick. You can use it and download anything and you can find any file from jumbofiles or uploadorb and download it easily with resume support without any irritation...

:D enjoy!!

all file hosting site premium link generator site (leeching site)



hii friends today I am going to give you a one leeching site (premium link generator site) for all file sharing site.


the good thing about this site is that they has not irritating popup ads waiting timers etc.. and it is simple and useful site


the website's name is http://www.shimory.com


they currently provides below filehosting site premium link generation support:


extabitfilefactoryfilevelocityfreaksharemegasharesrapidsharewupload

Some awesome free web hosting websites



hello friends now a days all persons are making websites and all want to host their websites.

But due to some reasons they want free web hosting and do not want to take paid hosting.

So, for people who want free web hosting here are some awesome free webhosting sites

1) 000webhost.com






specifications:
-Disk Space                     1500 MB
-Data Transfer                 100 GB/month
-Add-on Domains            5
-Subdomain                     5


2) x10hosting.com






specifications:
-Disk Space                      Unlimited
-Data Transfer                   Unlimited
-Add-on Domains             Unlimited
-Subdomain                      Unlimited





3) www.dolphhost.com






specifications:
-Disk Space                      Unlimited
-Data Transfer                   Unlimited
-Add-on Domains             Unlimited
-Subdomain                      Unlimited

4) www.heliohost.org 







specifications:
-Disk Space                      500mb
-Data Transfer                   Unlimited
-Add-on Domains             Unlimited
-Subdomain                      1

160by2.com is now providing free unlimited group sms at any time 24x7




160by2.com is now providing free unlimited group sms facility to all of ur friends at any time 24x7.

You have to just login on 160by2 and click on group sms tab and then invite ur friends from there and then if ur friend accept ur invitation then you can send him/her unlimited group sms at any time 24x7 without limits. Even if ur friend is register in dnd then you can also send sms to him/her.

Enjoy!!

Know your own number in airtel new method




New method to check your own airtel number
No call is to be made and no SMS to be sent.
Just dial- *400*2*1*1*0#
Enjoy

100% working allover india.

Wednesday, March 21, 2012

Turn your PC into a Web Server and host your web-site for free



In this article, I am going to explain how to use your computer with Internet connection as a Web Server to host your own web-site.

Overview

Generally, if you want to host a web-site, you need to either buy a domain or look for some free web hosting services.You put your web-site's code there and then it can be accessed from anywhere through Internet. This way, whenever you type in the address of the web-site, it is redirected to that server's location (its IP address) and its corresponding port (which is mostly port 80). So, if we want to say, host our web-site at home, we need to make sure that whenever someone types your IP address, it should reach your PC's localhost server.

If you don't know anything about IP address, Port, DNS etc, please go through following links before reading this article. It will help you in understanding this article better.

Internet Protocol (IP)
Port Numbers
Domain Name System

Now, the things you are going to need are :

1). A PC with an Internet connection
2). Global IP address
3). Any web-server software

Set up your web-server

To host a web-site at your home, first thing you need is of course your web-site running on your own PC. I use Apache-Tomcat for this as it is free. Other web servers are WAMP and Oracle etc. You can use any of them. All web servers run on a specified port no, which can be configured from the web-server settings (for Apache Tomcat, default port no is 8080). After starting your web server, start your web site on the server. You can check if your site is working or not by typing localhost/your-website-link. This depends on the configuration of your web-site and web server. So after this step, you are able to view your web-site on your own PC.

Next thing is to make your web-site accessible to the whole world so that when anyone type your IP address with appropriate port no, the request should reach your local server to corresponding port no. For this, you must have a Global and preferably a static IP address. So, you need to determine that whether your IP address is local or Global. Check your IP address by going to command prompt and typing IPconfig (in Mac OS, you can do this by going to Network Utility ). Also, go to google and type "what is my IP". If in both case your IP is same and your IP address is "NOT" in the following IP ranges, it means that you have a Global IP address.


10.0.0.0 through 10.255.255.255
169.254.0.0 through 169.254.255.255
172.16.0.0 through 172.31.255.255
192.168.0.0 through 192.168.255.255

If you have a global IP address, you just have to type in aaa.bbb.ccc.ddd:portno/your-website-link and you will able to access your web-site from anywhere as long as you keep the web-server software running on your PC and your IP doesn't change. If you have Global IP address, you can skip the next step and continue reading.



In this Video, I have explained how to start Apache Web Server and run your web-site on localhost. For testing purpose, I have created a simple page named "test.htm". After starting the Apache web-server, this page can be accessed from localhost

Port Forwarding

But, if the IP address you found from Google is different then the IP address that you found in the command prompt (for e.g., 192.168.xxx.yyy ), it may be because you have a routing device somewhere which creates a personal network.It assigns local IPs from above range to all the PCs connected to the router and then connects that network to Internet through the Global IP address. In this case, whenever someone types your IP address, it reaches the routing device instead of your PC. So, the web site that is hosted on your PC is not accessible from Internet. To overcome this problem, most routing devices have a facility called "Port Forwarding". Like its name suggests, it forwards requests on specific ports of router to your local IP address. This way, if your local IP address is 192.168.xxx.yyy, and the web server is running on port no 'dddd' , you have to 'tell' your routing device to transfer all the request on port 'dddd' to your PC's IP address (i.e. 192.168.xxx.yyy in this case). Most routing devices have this functionality inbuilt and it can be enabled from your router configuration ( to change router configuration, refer to your router's user manual ). After you have enabled port forwarding, rest of the process is same. You can access your web site by simply typing ppp.qqq.rrr.sss:portno/your-website-link, where, ppp.qqq.rrr.sss is your router's IP address and portno is the port no on which the web server is running.


In this Video, I have explained how to enable Port Forwarding in case you have a local IP (192.168.1.100 in this case) address. After enabling Port Forwarding, you will be able to access the localhost from the Internet using the Router's Global IP address (124.125.158.5 in this case).

Setting up DDNS

So till now, you are able to access your web-site from anywhere using global IP address and port no of the web-server running on your PC. This works well, but you have to type numeric IP address which is hard to remember. Also, problem with most of ISPs is that they provide a dynamic IP address. This means that your IP address keeps changing from time to time. So, every time your PC's IP address changes, link to your web site changes. For these problems, DDNS is the best solution. DDNS stands for Dynamic Domain Name System. Basically, DNS is the service that gives a "name" to IP address and DDNS is a service that can be used to provide "name" to dynamic IP address. This way, by using DDNS, you can access your web-site with yourname.something.net even if your PC's IP address keeps on changing. Both free and charged DDNS service providers are available. Here, I am going to explain free DDNS service NO-IP.com and how to use it.

Go to No-IP.com and sign-up there. After you have signed up, login with your credentials. After you login, click on "Add a Host" and fill the form. In Hostname, write any name that you want to use and choose any of the free available domains (various domains that NO-IP.com provides are : "zapto.org", "ddns.me" , "sytes.net" etc.). In the host type, select "Port 80 Redirect". In the IP address field, write your Global IP address and in port no, write your web-server's port no and click on "Create Host". After that, wait for five minutes for changes to take effect.

Now you can access your web-site just by typing "yourname.zapto.org" or "yourname.ddns.me". This address will work till your IP address does not change and web-server is running on your PC. There is one last step in this process to make this address valid even if your IP address change. To enable this, go to NO-IP.com and go to downloads page (https://www.no-ip.com/downloads.php) and download the version that is suitable to your OS. After downloading it, install the software.After finishing installation of the software, start the software. It will ask for credentials that you use to login to NO-IP.com. Enter the credentials and log-in to the software. On logging in, it will display the name of the site that you just created (i.e. yourname.zapto.org or yourname.ddns.me ). Select that name and click on Save and minimize the software. This software constantly monitors your IP address and whenever it changes, it informs such change to NO-IP.com, which changes the association of "yourname.zapto.org" to newer allocate IP address.


This video explains how to setup DDNS using NO-IP.com's free DDNS service. NO-IP.com provides free DDNS client to monitor your dynamically changing IP.


So, that's it. You have created your own web server which can be used to host your web sites and that too for absolutely FREE.

Download :

1). Apache Tomcat web server
2). NO-IP.com's free client software

credit goes to Dhaval Mehta

Tuesday, March 20, 2012

Songs.pk blocked in India for piracy (by Kolkata High Court)



One of the most used music website, songs.pk is now blocked in India as per the order of Kolkata High Court.
songs.pk blocked in indiaThe order was issued as a result of petition filed by 2 music companies, Phonographic Performance Ltd and Sagarika Music Pvt Ltd. They demanded the blocking of the website as its distributing copyrighted songs without consent of music companies.
In simpler terms its a piracy.
It has been known to many that such websites has been involved in piracy acts but this is the first time when solid action is taken against piracy on internet in India.
As per the court ruling, all access to songs.pk is now blocked, which includes blocking using DNS name, IP address via routers, and DPI based URL blocking.
The petitioners also explicitly asked court to direct all ISPs in India to block the site. There was instances in the past when certain ISP blocks while several others left a website unblocked. But this time, all ISP’s has been clearly directed by the court to block songs.pk.
ISP’s that blocked songs.pk includes like Reliance Wimax Ltd, Hathway Cable & Datacom Pvt Ltd, Tata Teleservices (Maharashtra) Ltd, Reliance Communications Infrastructure Ltd, Wipro Ltd, Sify Technologies Ltd, Bharti Airtel Ltd, Dishnet Wireless Ltd, Vodafone India Ltd, BG Broadband India Pvt Ltd, Hughes Communications Ltd India and BSNL.
This is a strong decision that’ll block attempts from foreign sites to sell pirated data to Indian users, which is 100 percent illegal. Moreover, songs.pk is a Pakistani site that makes millions by distributing pirated songs, both of Bollywood and Lollywood (Pakistani film industry).
Though, blocking website will not solve the issue as there are lot many ways to open blocked websites.
But, blocking direct access is one big step towards stopping piracy on internet in India.

updated news:

now songs.pk has changed their domain to www.songspk.pk so it is now reopening.

Ankit Fadia Ethical Hacking Courses Videos



Ankit Fadia Certifed Ethical
Hacking Courses Videos 2011
uploadorb download links


Ankit Fadia Certifed Ethical
Hacking Courses Videos 2011
uploadorb download links
http://uploadorb.com/z0avhludx75m
http://uploadorb.com/6llm3qmqiex8
http://uploadorb.com/et753x6l9ggt
http://uploadorb.com/m0g1tz2u7uy0
http://uploadorb.com/jaokc1rcgqic
http://uploadorb.com/hyu40uodsi2f

Saturday, March 10, 2012

how to make your blogger and wordpress blog's mobile version



HII FRIENDS TODAY I AM GOING TO SHOW YOU THAT HOW TO MAKE YOUR WORDPRESS OR BLOGGER BLOG MOBILE FRIENDLEY MEANS IT WILL CONVERTED TO MOBILE VERSION AUTOMATICALLY WHEN ANY USER WILL OPEN YOUR BLOG FROM THEIR MOBILE DEVICE.


SO FIRST OF ALL LETS DISCUSS ABOUT MAKING BLOGGER BLOG MOBILE VERSION:
IN BLOGGER TO MAKE YOUR BLOG'S MOBILE VERSION GO TO BLOGGER AND DO LOGIN THEN CLICK ON SETTINGS UNDER SETTINGS YOU WILL FIND ONE TAB NAMED EMAIL AND MOBILE WHICH IS SHOWN BELOW.


NOW CHOOSE THE OPTION NAMED


HEN SELECT YOUR MOBILE TEMPLATE AND AT LAST JUST CLICK ON SAVE SETTINGS.


NOW YOUR BLOGGER BLOG IS READY IN MOBILE VERSION. NOW AFTER WHENEVER ANY USER OPENS UR BLOG FROM ANY MOBILE DEVICCE THEN IT WILL SHOW YOUR BLOG IN MOBILE VERSION AND IF YOU WANT TO TEST OR WATCH YOUR BLOG'S MOBILE VERSION FROM YOUR PC THEN YOU CAN ALSO  DO THAT BY GOING TO YOURBLOG.COM/?m=1


NOW LETS MOVE TO WORDPRESS


HOW TO MAKE WORDPRESS BLOG'S MOBILE FRIENDLY VERSION:
TO MAKE YOUR WORDPRESS BLOG'S MOBILE VERSION JUST SEARCH AND INSTALL ONE PLUGIN NAMED MOBILEPRESS THEN YOUR WORDPRESS BLOG IS READY IN MOBILE VERSION WHENEVER ANY OF UR USER OPENS UR WORDPRESS BLOG IN THEIR MOBILE DEVICE.


IF YOU HAVE ANY DOUBTS OR PROBLEMS THEN JUST WRITE COMMENTS BELOW.


ENJOY!!

Friday, March 9, 2012

7 Compelling Reasons to Upgrade to WINDOWS 8



Microsoft will be releasing its new OS later this year and already it is seeding the web with a few superb features that users can expect to see.


With Windows 8, Microsoft is making one of the biggest upgrades to its PC operating system. For one, it will replace the Start Menu with a Start Screen—with tiles that contain shortcuts to applications—similar to the Metro interface seen on its Windows Phone 7 OS.



Besides, the Redmond giant will also be introducing the Ribbon interface—first seen in Office 2007—to Windows Explorer. And then, it is also launching a store for the new Metro-style apps that Windows 8 will support.

But the changes to the new OS are not just cosmetic. Windows 8 has been designed ground-up to also support ARM microprocessors—the chips used in tablets—in addition to the x86 processors from Intel and AMD. This means the same operating system will be available on desktops, laptops and slates.

And regardless of the machine’s form factor, whether tablet or PC, this new OS promises a slew of brand new features that seem just as compelling to power users as they are enticing to newbies. So without much ado, here’s our list of seven features that we’re looking forward to in Windows 8.

Picture Passwords
It can be rather cumbersome to enter long, complex passwords on touchscreen devices such as tablets. Yet, having a strong passcode is important, especially on portable devices. To allow for better security, Windows 8 utilizes a new system that incorporates pictures and gestures in user authentication.

It’s a simple concept: Users will first need to select an image on which to perform a gesture. The gestures could be tapping on something in the picture, encircling something, or drawing a line between two points. A “password” would then comprise any combination of these three. Since you can pick any photo to perform the gesture on, these actions could be based on the image, such as tapping someone’s nose, encircling a book, or drawing a line along the edge of some object.

Windows To Go
Portable applications are a growing trend. Already, you can run software such as web browsers, word processors, image editors etc from a pen drive (so you can carry your favourite software to use on almost any computer). With Windows 8, you will even be able to take the entire operating system with you. Enterprise versions of the OS will be capable of running off a flash drive or portable harddrive.

Since your Windows environment pretty much makes your computer yours, you will – in effect – be carrying your entire PC around without having to lug bulky hardware. Just connect your drive, boot in, and use your own Windows computing system.

Refresh and Reset
After an extended period of using Windows, you will often find a noticeable decrease in performance – as applications are installed, and then uninstalled, remnants of these programs start to build up and cause performance issues. The best solution in such cases is to reinstall the OS and migrate your data to the new copy. But this solution has been needlessly difficult till now – and usually, only expert users resort to it. Windows 8 will change all that…

The new OS will have two options, Refresh and Reset, to tackle this problem. Reset, as its name suggests, resets your installation to its initial state. It deletes all your personal data and software, leaving a fresh Windows 8 computer that you can even hand over to someone else.

Refresh is a less drastic measure. It retains your personal data, customisations and settings, and reinstalls Windows in-place. After this procedure you can log into the same old account, and see all your documents intact. Your desktop apps will be gone, but a list of those will be saved so you can remember which ones you need to reinstall.

If you want to refresh Windows to a customized state (instead of a blank slate), you can do that as well. After installing your basic applications, changing settings, and removing the applications you don’t need, you can set that as the state to refresh to when you use that option in the future.

For both these options, you merely click on a button in Control Panel, confirm the action and a few minutes later you have a fresh copy of the OS.
If your Windows isn’t even booting, you can launch these procedures from the Windows set-up disc as well.

Better Automatic Updates
With Windows 8, you will no longer be harassed by those frequent 15-minute warnings that inform you that your system has been updated and needs to be restarted.
With the new OS, Windows Update (WU) will consolidate all the restarts in a month into one single restart. With this new feature, it will not matter when the updates are released, since these restarts will wait till the month’s security release.

In case of a critical update, however, WU will download, install and restart automatically. But this will happen only when the security threat is dire enough – and there is no chance of losing the user’s data. That means the restarts will not happen if you are not at your PC, if you have applications running in the background, or if there is potentially unsaved work.

Protection from Malware
Windows 8 boot process will support a new built-in mechanism called Secure Boot, which will ensure that the system being booted has not been tampered by malware. Another anti-malware feature in Windows 8 is a technology it borrows from Internet Explorer (IE), called SmartScreen.

SmartScreen checks URLs entered in the browser against a database of malware links, and in IE9 this feature was extended to downloaded files. The browser checks the “reputation” of the file you download and warns you if the file is unknown and downloaded by very few people. Now instead of being an IE-only feature, this technology is baked into Windows, and it will check files downloaded using any browser or program.

File Management Improvements
The copying mechanisms that Windows currently uses can be quite inefficient. Not only are the ‘copy time’ estimates frustratingly erroneous, but even basic features such as pausing a transfer are absent. Windows 8 rectifies this and a number of other issues with improvements in its file management system.

First of all, if you are running multiple file operations on Windows 8, it consolidates them all into a single window showing all transfers. Secondly, individual operations can be paused or cancelled. And while the basic Copy operation window is simplified, there is a new detailed view that offers a lot more, including the current speed, and a graph of how that speed has changed over time.

Conflicts while copying are also managed better. If while copying from one folder to another Windows detects multiple conflicting files, it can show you a detailed list of files in both the folders and the differences between them, along with the option to skip files that are exactly the same on both sides.

Windows 8 also makes it possible for you to access files in an ISO file without burning it to a disc. To make it easier to download and distribute CDs without actually sending a physical disc, many download sites use ISO files. These files are essentially an entire CD or DVD’s contents packaged into one file – you might have encountered them at some point. Windows 7 made it possible to burn these files to a disc, but since an increasing number of devices don’t have a CD/DVD drive, Windows 8 lets you directly access the contents of such a file.

Logging in via Windows Live ID
A Windows Live ID gives you access to Microsoft cloud services such as Hotmail for email, Office Web for online document creation and collaboration, SkyDrive for online file storage, Live messenger for chat etc. In Windows 8, Microsoft will let you log into your computer with this ID.
It might seem odd to log into your own PC with an online account, however, Microsoft offers a number of advantages for such users.

First, such accounts will automatically be synchronized with Microsoft’s servers. Many of your settings such as your wallpaper, mouse settings, Explorer settings, Internet Explorer history and favourites, spell-check dictionaries and a number of other settings will be available on any computer, you log into with this account – and if you make a change on one computer it will be reflected to all other computers.

Metro-style applications purchased from the Windows Store will also be available on all your computers, along with their settings. An eBook reader, for instance, could let you start reading a book on one Windows 8 device and continue on another. IE10 already supports this feature and will keep browsing sessions in sync across computers.

Another benefit is that if you use a Windows Live ID account to log in, you will automatically be logged into Microsoft services such an Hotmail when you open them in IE in Windows 8.

sms gateway wapsite with all sms site support (2exclusive sites added)



hii friends I have found a one wapsite of sms gateway sender named http://www.smsmaza.tk/gateway which supports sms sending via
-way2sms,
-site2sms,
-160y2,
-fullonsms,
-smsze,
-sms440 (exclusive),
-indyarocks (exclusive),
-youmint from a single page.

Its features are as below:

-it supports multiple sms sender to use this feature just write mobile numbers seperated with ;

-second feature is it shows character count (used characters) in message field so u can know that howmany characters are used

-it also shows sms summary after sending the sms so that u can know its status

-it is mobile friendly

So, go to just go to http://www.smsmaza.tk/gateway and enjoy free smsing!!!

Saturday, March 3, 2012

Windows 8 Consumer Preview Free Download Links in ISO [32 & 64 Bit]



Windows 8 Consumer Preview (or Beta version, as we know it) is finally here. Earlier, Microsoft released the Developer Preview Edition of Windows 8 which was available to download publicily. This time they have fixed thousands of issues and release the new edition which surely has a lot less bugs.
Before downloading the new release, keep this in mind that this is still a beta version that might have some issues or bugs. Your system will work fine but some applications might create conflicts or won’t support normal execution at all.


If you’re not sure whether this will work on your existing system then let us give you the good news – it works on all systems that have, minimum of:
  • 1 gigahertz (GHz) or faster 32-bit (x86) or 64-bit (x64) processor
  • 1 gigabyte (GB) RAM (32-bit) or 2 GB RAM (64-bit)
  • 16 GB available hard disk space (32-bit) or 20 GB (64-bit)
  • DirectX 9 graphics device with WDDM 1.0 or higher driver
Take a look at the features of Windows 8 in the official video:

You can download the setup in two ways:
1. Get the normal setup installer that will guide you with the upgrade on your exiting Windows installation.
2. Download the ISO file (links given below) which you can burn in a flash drive or DVD to do a fresh install, removing the existing Windows installation.

Download Windows 8 Consumer Preview

The Windows 8 Consumer Preview is available in both 32-bit and 64-bit versions and currently supports the English, Chinese, French, German, and Japanese languages only.
Here are the Direct Download Links:
Download Windows 8 Consumer Preview (32-bit) [filesize: 2.5 GB ]
Download Windows 8 Consumer Preview (64-bit) [filesize: 3.3 GB]



Earn Dollars While You Sleeeping



There are so many ways to make money online. But most of them will be a scam. So filtering the sites are too confusing these days. Here I have some most effective ways to earn some bucks. All of these are highly paying if you are ready to work for some time.Just try these and do comment. 

1.Ziddu – Upload files, Share their links and Earn.

    Ziddu.com provides you World’s Leading Image,Video,Audio and Document Sharing Portal. Its fast and easy.Only people knowing the exact download URL are able to download your file. Regiter, upload files, get a unique link to each separate file and share the link to anyone to download.
    You will get $0.001 for each Unique download. Redeemed cash will be transfered via PayPal or Moneybookers once it reaches $10.
    10000 Unique Downloads: $10
    50000 Unique Downloads: $50
    100000 Unique Downloads: $100 USD
    500000 Unique Downloads: $500 USD
    1000000 Unique Downloads: $1000 USD
    You will get $0.05 Referral Bonus, when someone joins with Ziddu through your referral link and uploads his first file!




     2. Shareapic – Upload Pics, Invite people to view and Earn.
    Shareapic is a free service that allows users to upload and host their images. It’s has a unique revenue sharing model that compensates users for directing their friends and family to see their hosted images. When a member hosts a gallery, they can then show this gallery to others. Each time this is done, the member is paid.
    Features:
    - Upload unlimited pictures
    - No file size restrictions
    - Create unlimited galleries
    - $0.22 per 1000 pic views
    - Add your Bidvertiser © code to your image and gallery pages.
    - Pay out (via Paypal) within 30 days (when account reaches $20.00)
    - One click posting to Facebook, Myspace, Blogger, Orkut, and more!
    3.DocStoc – Upload and Promote your Documents and Get Cash.
    Docstoc is the premier online community and marketplace to find and share professional documents. Docstoc provides the platform to upload and share documents with the world, and serves as a vast repository of free and for purchase legal, business, financial, technical, and educational documents that can be easily searched, previewed and downloaded.
    With DocCash you can earn a recurring and passive income from your documents. Just sign up and upload as many documents as you want, and you don’t have to lift another finger. It’s fast and free to start, and effortless to maintain.
    1. Sign up for DocCash.
    2. Tell about your existing adsense account.
    3. Upload your documents to Docstoc, and promote them on the web.
    4. Start getting cash from the advertisements displayed alongside your docs.
    I hope you’d find these services helpful in earning easy cash. Don’t forget to add other services that you know and can help earn quick and easy money.
    Waiting for your feedback.
    4.LinkbucksGet paid for linking people to other websites.
    LinkBucks advertising program is the perfect way to monetize your website, blog, or community without resorting to distracting in-page ads. Every funny video, file, or web page that you’ve ever linked to is making money for someone. Linkbucks rewards the people that make the web possible by giving them a share of the advertising dollars that their links generate.
    You get paid every 30 days.
    5. Gomez Peer – Application Running in background Making Cash for You
    The Gomez PEER is a secure, Java-based application that runs in the background of your PC. You may even forget it’s there, because it will not disrupt the way you use your computer.
    Using advanced, peer-to-peer distributed computing technology, the Gomez PEER combines the spare capacity of PCs around the world to measure the performance of Web sites. After you install the Gomez PEER, it will periodically communicate with Gomez servers via the Internet, signal that it’s available for work, and request a work unit. And you will be credited for your online time and work processed approximately every 15 minutes that the application is running. You don’t have to do anything in front of your PC, just leave the Gomez Peer running, go to sleep and earn!

    Thursday, March 1, 2012

    EARN FREE MOBILE RECHARGE FOR JUST DOING CHAT



    HII TIDAY I AM GOING TO SHOW YOU ONE WEBSITE NAMED WWW.TOPUPCHAT.COM
    THEY PROVIDE FREE MOBILE RECHARGE FOR DOING CHAT WITH UR FRIENDS ON THEIR WEBSITE.
    SO JUST GO TO WWW.TOPUPCHAT.COM AND DO SIGNUP WITH YOUR MOBILE NUMBER AND ADD SOME FRIENDS ON THAT WEBSITE DO SOME CHAT AND YOU WILL GET POINTS FOR EVERY INCOMING CHAT YOU GET. AND THEN YOU CAN CONVERT THAT POINTS INTO FREE RECHARGE.

    NOTE: I AM SUGGESTING YOU TO MAKE TWO ACCOUNTS AND JUST DO CHAT WITH YOURSELF USING OPENING YOUR BOTH ACCOUNTS FROM DIFFERENT WEB BROWSERS TO EARN MORE RECHARGE

    ENJOY!!

    Share

    Twitter Delicious Facebook Digg Stumbleupon Favorites More