Skip to content

Instantly share code, notes, and snippets.

View boeckhoff's full-sized avatar

Nico Böckhoff boeckhoff

View GitHub Profile
@boeckhoff
boeckhoff / README
Last active August 25, 2025 16:37
painfully inefficient AI generated python script as extra build step to fix file clangd windows filename issue in vscode
DOESNT WORK, FIX ON THE WAY
Steps:
- create python script
- add tasks to tasks.json
- add to all build tasks: "dependsOn": ["fix-compile-commands"]
untested, AI generated, slow and ugly but works for me.
@boeckhoff
boeckhoff / annotateHelper.py
Created July 13, 2016 10:09
Script that helps with annotating audio files for training HMM Model for pyAudioAnalysis Segmentation
import time, sys
PATH_TO_FILE = sys.argv[1]
DICT = {"1": "speech",
"2": "laugther",
"3": "applause"}
quit = False