Buen video, Buena cancion (Featured como World Wide Warning de Dance Department Podcast), Lindas Chicas, como en la mayoria de los videos dance, excelente para la vista.
Related Posts
Google’s Chrome, no extensions? then no go
Please correct me if I’m wrong, but I didn’t read any mention of Browser extensions on the chrome document, I read about plugins (these are more like Flash plugin and what not), but nothing about extensions. This probably means: – No StumbleUpon toolbar 🙁 (I’m a stumbleupon.com addict, I feel crippled with chrome because of […]
Podcast Episode 005 – The Nintendo Trivia
Were you like 8 to 12 years old around 1989? did you play a lot of Nintendo (NES)? If so you will enjoy this podcast like nobody else will. In this podcast I play some of the songs of my favorite NES games, the fun of it is that you have to guess the game […]
Bash Alias – “svn_diff_counter”: Count lines added and removed
I love to know how many lines I’ve added and deleted before making a commit. This is why I created this alias: alias svn_diff_counter=’svn diff | egrep “^[+|-].*” | egrep -v “(+++)|(—)” > .tmp_diff_counter ; added=`egrep “(^+)” .tmp_diff_counter | wc -l`; removed=`egrep “(^-)” .tmp_diff_counter | wc -l`; rm .tmp_diff_counter; echo “Lines Added vs. Line Removed […]