See https://developer.android.com/studio/command-line/sdkmanager.html
https://stackoverflow.com/questions/42460205/truncated-android-sdk-package-paths-from-sdkmanager-cli
Fix with:
Verifying that +glenpike is my blockchain ID. https://onename.com/glenpike |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure("2") do |config| | |
config.vm.box = "ubuntu/trusty64" | |
config.vm.network "forwarded_port", guest: 80, host: 8181 | |
config.vm.provision :shell, path: "bootstrap.sh" | |
end |
{ | |
"name": "flare", | |
"children": [ | |
{ | |
"name": "analytics", | |
"children": [ | |
{ | |
"name": "cluster", | |
"children": [ | |
{"name": "AgglomerativeCluster", "size": 3938}, |
#list top level packages, extract the package name, remove the .nvm line, remove the version number, reduce to single line | |
npm ls -g --depth=0 | cut -d ' ' -f2 | grep -v '.nvm' | sed -e 's/@.*//' | tr '\n' ' ' |
FROM couchbase:community-4.5.0 | |
EXPOSE 8091 8092 8093 9100 9101 9102 9103 9104 9105 9998 9999 11207 11209 11210 11211 11214 11215 18091 18092 18093 4369 21100-21300 | |
ENV ADMIN_LOGIN=root | |
ENV ADMIN_PASSWORD=foobar | |
ENV CLUSTER_RAM_QUOTA=512 | |
ENV CLUSTER_INDEX_RAM_QUOTA=256 |
/* Serve a swagger doc with Koa */ | |
const Koa = require('koa'); | |
const koaSwagger = require('koa2-swagger-ui'); | |
//const yaml = require('yamljs'); | |
//const spec = yaml.load('./music-api.yml'); | |
const app = new Koa(); | |
app.use(koaSwagger({ | |
routePrefix: '/swagger', // host at /swagger instead of default /docs |
//FIXME - investigate settings, etc. | |
function transcode(file) { | |
var spawn = require('child_process').spawn | |
var decode = spawn('flac', [ | |
'--decode', | |
'--stdout', | |
file | |
]) |
# Raspberry Pi Pico + YM2149 Soundchip test example | |
# Based on https://github.com/FlorentFlament/ym2149-test | |
# http://www.ym2149.com/ym2149.pdf | |
# Pins | |
# Pico -> YM2149 (DIL) | |
# GP5 -> CLOCK (22) | |
# GP6 -> BC1 (29) | |
# GP7 -> BDIR (27) | |
# GP8 to GP15 -> DA0 to DA7 (37 to 30) |
# Clone repo | |
git clone https://github.com/awwbees/BespokeSynth.git | |
cd BespokeSynth/Builds/LinuxMakefile | |
make CXX=g++ -j4 | |
# May need extra dependencies installing on the RPi | |
# The linux Makefile generated by Juce doesn't necessarily work out of the box | |
# ...there seems to be misconfigured paths for including the OpenGL stuff - get errors like 'GL_RGB was not declared in this scope' when it tries to build the HelpDisplay stuff |