Skip to content

Instantly share code, notes, and snippets.

@dfinke
Created December 8, 2015 20:06
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save dfinke/658d4785ff7db853103b to your computer and use it in GitHub Desktop.
Save dfinke/658d4785ff7db853103b to your computer and use it in GitHub Desktop.
Wisdom form the Shellfather, Jeffrey Snover - via Don Jones
function Get-Snoverism {
(Invoke-WebRequest http://snoverisms.com/).images.src |
Where {$_ -match 'quotes'} |
Get-Random |
Where { start "http://snoverisms.com/$($_)" }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment