Skip to content

Instantly share code, notes, and snippets.

View tastapod's full-sized avatar

Daniel Terhorst-North tastapod

View GitHub Profile
@tastapod
tastapod / Acrostic.txt
Created August 22, 2012 14:37 — forked from JulianBirch/Acrostic.txt
Scrum described without using the word stupid.
Scrum is a best-practice software development methodology.
There are many advantages to using it in an enterprise development environment.
Unlike other methodologies, such as extreme programming, there is no need to change coding practices.
Project Managers will therefore find it easy to adopt and incorporate into their existing workflows.
Iterations with strict time-limited sprints greatly improve productivity.
Developer participation is enforced through the use of constant stand-up meetings.
Mostly people just robotically say what they did yesterday and what they are doing today, which is stupid.
@tastapod
tastapod / example.html
Created May 8, 2012 08:22 — forked from joelnet/example.html
Unobtrusive Knockout support library for jQuery
Choose a ticket class: <select id="tickets"></select>
<p id="ticketOutput"></p>
<script id="ticketTemplate" type="text/x-jquery-tmpl">
{{if chosenTicket}}
You have chosen <b>${ chosenTicket().name }</b>
($${ chosenTicket().price })
<button data-bind="click: resetTicket">Clear</button>
{{/if}}