I hereby claim:
- I am jsantell on github.
- I am jsantell (https://keybase.io/jsantell) on keybase.
- I have a public key ASAL7z_P6rtcIoBMzwjU8Khsf4LLPOZ8oiLz4UpfbSEJIAo
To claim this, I am signing this object:
#!/bin/bash | |
set -e | |
set -x | |
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) | |
PROJECT_DIR="$SCRIPT_DIR/../" | |
pushd $PROJECT_DIR | |
rm -rf ./LibNoosphere.xcframework |
#!/bin/sh | |
# Disables system policy, validates audio plugins, and re-enables system policy | |
# to allow unverified audio plugins in OS X 10.15 Catalina | |
sudo spctl --master-disable | |
auval -a | |
sudo spctl --master-enable |
#!/bin/sh | |
# Update system | |
sudo apt-get update | |
sudo apt-get upgrade | |
# Add software | |
sudo apt-get install \ | |
git vim xclip curl snap \ | |
gnome-tweaks \ |
I hereby claim:
To claim this, I am signing this object:
const midi = require('midi'); | |
const { Client } = require('node-osc'); | |
const MIDI_INPUT = 1; | |
const ADDRESS = 'localhost'; | |
const PORT = 8886; | |
class MIDI2OSC { | |
constructor(midiInput=MIDI_INPUT, address=ADDRESS, port=PORT) { | |
this.client = new Client(address, port); |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>threejs webgl - materials - equirectangular exr image based lighting</title> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"> | |
<style> | |
body { | |
color: #fff; | |
font-family:Monospace; |
<html><head> | |
<style> | |
div { | |
height: 100px; | |
width: 100px; | |
background-color: #35baf6; | |
transition: width 0.5s; | |
} | |
</style> | |
</head><body> |
/** | |
* @author takahiro / https://github.com/takahirox | |
* | |
* CCD Algorithm | |
* https://sites.google.com/site/auraliusproject/ccd-algorithm | |
* | |
* mesh.geometry needs to have iks array. | |
* | |
* // ik parameter example | |
* // |
Leave a comment to add a project you've created or found!
{ | |
from: Date, | |
to: Date, | |
experiments: [ | |
// Some experiments may not need to update, but just set some local flags | |
{ | |
name: 'no-tabs', | |
// Some segmentation groups may need a specific runtime (platform, screen dimensions, memory, location) | |
requirements: { | |
platform: platform => platform === 'darwin', |