Good stuff here. King’s Quest I-III, Quest for Glory 2, and more.
Recent Posts
Categories
Archives
Meta
Site Info
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.
I was just wondering if Heroes of Might & Magic III could handle Eyefinity. Using the Heroes 3 HD mod, I was surprised:
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.
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.