TLDR; use CCM instead
Homebrew is a great little package manager for OS X. If you haven't already, installing it is pretty easy:
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
| //http://thiscouldbebetter.wordpress.com/2012/12/20/rendering-a-wav-file-using-html5-and-javascript/ | |
| <html> | |
| <body> | |
| <script type='text/javascript'> | |
| function WavFileVisualizer() | |
| { | |
| // do nothing |
| node -e "while(1){process.stdout.write('\x1b[38;5;' + Math.floor(256 * Math.random()) + 'mWOW')}" |
| var inherits = require('inherits'); | |
| var Readable = require('readable-stream').Readable; | |
| var spawn = require('child_process').spawn; | |
| module.exports = function (opts, fn) { | |
| if (typeof opts === 'function') { | |
| fn = opts; | |
| opts = {}; | |
| } | |
| if (!opts) opts = {}; |
| //Taken from https://www.mail-archive.com/beagleboard@googlegroups.com/msg00436.html <-- usage instructions | |
| #include <stdio.h> | |
| #include <sys/time.h> | |
| #define MAXAV 10 | |
| void main(void) | |
| { | |
| FILE *fp; |
| ffmpeg -i in.mov -s 640x360 -pix_fmt rgb24 -r 10 -f gif - | gifsicle --optimize=3 --delay=6 > out.gif |
TLDR; use CCM instead
Homebrew is a great little package manager for OS X. If you haven't already, installing it is pretty easy:
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
| package main | |
| import ( | |
| "fmt" | |
| ) | |
| type Employee struct { | |
| Id int | |
| Name string | |
| } |
| //vscode | |
| { | |
| "editor.fontFamily": "Fira Code", | |
| "editor.fontLigatures": true, | |
| "editor.minimap.enabled" : false, | |
| "telemetry.enableTelemetry" : false, | |
| "window.zoomLevel" : 0, | |
| "editor.rulers": [80], | |
| "go.buildTags":"integration", |
| Easy Seated Pose | |
| Seated Thunderbolt Pose | |
| Seated Mountain Pose | |
| Seated Spinal Twist Pose | |
| Seated Side Bend Pose | |
| Child’s Pose | |
| Table Top Pose | |
| Cow Pose | |
| Cat Pose | |
| Balancing Table Pose |
| i2c MPC23107 | |
| from machine import I2C,Pin | |
| i2c = I2C(-1,Pin(14),Pin(2)) | |
| i2c.scan() | |
| [IOCON x0A BANK (0 is default)] | |
| i2c.readfrom_mem(32,10,1) (returns b'\x00') | |
| [IODIRA initial read] |