Skip to content

Instantly share code, notes, and snippets.

View theClarkSell's full-sized avatar

Clark Sell theClarkSell

View GitHub Profile
@GregLevenhagen
GregLevenhagen / boxstarter
Last active October 29, 2016 02:01
Boxstarter Polyglot Development
#Install-WindowsUpdate -AcceptEula
#Update-ExecutionPolicy Unrestricted
#Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions
#Enable-RemoteDesktop
#Enable-MicrosoftUpdate
#Set-TaskbarSmall
# install Visual Studio instances, SQL Server first
# Web Platform Installer (get a full list of packages you can install from webpi using "clist -source webpi")
@scottjehl
scottjehl / fixorientationzoom.js
Created January 6, 2012 00:27
Fix iOS Orientation Change Zoom Bug
/*
NOTE!!!!
The most updated version of this code is here:
https://github.com/scottjehl/iOS-Orientationchange-Fix
@bsatrom
bsatrom / addSpeaker-brief.html
Created June 30, 2011 22:06
Moving from markup-based KnockoutJS bindings to unobtrusive bindings (Before)
<form data-bind="submit: addSpeaker">
<fieldset>
<legend>Speaker Info</legend>
Name: <input type="text" data-bind="value: name" /> <br />
Bio: <textarea data-bind="value: bio"></textarea> <br />
Twitter Handle: <input type="text" data-bind="value: twitterHandle" /> <br />
State: <input type="text" data-bind="value: state" /> <br />
</fieldset>
<fieldset>
<legend>Languages</legend>