Topics

Archives

Handy References

Windows

Embedding Fonts in Word

Friday, November 26th, 2010

http://word.tips.net/Pages/T001611_Embedding_Fonts_In_a_Document.html http://www.howtogeek.com/howto/microsoft-office/embed-true-type-fonts-in-word-and-powerpoint-2007-documents/

Rootkit Hunters

Wednesday, February 10th, 2010

A few resources for finding rootkits: Linux: Rootkit Hunter Chkrootkit Windows: RootkitRevealer

My Favorite Commands…

Friday, October 5th, 2007

Some of the command constructs I love but don’t always remember off the top of my head: Recursively search for a text string, and provide the file path and name. sudo find ./  -exec grep “http://litmus.mozilla.org” {} \ ls -l {} \; 2> /dev/null Recursively add files to svn: svn status | grep “\?” | awk ‘{print [...]