Sunday, May 01, 2011

How to show your fps in game (Heroes of Newerth)

Heres a cool trick to get your fps to show up in HoN.
First bring up the console using ctrl+f8, then type in host_drawfps 1.
This will show your current frames per second in the top right of your screen.
If you want it to show your Ping type host_drawfps 2.

To cancel these simply type host_drawfps 0.
Enjoy.

Git get all remote branches

git branch -r \ | grep -v '\->' \ | sed "s,\x1B\[[0-9;]*[a-zA-Z],,g" \ | while read remote; do \ git branc...