This file contains 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
#include "TrinketHidCombo.h" | |
#define PIN_ENCODER_A 4 | |
#define PIN_ENCODER_B 5 | |
#define TRINKET_PINx PINB | |
static uint8_t enc_prev_pos = 0; | |
static uint8_t enc_flags = 0; | |
void setup() |
This file contains 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
gnome-desktop-item-edit --create-new ~/Desktop |
This file contains 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
int ledPin = 11; | |
float sinVal; | |
int ledVal; | |
void setup(){ | |
pinMode(ledPin, OUTPUT); | |
} | |
void loop(){ | |
for(int x=0; x<180; x++) { |
This file contains 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
for file in *.flac | |
do | |
ffmpeg -i "$file" -f wav "$file".wav | |
done |
This file contains 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
// https://github.com/jbtule/cdto#cd-to | |
drag and drop CMD and ALT file or folder into launcher to open terminal HERE xD awesome <3 |
This file contains 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
// https://lame.buanzo.org/ffmpeg-mac-2.2.2.zip | |
/Library/Application Support/audacity/libs/libavformat.55.dylib |
This file contains 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
// <3 | |
gsettings set org.gnome.desktop.wm.preferences button-layout 'close,minimize,maximize:' |
This file contains 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
sudo apt-get install input-utils mtdev-tools | |
// list of omg all | |
sudo lsinput | |
// test out | |
sudo mtdev-test /dev/input/event"xx" |
This file contains 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
sudo add-apt-repository ppa:gnome3-team/gnome3 | |
sudo add-apt-repository ppa:gnome3-team/gnome3-staging | |
sudo apt-get update | |
sudo apt-get upgrade | |
sudo apt-get dist-upgrade | |
sudo apt-get install ubuntu-gnome-desktop |
This file contains 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
// https://askubuntu.com/questions/205676/how-to-change-mouse-speed-sensitivity/208230#208230 | |
// list of devices and their ID = xx | |
xinput --list --short | |
// list of properities look for "yyy" | |
// Device Accel Constant Deceleration (269): 1.000000 | |
xinput --list-props "xx" | |
// set finnest "z.z" level ever | |
// WARN !!! reset after restarty, setup as startup script, viz down |
NewerOlder