Skip to content

Instantly share code, notes, and snippets.

View brettchalupa's full-sized avatar

Brett Chalupa brettchalupa

View GitHub Profile
@brettchalupa
brettchalupa / rabbit_to_pdf.sh
Created August 8, 2013 02:52
Convert Rabbit slides to PDFs.
rabbit -p --slides-per-page 1 -o output_file_name.pdf origin_file_name.rd
@brettchalupa
brettchalupa / independent_contractor_agreement.md
Last active April 3, 2018 20:49 — forked from malarkey/Contract Killer 3.md
Independent contractor agreement based off of the Contract Killer 3.

Independent Contractor Agreement

Between us [company name] and you [customer name]

Summary:

We’ll always do our best to fulfill your needs and meet your expectations, but it’s important to have things written down so that we both know what’s what, who should do what and when, and what will happen if something goes wrong. In this contract you won’t find any complicated legal terms or long passages of unreadable text. We’ve no desire to trick you into signing something that you might later regret. What we do want is what’s best for both parties, now and in the future.

So in short;

@brettchalupa
brettchalupa / crafted_in_vt.mdown
Last active December 16, 2015 03:59
Crafted in VT

Awesome Vermont companies that make cool things!

  • Agilion
  • Thoughtfaucet
  • Deep Dish Creates
  • Notabli
  • Scouts Honor Co.
  • JDK
  • Field Aesthetic
  • Dottie Clover
@brettchalupa
brettchalupa / git_temp_ignore.sh
Last active December 15, 2015 17:30
Temporarily ignore a file in git
# ignore the file
git update-index --assume-unchanged <file>
# unignore the file
git update-index --no-assume-unchanged <file>
@brettchalupa
brettchalupa / .vimrc
Last active December 14, 2015 04:49
vim config vimrc
execute pathogen#infect()
syntax enable
set hidden
set t_Co=256 " enable 256 color support
set textwidth=80 " set the textwidth char to wrap at
set ts=2 " set the tab spacing to be 2 chars
set shiftwidth=2 " set the shiftwidth to be 2 chars
set wrapmargin=0
set number " display line numbers
set expandtab
@brettchalupa
brettchalupa / developer_resources.md
Last active December 12, 2015 09:19
a list of resources for web application and web site developers. for front-end, back-end and everything in-between.
@brettchalupa
brettchalupa / gam_jam_resources.md
Last active December 12, 2015 09:19
a list of game jam resources
@brettchalupa
brettchalupa / user.json
Last active December 12, 2015 02:39
Sublime Text 2 config
{
"color_scheme": "Packages/Color Scheme - Default/Twilight.tmTheme",
"font_face": "Monaco",
"font_size": 16,
"draw_white_space": "selection",
"tab_size": 2,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"hot_exit": false,
"remember_open_files": false,
@brettchalupa
brettchalupa / random_game.rb
Last active December 11, 2015 12:19
A fun little game in Ruby for guessing a number between 1 and 100 (inclusive).
class RandomGame
def play
in_game = true
while in_game
puts "Guess a number between 1 and 100 (inclusive)."
random_number = generate_random
print "> "
guess = gets.chomp.to_i
@brettchalupa
brettchalupa / usage.js
Created October 20, 2012 17:02
aliceffekt's jquery visible image script
$(window).scroll(function () { visibleImg(); });