This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>websocket client</title> | |
<style> | |
body{ | |
background:#000; | |
color:#fff; | |
font-size:100pt; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# mp3dir | |
# cc teddavis.org 2020 | |
# play dir of mp3's using afplay in MacOS terminal. | |
# | |
# install: | |
# `cd /usr/local/bin` | |
# `touch mp3dir` | |
# `open mp3dir` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
p5live_osc_setup // cc teddavis.org 2019 | |
Requires offline nodejs/npm installation of P5LIVE | |
Requires oscP5 library | |
*/ | |
int tc = 10, rate = 5; | |
int mx = 0, my = 0, px = 0, py = 0; | |
PGraphics pg; |