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' '?'
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!
To get the element/tag name with jQuery:
$( '.selector' ).get( 0 ).tagName
In vim to undo is ‘u’ and to redo (i.e. undo undo) is ‘Ctrl+R’…
Found this which said:
$('<div/>').text('This is fun & stuff').html();