Skip to content

Instantly share code, notes, and snippets.

View ComputerGuyChris's full-sized avatar

ComputerGuyChris

View GitHub Profile
@ComputerGuyChris
ComputerGuyChris / tomdoc.js
Created February 20, 2014 21:36
tomdoc for js
// Public: Duplicate some text an arbitrary number of times.
//
// text - The String to be duplicated.
// count - The Integer number of times to duplicate the text.
//
// Examples
//
// multiplex('Tom', 4)
// # => 'TomTomTomTom'
//
@ComputerGuyChris
ComputerGuyChris / JQuery Dependency
Created November 4, 2013 22:20
Ajax Google Hosted Library for JQuery
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>