This file contains hidden or 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
param | |
( | |
[string] $inputFile, | |
[string] $outputFile | |
) | |
if (($inputFile -eq $null) -or ($outputFile -eq $null)) { | |
"usage: convert_csv_to_json.ps1 [inputFile] [outputFile]" | |
return; | |
} |
This file contains hidden or 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
/* | |
* TextAreaExpander plugin for jQuery | |
* v1.0 | |
* Expands or contracts a textarea height depending on the | |
* quatity of content entered by the user in the box. | |
* | |
* By Sam Blowes | |
* | |
* As featured on SitePoint.com: | |
* http://www.sitepoint.com/blogs/2009/07/29/build-auto-expanding-textarea-1/ |