I hereby claim:
- I am billautomata on github.
- I am billautomata (https://keybase.io/billautomata) on keybase.
- I have a public key whose fingerprint is B87F F111 CD3B A2F9 5DF2 AE15 7A22 907F 5478 6F8D
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
import bpy | |
from bpy_extras.view3d_utils import location_3d_to_region_2d as loc3d2d | |
import os | |
def write_svg(edge_list, region): | |
width, height = region.width, region.height |
#!/bin/sh | |
# Based on instructions found here: http://wiki.razuna.com/display/ecp/FFMpeg+Installation+on+CentOS+and+RedHat#FFMpegInstallationonCentOSandRedHat-InstallX264 | |
if [ "`/usr/bin/whoami`" != "root" ]; then | |
echo "You need to execute this script as root." | |
exit 1 | |
fi | |
cat > /etc/yum.repos.d/centos.repo<<EOF |
// example using the raf module from npm. try changing some values! | |
var requestAnimationFrame = require("raf") | |
var canvas = document.createElement("canvas") | |
canvas.width = 500 | |
canvas.height = 500 | |
document.body.appendChild(canvas) | |
var context = canvas.getContext("2d") |
// javascript | |
var sum = 0 | |
for(var i = 0; i < 100; i++){ | |
sum += 1 | |
} | |
sum = sum / 100 | |
console.log('average is :'+sum) | |
vec4 pack (float depth) | |
{ | |
const vec4 bitSh = vec4(256 * 256 * 256, | |
256 * 256, | |
256, | |
1.0); | |
const vec4 bitMsk = vec4(0, | |
1.0 / 256.0, | |
1.0 / 256.0, | |
1.0 / 256.0); |
MacBook Pro, TextMate, cc65, MacVICE, and 1541 Ultimate for testing. To transfer actual disks, use RR-Net and WarpCopy. |
{ | |
"targets": [ | |
{ | |
"target_name": "keypress", | |
"conditions": [ | |
['OS == "mac"', { | |
'include_dirs': [ | |
'System/Library/Frameworks/CoreFoundation.Framework/Headers', | |
'System/Library/Frameworks/Carbon.Framework/Headers', | |
], |