Created
December 8, 2015 20:06
-
-
Save dfinke/658d4785ff7db853103b to your computer and use it in GitHub Desktop.
Wisdom form the Shellfather, Jeffrey Snover - via Don Jones
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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