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
import serial | |
port = serial.Serial('/dev/ttyTHS1', baudrate=115200, timeout=1) | |
# Turn on the GPS | |
port.write(b'AT+CGNSPWR=1') | |
# Ask for the navigation info parsed from NMEA sentences | |
port.write(b'AT+CGNSINF') |
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
import { loadFile } from 'std' | |
const regexes = { | |
func: /^RLAPI ([\*A-Za-z0-9 ]+) ([\*A-Za-z0-9]+)\((.+)\);\W+(.+)/gm | |
} | |
// TODO: I need a lot more in/out types | |
// map of input-type to function that the function-body to convert it | |
const inputTypes = { |
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
// I use this to generate a stub from MDN docs about canvas | |
// run with deno run --allow-net tools/getdocs.js | |
/* global fetch */ | |
import { DOMParser } from 'https://deno.land/x/deno_dom/deno-dom-wasm.ts' | |
function getDocs (doc, parent) { | |
const info = {} | |
if (doc?.querySelectorAll) { |
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 | |
if (! whiptail --title "Proton GE Setup" --yesno "This tool assumes you are running ubuntu/pop/etc 20.10. Are you?" 8 78); then | |
echo "Run it again, when you get a cool OS. 😂" | |
exit 1 | |
fi | |
if (whiptail --title "Proton GE Setup" --yesno "What kind of video card do you have, gamer?" 8 78 --no-button "AMD" --yes-button "NVidia"); then | |
CARD=NVIDIA | |
else |
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 | |
# Install Apple fonts on Linux | |
# requires p7zip-full installed | |
getFont() { | |
NAME=$1 | |
APPLENAME=$2 | |
DIR=$3 | |
DIR=${DIR:="/tmp"} |
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
#!/usr/bin/bash | |
# Run correct core for a ROM, based on extension | |
# Setup with sudo apt-get install -y retroarch "libretro-*"" | |
ROM="${1}" | |
if [ -z "${ROM}" ];then | |
echo "Usage: ${0} <ROM_FILE>" |
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
local maze = require "lib.maze" | |
local Camera = require "lib.hump.camera" | |
math.randomseed(os.time()) | |
--[[ | |
generators: | |
sidewinder | |
recursive_backtracker | |
aldous_broder |
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
#!/usr/bin/env python3 | |
from pydub import AudioSegment | |
from pydub.silence import split_on_silence | |
from os import listdir, path, rename | |
from os.path import isfile, join | |
from pathlib import Path | |
from shutil import make_archive, rmtree | |
mapping = { |
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
#[derive(Debug)] | |
struct VecStats { | |
mean: f32, | |
median: i32, | |
mode: i32 | |
} | |
impl VecStats { | |
fn new(numbers: &Vec<i32>) -> VecStats { | |
VecStats { |
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
#include <Adafruit_NeoPixel.h> | |
#define PIN 2 // D4 on nodemcu | |
#define NUMPIXELS 50 | |
#define DELAYVAL 500 | |
Adafruit_NeoPixel pixels(NUMPIXELS, PIN, NEO_RGB + NEO_KHZ800); | |
void setup() { | |
pixels.begin(); |