Skip to content

Instantly share code, notes, and snippets.

View sholtomaud's full-sized avatar
💭
Research

Sholto Maud sholtomaud

💭
Research
  • Sydney
View GitHub Profile
function update(account, id, schemaData, callback){
schemaData.companyId = account.companyId;
kgo
({
account: account,
id: id,
data: schemaData
})
node_modules
function update(account, id, schemaData, callback){
schemaData.companyId = account.companyId;
kgo
({
account: account,
id: id,
data: schemaData
})

Hello TWJH

Here is my TODO list for our next catchup

  • bibliography bibtex
  • light latex
  • slides ✅
  • scrivener import/export?

#!/bin/bash
echo "Hello, world!"
@sholtomaud
sholtomaud / index.js
Created July 10, 2016 05:48
requirebin sketch
const fastn = require('fastn')({
list: require('fastn/listComponent'),
text: require('fastn/textComponent'),
templater: require('fastn/templaterComponent'),
_generic: require('fastn/genericComponent')
}, true);
const app = fastn('div', 'Hello Datalist ',
fastn('input',{
list:"browsers",
const fastn = require('fastn')({
list: require('fastn/listComponent'),
text: require('fastn/textComponent'),
templater: require('fastn/templaterComponent'),
_generic: require('fastn/genericComponent')
}, true);
// items: fastn.binding('dropdowns').attach(dropdownModel),
// template: function(model,scope){
// return fastn('option',scope.get('item'));
@sholtomaud
sholtomaud / index.js
Last active July 10, 2016 05:49
requirebin sketch
const insertCSS = require('insert-css')
var domify = require('domify')
var html = '<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet/v0.7.7/leaflet.css" />'
document.body.appendChild(domify(html))
const fastn = require('fastn')({
list: require('fastn/listComponent'),
text: require('fastn/textComponent'),
templater: require('fastn/templaterComponent'),
_generic: require('fastn/genericComponent'),
@sholtomaud
sholtomaud / index.js
Last active July 3, 2016 07:18 — forked from MauriceButler/index.js
requirebin sketch
var fastn = require('fastn')({
list: require('fastn/listComponent'),
text: require('fastn/textComponent'),
templater: require('fastn/templaterComponent'),
_generic: require('fastn/genericComponent'),
leaflet: require('leaflet-component/leafletComponent'),
marker: require('leaflet-component/leafletMarkerComponent')
}, true);
let markerModel = new fastn.Model({
@sholtomaud
sholtomaud / index.js
Created February 3, 2016 01:58
requirebin sketch
var fastn = require('fastn')({
list: require('fastn/listComponent'),
text: require('fastn/textComponent'),
templater: require('fastn/templaterComponent'),
_generic: require('fastn/genericComponent')
}, true);
var app = fastn('div',
fastn('button',{
class: 'mdl-button mdl-js-button mdl-button--fab mdl-js-ripple-effect'