One post at a time
3 Jul
iftop: display bandwidth usage on an interface

How to install?
sudo port install iftop
How to use it?

sudo iftop -i en1
Enjoy!
Tales From The Command Line: Where Has My Bandwidth Gone?
3 Jul
2 Jul

Don’t forget to download your very own certificate for helping set a Guinness World Record.
2 Jul
1 Jul
30 Jun
This is the best show I’ve seen on this topic, besides the movie Outsourced. Definitely worth watching!
Roger Spurlock (from the Supersize Me movie) explores what the the US job outsourcing experience is like on the other side.
Outsourcing has changed our planet.
This was done on the “30 Days” series on FX hosted by Morgan Spurlock. It was very entertaining and thought-provoking for the guy who went to India, the Indians themselves and, of course, those of us watching.
30 Jun
It is developed by HP Web Security Research Group in coordination with Microsoft Security Response Center.
29 Jun
Keyboard navigation for TextMate stacktraces
Put this script at the end of /Applications/TextMate.app/Contents/SharedSupport/Support/script/webpreview.js.
document.addEventListener('keypress', function(e){
var key = e.keyCode
if (key != 63233 && key != 63232) return
links = document.getElementsByTagName('a')
for (var i = 1; i < links.length; i++)
if (links[i].title == 'focused') break
if (i == links.length) i = 0
links[i].title = null
if (key == 63233){
if (i == (links.length - 1)) i = 1
else i += 1
}
if (key == 63232){
if (i <= 1) i = links.length - 1
else i -= 1
}
links[i].title = 'focused'
links[i].focus()
})
Incredibly useful when I am running my tests!
29 Jun
It is very easy to use as inserting the dragtable.js in our code and adding the class=”dragtable” to any table is enough.
28 Jun
Jabber::Bot makes it simple to create and command your own Jabber bot with little fuss. By adding custom commands powered by regular expressions to your bot’s repertoire, you and your new bot will be able to accomplish nearly anything.
Recent Comments