Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Tim Morgan http://timmorgan.org

« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS 

Copy Public Key To Host In One Line

   1  
   2  ssh username@host "echo `cat ~/.ssh/id_dsa.pub` >> ~/.ssh/authorized_keys"

Random Characters with Ruby

Use for a password or salt or whatever...

   1  
   2  (0..25).inject('') { |r, i| r << rand(93) + 33 }
« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS