Skip to content

Instantly share code, notes, and snippets.

View rje1974's full-sized avatar
🎯
Focusing

Juan Eduardo rje1974

🎯
Focusing
View GitHub Profile
@rje1974
rje1974 / instructions.md
Created July 28, 2022 23:17 — forked from matthewjberger/instructions.md
Install a nerd font on ubuntu

1.) Download a Nerd Font

2.) Unzip and copy to ~/.fonts

3.) Run the command fc-cache -fv to manually rebuild the font cache

@rje1974
rje1974 / Acelerometro
Created May 4, 2021 20:14 — forked from ArielNicotena/0_Pochito.md
Scripts De Sensores - Arduino UNO
const int xpin = A0;
const int ypin = A1;
const int zpin = A2;
void setup() {
Serial.begin(9300);
}
void loop() {