The goal - 20% of the features covers the 80% daily usage
Why you shoud learn Vim?
- Basically it's everywhere, only if you're using Unix/Linux/macOS.
- Edit your confuguration on the servers.
#!/bin/bash | |
xcode-select --install | |
# homebrew | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" | |
brew install \ | |
fish \ | |
font-devicons \ |
var collectionNames = db.getCollectionNames(), stats = []; | |
collectionNames.forEach(function (n) { stats.push(db[n].stats()); }); | |
stats = stats.sort(function(a, b) { return b['size'] - a['size']; }); | |
for (var c in stats) { print(stats[c]['ns'] + ": " + stats[c]['size'] + " (" + stats[c]['storageSize'] + ")"); } |
LC_ALL=C sed -i '' 's/old string/new string/g' `grep -rl "keyword" ./` |
sudo apt-get install libssl-dev pkg-config libsasl2-dev libpcre3-dev | |
sudo pecl install mongodb |
<?php | |
$data = (object)array( | |
"html" => "<foo bar=\"baz\"/> &", | |
"arabic" => "العربية al-ʿarabiyyah, IPA: [æl ʕɑrɑˈbijjɐ], or عربي ʿarabī", | |
"hebrew" => "עִבְרִית, Ivrit", | |
"chinese" => "汉语/漢語 Hanyu; 华语/華語 Huáyǔ; 中文 Zhōngwén", | |
"korean" => "한국어/조선말", | |
"japanese" => "日本語 Nihongo", | |
"umlauts" => "äüöãáàß", |
Alfred | |
Blender: 3D modeling tool | |
Caffeine | |
CheatSheet: 按住cmd键出现当前active窗口的快捷键 | |
Chrome | |
CleanMyMac | |
Dash | |
Eudb | |
FileZilla | |
GitBook |
openssl req -new -newkey rsa:2048 -nodes -keyout yourdomain.key -out yourdomain.csr |