- Running macOS
- things.sh installed.
This file contains hidden or 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
WHITESPACE = _{NEWLINE | " " | "\n" | "\t"} | |
SchemaString = {"\"" ~ (("\\" ~ "\"") | (!"\"" ~ ANY))+ ~ "\"" ~ ("@" ~ ASCII_ALPHA+)? } | |
UrlNode = {(!(">" | "<") ~ ANY)+} | |
TAG = { "<" ~ UrlNode ~ ">"} | |
// Use url = "2.1" to parse out URLs...need to extract protocol, hostname, path, search, fragment | |
// A UrlNode is "subClassOf" "http://www.w3.org/2000/01/rdf-schema" "http://www.w3.org/2000/01/rdf-schema#subClassOf" | |
TRIPLE = { TAG ~ TAG ~ (TAG | SchemaString) ~ "." } | |
parse = { | |
SOI ~ TRIPLE* | |
} |
This file contains hidden or 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
import SwiftUI | |
import WebKit | |
import Combine | |
class WebViewData: ObservableObject { | |
@Published var loading: Bool = false | |
@Published var scrollPercent: Float = 0 | |
@Published var url: URL? = nil | |
@Published var urlBar: String = "https://nasa.gov" | |
This file contains hidden or 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
# Answer from https://stackoverflow.com/a/490203 | |
from PyPDF2 import PdfFileWriter, PdfFileReader | |
inputpdf = PdfFileReader(open("document.pdf", "rb")) | |
for i in range(inputpdf.numPages): | |
output = PdfFileWriter() | |
output.addPage(inputpdf.getPage(i)) | |
with open("document-page%s.pdf" % i, "wb") as outputStream: | |
output.write(outputStream) |
This file contains hidden or 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
// music.setVolume(100) | |
enum PlaneState { | |
Idle, // No Sound | |
Liftoff, // playTone Note.D | |
Cruising, // playTone Note.CSharp | |
Left, // playTone Note.G | |
Right, // playTone Note.B | |
Turbulence, //music.playMelody("G B C C -- F F G", 300) | |
Landing, //playTone Note.C |
This file contains hidden or 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
type Day28 = '01'|'02'|'03'|'04'|'05'|'06'|'07'|'08'|'09'|10 | |
|11|12|13|14|15|16|17|18|19|20 | |
|21|22|23|24|25|26|27|28; | |
type Month = '01'|'02'|'03'|'04'|'05'|'06'|'07'|'08'|'09'|'10'|'11'|'12' | |
type Digit = 0|1|2|3|4|5|6|7|8|9; | |
type Year = `${19 | 20}${Digit}${Digit}` | |
type IsDivide4<S extends string | number> = `${S}` extends '0' | '4' | '8' ? true : | |
`${S}` extends `${number | ''}${`${0|2|4|6|8}${0|4|8}`|`${1|3|5|7|9}${2|6}`}` ? true : false; | |
type IsLeapYear<S extends string | number> = |
This file contains hidden or 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
/* | |
Based off of | |
http://www.arduino.cc/en/Tutorial/Tone | |
*/ | |
#include "pitches.h" | |
#include <Adafruit_NeoPixel.h> |
This file contains hidden or 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
set runtimepath^=~/.vim runtimepath+=~/.vim/after | |
let g:python2_host_prog = '/usr/local/bin/python' | |
let g:python3_host_prog = '/usr/local/bin/python3' | |
let &packpath = &runtimepath | |
" Linter | |
" only lint on save | |
let g:ale_lint_on_text_changed = 'never' | |
let g:ale_lint_on_insert_leave = 1 | |
let g:ale_lint_on_save = 0 |
This file contains hidden or 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
export const walkPointer = (object: { [key: string] }, pointer: string) => { | |
let [, ...tokens] = pointer.split("/") | |
tokens = tokens.map((token) => { | |
return token.replace(/~1/g, "/").replace(/~0/g, "~"); | |
}) | |
let instance = object | |
for (const token of tokens) { | |
instance = instance[token] | |
} | |
return instance |
This file contains hidden or 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
const express = require('express'); | |
const bodyParser = require('body-parser'); | |
const ngrok = require('ngrok'); | |
const axios = require('axios'); | |
const crypto = require('crypto'); | |
const PORT = 3000; | |
const app = express(); | |
const passcode = crypto.randomBytes(48).toString('hex'); |