Showing posts with label password. Show all posts
Showing posts with label password. Show all posts

Sunday, January 17, 2010

Reset Gnome keyring password


rm .gnome/keyrings/login.keyrings
rm .gnome/keyrings/default.keyrings

Friday, September 4, 2009

Commandline password prompt in ruby


require 'rubygems'
require 'highline/import'

def get_password(prompt="Enter Password")
ask(prompt) {|q| q.echo = false}
end

password = get_password()