1 tbs. coconut or avocado oil
4-6 cloves fresh garlic, chopped
2 pounds (900 g) ground lamb
1 pound (450 g) ground grassfed beef
2 cups (300 g) onions chopped
2 cups (250 g) carrots, peeled and sliced
2 stalks celery, chopped
1 tbs. fresh rosemary, chopped fine
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset=utf-8 /> | |
<meta name="viewport" content="initial-scale = 1.0,maximum-scale = 1.0" /> | |
<title>CSS Transparency</title> | |
<link rel="stylesheet" href="style.css" /> | |
</head> | |
<body> | |
<div class="img-wrap1 tile"> |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset=utf-8 /> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Houndstooth</title> | |
<link href='http://fonts.googleapis.com/css?family=Libre+Baskerville:400,700' rel='stylesheet' type='text/css'> | |
<style> | |
body { | |
font-size: 100px; |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset=utf-8> | |
<meta name="viewport" content="width=device-width"> | |
<title>Social Buttons</title> | |
<link href="http://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css" rel="stylesheet"> | |
<link href="./style.css" rel="stylesheet"> | |
</head> | |
<body> |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset=utf-8> | |
<meta name="viewport" content="width=device-width"> | |
<title>Font Awesome Drawing</title> | |
<link href="https://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css" rel="stylesheet"> | |
<link href="./style.css" rel="stylesheet"> | |
</head> | |
<body> |
This file contains 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
var aquired = false, | |
lock; | |
function Lock() { | |
if (!lock) lock = this; | |
return lock; | |
} |
This file contains 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
// ==UserScript== | |
// @name Massive Props | |
// @namespace https://twitter.com | |
// @include https://twitter.com/* | |
// @description https://twitter.com/ryanqnorth/status/220970058548121600 | |
// ==/UserScript== | |
var script = document.createElement('style'); | |
script.innerHTML = '\ | |
.favorite { \ |
This file contains 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
// ==UserScript== | |
// @name Octigones | |
// @namespace https://github.com | |
// @include https://github.com/* | |
// @description A GitHub beautifier. | |
// ==/UserScript== | |
var JQUERY_URL = 'http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js', | |
$; |
This file contains 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
#! /usr/bin/env python | |
from collections import defaultdict | |
from os import walk | |
from os.path import join | |
from subprocess import check_output | |
args = ['git', 'blame', '-p'] | |
authors = defaultdict(list) |