Skip to content

Instantly share code, notes, and snippets.

View BleuLlama's full-sized avatar
👨‍🍳
Yum

Scott Lawrence BleuLlama

👨‍🍳
Yum
View GitHub Profile
@rabejens
rabejens / sertest.bas
Created June 10, 2018 09:50
AmigaBASIC simple serial port program
OPEN "COM1:9600,N,8,1" FOR INPUT AS 1
WHILE INKEY$=""
C$=INPUT$(1,1)
PRINT C$;
WEND
CLOSE 1
#!/bin/bash
#Recover from an Audacity crash by reassembling the saved data files
if [ $# != 2 ]; then
echo "ERROR: Not enough arguments"
echo "$0 [SOURCE PATH] [DESTINATION]"
exit 1
fi