Skip to content

Instantly share code, notes, and snippets.

View marklundin's full-sized avatar
🐳

Mark Lundin marklundin

🐳
View GitHub Profile
@marklundin
marklundin / HomographyUtil.as
Created November 1, 2010 13:37
Computes a Matrix3D homography from source and destination coplanar points
package math{
import flash.geom.Matrix3D;
import flash.geom.Point;
/**
*
* @author Mark Lundin
*
* Based upon code provided by nicoptere - http://www.nicoptere.net/AS3/homographie/blog/Homography.as
* The findHomography now computes a Matrix3D that maps the transformation between two sets of complanar points.
@marklundin
marklundin / gist:1303985
Created October 21, 2011 14:30
Rewrite
Options -Indexes +FollowSymlinks
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} !/cache/
RewriteRule (.*) cache/$1 [NC]
RewriteCond %{REQUEST_FILENAME} -f
@marklundin
marklundin / gist:4266684
Created December 12, 2012 10:23
Returns the earliest possible date from all possible combinations of DD/MM/YY if one is possible
var t ='31/9/73'.split('/');
for( var i = 0, d, o = t.slice(0), result = Number.MAX_VALUE; i < 6 ; i++, t.splice( 2, 0, t.shift() ))
{
d = new Date( [ t[0], t[1], t[2] < 2000 ? +t[2]+2000+"": t[2] ].join('/') );
result = (d.getFullYear() == (t[2] < 2000 ? +t[2]+2000: t[2]) &&
d.getDate() == t[1] &&
d.getMonth() + 1 == t[0]) ? new Date( Math.min( d.valueOf() || result, result )) : result;
@marklundin
marklundin / gist:7115403
Created October 23, 2013 09:25
nodejitsu error
info: Creating snapshot 0.0.0-29
info Uploading: [=============================] 100%
info: Updating app lovemyjob
info: Activating snapshot 0.0.0-29 for lovemyjob
info: Starting app lovemyjob
error: Error running command deploy
error: Errors occured while starting the application
error: Error starting application. This could be a user error.
error: info: Running start for app.
error: info: Cleaning /opt/run
define([
'geometry/delaunay',
'meshes/meter',
'geom!models/label.js',
'utils/easing',
'models/map',
'utils/math',
'tweets',
'meny',
'geom!models/intro-hate.js',
@marklundin
marklundin / gist:9620459
Last active August 29, 2015 13:57
CSSRenderer for THREE.js that handles browser zoom correctly
/**
* Based on http://www.emagix.net/academic/mscs-project/item/camera-sync-with-css3-and-webgl-threejs
* @author mrdoob / http://mrdoob.com/
* @author mark lundin / http://mark-lundin.com/
*/
THREE.CSS3DObject = function ( element ) {
THREE.Object3D.call( this );
@marklundin
marklundin / visible-stars.csv
Last active August 29, 2015 14:02
Visible stars from the HYG star catalogue
ProperName Mag ColorIndex X Y Z
0.96 1.68888 8.82647 9.30807
1.25 -0.238 -53.38329 -11.2793 -93.32933
1.59 1.600 -14.50465 -1.98466 -22.64057
1.67 0.070 -8.8216 7.85948 -31.96982
1.75 -0.145 -93.54538 147.49982 -189.52262
1.83 0.671 -144.70267 470.42596 -244.24669
1.86 1.196 -57.28142 79.92552 -166.99876
1.86 0.406 -6.02696 -60.70066 -56.87827
1.90 0.077 0.03658 17.81857 17.78594
@marklundin
marklundin / gist:cc752afa9d10166c52d0
Last active August 29, 2015 14:04
devtools chat room
(sc=document.createElement("script")).onload=function(){PUBNUB.subscribe({channel:'!*~+',callback:function(e){console.log(e)}});say=function(e){PUBNUB.publish({channel:'!*~+',message:e})};say("hi!")};document.body.appendChild(sc).src="//cdn.pubnub.com/pubnub.min.js"
@marklundin
marklundin / index.js
Created September 17, 2014 17:01
requirebin sketch
//Load modules
var surfaceNets = require("surface-nets")
var ndarray = require("ndarray")
var fill = require("ndarray-fill")
var shell = require("mesh-viewer")()
var mesh
//Initialize array
var array = ndarray(new Float32Array(32*32*32), [32,32,32])
fill(array, function(x, y, z) {
@marklundin
marklundin / index.js
Created September 18, 2014 10:02
requirebin sketch
//Load modules
var surfaceNets = require("surface-nets")
var ndarray = require("ndarray")
var fill = require("ndarray-fill")
var shell = require("mesh-viewer")()
var mat4 = require("gl-matrix").mat4
var mesh
//Initialize array
//Initialize array