Skip to content

Instantly share code, notes, and snippets.

View capsulecorplab's full-sized avatar

Sean Marquez capsulecorplab

View GitHub Profile
@capsulecorplab
capsulecorplab / .gitignore
Last active November 25, 2020 07:52
Replaces org-pomodoro's bell alert with (Star Trek: TNG) door chime
*.wav
@capsulecorplab
capsulecorplab / install-keybase.sh
Last active November 24, 2020 06:57
bash script for installing keybase on 64bit Ubuntu
#!/usr/bin/env bash
# https://keybase.io/docs/the_app/install_linux
curl --remote-name https://prerelease.keybase.io/keybase_amd64.deb
sudo apt install ./keybase_amd64.deb
rm keybase_amd64.deb
run_keybase
@capsulecorplab
capsulecorplab / install-dropbox.sh
Last active November 24, 2020 06:57
bash script for installing dropbox on 64bit Linux
#!/usr/bin/env bash
# https://www.dropbox.com/install-linux
cd ~ && wget -O - "https://www.dropbox.com/download?plat=lnx.x86_64" | tar xzf -
@capsulecorplab
capsulecorplab / install-docker.sh
Last active November 24, 2020 06:56
bash script for installing docker
#!/usr/bin/env bash
# install docker
# see https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-20-04
sudo apt install apt-transport-https ca-certificates curl software-properties-common -y
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 focal stable"
sudo apt update -y
apt-cache policy docker-ce
sudo apt install docker-ce -y
@capsulecorplab
capsulecorplab / install-gt.sh
Last active November 24, 2020 04:26
bash script for installing glamorous toolkit
#!/usr/bin/env bash
# install glamorous toolkit
# https://gtoolkit.com/download/
mkdir ~/gtoolkit
cd ~/gtoolkit
curl https://dl.feenk.com/scripts/linux.sh | bash
@capsulecorplab
capsulecorplab / .gitignore
Last active November 1, 2020 00:50
bash scripts, such as for flashing & erasing micropython binaries to ESP32/8266.
*.bin
@capsulecorplab
capsulecorplab / business-model-canvas.adoc
Last active October 6, 2020 01:43
Asciidoc template for generating a business model canvas

Business Model Canvas - AsciiDoc Template

@capsulecorplab
capsulecorplab / primedirective.org
Last active September 20, 2020 05:33
Notes for debating the prime directive: for & against

Primary argument for prime directive

Anthropological argument:

The Prime directive establishes a baseline protocol by which Starfleet can scientifically & objectively observe/study new life and new civilizations intented to not corrupt the integrity of the scientific observation.

Rebuttal (to anthropological argument)

Impracticality argument:

  • The anthropological argument is impractical because it assumes it’s possible to observe without interfering
  • It’s poorly specified; why does it apply to pre-warp civilizations? It doesn’t consider the following nuances:
    • pre-warp-capable, but hasn’t yet made 1st contact
@capsulecorplab
capsulecorplab / .gitignore
Last active July 6, 2020 01:18
"Hello world" app running on Docker Compose. Full tutorial available at https://docs.docker.com/compose/gettingstarted/
# Byte-compiled
__pycache__/
@capsulecorplab
capsulecorplab / Gemfile
Last active April 13, 2020 01:16
Gemfile.lock for globally install Ruby gems, bundled with bundler 2.1.4 in ruby 2.6.5
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
# gem "rails"
gem "asciidoctor", "~> 2.0"
gem "asciidoctor-pdf", "~> 1.5.rc.2"