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 April 1, 2021 20:30
plantuml template for specifying stakeholder needs & user stories
# Asciidoctor
.asciidoctor/
@capsulecorplab
capsulecorplab / Ender3-v2-PETG.curaprofile
Last active February 9, 2021 04:06
Cura installer for Linux (64 bit)
@capsulecorplab
capsulecorplab / install-plantuml.sh
Last active January 7, 2021 12:41
bash script for installing PlantUML
#!/usr/bin/env bash
sudo apt update
sudo apt install -y default-jre graphviz
# plantuml
if [ ! -r ~/plantuml.jar ]; then
curl -L http://sourceforge.net/projects/plantuml/files/plantuml.1.2020.26.jar/download > ~/plantuml.1.2020.26.jar
ln -sv ~/plantuml.1.2020.26.jar ~/plantuml.jar
fi
@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 / install-arduino.sh
Last active January 2, 2021 13:28
bash script for installing arduino on 64bit Linux
#!/usr/bin/env bash
# artifacts
arduinosource=arduino-1.8.13
# arduino
if ! command -v arduino &>/dev/null; then
if [ ! -r ~/$arduinosource ]; then
curl -L "https://downloads.arduino.cc/arduino-1.8.13-linux64.tar.xz" -o ~/$arduinosource.tar.xz
tar -xvf ~/$arduinosource.tar.xz -C ~/
@capsulecorplab
capsulecorplab / install-signal.sh
Last active December 29, 2020 01:26
bash script for installing signal
#!/usr/bin/env bash
# install Signal
# https://signal.org/en/download/#
# 1. Install our official public software signing key
wget -O- https://updates.signal.org/desktop/apt/keys.asc |\
sudo apt-key add -
# 2. Add our repository to your list of repositories
echo "deb [arch=amd64] https://updates.signal.org/desktop/apt xenial main" |\
sudo tee -a /etc/apt/sources.list.d/signal-xenial.list
@capsulecorplab
capsulecorplab / automate_all_the_things.adoc
Last active December 28, 2020 20:40
a list of miscellaneous automation and productivity tools
@capsulecorplab
capsulecorplab / orgmode-with-spacemacs.adoc
Last active December 9, 2020 13:59
abstract for July 11, 2019 SGVLUG / WTD

Org-Mode w/ Spacemacs

Abstract

The best editor is neither vim nor emacs, it’s Vim and Emacs! Spacemacs is a community-driven Emacs distribution that comes built-in with many popular packages, including Evil-Mode - a vim layer for Emacs, and Org-Mode - a tool for note taking and/or project management that utilizes a rich plain text markup language. This presentation will be a live demo of some of orgmode and spacemacs' features and capabilities.

Bio

Sean Marquez graduated with a B.S. in Mechanical Engineering, specializing in design of dynamic systems, from UC Irvine in 2013. After graduating, he worked as an associate mechanical design engineer facilitating configuration management for Max Q Systems – an OEM aerospace consulting firm. In 2015, he joined and collaborated with a global think tank, performing numerical simulations & control systems design for rLoop – a non-profit organization that competed and won the innovation award for the first SpaceX hyperloop pod competition. Sean currently doe

@capsulecorplab
capsulecorplab / install-kpcli.sh
Last active November 27, 2020 21:01
bash script for installing kpcli on Ubuntu/Debian
#!/usr/bin/env bash
# http://kpcli.sourceforge.net/
if ! command -v kpcli &> /dev/null; then
wget 'https://downloads.sourceforge.net/project/kpcli/kpcli-3.6-1.deb'
sudo apt install -y ./kpcli-3.6-1.deb
rm kpcli-3.6-1.deb
fi
@capsulecorplab
capsulecorplab / install-chitubox.sh
Last active November 26, 2020 11:09
bash script for installing Chitubox
#!/usr/bin/env bash
# Chitubox
if [ ! -r ~/CHITUBOX\ V1.7.0 ]; then
curl -L "https://sac.chitubox.com/software/download.do?softwareId=17839&softwareVersionId=v1.7.0&fileName=CHITUBOX_V1.7.0.tar.gz" -o ~/CHITUBOX_V1.7.0.tar.gz
tar -xvf ~/CHITUBOX_V1.7.0.tar.gz -C ~/
rm -rf ~/CHITUBOX_V1.7.0.tar.gz
fi