Skip to content

Instantly share code, notes, and snippets.

@dnso86
dnso86 / simple2super.py
Created October 14, 2025 13:19
Simplenote to Supernotes import script
import json
import os
import sys
from pathlib import Path
import requests
s = requests.Session()
API_BASE_URL = "https://api.supernotes.app"
@dnso86
dnso86 / convert.sh
Created March 19, 2020 08:48
Batch converting + trimming WAV files to another samplerate and bit depth with sox in a bash script on linux
#!/bin/bash
# An excellent tutorial is available at:
# https://www.madskjeldgaard.dk/sox-tutorial-command-line-tape-music-an-introduction/
mkdir out
FILES=*.wav
for f in $FILES
do
echo "Processing $f file..."