Skip to content

Instantly share code, notes, and snippets.

View arscan's full-sized avatar
💭
🔥🔥🔥🔥🔥🔥🔥🔥🔥

Rob Scanlon arscan

💭
🔥🔥🔥🔥🔥🔥🔥🔥🔥
View GitHub Profile
---
- :url: http://hl7.org/fhir/ValueSet/observation-methods
:file: hl7_org_fhir_ValueSet_observation-methods.msgpack
:count: 1905
:type: bloom
:code_systems:
- http://snomed.info/sct
- :url: http://terminology.hl7.org/ValueSet/v2-0445
:file: terminology_hl7_org_ValueSet_v2-0445.msgpack
:count: 4
@arscan
arscan / .block
Last active May 7, 2017 13:34 — forked from pbeshai/.block
Animate 100,000 points with regl
license: mit
height: 720
border: no
@arscan
arscan / Gruntfile.js
Last active January 2, 2016 13:39
testing,can delete
module.exports = function(grunt) {
grunt.initConfig({
watch: {
options: {
livereload: true,
},
all: {
files: ['*.*'],
},
},
@arscan
arscan / ball.png
Last active December 31, 2015 16:59
Encom
ball.png
@arscan
arscan / README.md
Last active December 29, 2015 09:39 — forked from mbostock/.block
@arscan
arscan / README.md
Last active December 29, 2015 09:39 — forked from mbostock/.block
@arscan
arscan / README.md
Last active December 28, 2015 07:09
Encom Boardroom

Encom Boardroom

@arscan
arscan / Three.js
Last active December 28, 2015 02:08
Tron: Encom Board Room Visualization
// Three.js r40 - http://github.com/mrdoob/three.js
var THREE=THREE||{};if(!window.Int32Array){window.Int32Array=Array;window.Float32Array=Array}THREE.Color=function(b){this.setHex(b)};
THREE.Color.prototype={copy:function(b){this.r=b.r;this.g=b.g;this.b=b.b;this.hex=b.hex},setHex:function(b){this.hex=~~b&16777215;this.updateRGB()},setRGB:function(b,d,c){this.r=b;this.g=d;this.b=c;this.updateHex()},setHSV:function(b,d,c){var f,g,h,j,k,m;if(c==0)f=g=h=0;else{j=Math.floor(b*6);k=b*6-j;b=c*(1-d);m=c*(1-d*k);d=c*(1-d*(1-k));switch(j){case 1:f=m;g=c;h=b;break;case 2:f=b;g=c;h=d;break;case 3:f=b;g=m;h=c;break;case 4:f=d;g=b;h=c;break;case 5:f=c;g=b;h=m;break;case 6:case 0:f=c;g=d;h=b}}this.setRGB(f,
g,h)},updateHex:function(){this.hex=~~(this.r*255)<<16^~~(this.g*255)<<8^~~(this.b*255)},updateRGB:function(){this.r=(this.hex>>16&255)/255;this.g=(this.hex>>8&255)/255;this.b=(this.hex&255)/255},clone:function(){return new THREE.Color(this.hex)}};THREE.Vector2=function(b,d){this.set(b||0,d||0)};
THREE.Vector2.prototype