Welcome to Geekdojo Sign in | Join | Help

August 2006 - Posts

Password trouble: Need to be careful with long passwords

I am a fan of Steve Gibson and his weekly Security Now audio talks. His website has a password generation page which generates "long, high-quality random passwords" and in the spirit of self defense I copied about 30 characters [half of the
posted by richardhsu | 1 Comments
Filed Under:

Start Menu Search using PowerShell

Searching for programs to run from Start Menu is tedious which lead me to write a IronPython script for it.Tonight, I learned PowerShell and here is what I have so far which does the same thing:-cd  to your '\All Users\Start Menu' directoryto search
posted by richardhsu | 376 Comments

Preallocating list in python

I was looking for a way to preallocate a Boolean list in Python but didn't know a simple way.After googling I got the following:-# this would give us a 100 element list, each element initialized to Falseflags = [False] * 100'interesting' i thought but