Skip to content

Instantly share code, notes, and snippets.

View capsulecorplab's full-sized avatar

Sean Marquez capsulecorplab

View GitHub Profile
@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 / .spacemacs.env
Last active December 31, 2019 00:31
my spacemacs configurations
# ---------------------------------------------------------------------------
# Spacemacs environment variables
# ---------------------------------------------------------------------------
# This file has been generated by Spacemacs. It contains all environment
# variables defined in your default shell except those with names matching
# regexps in `spacemacs-ignored-environment-variables'. If you add any
# duplicate settings for a variable, only the first setting is effective.
# PATH is a special case: all PATH settings are read, each non-duplicate
# directory entry is appended to the `exec-path' variable, and then PATH is
# set to the final value of `exec-path'.
@capsulecorplab
capsulecorplab / hello_org.org
Last active November 14, 2019 06:31
My first org file

spacemacs cheetsheet

home

SPC b h

open new buffer

SPC b N

next buffer

SPC b n

previous buffer

SPC b p

kill buffer

@capsulecorplab
capsulecorplab / .gitignore
Last active August 23, 2019 15:19
a python script for randomly dividing up players into teams
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
@capsulecorplab
capsulecorplab / taskmanagers.adoc
Last active July 7, 2019 17:21
a comparison of task management tools for power users
@capsulecorplab
capsulecorplab / textbooks.adoc
Last active June 10, 2019 06:21
a collection of recommended textbooks per subject
@capsulecorplab
capsulecorplab / CONTRIBUTING.adoc
Last active July 25, 2019 19:27
Generic GitHub contributing guide
@capsulecorplab
capsulecorplab / github-templates.adoc
Created May 22, 2019 02:12
Templates for facilitating a clean Github project
@capsulecorplab
capsulecorplab / .gitignore
Last active August 23, 2019 15:21
Parses NASA SBIR/STTR awarded abstract archives and generates a word count for the specified year
# csv's
*.csv
# pycache
__pycache__/
@capsulecorplab
capsulecorplab / setvolume.py
Last active March 12, 2019 06:55
set volume from command line
# set volume from command line
# install by placing in home directory and running `chmod +x setvolume.py; echo 'python3 ~/setvolume.py' > .bashrc`
# CLI usage - sets volume level to 120%: `setvol 120`
from sys import argv
from subprocess import call
call('pactl set-sink-volume 0 ' + argv[1] + '%', shell=True)