Check a SHA1 or MD5 on Windows

May 25, 2013

Download and install Hash & CRC module from Febooti Software

Get Latest Google Chrome's Version Number Using Command Line

May 25, 2013

Download XMLStarlet(~1.5 MB) and Curl

Create a new file, query.xml and insert

<?xml version="1.0" encoding="UTF-8"?>
<request protocol="3.0" ismachine="1">
   <os platform="win" version="6.1" sp="" arch="x86" />
   <app appid="{4DC8B4CA-1BDA-483E-B5FA-D3C12E15B62D}" ap="-multi-chrome" brand="GGLS">
      <updatecheck />
   </app>
</request>

How to Use TrueCrypt

May 24, 2013

TrueCrypt is a one of the best encryption tools to encrypt and secure your files and folders.

Download TrueCrypt

Install TrueCrypt

Double click TrueCrypt Setup 7.1a.exe. Click Next.

Free Resource Editor for Win32

May 24, 2013

Free alternative to Visual Studio resource editor. Love the size ~555 KB .

http://www.resedit.net/

How to Batch Compress PNG Images

May 24, 2013

Download pngcrush

Create a new images/compress.bat file

for /f "tokens=*" %%x in ('dir /b *.png') do (
	echo "crushing %%x"
	pngcrush_1_7_58_w64.exe -brute "%%x" temp.png
	move /Y temp.png "%%x"
)