Skip to content

Instantly share code, notes, and snippets.

View klaemo's full-sized avatar

Clemens Stolle klaemo

View GitHub Profile
@klaemo
klaemo / package.json
Created July 4, 2015 09:49
watching css
npm i -D chokidar-cli
function MyThing (name) {
this.name = name
}
MyThing.prototype.sayHello = function () {
return 'hello ' + this.name
}
var thing = new MyThing('Erik')
thing.sayHello()
@klaemo
klaemo / ablauf
Last active August 29, 2015 14:21
starplot.js
AppView.renderSubview(starplot)
-> starplot.initialize()
-> starplot.render() (automatisch aufgerufen durch AppView.rendersubview)
-> starplot.renderWithTemplate() (aufgerufen in starplot.render())
// jetzt exisitert das HTML element starplot.el inklusive svg
-> d3.select()...
@klaemo
klaemo / gist:61ff0bc2fd3b81490be6
Created May 13, 2015 13:19
fast image rendering in the browser
var context = canvas.getContext('2d')
var img = new Image()
img.onload = function() {
context.drawImage(img, 0, 0)
window.URL.revokeObjectURL(this.src)
}
img.src = window.URL.createObjectURL(new Blob([data], {'type': 'image\/jpeg'}))
@klaemo
klaemo / schema
Created March 21, 2015 14:34
inventory
/*
Products flow from one location to another. This is tracked with deliveries.
Delivery:
amount
sourceId
targetId
productId
*/
Delivery.belongsTo(Location, { as: 'source' })
@klaemo
klaemo / mixin.js
Created January 28, 2015 11:48
onTransitionEnd one-off function
var transitionend = require('transitionend-property')
module.exports = {
onTransitionEnd: function(el, fn) {
var self = this
function handler(event) {
fn.call(self, event)
el.removeEventListener(event.type, handler)
}
el.addEventListener(transitionend, handler, false)
@klaemo
klaemo / style.css
Last active August 29, 2015 14:14
understandinges6
body {
font-family: Georgia, serif;
color: #222;
line-height: 1.5;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
@klaemo
klaemo / index.html
Created July 23, 2014 22:38
stackenblochen mobile
<!-- in den <head> -->
<meta name="viewport" content="width=device-width, initial-scale=1">
@klaemo
klaemo / main.css
Last active August 29, 2015 14:04
holgi's blog
/* ganz ans Ende der main.css */
body {
margin: 0;
padding: 14px;
font-family: Georgia, serif;
font-size: 16px;
color: #222;
line-height:1.5;
background-color:white;
background-position: top left;
@klaemo
klaemo / transaction.js
Created June 3, 2014 14:01
transaction
{
"product": "product-id",
"from": "storage",
"to": "sold",
"volume": 10
}
// or
{
"product": "product-id",
"from": "delivery",