Skip to content

Instantly share code, notes, and snippets.

View blowsie's full-sized avatar
❤️
Vue Composition

Sam Blowes blowsie

❤️
Vue Composition
View GitHub Profile
@blowsie
blowsie / gist:aa9997be62e8fbc6a991878c62b51590
Created July 7, 2016 12:52 — forked from janbaer/gist:5045798
Convert CSV to Json with powershell
param
(
[string] $inputFile,
[string] $outputFile
)
if (($inputFile -eq $null) -or ($outputFile -eq $null)) {
"usage: convert_csv_to_json.ps1 [inputFile] [outputFile]"
return;
}
@blowsie
blowsie / TextAreaExpander.js
Last active December 10, 2015 15:08
Auto expanding textarea element plugin
/*
* 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/