Sep 11 2011, 03:17 AM
Lol dude 1man1jar is savage!
I think the idea of batch programming is so that you can make yourself quick executables that are meant to make your life a little easier. I traded in .bat for .ahk. You should check out AutoHotkey man, it's actually a tidy little program and the coding language is pretty easy. It has a good GUI to it, and can do some handy things like :
Script for auto searching any text that is copied to Clipboard (press Win + G)
I think the idea of batch programming is so that you can make yourself quick executables that are meant to make your life a little easier. I traded in .bat for .ahk. You should check out AutoHotkey man, it's actually a tidy little program and the coding language is pretty easy. It has a good GUI to it, and can do some handy things like :
Script for auto searching any text that is copied to Clipboard (press Win + G)
Code:
#g:: ; Win+g
Run http://www.google.com/search?q=%clipboard%
Return
If you read this, you suck.