Imagine you have a mortal enemy, someone who wishes for your absolute destruction, for everything to be as bad as possible for you at all times. Think about what that enemy, watching your life, would want you to do. Do what they wouldn't want you to do.

 
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

[ ]