Skip to content

Instantly share code, notes, and snippets.

View anselm's full-sized avatar

anselm anselm

View GitHub Profile
@anselm
anselm / Unity3DArrow
Created October 7, 2014 23:22
An example of having a 2d arrow on the screen follow a 3d object in the world as a kind of radar hint about where that object is (for Unity3D).
using UnityEngine;
using System.Collections;
[ExecuteInEditMode]
public class ArrowScript : MonoBehaviour {
public GameObject lookat;
public Camera camera;
public const float EDGE = 0.3f;
public const float DIST = 100;
@anselm
anselm / ConwayArduinoColor
Created December 31, 2014 02:55
A pile of hack code to play around with a version of conways life to play on a 16x16 ws2812b led panel using an arduino. Also some perlin noise code.
// A pile of hack code to play around with a version of conways life to play on a 16x16 ws2812b led panel using an arduino
// also some playing around perlin noise
/////////////////////////////////////////////////////////////////////////////////////////////
#include <math.h>
@anselm
anselm / gdal2obj.py
Created May 3, 2015 01:24
gdal2obj.py
#!/usr/bin/env python
# gdal to wavefront obj
try:
from osgeo import gdal
except ImportError:
import gdal
import sys
@anselm
anselm / gist:f5b1c2dc0117757a1141
Created May 13, 2015 23:40
send mouse positions to gcode using node js
/*
This is a node.js application. It relies on "npm serialport".
Save it as penwriter.js
Run it using
node penwriter.js
@anselm
anselm / publish.php
Created May 19, 2015 00:27
A small app that allows a user to create an anonymous document with a unique ID. The document is discoverable by the ID. An MD5 hash is used so that the chances of collision are low and the chances of random discovery are low. The input is sanitized to prevent attacks on other users and the path is also sanitized to prevent browsing a poorly sec…
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Web Notes</title>
<!-- Pull in Bootstrap to style things up a bit -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap-theme.min.css">
This file has been truncated, but you can view the full file.
[111th CONGRESS Senate Bills]
[From the U.S. Government Printing Office via GPO Access]
[DOCID: s22pcs.txt]
[Placed on Calendar Senate]
Calendar No. 13
@anselm
anselm / migrate.rb
Created November 18, 2015 05:26
Converts Jim Hightower's site from drupal to wordpress without having to actually log into the drupal site. Makes images and wires podcast media types up etc.
require 'date'
require 'net/http'
require 'uri'
require 'open-uri'
require 'rubypress'
require 'mime'
require 'mime/types'
require 'imgkit'
# goals
@anselm
anselm / gist:6818713
Created October 3, 2013 23:31
Playing with the Goertzel algorithm... Replace the libcinder AudioInputSample main app .cpp with this... and throw in https://github.com/mpenkov/dtmf-cpp/blob/master/detect-au.cpp
#include "cinder/Cinder.h"
#if defined( CINDER_COCOA_TOUCH )
#include "cinder/app/AppCocoaTouch.h"
typedef ci::app::AppCocoaTouch AppBase;
#else
#include "cinder/app/AppBasic.h"
#include "cinder/audio/FftProcessor.h"
typedef ci::app::AppBasic AppBase;
#endif
A small bit of kvetching...
Imagine in Shakespeare if a sonnet didn't hew towards the core message but instead had you hold all the loose blocks of marble in working memory.
My mistresses eyes are like the sun in no way, but in the way they are not like the sun so is her hair like wires, and in the way they are like the sun there is nothing further to remark upon.
By a similar quality it bugs me when early out conditions are deferred to the end of a code block. For me this is probaby a carry over from working in assembler. In early programming environments there was both a computational and cognitive cost to jumping around a block of other code prior to ceding control. Modern compilers optimize this away but there's still a cognitive burden to having to hold a larger model in mind. If you think of a piece of code as a tree of branching possibilities then it makes sense to whittle away those branches as quickly as possible so that you're left with the minimum functionality needed to close out the responsib
@anselm
anselm / Tubular.cs
Last active February 25, 2016 01:15
a unity3d c# port of the threejs tube renderer
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
/**
* @author zz85 / http://www.lab4games.net/zz85/blog
* Extensible curve object
**/