Forest heights on Earth

click for original size (3.6MB)

Image above shows height of forests on our planet. The greener, the higher. From 0 up to 70 metres. Personal opinion: too much white.

source: NASA via FlowingData

Ubuntu panel Indicators (updated occasionally)

Bellow is list of indicators for panel in Ubuntu. I will update it when some interesting one catches my eyes.

Pastie, clipboard manager.
sudo add-apt-repository ppa:hel-sheep/pastie
sudo apt-get update && sudo apt-get install pastie

Limit all processes CPU load: cpulimit

Accidentally, yesterday I found something I was looking for for a long time. From time to time it happens, that some process or application hangs up whole system by using all CPU available. Than it's hard even kill it. I knew, that there was utility called cpulimit, but nowhere I found how to limit all newly started processes. Finally, I found an answer. Here it comes: http://maketecheasier.com/limit-cpu-usage-of-any-process-in-linux/2010/09/22.

How to use it (in case page disappears):
sudo apt-get install cpulimit gawk
Then, download this file and extract contained folder to your home directory getting two files in ~/cpulimit: cpulimit_daemon.sh and cpulimit. Open cpulimit_daemon.sh and edit variables under #Variables. Then simply run these commands:
sudo cp ~/cpulimit/cpulimit_daemon.sh /usr/bin
sudo chmod 700 /usr/bin/cpulimit_daemon.sh
sudo cp ~/cpulimit/cpulimit /etc/init.d/
sudo chown root:root /etc/init.d/cpulimit
sudo chmod +x /etc/init.d/cpulimit
sudo update-rc.d cpulimit defaults

Now, restart your computer and cpulimit daemon should be started at startup.