Skip to content

Instantly share code, notes, and snippets.

View jsantangelo's full-sized avatar

James Sant'Angelo jsantangelo

View GitHub Profile
@jsantangelo
jsantangelo / ProgrammingLanguageChecklist
Last active December 18, 2015 15:58
Programming Language Checklist.
Programming Language Checklist
by Colin McMillen, Jason Reed, and Elly Jones.
You appear to be advocating a new:
[ ] functional [ ] imperative [ ] object-oriented [ ] procedural [ ] stack-based
[ ] "multi-paradigm" [ ] lazy [ ] eager [ ] statically-typed [ ] dynamically-typed [ ] optionally-typed
[ ] pure [ ] impure [ ] non-hygienic [ ] visual [ ] beginner-friendly
[ ] non-programmer-friendly [ ] completely incomprehensible
programming language.
@jsantangelo
jsantangelo / atomaggregator.js
Created December 20, 2012 22:58
Javascript to aggregate Atom feeds, using Google's Feed API.
google.load("feeds", "1");
function AtomEntry(date, text, repo) {
this.date = date;
this.text = text;
this.repo = repo;
}
function compareDate(a, b) {
if (a.date < b.date)