snippet
- 
(C#) Generate random readable passwordsHere’s a super simple function that generates humanly readable passwords by weaving random consonants and wovels. The generated passwords are by no means secure. I did this for an application used to launch game servers and wanted to make the passwords be easy to communicate over Skype. 
- 
Generate dummy dataHere’s a great tool for generating dummy data for your database etc. www.generatedata.com 
- 
(C#) Scroll to bottom of a textboxShort snippet: [c language=”#”] textBox.SelectionStart = textBox.TextLength; textBox.ScrollToCaret(); [/c]