Skip to content

Instantly share code, notes, and snippets.

@aikchar
aikchar / candidate.py
Created June 14, 2019 14:18
Candidate interview script
'''
---
jeremy: jeremy-authorized-key
marie: maries-authorized-key
'''
'''
---
users:
jeremy:
@aikchar
aikchar / snapcraft.yml
Created January 4, 2018 00:35
WIP manifest for creating a Python 3.7 snap
name: python37 # you probably want to 'snapcraft register <name>'
version: '3.7' # just for humans, typically '1.2+git' or '1.3.2'
summary: Single-line elevator pitch for your amazing snap # 79 char long summary
description: |
This is my-snap's description. You have a paragraph or two to tell the
most important story about your snap. Keep it under 100 words though,
we live in tweetspace and your description wants to look good in the snap
store.
grade: devel # must be 'stable' to release into candidate/stable channels
@aikchar
aikchar / ubuntu-dev-box-setup.sh
Last active March 30, 2018 07:20
Ubuntu 17.10 Dev Box Setup
#!/bin/sh
sudo apt update
sudo apt install -y git vim python3-pip apt-transport-https ca-certificates curl software-properties-common jq
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) edge"
echo 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main' | sudo tee /etc/apt/sources.list.d/google-chrome.list
curl -fsSL https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo apt update
sudo apt install -y docker-ce google-chrome-stable