I hereby claim:
- I am 2xaa on github.
- I am 2xaa (https://keybase.io/2xaa) on keybase.
- I have a public key ASDZQDteqVvIDn72TPLh-P2u1Ta9za3iJ2KGroh8KJ7SRAo
To claim this, I am signing this object:
| import wave | |
| import os | |
| import glob | |
| import contextlib | |
| Change_RATE = 2 | |
| EXPORT_DIR = './LSDJprep/' | |
| VALID_RESPONSES = ('yes', 'y') | |
| # the maximum length file LSDJ can have in a kit |
I hereby claim:
To claim this, I am signing this object:
| /* Generate colors using: `plutil -convert json` in your terminal */ | |
| const col = [] // run your .itermcolors file through the above parser and replace the array with the output | |
| function componentToHex(c) { | |
| const hex = c.toString(16) | |
| return hex.length === 1 ? `0${hex}` : hex | |
| } | |
| const mapping = { | |
| 'terminal.background':'Background Color', |
| { | |
| "meta": { | |
| "theme": "wraypro" | |
| }, | |
| "basics": { | |
| "name": "Sam Wray", | |
| "label": "Creative Technologist", | |
| "picture": "https://wray.pro/assets/thumb/about.jpg", | |
| "email": "sam@wray.pro", | |
| "phone": "(+44)7561557458", |
| Shader "Standard-DoubleSided" | |
| { | |
| Properties | |
| { | |
| _Color("Color", Color) = (1,1,1,1) | |
| _MainTex("Albedo", 2D) = "white" {} | |
| _Cutoff("Alpha Cutoff", Range(0.0, 1.0)) = 0.5 | |
| _Glossiness("Smoothness", Range(0.0, 1.0)) = 0.5 |
| { | |
| "M8 Version Header": { | |
| "value": "M8VERSION\u00002100", | |
| "label": null | |
| }, | |
| "Project File Directory": { | |
| "value": "/Songs/", | |
| "label": null | |
| }, | |
| "Project Transpose": { |
| #include <SoftwareSerial.h> | |
| SoftwareSerial softSerial(11, 2); | |
| void setup() | |
| { | |
| Serial.begin(115200); | |
| while (!Serial) { | |
| ; // wait for serial port to connect. Needed for Native USB only | |
| } |
| #include <SoftwareSerial.h> | |
| #include "MIDIUSB.h" | |
| SoftwareSerial softSerial(11, 2); | |
| byte incomingDinMidiMessage[3]; | |
| byte incomingUsbMidiMessage[3]; | |
| void setup() { | |
| Serial1.begin(31250); |
| // Usage: | |
| // 1. npm init -y && npm i minimist | |
| // 2. node sort-files-into-alphabetical-directories.js /directory-of-files /directory-of-files/output | |
| const fs = require("fs"); | |
| const path = require("path"); | |
| const argv = require("minimist")(process.argv.slice(2)); | |
| const alphabet = [..."abcdefghijklmnopqrstuvwxyz"]; |
| // ==UserScript== | |
| // @name Better Azure DevOps | |
| // @description Fixes AzureDevOps' bullshit | |
| // @match *://dev.azure.com/* | |
| // ==/UserScript== | |
| const constants = { | |
| copyBranchNameButton: "BAD-COPY_BRANCH_NAME_BUTTON", | |
| }; |