Jason Nguyen
Jason Nguyen
had the same issue on wsl2 with python playwright; I ran `playwright install`without having first run `playwright install-deps`
My current setup ```bash source $ZSH/oh-my-zsh.sh export MICROSOFT_UNAME=$(uname -a | grep -i microsoft) export IS_WSL=$( [ ! -z "$MICROSOFT_UNAME" ] && echo "1" || echo "0" ) if [[ "$IS_WSL"...
i'm too paranoid about preprocessor stuff so as much as i'd do it asap, i will put it off until i can go through testing all the flags ;P
same issue but for '�'
Yeah, I think the `filename` field is just for use in the `MidiFile` constructor when opening _existing_ MIDIs. You don't specify `filename` in your example, so the value ends up...
According to the [MIDI 1.0 specification](https://midi.org/midi-1-0-core-specifications), page 73, a MIDI note-on event (`9n`) with a velocity of 0 is considered a note-off. In your example, every `note_on` event is immediately...