Bulk editing status in GitHub Projects
2024-08-05
GitHub Projects has a mechanism for bulk updating the status of items, but it's pretty difficult to figure out how to do it.
130 words
|
1 minute
Writing an Azure Function that serves all traffic to a subdomain
2024-08-04
[Azure Functions](https://docs.microsoft.com/en-us/azure/azure-functions/) default to serving traffic from a path like `/api/FunctionName` - for ex...
145 words
|
1 minute
Remember to commit when using datasette.execute_write_fn()
2024-08-04
I was writing some code for [datasette-auth-tokens](https://github.com/simonw/datasette-auth-tokens) that used [db.execute_write_fn()](https://docs...
177 words
|
1 minute
GitHub Pages: The Missing Manual
2024-08-04
[GitHub Pages](https://pages.github.com/) is an excellent free hosting platform, but the documentation is missing out on some crucial details.
439 words
|
2 minutes
Setting up a custom subdomain for a GitHub Pages site
2024-08-03
This is so much easier than I was expecting it to be.
227 words
|
1 minute
Using SQL with GDAL
2024-08-03
Inspired [by Brad Neuberg](https://twitter.com/bradneuberg/status/1633875601789681666) I decided to take a look at the SQL features in the GDAL fam...
887 words
|
4 minutes
Removing a git commit and force pushing to remove it from history
2024-08-03
I accidentally triggered a commit which added a big chunk of unwanted data to my repository. I didn't want this to stick around in the history fore...
90 words
|
1 minute
How to get Cloudflare to cache HTML
2024-08-02
To my surprise, if you setup a [Cloudflare](https://www.cloudflare.com/) caching proxy in front of a website it won't cache HTML pages by default, ...
215 words
|
1 minute