Você costuma viajar? Se você estuda fora, trabalha em outra cidade, namora, gosta de passear, enfim, independentemente do motivo prefere dividir uma carona com seus amigos do que viajar sozinho, isto pode te interessar… A internet hoje nos oferece algumas alternativas para nos aproximar de grupos de pessoas com os mesmos interesses. No caso de… Continue reading Simbora – no ar
Month: June 2009
Quick script to fetch diff history [of a file] using svn
If you wanna see the whole history differences of some file in svn repository, you could use this: $ svndiffhist file Retrieving releases… OK (found 17 steps) ## 908:895 diffs… ## 895:890 diffs… ## 890:880 … etc Where svndiffhist is the following script: function svndiffhist { FILE=$1 echo -n “Retrieving releases…” >&2 releases=$( svn log… Continue reading Quick script to fetch diff history [of a file] using svn