This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Simple USB Keyboard Example | |
Teensy becomes a USB keyboard and types characters | |
You must select Keyboard from the "Tools > USB Type" menu | |
This example code is in the public domain. | |
*/ | |
#define NUM_BUT 8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#This procedure setup up a container with the latest kdenlive on debian | |
host + | |
lxc launch images:ubuntu/focal/amd64 kdenlivebuild | |
lxc exec kdenlivebuild -- /bin/bash | |
apt update | |
apt upgrade | |
apt install sudo | |
useradd -m kdeuser --shell /bin/bash | |
usermod -aG sudo kdeuser |