Reading about JSON Schema…
JSON Schema
Reply
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();
My CSS height value wasn’t being applied. Found this. The problem was that I needed to specify heights for all of the ancestor elements. Bug fixed!