Skip to content

Instantly share code, notes, and snippets.

@jasonyandell
jasonyandell / chocolatey-env-setup.ps1
Created June 21, 2017 22:52 — forked from amogram/chocolatey-env-setup.ps1
A Chocolatey script for PowerShell I use to set up my Windows development environment. I use this when setting up my own Dev VMs. Use at your own risk.See http://bit.ly/1a301JK and http://chocolatey.org/ for more information.
# Simple environment setup script
# Install Applications
choco install fiddler4
choco install notepadplusplus
choco install visualstudiocode
choco install greenshot
choco install GoogleChrome
choco install putty
choco install ccleaner
@jasonyandell
jasonyandell / gist:2890301
Created June 7, 2012 17:45 — forked from jyandell1/gist:2886363
"Real" stats terms (e.g. μ, σ) in F#??
// from http://blog.codebeside.org/post/2011/10/27/F-as-a-OctaveMatlab-replacement-for-Machine-Learning.aspx
let featureNormalize (X: #Matrix<float>) =
let μ =
X.ColumnEnumerator()
|> Seq.map (fun (j, col) -> col.Mean())
|> DenseVector.ofSeq
let σ =
X.ColumnEnumerator()