Skip to content

Instantly share code, notes, and snippets.

@neilisaac
neilisaac / dpms_off.c
Created July 6, 2011 02:38
Turn off monitor using DPMS
#include <X11/extensions/dpms.h>
main () {
DPMSForceLevel ( 0, 0 );
}
@neilisaac
neilisaac / geo.js
Created April 26, 2015 17:20
genmaze - generative art hackathon 2015
// a hack by neil isaac
function stringTexture(text, color) {
var canvas = document.createElement("canvas");
canvas.width = 256;
canvas.height = 256;
var ctx = canvas.getContext("2d");
ctx.fillStyle = color;
ctx.fillRect(0, 0, 256, 256);
ctx.font = "48px Arial";