Skip to content

Instantly share code, notes, and snippets.

View knud's full-sized avatar
🏢
DICEy dice DiCe dIcE

Steven Knudsen knud

🏢
DICEy dice DiCe dIcE
View GitHub Profile
@knud
knud / Signal Hound Spike under Ubuntu.md
Created June 21, 2023 15:09
How to get Signal Hound Spike running under Ubuntu 22.04

Follow getlabsdone.com/install-windows-10-on-ubuntu-kvm

There will be a few minor differences from the description (e.g., CD1 and CD2 are mixed up)

Once running, install Spike 64-bit as normal and the drivers. The driver install may not actually be necessary as when I plugged in the SA124A before I installed Spike it was recognized.

Spike will not display correctly without OpenGL, so follow the instructions from • https://thomas.inf3.ch/2019-06-12-opengl-kvm-mesa3d/index.html

@knud
knud / gist:77b065398e5d0a28dd63c01b205489e7
Created August 1, 2022 01:25
How to get Manuskript working on Apple Silicon
Manuskript is an open source tool for writers.
Anaconda3 must be installed.
conda create --name manuskript python=3.9
conda activate manuskript
conda install -c anaconda pyqt
conda install -c conda-forge lxml
git clone https://github.com/olivierkes/manuskript.git
cd manuskript
@knud
knud / gist:337026c0dc8776d4eab6a536adfb1521
Created February 18, 2020 21:16
grab Git version number tag and parse
GIT_VERSION = $(shell git describe --tags --always)
DS_MAJOR = $(shell echo $(GIT_VERSION) | sed 's/^\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*$$/\1/g')
DS_MINOR = $(shell echo $(GIT_VERSION) | sed 's/^\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*$$/\2/g')
DS_PATCH = $(shell echo $(GIT_VERSION) | sed 's/^\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*$$/\3/g')