Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
| sudo apt-get update | |
| sudo apt-get install vim | |
| # Installing rmate for remote editing | |
| sudo curl -o /usr/local/bin/rmate https://raw.githubusercontent.com/aurora/rmate/master/rmate | |
| sudo chmod +x /usr/local/bin/rmate | |
| sudo mv /usr/local/bin/rmate /usr/local/bin/rsubl | |
| # A better git log https://coderwall.com/p/euwpig/a-better-git-log | |
| git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit" | |
| # Decomment alias 'll' in /home/pi/.bashrc |
| # https://blog.eq8.eu/til/raspberi-pi-as-kiosk-load-browser-on-startup-fullscreen.html | |
| # install midori browser | |
| sudo apt install midori | |
| # Edit the file ~/.config/lxsession/LXDE-pi/autostart | |
| # Add these lines : | |
| # Auto run the browser | |
| @xset s off | |
| @xset -dpms |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000| #import "macAddress.h" | |
| void setup () { | |
| byte mac[6]; | |
| getUniqueMacAddress(mac); | |
| Serial.begin(115200); | |
| Serial.print("mac: "); | |
| for (uint8_t i = 0; i < sizeof(mac); i++) { |