Skip to content

Instantly share code, notes, and snippets.

View capsulecorplab's full-sized avatar

Sean Marquez capsulecorplab

View GitHub Profile
@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 / graphviz_install.sh
Last active March 2, 2020 04:46
bash script for installing graphviz 2.38.0
#!/usr/bin/env bash
###############################################################################
# Install script for graphviz 2.38.0 on Ubuntu/Debian
# see https://launchpad.net/ubuntu/+source/graphviz/2.38.0-16ubuntu1
#
# Requirements:
# * Ubuntu/Debian
#
# Usage:
# $ sudo ./graphviz_install.sh
@capsulecorplab
capsulecorplab / .ruby-version
Last active March 1, 2020 03:57
bash script for converting multiple (GitHub flavored) markdown to asciidoc files
2.4.5
@capsulecorplab
capsulecorplab / install-rbenv.sh
Last active January 6, 2021 01:48
install script for rbenv
#!/usr/bin/env bash
################################################################################
# rbenv w/ ruby-build install script. See https://github.com/rbenv/rbenv
# Install rbenv using,
# $ ./install-rbenv.sh
#
# Then install & set your preferred global version of Ruby using,
# $ rbenv install 2.6.5 -v
# $ rbenv global 2.6.5
################################################################################
@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"
@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 / asciidoc-static.adoc
Created October 24, 2019 07:13 — forked from briandominick/asciidoc-static.adoc
Static Site Generators with AsciiDoc Support

There are 19 static site generators that support AsciiDoc sourcing.

@capsulecorplab
capsulecorplab / pair-programming.md
Created October 23, 2019 21:45 — forked from rouzbeh84/pair-programming.md
resources for pair programming remotely and on site

Guide Page

To start using this site you need to have a GitHub account to sign in. Once signed in it will create your profiles information based on your GitHub account and return you to your brand new profile page. Click the profile editor button to enter in if you want to be a student, partner or teacher. You should also enter in what skills you have and what skills you are looking to learn on this page.

Once you have your profile how you like it, head on over to the search page to look for what you want to use on your next project and what kind of partner you are looking for. After hitting the search button we will find the very best matches for you to begin your pair programming journey!


What is Pair Programming?

@capsulecorplab
capsulecorplab / README.adoc
Last active October 17, 2023 00:44
install script for pyenv & pyenv-virtualenv

pyenv & pyenv-virtualenv install script

The pyenv_install.sh script is a bash script that installs pyenv - a python version manager, and pyenv-virtualenv - a virtual environment plugin for pyenv.

To run installer, clone this repo, change directory to cloned repo, and execute the script with bash: