apt-get -y update && apt-get -y upgrade
apt-get -y install aptitude software-properties-common python-software-properties
apt-add-repository -y ppa:i2p-maintainers/i2p
apt-get -y update && apt-get -y upgrade
apt-get -y install i2p
dpkg-reconfigure i2p

4444; 4445; 7657;
В одну линию:

apt-get -y update && apt-get -y upgrade;apt-get -y install aptitude software-properties-common python-software-properties;apt-add-repository -y ppa:i2p-maintainers/i2p;apt-get -y update && apt-get -y upgrade;apt-get -y install i2p;dpkg-reconfigure i2p
[ ]
 

http://crystalmark.info/download/index-e.html
SMART, temperature, email notifications.

 

npm install -g git+https://git@github.com/aseemk/json5.git

Use JSON5. Don't use JSON.

Objects and arrays can have trailing commas
Object keys can be unquoted if they're valid identifiers
Strings can be single-quoted
Strings can be split across multiple lines
Numbers can be hexadecimal (base 16)
Numbers can begin or end with a (leading or trailing) decimal point.
Numbers can include Infinity and -Infinity.
Numbers can begin with an explicit plus (+) sign.
Both inline (single-line) and block (multi-line) comments are allowed.

http://json5.org/
https://github.com/aseemk/json5

[ ]
 

Use good ol' grep:

grep -R -i "SearchText" Directory

where
-R specifies recursive search.
-i should make it case-insensitive.

[ ]
 

Единственная на данный момент файловая система для Linux, производящая каскадно-объединённое монтирование других файловых систем, действительно готовая к использованию в продакшене. Крайне рекомендую, и большое спасибо её автору.
MHDDFS

[ ]
 

sudo apt-get remove phpunit
sudo pear channel-discover pear.phpunit.de
sudo pear channel-discover pear.symfony-project.com
sudo pear channel-discover components.ez.no
sudo pear clear-cache
sudo pear update-channels
sudo pear upgrade-all
sudo pear install --alldeps phpunit/PHPUnit
sudo pear install --force --alldeps phpunit/PHPUnit
sudo apt-get install php5-curl
sudo pear install --alldeps phpunit/PHPUnit_Selenium
sudo pear install phpunit/PHP_CodeCoverage
sudo pear clear-cache
sudo pear uninstall phpunit/PHPUnit
sudo pear uninstall phpunit/PHPUnit_Selenium
sudo pear uninstall phpunit/PHPUnit
sudo pear install phpunit/PHPUnit
sudo pear install phpunit/PHPUnit_Selenium
phpunit --version
sudo pear uninstall phpunit/PHPUnit_Selenium
sudo pear install phpunit/PHPUnit
sudo pear uninstall phpunit/PHPUnit
wget https://phar.phpunit.de/phpunit.phar
chmod +x phpunit.phar
mv phpunit.phar /usr/local/bin/phpunit
sudo mv phpunit.phar /usr/local/bin/phpunit
exit
phpunit --version
phpunit --version
phpunit --version
phpunit --version

Sources: first, second, third.

[ ]