Skip to content

Instantly share code, notes, and snippets.

View hawkrives's full-sized avatar
🦋
Butterflies

Hawken Rives hawkrives

🦋
Butterflies
View GitHub Profile
@hawkrives
hawkrives / 1 - Writeup.md
Created October 9, 2011 20:05
Writeup for my Eagle Project

Project Description

Project Name: Granite Bumpers

Describe the project that you plan to do: I plan to replace the three worn telephone poles that currently protect the west playground with a set of eight gray granite parking bumpers. These bumpers will be smooth on the bottom, rough all around the edges, and have a flamed finish on the top. They will be pinned to the ground through the use of two metal pins anchored in the parking lot beneath each bumper.

What group will benefit from the project? All Souls Church.

My project will be of benefit to the group because: The current bumpers (a set of three telephone poles) are too tall for this use. The cars often run into the top edge of the poles, and, as a result, splinter and push the poles backward. As the purpose of a bumper is to simple stop the car (without making the driver worry about their bumper), the current solution fails. It is also a slight safety hazard, as many kids play less than 50ft away and quite often go over the poles to reach

Painstakingly copied from https://www.ceros.com/blog/meta-narrative/

HOW J.J. ABRAMS CREATED A READING EXPERIENCE UNLIKE ANY OTHER

Written by Simon Martin, Design by Martin Flores

It’s a moment that can take you by surprise in the right setting. You're strolling through the park, and there, on a bench, is a lonely stray book. Your curiosity gets the better of you, so you wander over to see which book—of the many thousands in the world—has captured your attention in this moment. Why this book? Why today?

It's something most of us have experienced.

@hawkrives
hawkrives / gist:5d3a5bd1d40cf4e02ab8
Last active May 3, 2024 16:15
chem 398 for cs elective proposal
  • This course is devoted to team research/development projects, employing established software development methodologies.
  • Projects frequently have:
    • an interdisciplinary nature,
    • involving consultation with faculty and/or students in other fields,
    • and taking advantage of the particular backgrounds of team members.
  • One or more research papers, posters ,etc., on results are ordinarily expected.
  • Offered alternate years.
  • Prerequisites: one core course with implementation in computer science or permission of instructor.
@hawkrives
hawkrives / dabblet.css
Created March 19, 2012 15:04 — forked from JoelBesada/dabblet.css
CSS States
/* CSS States */
body {
background: url(http://dabblet.com/img/noise.png);
background-color: #F5F2F0;
font-family: Georgia, serif;
font-size: 18px;
line-height: 1.6em;
text-shadow: 0 2px 0 white;
color: #222;
}
@hawkrives
hawkrives / convert-to-pages-09.sh
Last active August 2, 2024 15:53
Scripts to convert from Pages '08 documents to Pages '09
#!/bin/bash
set -e
root=$(pwd)
for file in "$@"; do
cd "$file"
pwd
if [[ -f index.xml.gz ]]; then
@hawkrives
hawkrives / all-times.txt
Last active August 25, 2024 20:55
all course times
F 00-00
F 0100-0400PM
F 0100-0500PM
F 0200-0255PM
F 0200-0300PM
F 0200-0330PM
F 0200-0400PM
F 0200-0430PM
F 0200-0500PM
F 0200-0600PM
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<style>
.square {
width: 250px;
height: 250px;
}
</style>
@hawkrives
hawkrives / cmus-mediakeys.py
Last active August 31, 2024 14:06 — forked from drslump/mediakeys.py
Act upon media keys in a Mac under OSX
#!/usr/bin/python
import subprocess
# PyObjC-related imports
from AppKit import NSApplication, NSSystemDefined, NSApplicationActivationPolicyProhibited
from PyObjCTools import AppHelper
KEY_UP = 11
@hawkrives
hawkrives / palette.scss
Created March 17, 2013 04:45
The St. Olaf Color Palette
// St. Olaf Color Palette
$sto-color-slate: #9194B6;
$sto-color-purple: #49176D;
$sto-color-navy: #06357a;
$sto-color-sea: #005984;
$sto-color-blue: #4f8abe;
$sto-color-teal: #38939b;
$sto-color-skin: #b88b73;
$sto-color-blood: #820024;
$sto-color-red: #b30838;