Skip to content

Instantly share code, notes, and snippets.

View mkochendorfer's full-sized avatar

Michael Kochendorfer mkochendorfer

  • Phase2 Technology
View GitHub Profile
@mkochendorfer
mkochendorfer / P2Con 2018 Star Wars Launchpad
Created June 12, 2018 15:06
A Launchpad demo GraphQL service built for a P2Con workshop: https://launchpad.graphql.com/new
import { makeExecutableSchema } from 'graphql-tools';
import Airtable from 'airtable';
class AirtableHelper {
constructor(apiKey, baseId) {
// Init the Airtable integration.
this.base = new Airtable({
endpointUrl: 'https://api.airtable.com',
apiKey,
}).base(baseId);
@mkochendorfer
mkochendorfer / userstyle.css
Last active May 30, 2017 19:44
Flowdock userstyle.css
/* On OSX, place this at ~/Library/Application Support/Flowdock/userstyle.css */
/* Override default flow colors with P2 branding colors */
.flow-tab:nth-child(5n+1) .tab-avatar {
background: #fe7900 !important;
}
.flow-tab:nth-child(5n+2) .tab-avatar {
background: #febd3b !important;
}
.flow-tab:nth-child(5n+3) .tab-avatar {