Skip to content

Instantly share code, notes, and snippets.

View elithompson's full-sized avatar

Eli Thompson elithompson

View GitHub Profile
@GraemeF
GraemeF / Continuous-CoffeeScript.ps1
Created October 8, 2011 22:19 — forked from jfromaniello/continous-qunit.ps1
Continuously watches for .coffee file changes in a folder (and subfolders), and runs the CoffeeScript compiler against them
# watch a file changes in the current directory,
# compile when a .coffee file is changed or renamed
$watcher = New-Object System.IO.FileSystemWatcher
$watcher.Path = get-location
$watcher.IncludeSubdirectories = $true
$watcher.EnableRaisingEvents = $false
$watcher.NotifyFilter = [System.IO.NotifyFilters]::LastWrite -bor [System.IO.NotifyFilters]::FileName
while($TRUE){
anonymous
anonymous / page1
Created May 11, 2011 21:02
n00b asp.net
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Data.SqlClient;
namespace PIF