Guilds added to Dominion Companion
avatar

Dominion Companion has just been updated to include the Guilds expansion.

Posted in Android Apps, Dominion Companion, News | Leave a comment

Secure Your Linux Desktop and SSH Login Using Two Factor Google Authentication
avatar

Secure Your Linux Desktop and SSH Login Using Two Factor Google Authentication.

Posted in Linux | 1 Comment

Vi Cheat Sheet
avatar

This is a pretty good Vi cheat sheet
http://sheet.shiar.nl/vi

Posted in Linux | Leave a comment

Create a Directory Tree CLI
avatar

Using the command below you can create a simple directory tree just by using standard commands:

find . -print | sed -e ‘s;[^/]*/;|____;g;s;____|; |;g’

Posted in Linux | Leave a comment

Register Every DLL in a Directory with one Command
avatar

Have you ever had a folder filled with DLLs that you needed to register in the system?  You can register them all by just running this simple command:

for %v in (“<path>\*.dll”) do (regsvr32 /s “%v”)

Posted in News | Tagged | Leave a comment