Skip to content

Instantly share code, notes, and snippets.

View franciscolourenco's full-sized avatar

Francisco Lourenço franciscolourenco

View GitHub Profile
empty log
/Developer/usr/bin/gcc
HOMEBREW_VERSION: 0.8
HEAD: 1b464d10ffd353fec80017d9823048e06e567f97
HOMEBREW_PREFIX: /usr/local
HOMEBREW_CELLAR: /usr/local/Cellar
HOMEBREW_REPOSITORY: /usr/local
HOMEBREW_LIBRARY_PATH: /usr/local/Library/Homebrew
Hardware: quad-core 64-bit sandybridge
OS X: 10.7
Kernel Architecture: x86_64
@franciscolourenco
franciscolourenco / brew install -v libassuan
Created August 1, 2011 17:36
brew install -v libassuan
/private/tmp/homebrew-libassuan-2.0.2-UXuo> brew install -v libassuan user@unknown
==> Downloading ftp://ftp.gnupg.org/gcrypt/libassuan/libassuan-2.0.2.tar.bz2
File already downloaded in /Users/user/Library/Caches/Homebrew
/usr/bin/tar xf /Users/user/Library/Caches/Homebrew/libassuan-2.0.2.tar.bz2
==> ./configure --disable-dependency-tracking --prefix=/usr/local/Cellar/libassuan/2.0.2
./configure --disable-dependency-tracking --prefix=/usr/local/Cellar/libassuan/2.0.2
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... ./install-sh -c -d
checking for gawk... no
this is a test
this is a test
@franciscolourenco
franciscolourenco / brew --config
Created May 7, 2012 00:35
homebrew gpg2 install error
$ brew --config
HOMEBREW_VERSION: 0.9
HEAD: a3f66cdb0a2d2351b5056dba7a69f19419143345
HOMEBREW_PREFIX: /usr/local
HOMEBREW_CELLAR: /usr/local/Cellar
CPU: quad-core 64-bit sandybridge
OS X: 10.7.3
Kernel Architecture: x86_64
Xcode: 4.3.2
GCC-4.0: N/A
@franciscolourenco
franciscolourenco / config.log
Created May 7, 2012 00:37
homebrew gpg2 install error
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by gnupg configure 2.0.19, which was
generated by GNU Autoconf 2.68. Invocation command line was
$ ./configure --prefix=/usr/local/Cellar/gnupg2/2.0.19 --disable-dependency-tracking --enable-symcryptrun --disable-agent --with-agent-pgm=/usr/local/bin/gpg-agent
## --------- ##
## Platform. ##
@franciscolourenco
franciscolourenco / brew info gpg2
Created May 7, 2012 01:02
homebrew gpg2 install error
$ brew info gpg2
gnupg2 2.0.19
http://www.gnupg.org/
Depends on: libgpg-error, libgcrypt, libksba, libassuan, pinentry, pth, gpg-agent, dirmngr, libusb-compat
/usr/local/Cellar/gnupg2/2.0.19 (82 files, 3.2M) *
https://github.com/mxcl/homebrew/commits/master/Library/Formula/gnupg2.rb
$ brew --config
HOMEBREW_VERSION: 0.9
HEAD: bb21ff5b6189dca067a00bd281ff3dd0bbcdf5e0
HOMEBREW_PREFIX: /usr/local
HOMEBREW_CELLAR: /usr/local/Cellar
CPU: quad-core 64-bit sandybridge
OS X: 10.7.4
Kernel Architecture: x86_64
Xcode: 4.3.2
GCC-4.0: N/A
/**
* peca
*/
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
#!/usr/bin/env ruby
require 'json'
def load_json(url) JSON.parse(`wget -q -O- #{url}`) end
class String
#extend: http://misc.flogisoft.com/bash/tip_colors_and_formatting
def black; "\e[30m#{self}\e[0m" end
def red; "\e[31m#{self}\e[0m" end
def green; "\e[32m#{self}\e[0m" end