Skip to content

Instantly share code, notes, and snippets.

View jhurliman's full-sized avatar
🐨

John Hurliman jhurliman

🐨
View GitHub Profile
@jhurliman
jhurliman / split2.sh
Created May 21, 2020 08:41
Use spleeter to split an input MP3 into separate vocal and accompaniment WAV files
#!/usr/bin/env bash
DIR=$(dirname `readlink -e $1`)
FILE=$(basename `readlink -e $1`)
OUT_DIR=`basename ${FILE} .mp3`
MODEL_DIRECTORY="${HOME}/.cache/spleeter"
mkdir -p ${MODEL_DIRECTORY}
docker run \
-v ${DIR}:/work \
@jhurliman
jhurliman / akai-apc40mkii-colors.json
Created October 24, 2020 08:02
Akai APC40 MkII LED colors as hex RGB list
[
"#FF4C4C",
"#FF0000",
"#590000",
"#190000",
"#FFBD6C",
"#FF5400",
"#591D00",
"#271B00",
"#FFFF4C",
@jhurliman
jhurliman / Colors.ts
Created October 24, 2020 09:38
TypeScript methods for color conversion
export type HSL = [number, number, number]
export function HexToHSL(hex: string): HSL | undefined {
const result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex)
if (!result) return undefined
const r = parseInt(result[1], 16) / 255
const g = parseInt(result[2], 16) / 255
const b = parseInt(result[3], 16) / 255
const max = Math.max(r, g, b)
@jhurliman
jhurliman / nvtxrange.h
Created February 8, 2021 21:54
RAII wrapper for NVIDIA nvtxRangePush/nvtxRangePop
#pragma once
#include <nvToolsExt.h>
#include <string>
struct NvtxRange {
NvtxRange() = delete;
explicit NvtxRange(const std::string_view name) { nvtxRangePush(name.data()); }
@jhurliman
jhurliman / RosTcpMessageStream.ts
Created March 12, 2021 08:22
RosTcpMessageStream.ts
import { TransformStream, TransformerTransformCallback } from "web-streams-polyfill/ponyfill";
class TcpMessageStreamImpl {
private _inMessage = false;
private _bytesNeeded = 4;
private _chunks: Uint8Array[] = [];
transform: TransformerTransformCallback<Uint8Array, Uint8Array> = (chunk, controller) => {
let idx = 0;
while (idx < chunk.length) {
@jhurliman
jhurliman / utm.ts
Created May 10, 2021 19:25
Latitude/Longitude conversion to UTM in TypeScript
export type UTM = {
easting: number;
northing: number;
zoneNumber: number;
};
export function LatLngToUtm(
lat: number,
lng: number,
zoneNumber?: number,
@jhurliman
jhurliman / proposal001.ts
Created June 15, 2021 22:11
proposal001.ts
import { PanelExtensionContext, Topic, MessageEvent } from "@foxglove/studio";
import { useLayoutEffect, useState } from "react";
import ReactDOM from "react-dom";
function ExamplePanel({ context }: { context: PanelExtensionContext }): JSX.Element {
const [topics, setTopics] = useState<readonly Topic[] | undefined>();
const [messages, setMessages] = useState<readonly MessageEvent<unknown>[] | undefined>();
// We use a layout effect to setup render handling for our panel. We also setup some topic subscriptions.
useLayoutEffect(() => {
@jhurliman
jhurliman / ros2-topic-pub-examples.sh
Created March 7, 2022 22:37
ros2 topic pub examples
# volatile, no history
ros2 topic pub -r 0.5 --qos-durability volatile --qos-reliability reliable /chatter std_msgs/msg/String '{data: hello}'
# transient_local, history of 5
ros2 topic pub -r 0.5 --qos-durability transient_local --qos-reliability reliable --qos-depth 5 --qos-history keep_last /chatter std_msgs/msg/String '{data: hello}'
# foxy compatible transient_local
ros2 topic pub -r 0.5 --qos-durability transient_local --qos-reliability reliable /chatter std_msgs/msg/String '{data: hello}'
# /tf_static
@jhurliman
jhurliman / IndexedInstancedMesh.ts
Created March 17, 2022 00:44
Extends THREE.js InstancedMesh with the ability to reference instances by a string key and add/remove instances with dynamic buffer resizing
import * as THREE from "three";
type UserData = { [key: string]: unknown };
const INITIAL_SIZE = 4;
const tempMat4 = new THREE.Matrix4();
const tempColor = new THREE.Color();
/**
@jhurliman
jhurliman / Dockerfile
Last active May 9, 2022 23:20
Build depthai-ros from source (OAK-D Luxonis DepthAI)
FROM ros:noetic-ros-core-focal
# Install dependencies for depthai, ros, and build
RUN apt-get update && apt-get install -y \
build-essential \
cmake \
git \
libjpeg-dev \
libopencv-dev \
libpng-dev \