Wednesday, April 23, 2014

3 G in Pakistan

Today was the big day in the technological history of Pakistan. Government of Pakistan has successfully auctioned 3G & 4G licences to four telcos of Pakistan today. After offering 3G/4G services by telecos, customers will be able to get ultra high speed broadband on their smartphones with speed ranging from 1MB - 42 MBs.
Final winners and details are as follows.
Zong won 10Mhz spectrum for 3G and 10Mhz for 4G.
Mobilink won 10Mhz for 3G.
Telenor won 5Mhz for 3G .
Ufone won 5Mhz for 3G.
So as of now there are four companies which are going to offer 3G services to its customer except Warid which did not participate in the auction.
Expect a more than 2 MB/sec download speed in scenario of Pakistan.


Friday, April 11, 2014

How to make your pc softwares password protected.

Today I am going to tell you a trick to make your pc softwares password protected. It means whenever anyone open any software in your pc then he/she will be asked for a password if the user don’t know the password then he can not use the software. If you are interested to protect your pc softwares with password then just follow below steps
 
STEP 1:
First of all download a software named Password Door to your pc [Download: 594.85 KB]

STEP 2:
Now install it to your pc, while installing , it will ask you to enter a password which will be used to open the password protected softwares.

STEP 3:
Now open Password Door with the help of password which you have entered while installing
Now Click on protect a program.

STEP 4:
Now You’ll see a list of all program on which you can set password.
Select the app from the list and make it password protect.

Now whenever you or any other user open password protected app, app will ask for the password. if you know the password only then you can access the application.

NOTE: If you are thinking, your little bro or sis uninstall Password Door to access the application, then they can’t do it, because this program will ask for the same password to uninstall it from pc.

How to post blank comment or status On facebook

First Go To Comment Field Where You Want To Post Comment or Status.
Then Hold Alt Key And Type 0173 From Numeric Pad.
Press Enter To Post Comment.
OR
Paste this string into the text field: @+[0:0: ] and remove '+' sign.
See the magic.

How to delete administrator password without any software

Method 1
Boot up with DOS and delete the sam.exe and sam.log files from Windows\system32\config in your hard drive. Now when you boot up in NT the password on your built-in administrator account which will be blank (i.e No password). This solution works only if your hard drive is FAT kind.
Method 2
Step 1. Put your hard disk of your computer in any other pc .
Step 2. Boot that computer and use your hard disk as a secondary hard disk (D'nt boot as primary hard disk ).
Step 3. Then open that drive in which the victim’s window(or your window) is installed.
Step 4. Go to location windows->system32->config
Step 5. And delete SAM.exe and SAM.log
Step 6. Now remove hard disk and put in your computer.
Step 7. And boot your computer.

Simple Array to show 1-5 after getting numbers from user

#include<conio.h>
#include<stdio.h>
void main(void)
{
int num[5],a;
clrscr();
for(a=0;a<=4;a++)
{
printf("\n Enter a number=");
scanf("%d",&num[a]);
}
for(a=0;a<=4;a++)
{
printf("\n %d",num[a]);
}
getch();
}