Thoughts
The web is so fricking bad.
I want a 140 character textarea here. Easy, check `.length` client-side; check `len()` server-side. Right?
Wrong!
JS-side `.length` treats new-lines as 1 character, but per some spec, lines in form-encoded requests are `\r\n` delimitated. So Python's `len()` sees two characters.