|
You are here |
akr.am | ||
| | | | |
www.alexedwards.net
|
|
| | | | | ||
| | | | |
jvns.ca
|
|
| | | | | Bash scripting quirks & safety tips | |
| | | | |
andre.arko.net
|
|
| | | | | So first, I should probably set the scene: in a special-purpose browser, automated and driven by JavaScript, there was a string that made no sense. Anytime it should have contained an apostrophe, it produced invalid JSON. Why would it do that, you ask? Well, after far too long digging into the way that smart quotes are represented in Unicode, I finally figured it out. A single left apostrophe, also known as \u2019, takes up three bytes. The third byte happens to be \x19, the obscure ^Y control character. Control characters aren't allowed in JSON strings, and so things exploded. | |
| | | | |
www.mattlayman.com
|
|
| | | How can you set up Tailwind CSS for your Django app on Heroku? In this article, we'll see how I did exactly that recently. I have a side project that uses Tailwind CSS. To get started quickly, I used the version from a Content Delivery Network (CDN) as Tailwind describes in the documentation. This worked fine initially while I got my project started, but the CDN version is huge (around 3MB). | ||