# don't auto rebase - create merge commit
git config --global pull.rebase false
# auto push new branch
git config --global --add --bool push.autoSetupRemote true
# reuse recorded resolution
git config --global rerere.enabled true
- Find a thick cut of decent beef. Aim for the thickness of your thumb, but if you can't find a thick steak, it's ok, you can still cut horizontal strips instead of vertical ones.
- Buy around 2kg of meat (to make the process energy-efficient). If you have a lot of room in your oven, buy more.
- The less fat, the better. Fat spoils faster.
- Get gluten-free soy sauce.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# COLORS: green, red, cyan, yellow, blue, magenta, white, reset | |
CURRENT_BG='NONE' | |
() { | |
local LC_ALL="" LC_CTYPE="en_US.UTF-8" | |
SEGMENT_SEPARATOR=$'\ue0b0' | |
} | |
prompt_segment() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Frechet.swift | |
// frechet distance algorithm | |
// | |
// Created by Lucas Farris on 18/11/16. | |
// Copyright © 2016 Farris. All rights reserved. | |
// | |
import UIKit |