Skip to content

Instantly share code, notes, and snippets.

View mnichols's full-sized avatar

Mike Nichols mnichols

View GitHub Profile
{
inflight: undefined
, fetch: function() {
if(this.inflight && this.inflight.then) {
return this.inflight.then(fetch.bind(this))
}
return this.inflight = Promise.resolve().then(function() {
//cant remember what jquery xhr api is ...i think 'done' is the thing here.
return this.save().done(function(res){
this.inflight = undefined
(circleup) ~/dev/circleup/CircleUp-Main-Site$ ./manage.py runserver
Performing system checks...
System check identified no issues (6 silenced).
You have unapplied migrations; your app may not work properly until they are applied.
Run 'python manage.py migrate' to apply them.
February 09, 2016 - 16:26:10
Django version 1.8.4, using settings 'settings'
import objectPath from "object-path"
function assertValue(funcName, value) {
if(typeof value !== 'undefined') {
return
}
throw new Error(`You are returning 'undefined' from ${funcName}. This is a bug.`)
}
/**
* nestComponent
const noop = () => {}
const identity = obj => obj
function bus() {
let subscription = () => {}
return {
publish(...data) {
return subscription(...data)
},
subscribe(fn) {
@mnichols
mnichols / interactions.js
Created February 14, 2017 16:37
initializing conversations
/**
GET /queries?clientId=42&type=boards
404 Not Found
POST /commands
{ commands: [{ correlationId: 789, id: 456, command: 'createContext', clientId: '42', type: 'boards' }]}
202 Not Dun
Location: /poll?correlationId=789
GET /poll?correlationId=789
@mnichols
mnichols / es
Created February 16, 2017 18:54
var command = {
command: 'createContext',
id: '42',
type: 'boards'
}
function raiseEvent(event) {
//persistEvent(event)
publishEvent(event)
}
// 20170217013214
// http://localhost:3002/queries?contextId=333
{
"feed": [
"800",
"801",
"802",
"803"
],
var request = {
correlationId: '888',
commands: [{
command: 'makeComment',
contextId: '123',
text: 'foible',
commentId: '456'
}]
}
{
context: { clientId: '42', type: 'screen', contextId: '123' },
threads: {
'888': { commentIds: ['555','556'], createdOn: <date> },
'999': { commentIds: ['222', '223'], createdOn: <date> },
},
metadata: {
'888': { data: '{"some":"data"}', type: 'json' },
'222': { data: 'some annotation', type: 'string' }
},
<section class="player-bar" ng-controller="PlayerBarCtrl as playerBar">
<div class="container">
<div class="control-group main-controls">
<a class="previous" ng-click="playerBar.songPlayer.previous()">
<span class="ion-skip-backward"></span>
</a>
<a class="play-pause">
<span class='ion-play'
ng-show="!playerBar.songPlayer.currentSong.playing"
ng-click="playerBar.songPlayer.play()">