- entities
- type schema
- protocols
- set of method schemas (input and output)
- services
- functions to implement protocol
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Color = require('color'); | |
var canvas = document.createElement('canvas'); | |
var context = canvas.getContext('2d'); | |
var body = document.body; | |
body.appendChild(canvas); | |
var holons = ["organism", "organ", "tissue", "cell", "molecule", "atom", "particle"]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM stackbrew/ruby:2.1 | |
RUN apt-get update -qq | |
RUN apt-get install -y build-essential libpq-dev postgresql-contrib | |
WORKDIR /tmp | |
ADD Gemfile Gemfile | |
ADD Gemfile.lock Gemfile.lock | |
RUN bundle install --full-index --jobs $(nproc) |
I hereby claim:
- I am ahdinosaur on github.
- I am dinosaur (https://keybase.io/dinosaur) on keybase.
- I have a public key whose fingerprint is AD5B 7EEE B7FF 158B 33FC DB3A A4A6 6E44 80A0 CCF9
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var mapify = require('geojson-mapify'); | |
L.Icon.Default.imagePath = "http://cdn.leafletjs.com/leaflet-0.7.2/images"; | |
// add Leaflet stylesheet | |
var stylesheet = document.createElement("link"); | |
stylesheet.rel = "stylesheet"; | |
stylesheet.href = "http://cdn.leafletjs.com/leaflet-0.7.2/leaflet.css"; | |
document.getElementsByTagName("head")[0].appendChild(stylesheet); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var d3 = require('d3'); | |
var nodes = d3.range(200).map(function () { | |
return { | |
radius: Math.random() * 12 + 4 | |
}; | |
}); | |
var root = nodes[0]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install docker from Debian repos | |
sudo aptitude install docker.io | |
# add your user to the docker group | |
sudo adduser <user> docker | |
# alias docker.io to docker | |
sudo ln "$(which docker.io)" "$(dirname $(which docker.io))/docker" | |
# log out and log back in |
the idea of the "holon" was introduced by Arthur Koestler in The Ghost in the Machine (1967) and was presented again at the Alpbach Symposium (1968) in a paper titled: Beyond Atomism and Holism - the concept of the holon. full text
Koestler defines holons as something that is simultaneously a whole and a part, thus reconciling atomism and holism. he presents holons as building block of self-regulating open hierarchic order as found in biological organisms. the concept of holons is the core thesis behind the implementation of holonic software designed to solve real problems faced by the modern holon.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef CONFIGURATION_H | |
#define CONFIGURATION_H | |
// This configurtion file contains the basic settings. | |
// Advanced settings can be found in Configuration_adv.h | |
// BASIC SETTINGS: select your board type, temperature sensor type, axis scaling, and endstop configuration | |
//User specified version info of this build to display in [Pronterface, etc] terminal window during startup. | |
//Implementation of an idea by Prof Braino to inform user that any changes made | |
//to this build by the user have been successfully uploaded into firmware. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import sys | |
import dxfwrite | |
from dxfwrite import DXFEngine as dxf | |
def main(): | |
num_args = len(sys.argv) - 1 | |
if sys.argv[1] == "stick": |
NewerOlder