Skip to content

Instantly share code, notes, and snippets.

View linaspasv's full-sized avatar

Linas Pašviestis linaspasv

View GitHub Profile
@linaspasv
linaspasv / package.json
Last active March 29, 2017 05:47
Webpack 2.x configuration
{
"name": "",
"version": "1.0.0",
"main": "gulpfile.js",
"dependencies": {
},
"devDependencies": {
"susy": "^2.2.6",
"less": "*",
@linaspasv
linaspasv / jquery.ba-tinypubsub.js
Created August 13, 2012 09:49 — 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);