Skip to content

Instantly share code, notes, and snippets.

View brookton's full-sized avatar
💻

David Brookton brookton

💻
  • Boulder, CO
View GitHub Profile
@DamonLC21
DamonLC21 / rails-sqlite3-heroku.md
Last active March 5, 2021 17:09
Pushing a Rails/sqlite3 API to Heroku

Deploying Rails/SQLite3 app to Heroku

Before we begin install postgresql onto your device:

$ brew install postgresql

Check if the postgresql service is running via brew :

@sarthaksavvy
sarthaksavvy / cloudSettings
Last active June 25, 2024 14:23
Visual Studio Code Settings Sync Gist
{"lastUpload":"2020-09-04T18:49:47.910Z","extensionVersion":"v3.4.3"}
@ryandeussing
ryandeussing / gist:5667094
Created May 29, 2013 00:14
Find and kill a zombie shotgun server
$ ps ax | grep shotgun
11152 s000 R+ 0:00.00 grep shotgun
10766 s001 S+ 0:00.60 /Users/ryandeussing/.rvm/gems/ruby-1.9.3-p429@sinatra/bin/shotgun
$ kill -9 10766
#done
@fogleman
fogleman / git_cheat_sheet.md
Created November 28, 2012 21:36 — forked from ryansturmer/git_cheat_sheet.md
Git Cheat Sheet

Git Cheat Sheet

This attempts to be a useful "cheat sheet" for git. I'm just writing git recipes down here as I find and use them.

Getting Code

Clone a repository (GitHub)

git clone git@github.com:username/repository.git