A ZSH theme optimized for people who use:
- Solarized
- Git
- Unicode-compatible fonts and terminals (I use iTerm2 + Menlo)
For Mac users, I highly recommend iTerm 2 + Solarized Dark
| /* | |
| * Your Stylesheet | |
| * | |
| * This stylesheet is loaded when Atom starts up and is reloaded automatically | |
| * when it is changed. | |
| * | |
| * If you are unfamiliar with LESS, you can read more about it here: | |
| * http://www.lesscss.org | |
| */ |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| CREATE TABLE IF NOT EXISTS `country` ( | |
| `id` int(11) NOT NULL AUTO_INCREMENT, | |
| `iso` char(2) NOT NULL, | |
| `name` varchar(80) NOT NULL, | |
| `nicename` varchar(80) NOT NULL, | |
| `iso3` char(3) DEFAULT NULL, | |
| `numcode` smallint(6) DEFAULT NULL, | |
| `phonecode` int(5) NOT NULL, | |
| PRIMARY KEY (`id`) | |
| ) ENGINE=MyISAM DEFAULT CHARSET=latin1; |
| sudo nscd -K |
| #! /bin/bash | |
| if ! fgrep -qs 'ctrl:new_ctrl = +new_ctrl(new_ctrl)' /usr/share/X11/xkb/rules/evdev; then | |
| sudo sed -i.bak '/ctrl:nocaps[[:blank:]]*=[[:blank:]]*+ctrl(nocaps)/a\ | |
| ctrl:new_ctrl = +new_ctrl(new_ctrl) | |
| ' /usr/share/X11/xkb/rules/evdev | |
| fi | |
| cat <<'HEREDOC' |sudo tee /usr/share/X11/xkb/symbols/new_ctrl | |
| partial modifier_keys |
| <?php | |
| // 2017-02-28 | |
| function decrypt_signature($s){ | |
| $nF = function(&$a, $b){ | |
| $c = $a[0]; | |
| $a[0] = $a[$b % count($a)]; | |
| $a[$b] = $c; | |
| }; | |
| $fj = function(&$a, $b){ | |
| array_splice($a, 0, $b); |