Monday, November 26, 2012

Speed up Internet




Microsoft reserves 20% of your available bandwidth for their own purposes like Windows Updates and interrogating your PC etc

You can get it back:

Click Start then Run and type "gpedit.msc" without quotes.This opens the group policy editor. Then go to:
Local Computer Policy

Easiest way to get traffic to your web site


Easiest way to get traffic to your web site | Digg and StumbleUpon

For your information ,Stumbleupon and DIGG are social bookmarking websites which are useful to catch upon some new websites and other things in whichever category you want.They can be, if properly used, a very potent weapon for getting a good amount of traffic for your website.

Deleting System Software



XP hides some system software you might want to remove, such as Windows Messenger, but

Changing password of a remote PC




Using the below given tips you can change the password of an user account in your friend’s system.

1. Open notepad.

Monday, November 12, 2012

Windows Genuine Hack


Windows Genuine Hack – 100% Works

Windows Genuine Hack :-

1) Download “Windows.Genuine.Advantage.Validation..rar”
2) Extract It.
3) Run “installer.bat” file.
4) Reboot.
5) Enjoy Your Validated Windows.

windows genuine

Download :
http://rapidshare.com/files/115531401/Windows.Genuine.Advantage.Validation..rar

Run Firefox inside Firefox


Run Firefox inside Firefox

How to run Firefox inside Firefox.?

Yup you can run Firefox inside firefox just by typing following url.

How about Opening Firefox inside Firefox which is again in another Firefox..?
Not bad huh?
And its really easy too just type in this url in Firefox's address bar and there you go!
Firefox inside Firefox!

copy paste following url in a web browser (mozilla firefox).

chrome://browser/content/browser.xul


Following is the screenshot of this trick (firefox in firefox in firefox, which is again in another firefox)-

The Play Book by Barney Stinson


The Play Book by Barney Stinson

DOWNLOAD

BRO CODE By Barney Stionson


Download Barney Stions BRO CODE



DOWNLOAD

Mobile hack to call your friends:


Mobile hack to call your friends:


Hello Friends after "Make Free Phone Calls From PC to mobile for free" hack  today I am
 sahring With you a extremely Nice Prank or you can simply say Hack
 i.e "How To Call Your Friends From THeir Own Cell Number".
I was asked by many Friends to Write Tutorials about mobile hacks and Pranks .
 So I am Sharing My Second Mobile Extreme Prank With You all.

Create An Ftp Server On Your PC


 Create An Ftp Server On Your PC



Process-1:
First of all u have to get an static IP-Address.
Need a a static ip-address for ur FTP Server.Necessity for getting this static ip-address is ur not suppose to use ur own IP-Address.The main reason is u dont want to show ur IP-Address to everyone , there are many other reasons too but leave them aside..

Folder Lock Without Any Software


-: Folder Lock Without Any Software :-




Folder Lock With Password Without Any Software-
Paste the code given below in notepad and 'Save' it as batch file (with extension '.bat').
Any name will do.

Wednesday, November 7, 2012

Convolution Decoder in Matlab


clear all;
close all;
f=input('Enter the number of fliflops:');
x=input('Enter the number of outputs:');

CONVOLUTIONAL ENCODER in Matlab


-%CONVOLUTIONAL ENCODER
clear all;
clc
m=input('enter the message vector ');

Cyclic Code Generator in C


%cyclic code generator
clear all;
clc;
n=input('enter the length of codeword=');

Cyclic Decoding in C


Cyclic Decoding-
clear all;
clc;
n=input('enter the length of codeword=');
k=input('enter the length of message=');

Information Rate in C


#include<stdio.h>
#include<conio.h>
#include<math.h>
 void main()
{ int i,n,r;
float I[10],p[10],H[10],s,TI,TH,IR;
clrscr();

LBC Decoding in C


%LBC DECODING
clear all;
clc;
n=input('enter the length of codevector=');
k=input('enter the message codevector=');
p=input('enter the parity matrix=');
r=input('enter the received codevector=');
a=p';

LBC encoding In C


#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,n,k,M[10],C[10],G[10][10],par[10][10];
clrscr();

Shanon Fano In C


#include<stdio.h>
#include<conio.h>
#include<math.h>
#include<string.h>