Serves 8
- Leftover Turkey Carcass and Bones
- 3 Carrots, chopped roughly
- 1/2 Onion, chopped roughly
- 6 Cloves Garlic, peeled
class Libgit2 < Formula | |
desc "C library of Git core methods that is re-entrant and linkable" | |
homepage "https://libgit2.github.com/" | |
url "https://github.com/libgit2/libgit2/archive/v0.24.1.tar.gz" | |
sha256 "2d201fe3f76758043ce78c7bb9cf7deb4f0b547bdb323e1915d0d104aa0bb03c" | |
head "https://github.com/libgit2/libgit2.git" | |
option :universal | |
depends_on "pkg-config" => :build |
SELECT user_id, to_char(date, 'YYYY-MM') AS month, SUM(amount) as total | |
FROM invoices | |
GROUP BY user_id, month | |
ORDER BY user_id, month; |
require 'distribution' | |
# set these values | |
control_success = 338 | |
control_fail = 56 | |
experiment_success = 341 | |
experiment_fail = 53 | |
alpha_a = control_success + 1 | |
beta_a = control_fail + 1 |
require 'csv' | |
urls = [] | |
CSV.foreach("instapaper-export.csv") do |row| | |
urls << row[0] | |
end | |
urls.reverse.each do |url| | |
puts "Adding: #{url}" | |
`osascript -e 'tell application "Safari"' -e 'add reading list item "#{url}"' -e 'end tell'` |
# | |
# This was the command line implementation for Radicle. It's no longer in use, but I thought it was worthwhile | |
# to keep around, just in case. | |
# | |
require "optparse" | |
module Radicle | |
class CommandLine | |
# Public: Parses a command line array and returns a hash |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<!-- Based on langer.tumblr by langer, http://blog.mattlanger.com/, with some extra customizations by me, | |
commondream --> | |
<title>{Title}{block:PostTitle} - {PostTitle}{/block:PostTitle}</title> | |
<link rel="icon" href="{Favicon}"/> | |
<link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}"/> | |
<meta name="viewport" content="width=775"/> <!-- iPhone --> | |
class NavLabels | |
constructor: () -> | |
mouseIn = () -> | |
$(this).find(".nav-label-container").animate { | |
opacity: 1 | |
top: 45 | |
}, 400 | |
mouseOut = () -> |
class NavLabels | |
constructor: () -> | |
mouseIn = () -> | |
$(this).animate({ | |
opacity: 1 | |
top: 45 | |
}, 400) | |
mouseOut = () -> | |
$(this).animate({ | |
opacity: 0 |