How to truncate git history
git checkout --orphan temp $1
git commit -m "Truncated history"
git rebase --onto temp $1 master
git branch -D temp
git gc
http://bogdan.org.ua/2011/03/28/how-to-truncate-git-history-sample-script-includ...
Por qué no me he comido una rosca como artista...
...tiene nombre: el efecto Dunning-Kruger.
En resumen:
- Los individuos incompetentes tienden a sobreestimar su propia habilidad.
- Los individuos incompetentes son incapaces de reconocer la habilidad de otros.
- Los individuos incompetentes son incapaces de reconocer su extrema insuficiencia.
The Zoomquilt 1 & 2
I finally found them again.
The Zoomquilt
http://www.zoomquilt.org/
The Zoomquilt II
http://zoomquilt2.madmindworx.com/zoomquilt2.swf
Levenshtein distance
"The Levenshtein distance between two strings is defined as the minimum number of edits needed to transform one string into the other, with the allowable edit operations being insertion, deletion, or substitution of a single character."
http://en.wikipedia.org/wiki/Levenshtein_distance
Alternative to MVC: MOVE
From model-view-controller to models-operations-views-events.
http://cirw.in/blog/time-to-move-on
Michael Hutter
Der Triumph des Fleisches (The triumph of flesh)
http://www.octopusartis.com/imgPage.php?snID=35&imgID=316
Prefix Bash commands with a space to avoid them being added to history
# .bashrc (ignore duplicates, don't history space-prefixed cmds)
HISTCONTROL=ignoredups:ignorespace
http://news.ycombinator.com/item?id=4076407
The Architecture of Open Source Applications
http://www.aosabook.org/en/index.html