More Free Gaming by AGD Interactive

Good stuff here. King’s Quest I-III, Quest for Glory 2, and more.

Posted in Gaming | Leave a comment

Free Gaming Courtesy of Shrapnel Games

Happened across this site the other day. Strategy, arcade and even board games (print & play) are available. Check it out at http://www.shrapnelgames.com/Our_Games/Free_Games.html.

Posted in Gaming | Leave a comment

Heroes of Might & Magic III Eyefinity Test

I was just wondering if Heroes of Might & Magic III could handle Eyefinity. Using the Heroes 3 HD mod, I was surprised:



Posted in Gaming | Leave a comment

Note to Self: Remove audio tracks from mp4

From: http://unix.stackexchange.com/questions/6402/how-to-remove-an-audio-track-from-an-mp4-video-file

 ffmepg -i INPUT.m4v -map 0:0 -map 0:1 -acodec copy -vcodec copy OUTPUT.m4v

Copies the first video channel “0:0″ and the first audio channel “0:1″ discarding the remaining streams.

Posted in Uncategorized | Leave a comment

Note to Self: tcpdump over ssh connection

The scenario is that you’re connected to a remote machine via ssh and you want to run tcpdump and view the output in real time. Unfortunately, the output will include the ssh connection information as well and therefore it’s quite useless. The simple solution is to filter out ssh:

tcpdump [options] not port ssh

Thanks to http://forum.soft32.com/linux2/tcpdump-filter-examples-ftopict29715.html.

Posted in Linux, Note To Self | Leave a comment