Here is my TODO list for our next catchup
- bibliography bibtex
- light latex
- slides ✅
- scrivener import/export?
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 | |
}) |
#!/bin/bash | |
echo "Hello, world!" |
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')); |
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'), |
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({ |
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' |