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
# Inspired by https://gitea.goudham.com/hammy/neovide/blame/commit/799e043ffd4eb606dad6ecfa7ebd00b3fa72acda/assets/neovide.desktop | |
[Desktop Entry] | |
Type=Application | |
Exec=neovide %F --nvim-bin /opt/nvim-linux64/bin/nvim # Find via $which nvim | |
Icon=~/Pictures/icons/neovide.png | |
Name=Neovide (nvim) | |
Keywords=Text;Editor; | |
Categories=Utility;TextEditor; | |
Comment=No Nonsense Neovim Client in Rust | |
MimeType=text/english;text/plain;text/x-makefile;text/x-c++hdr;text/x-c++src;text/x-chdr;text/x-csrc;text/x-java;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;text/x-c;text/x-c++; |
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
#include <ArduinoOTA.h> | |
#include <ArduinoJson.h> | |
#include <DHT.h> | |
#include <ESP8266WiFi.h> | |
#include <PubSubClient.h> | |
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
#include <Adafruit_NeoPixel.h> | |
#ifdef __AVR__ | |
#include <avr/power.h> | |
#endif | |
#define PIN 6 | |
#define NUM_LEDS 85 | |
#define BRIGHTNESS 50 |
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
docker rm $(docker ps -a | awk '(!(/Up/) && !(/NAMES/)) {print $NF}') |