See POSIX Signals in C for a list of signals…
POSIX Signals in C: List of Signals
Reply
See POSIX Signals in C for a list of signals…
Got to read Seven habits of effective text editing…
…and Wholly Unbalanced Parentheses: My Vimrc…
…and slightly related OS X: Keyboard shortcuts…
To update a config file:
$ cp old.conf updated.conf $ merge -A updated.conf new.conf old.conf
Then edit updated.conf and resolve merge conflicts then deploy updated.conf.
If you send non-printable characters to your TTY you might corrupt it, and that’s no fun.
So before you print log files which might contain dodgy data to a console clean it by piping it through tr like this:
tr -c '\11\12\15\40-\176' '?'
Reading about JSON Schema…
From the help:
Ctrl-U,L: lower case Ctrl-U,U: upper case Ctrl-U,S: reverse case
See here!
Talking about the new www.personalserver.com features…
Read all about HTML Elements and Attributes!
Today I learned about the fnmatch function in PHP. It supports wildcard matching. Handy!