Skip to content

Instantly share code, notes, and snippets.

View alex-wilmer's full-sized avatar

Alex Wilmer alex-wilmer

View GitHub Profile
@mandrewstuart
mandrewstuart / introPython.py
Last active January 12, 2020 16:41
This is a 20-minute introduction to the Python programming language for a talk given at Lighthouse Labs in 2016.
#http://bit.ly/28VdHva
##########
#VARIABLES
##########
#numbers
a = 3 #float, int, and long
#strings
b = 'ha '
@gregberge
gregberge / directive.test.js
Created September 1, 2014 12:55
Angular directive test using mocha.
describe('My directive', function () {
var scope, $compile;
beforeEach(module('app.directives'));
beforeEach(inject(function ($injector) {
$compile = $injector.get('$compile');
var $rootScope = $injector.get('$rootScope');
scope = $rootScope.$new();
@staltz
staltz / introrx.md
Last active May 24, 2024 07:56
The introduction to Reactive Programming you've been missing