Skip to content

Instantly share code, notes, and snippets.

+ https://www.udacity.com/courses/all
|
| -> Intro Algebra Review [ Must have ]
| |
| | -> College Algebra
| |
| | -> Visualizing Algebra
| |
| | -> Intro to Physics
| |

GFSA (Given-Find-Solution-Answer) Format

General Format Requirements:

  • Green engineering paper (GEP), 1-sided
  • Each problem on new page (or no more than 2 problems per page, separated by double line if 2 problems on a page)
  • Header: name, course #, lecture division, problem #, date
@stvhwrd
stvhwrd / generate-icns.sh
Created August 1, 2016 20:08
[WIP] Generates .icns package for Mac from one 1024x1024 PNG file.
#!/bin/bash
# Converts a single 1024px PNG image to a .ICNS file for best use with Mac applications
# Required: Icon to be converted must be on the desktop and named "icon2convert"
echo ""
ls ~/Desktop/*.png
echo ""
echo "Icons to be converted must be on the desktop."
echo "Which icon would you like to convert?"
set nocompatible " disable backward compatibility with Vi
filetype plugin indent on " filetype detection ON, plugins enable, indent ON
set t_Co=256 " enable 256-color mode.
syntax enable " enable syntax highlighting, previously 'syntax on'.
set number " show line numbers
set laststatus=2 " last window always has a statusline
set nohlsearch " Don't continue to highlight searched phrases.
set incsearch " But do highlight as you type your search.
set ignorecase " Make searches case-insensitive.
set ruler " Always show info along bottom.
module.exports={
"config": {
"fontSize": 12,
"fontFamily": "Menlo, \"DejaVu Sans Mono\", \"Lucida Console\", monospace",
"cursorColor": "rgba(248,28,229,0.75)",
"cursorShape": "UNDERLINE",
"foregroundColor": "#fff",
"backgroundColor": "#000",
"borderColor": "#333",
"css": "",

Keybase proof

I hereby claim:

  • I am stvhwrd on github.
  • I am stvhwrd (https://keybase.io/stvhwrd) on keybase.
  • I have a public key whose fingerprint is B43F 1381 C3AB 6045 26FA 834C 4B72 000F B3AD 0603

To claim this, I am signing this object:

Verifying that "stvhwrd.id" is my Blockstack ID. https://onename.com/stvhwrd
@stvhwrd
stvhwrd / applications-list.md
Last active December 14, 2016 03:05
Homebrew installed applications

Adium.app

Alfred 3.app

App Store.app

AppCleaner.app

Atom.app

@stvhwrd
stvhwrd / Package Control.sublime-settings
Last active February 12, 2017 22:12
My Sublime Text 3 setup
{
"bootstrapped": true,
"in_process_packages":
[
],
"installed_packages":
[
"A File Icon",
"Align Arguments",
"Alignment",
@stvhwrd
stvhwrd / advanced
Last active February 16, 2017 03:01
Sample Makefiles for C language
TARGET = solution
LIBS = -lm
CC = gcc
CFLAGS = -g -Wall
.PHONY: default all clean
default: $(TARGET)
all: default