Skip to content

Instantly share code, notes, and snippets.

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
@elcuervo
elcuervo / Wishlist.md
Last active August 29, 2015 13:57
The email client of my dreams.
  • Gmail support
  • Gmail shortcuts support
  • Markdown only support (rendered in html & plain md)
  • Task list behaviour (http://www.mailpilot.co/)
  • Zero noise.
  • Code rendering?

Keybase proof

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:

@elcuervo
elcuervo / proxmox-configure-community-repos.sh
Created April 24, 2024 02:36
Configured Proxmox 8.1.3 community repositories on fresh install
#!/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