Skip to main content

Posts

Showing posts from March, 2012

3D ANALYZER SETTINGS FOR JUST CAUSE

Hello Readers, In this post you will find just cause 3d analyzer settings  Tick following options 1. Emulate HW TnL 2. Antidetect Shaders And then click on run to start the game If you find any difficulty or you have any questions then you can leave your comments or drop an email to my inbox. Don't forget to Like , Subscribe and share the post. Enjoy

3D ANALYSER SETTINGS FOR DEVIL MAY CRY 3

       Emulate HW TnL Force SW TnL Emulate pixel shader caps Check skip pixel shader version 1.1 Check skip pixel shader version 1.4 Check skip pixel shader version 2.0 Check force 100 hz Check disable lighting

3D ANALYSER SETTINGS FOR COLD FEAR GAME

OPEN 3D ANALYSER IF YOU DO NOT HAVE THEN DOWNLOAD IT FROM HERE http://www.2shared.com/file/_1hGoxEZ/3danalyzer-v236.html NOW OPEN 3D ANALYSER SELECT COLDFEAR.EXE AND TICK THE FOLLOWING OPTIONS AND THEN SELECT RUN TICK= emulate HW TnL TICK= force SW TnL TICK= dx8.1 caps THEN CLICK ON RUN...

HIDE ENTIRE DRIVES PARTITION WITHOUT ANY SOFTWARE

HERE IS A COOL TECHNIQUE WHICH HIDES ENTIRE HARD DISK DRIVES BY A SIMPLE PROCEDURE. THIS IS THE BEST SECURITY TIP TO BE EMPLOY AGAINST UNAUTHORISED USERS. 1) GO TO START > RUN > TYPE “DISKPART”. A DOS WINDOW WILL APPEAR WITH FOLLOWING DESCRIPTION. DISKPART> 2) THEN TYPE “LIST VOLUME” THE RESULT WILL LOOK SOMETHING LIKE ONE AS SHOWN BELOW- 3) SUPPOSE YOU WANT TO HIDE DRIVE E THEN TYPE “SELECT VOLUME 3″ THEN A MESSAGE WILL APPEAR IN SAME WINDOW { VOLUME 3 IS THE SELECTED VOLUME} 4) NOW TYPE “REMOVE LETTER E” NOW A MESSAGE WILL COME { DISKPART REMOVED THE DRIVE LETTER } SOMETIME IT REQUIRES TO REBOOT THE COMPUTER. DISKPART WILL REMOVE THE LETTER. WINDOWS XP IS NOT HAVING CAPABILTY TO IDENTIFY THE UNKNOWN VOLUME. YOUR DATA IS NOW SAFE FROM UNAUTHORISED USERS. TO ACCESS THE CONTENT OF HIDDEN DRIVE REPEAT THE PROCESS MENTIONED ABOVE. BUT IN 4TH STEP REPLACE ” REMOVE” BY “ASSIGN”. IT MEANS TYPE “ ASSIGN LETTER E ”.

10 Reasons why you should learn 'C'

1) C is lower level then other programming languages (C++, Java). Programming at a lower level allows you to further your understanding of computers, as a whole. 2) Device drivers and operating systems are written exclusively in C. Now, you may never write a device driver or an operating system, but what if you are ever required to modify one? (......) 3) What if you ever want to get a job programming micro controllers? They are programmed in C. Are you going to limit your possible list of jobs because you didn't want to learn a new language? 4) C programs are smaller and faster then any other program created in a different language. Sometimes your program needs that speed boost that only C can give it. 5) If you have learned C, you can learn any modern programming language. The reason behind this is that all modern programming languages are based on C (Java, C++, C#, etc). 6) Because C has been around for many years, it has a large community and col

$$$$Matrix Effect$$$$

1-Open Notepad. Copy the below mentioned text in your notepad file: @echo off color 02 :start echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% goto start NOTE: FOR EDUCATIONAL PURPOSE ONLY.I AM NOT RESPONSIBLE FOR IF ANYTHING GOES WRONG.... 

Tweaks to Optimize Your Computer For Gaming

Tweaks to Optimize Your Computer For Gaming 1-Regularly clean your cpu and its internal parts from dust which is generally settled in your most important computer parts such as cpu fans,heat sink,graphic card fan,ram etc.. if you don’t take care of it, it’ll slowly start to deteriorate your hardware.. 2-Hard Drive Space:-Make sure you have good amount hard disk space in PC if you dont have then upgrade your harddisk or remove unused applications... 3- Defragmentation-When using a hard drive, space is used wherever available. As such, some files are fragmented all over the disk. The defragment utility analyzes your hard drive, and attempts to consolidate those fragmented files, in an attempt to optimize your computer and speed up your system.

$$$CLASS FOR LIBRARY IN C $$$

Class for Library # include # include // Creating a basic template for book and magazine class lib { private: char title[20]; char pub[20]; unsigned int acc_no; public: //method for getting inputs void get_details() { cout<<"Enter the book title"< >title; cout<<"Enter the publisher name"< >pub; cout<<"Enter the accession number"< >acc_no; } //method for showing output void show_details() { cout<<"Title : "< >author; } void show_details() { lib::show_details(); cout<<"Autohr : "< >editor; } void show_details() { lib::show_details(); cout<<"editor : "< } }; void main(void) { clrscr(); //creating objects book b; magz m; b.get_details(); m.get_details(); b.show_details(); m.show_details(); getch(); }