Skip to content

Instantly share code, notes, and snippets.

View williamespindola's full-sized avatar

William Espindola williamespindola

View GitHub Profile
@williamespindola
williamespindola / list-authors
Last active June 19, 2018 10:40
Example: list-authors name/of/file
#!/usr/bin/env bash
declare -r FILENAME=${1}
declare -r TEMPORATY=$(mktemp)
exec 3<> ${TEMPORATY}
{
echo "/**"
git blame --line-porcelain "${FILENAME}" |
egrep '^author' |
@williamespindola
williamespindola / br-cities.php
Created June 7, 2016 22:35 — forked from henriquemoody/br-cities.php
Lista de cidades brasileiras com base nos dados o IBGE
<?php
return [
// http://www.cidades.ibge.gov.br/download/mapa_e_municipios.php?uf=ac (Thu May 14 16:30:15 BRT 2015)
'AC' => [
1200013 => 'Acrelândia',
1200054 => 'Assis Brasil',
1200104 => 'Brasiléia',
1200138 => 'Bujari',
1200179 => 'Capixaba',
@williamespindola
williamespindola / delegates.xml
Created April 25, 2016 21:23 — forked from sophiaphillipa/delegates.xml
ImageMagick how to convert EPS to PNG with Quality and Transparency
<!--
Must pass this commands to GS: -dUseCIEColor -sDEVICE=pngalpha
-->
<delegate decode="ps:cmyk" stealth="True" command="&quot;gs&quot; -q -dQUIET -dUseCIEColor -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 &quot;-sDEVICE=pngalpha&quot; -dTextAlphaBits=%u -dGraphicsAlphaBits=%u &quot;-r%s&quot; %s &quot;-sOutputFile=%s&quot; &quot;-f%s&quot; &quot;-f%s&quot;"/>

Setup Mac OS X

I just replaced the hard drive of my mbp and decided to do a clean install of Mountain Lion (10.8.5) since I was still using Snow Leopard (10.6.8).

I kinda regret for not using Boxen to automate the process, but TBH I have this laptop for almost 3yrs and this is the first time I needed to reinstall everything, maybe the next time...