Still can't find it , Google it

Still can't find it , Google it

Google+ Badge

Wednesday, May 1, 2013

Weather Tune iOS app review


Weather Tune app displays your current weather conditions including temperature, wind speed, humidity, visibility, and rain. It has satellite images and weather around the world. This app is of great use if you need to plan work or activities and you want to know real time weather details. Weather Tune also shows weather forecast, including expected minimum/maximum temperature and wind Speed/direction. Application allows you to choose between Fahrenheit and Celsius for temperature values. Overall Weather Tunes is a light-weight app with a smooth user interface.


App is nearly 16 MB in size and is available at store for just $0.99, It requires iOS 4.3 or later.

You may download this great app by visiting the link given below:

Or you can even scan this QR code and visit the download page directly:




Friday, April 19, 2013

Windows 8 tablets: how to create a password?

Nowadays, it’s increasingly popular that many people choose to bring a portative tablet for a business trip mobile office. Windows 8 tablet is the newest tablet released by Microsoft. With the release of Windows 8 tablets, its outstanding operation interfaces have attracted many businessmen. Besides, Windows 8 password features have also impressed many Windows 8 tablets users. In Windows 8 users can create not only a text password, but also a PIN code or a picture password. As a result, users can have more than one way to log in Windows 8. When they happen to lost login text password, they can try picture password or PIN code to log in before they have to recover Windows 8 password.



Why we need login password for Windows 8 tablets?

We are now in Information Age, in which data security is closely related to everyone. Data security on computers is a big concern to all Windows users. A login password can always serve as the first line to protect Windows 8 system security. For individual users whose Windows 8 machines are without private or important data, it may be unnecessary for them to set a login password. However, if your files in Windows tablets are vital or you are enterprise users, a login password is of great importance to ensure your password security.  

How to create a password for your Windows 8 tablets?

Text password in Windows 8 also consists of English uppercase/ lowercase letters, base digits, symbols and Unicode characters.


Step 2: In “Setting” page, enter “users” in the search box. Click on “Users” and you will then see the “Users” tap.

Step 2: Click on “Add a user” and then “Sign in without a Microsoft account”.

Step 3: Click on “Local Account” and enter your name into the user name box.                 

Step 4: Enter your password for your account twice. In case you forget your password by accident, it is highly recommended to leave password hints.

Step 5: Click on “Finish”.

After you have created a text password, a picture password or PIN code is suggested to be created so that you can log in through any of the three forms. Do as the above step 1 to “Settings” page and in the lower right corner, you can see “Change PC Settings”. Then go to “Users” and you will find an option “Create a picture password” below your account. Confirm your account by entering your text password. Now you can see on the left “Create a picture password” and “Create a PIN”. Click on them respectively to create your picture password and PIN code.

Tips & Suggestions:

1.       If you like to log in with picture password or PIN code, remember to clean the screen of your Windows 8 tablets on a regular basis, for the fingerprints may leak out your password.

2.       After you have created a password for your Windows 8 tablets, you’d better set a Windows 8 password reset disk. A password reset will save you a lot of troubles no matter what system you use, say, Windows 8 password reset, Windows 7 password recovery, etc.

Sunday, April 14, 2013

VITUN 4 VPN - The fastest VPN : Android app review


Check out the fasted VPN on market. VITUN 4 VPN is an android app that delivers all that it promises. It allows you to bypass restrictions, use VIOP and to make your web connection even more secure as well as anonymous. Using VIATUN you will never loose on your connection speed. It allows you to reduce your traffic expenditure up to 80%!!! Not only this through this android app can give you access to several sites that are normally blocked or restricted on your Internet connection. App has also got a built in anti-virus system.

I downloaded this app on my smartphone yesterday for testing and results were incredible. This is the fastest VPN in the market. I have used so many similar apps and my verdict is that this is the fastest VPN available.

VIATUN 4 VPN can be downloaded from Google play using the link given below

Or scan this QR Code using your smartphone to visit the download page of VIATUN 4 VPN

Saturday, April 13, 2013

Job portal web application / online recruitment management project

Project Abstract and brief report:
End result of the project should be a website that allows user to search and apply to various jobs posted in different categories. It should have an admin panel that allows administrator of the system to add new categories and jobs with title and description of required skills, experience etc. Admin can view different applications for a job and can forward their uploaded resumes to particular email ids.

Source code implementation language: Project should use valid subset of following technologies: html, css, javascript, php, asp, vb.net, c#, java, xml

Keywords: website, job portal, job management system, recruitment system, php project

Related open Source Project downloads:

Pokies HD Casino : Android App review


 Pokies HD Casino features two unique premium games:
  • Gonzo's Quest Video Slots
  • Jack Hammer Video Slots


Pokies HD Casino is an android app specially designed for Australian audience. Its Google play page describes it as the Australia's best Free Mobile Casino App. The app has an average rating of 4.0/5 on Google Play. Graphics of this application is one of its best features. I downloaded this app yesterday on my android smart phone. I must say that it is really the most interesting game that I have played yet. Best part is that this application can run on any device with android 2.1 or higher and is very light weight.

Pokies HD Casino can be downloaded from Google play using the link given below

Or scan this QR Code using your smartphone to visit the download page of Pokies HD Casino




Monday, March 25, 2013

C++ Caesar Cipher File encryption and decryption program source code

C++ program for encrypting and decrypting any file using Caesar cipher and any key entered by the user.

You may even use this as an assignment or mini project in B. Tech. or network security subject by adding little gui and improving the source code.  Feel free to use, modify and share the code... Knowledge is always free !!!
 #include<iostream.h>  
 #include<conio.h>  
 #include<fstream.h>  
 class Caesar  
 {  
     public: void encrypt(char *inp,char *out,int key);  
             void decrypt(char *inp,char *out,int key);  
             void readText(char *inp);  
 };  
 void Caesar::encrypt(char *inp,char *out,int key)  
 {  
     ifstream input;  
     ofstream output;  
     char buf;  
     input.open(inp);  
     output.open(out);  
     buf=input.get();  
     while(!input.eof())  
     {  
         if(buf>='a'&&buf<='z')  
         {  
             buf-='a';  
             buf+=key;  
             buf%=26;  
             buf+='A';  
         }  
         output.put(buf);  
         buf=input.get();  
     }  
     input.close();  
     output.close();  
     readText(inp);  
     readText(out);  
 }  
 void Caesar::decrypt(char *inp,char *out,int key)  
 {  
     ifstream input;  
     ofstream output;  
     char buf;  
     input.open(inp);  
     output.open(out);  
     buf=input.get();  
     while(!input.eof())  
     {  
         if(buf>='A'&&buf<='Z')  
         {  
             buf-='A';  
             buf+=26-key;  
             buf%=26;  
             buf+='a';  
         }  
         output.put(buf);  
         buf=input.get();  
     }  
     input.close();  
     output.close();  
     readText(inp);  
     readText(out);  
 }  
 void Caesar::readText(char *inp)  
 {  
     ifstream input;  
     char buf;  
     input.open(inp);  
     cout<<"\n\n <--- "<<inp<<" --->\n";  
     buf=input.get();  
     while(!input.eof())  
     {  
         cout<<buf;  
         buf=input.get();  
     }  
     input.close();  
 }  
 void main()  
 {  
     Caesar a;  
     int choice,key;  
     char inp[30],out[30];  
     clrscr();  
         cout<<"\n Enter input file: ";  
         cin>>inp;  
         cout<<"\n Enter output file: ";  
         cin>>out;  
         cout<<"\n Enter key: ";  
         cin>>key;  
     cout<<"\n\n 1. Encrypt\n 2. Decrypt\n\n Select choice(1 or 2): ";  
     cin>>choice;  
     if(choice==1)  
         a.encrypt(inp,out,key);  
     else if(choice==2)  
         a.decrypt(inp,out,key);  
     else  cout<<"\n\n Unknown choice";  
     getch();  
 }  

Wednesday, March 20, 2013

MBRadio.FM : Latin Music app with Social Touch


MBRadio.FM is lets you hear your favorite Latin music while you are chatting with your friends at Facebook on your android device. MBRadio.FM is a simple to use android application with very smooth navigation and an excellent user interface. The app has got over hundred reviews at Google play with an average rating of 4.6/5. MBRadio.FM provides best and latest songs you would ever hear for free. 


Best part is that application can run on any device with android 2.1 or higher and is just 3.5 MB in size.  This application is perfect for parties and live shows. You can browse on Facebook and Twitter while listening to your favorite music on the app. It allows you to chat with new people all over the world and make friends.

MBRadio.FM can be downloaded from Google play using the link given below


Or scan this QR Code using your smartphone to visit the download page of MBRadio.FM