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
A-1 Pictures | |
A. J. Casson | |
Aaron Douglas | |
Aaron Horkey | |
Aaron Jasinski | |
Aaron Siskind | |
Abbott Fuller Graves | |
Abbott Handerson Thayer | |
Abram Efimovich Arkhipov | |
Adam Elsheimer |
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 Git-Loglive() | |
{ | |
<# | |
.SYNOPSIS | |
Outputs git log information live. | |
.DESCRIPTION | |
Outputs log information in a loop with a specified polling rate. | |
.PARAMETER lines | |
The number of log lines to output. | |
.PARAMETER sleep |
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
# Usage: | |
# Http-Get http://api.asite.com/getUser/45 | |
# or string interpolation style: | |
# Http-Get "http://api.asite.com/{0}/{1}" getUser 45 | |
function Http-Get | |
{ | |
if($args.Length -lt 1) | |
{ | |
"Invalid args." | |
return; |