Chris Morgan
Chris Morgan
Basically, you can’t reverse a URL like `/blog@tag/rust` in `/blog` because it hasn’t processed the blog-posts that actually use the “rust” tag yet. Workaround is to write `{{ ('/blog/tag/' ~...
As a concrete example, when creating a customer in the Stripe API, there’s an argument `tax_percent` that is only permitted if `plan` has also been set. It is an error...
Just came across this. Since we’re talking security, I took a look at the code. I was distressed to find HTML was being output without escaping in almost all places...
I understand this still has some shortcomings and/or caveats, but I have no idea what they may be. It’d be nice to have them documented in the README to help...
If your window size isn’t a multiple of the block size, you end up with a bit of waste space on the bottom and/or right edges of your window. Currently...