Skip to content

Instantly share code, notes, and snippets.

View jorgepedret's full-sized avatar
😀
Turned on by Open Source

Jorge Pedret jorgepedret

😀
Turned on by Open Source
View GitHub Profile
@bmann
bmann / lunch.txt
Last active August 29, 2015 13:57
Slack commands for StackHaus
Maybe sandwiches from Big Lou's?
Save on Meats. Comfort food.
Lost and Found has good salads. Healthy, too.
Just run and get a burger from Vera's.
Across the street, Rainier Provisions.
Nelson the Seagull. Goooood bread. And salad!
Bestie! It's the wurst.
Pourhouse. A little pricey, but nice and private. And beer.
Nuba! Get the daily juice. And Najib's
Why don't we ever go to New Town Bakery?
@dyoder
dyoder / blog.jade
Created October 9, 2013 08:54
Harp / Jade template for a blog summary page, automatically excepting anything before `<!-- more -->`
- function excerpt(markup) {
- return markup.split("<!-- more -->")[0]
- }
.blog.summary
ul
each post, slug in public.posts.data
li
h3 #{post.title}
p.byline
@CristinaSolana
CristinaSolana / gist:1885435
Created February 22, 2012 14:56
Keeping a fork up to date

1. Clone your fork:

git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream