Skip to content

Instantly share code, notes, and snippets.

View mikowals's full-sized avatar

Michael Kowalski mikowals

View GitHub Profile

Keybase proof

I hereby claim:

  • I am mikowals on github.
  • I am roaringdeep (https://keybase.io/roaringdeep) on keybase.
  • I have a public key ASD_1bKL48QvxjlG8XUgoOQqI8lxqlqsQQJ2CExRF1XfQQo

To claim this, I am signing this object:

@mikowals
mikowals / explanation.txt
Last active August 29, 2015 13:57
data-loading-text vs Session
Reproduction of problem getting Bootstrap / JQuery to work with Meteor reactivity
using Meteor 0.8.0-rc0
meteor add bootstrap
Button text stops changing between 'action1' and 'action2' after it has been clicked and had $().button('loading') called.
@mikowals
mikowals / leak.html
Last active August 29, 2015 13:57
Subscription leak
<head>
<title>Leak</title>
</head>
<body>
{{> main}}
{{> serverFacts}}
</body>
<template name="main">
@mikowals
mikowals / publishJoin.html
Last active December 20, 2015 15:19
Meteor reactive publish with collection join answering Stack Overflow question ( http://stackoverflow.com/questions/17902480/how-do-i-make-a-collection-reactive-based-on-the-contents-of-another)
<head>
<title>publishTest</title>
</head>
<body>
{{> hello}}
</body>
<template name="hello">
<h1>Hello World!</h1>
@mikowals
mikowals / feedparser.js
Last active December 18, 2015 19:39
feedparser debugging for smallpict rss feed
#! /usr/bin/env node
var feedparser = require( 'feedparser' );
var request = require( 'request' );
var feedTest = function ( url ) {
var statusCode;