- Gmail support
- Gmail shortcuts support
- Markdown only support (rendered in html & plain md)
- Task list behaviour (http://www.mailpilot.co/)
- Zero noise.
- Code rendering?
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
| require 'artoo' | |
| connection :ardrone, :adaptor => :ardrone, :port => '192.168.1.1:5556' | |
| connection :leapmotion, :adaptor => :leapmotion, :port => '127.0.0.1:6437' | |
| device :leapmotion, :connection => :leapmotion, :driver => :leapmotion | |
| device :drone, :driver => :ardrone, :connection => :ardrone | |
| class Overlord | |
| attr_reader :drone |
I hereby claim:
- I am elcuervo on github.
- I am elcuervo (https://keybase.io/elcuervo) on keybase.
- I have a public key ASA1_J8lYCnlE8kom68HHcZn0dMDcvcBxlTNmzLWfqUhnwo
To claim this, I am signing this object:
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
| #!/usr/bin/env bash | |
| # https://pve.proxmox.com/wiki/Package_Repositories | |
| # Tested on Proxmox 8.1.3 | |
| # https://gist.github.com/ngadmini/7f9df377999cc78c1b58e361d5425ac4 | |
| # Disable commercial and ceph | |
| sed -i "s/^deb/\#deb/" /etc/apt/sources.list.d/pve-enterprise.list | |
| sed -i "s/^deb/\#deb/" /etc/apt/sources.list.d/ceph.list | |
| # Enable community | |
| echo "deb http://download.proxmox.com/debian/pve $(grep "VERSION=" /etc/os-release | sed -n 's/.*(\(.*\)).*/\1/p') pve-no-subscription" > /etc/apt/sources.list.d/pve-no-enterprise.list | |
| # Update and upgrade |
OlderNewer