Skip to content

Instantly share code, notes, and snippets.

View stefek99's full-sized avatar
🦄
Rainbows. Lasers. Unicorns.

Michal Stefanow stefek99

🦄
Rainbows. Lasers. Unicorns.
View GitHub Profile
@stefek99
stefek99 / app.html
Created July 21, 2016 15:17 — forked from jdanyow/app.html
Aurelia RequireJS Gist
<template>
<h1>${message}</h1>
</template>
@stefek99
stefek99 / app.html
Created July 11, 2016 15:21 — forked from jdanyow/app.html
Aurelia Validation Demo
<template>
<require from="./registration-form"></require>
<registration-form></registration-form>
</template>
@stefek99
stefek99 / jquery.ba-tinypubsub.js
Created October 3, 2012 10:32 — forked from cowboy/HEY-YOU.md
jQuery Tiny Pub/Sub: A really, really, REALLY tiny pub/sub implementation for jQuery.
/* jQuery Tiny Pub/Sub - v0.7 - 10/27/2011
* http://benalman.com/
* Copyright (c) 2011 "Cowboy" Ben Alman; Licensed MIT, GPL */
(function($) {
var o = $({});
$.subscribe = function() {
o.on.apply(o, arguments);