Complete Guide to Amazon SQS: Scalable Message Queuing
2024-08-20
Complete guide to Amazon SQS - managed message queuing service for decoupling applications with standard and FIFO queues, dead letter queues, and integration patterns.
2801 words
|
14 minutes
Track timestamped changes to a SQLite table using triggers
2024-08-20
This is more of a "today I figured out" than a TIL.
662 words
|
3 minutes
Complete Guide to Amazon SNS: Scalable Notification Service
2024-08-20
Complete guide to Amazon SNS - managed notification service for sending messages to multiple subscribers via SMS, email, HTTP endpoints, and mobile push.
2006 words
|
10 minutes
Complete Guide to Amazon RDS: Managed Relational Databases
2024-08-20
Complete guide to Amazon RDS - managed relational database service supporting MySQL, PostgreSQL, Oracle, SQL Server with automated backups and scaling.
2401 words
|
12 minutes
Complete Guide to Amazon VPC: Secure Cloud Networking
2024-08-20
Complete guide to Amazon VPC - create isolated cloud networks with subnets, security groups, routing, and connectivity options for secure AWS infrastructure.
2812 words
|
14 minutes
Complete Guide to Amazon DynamoDB: Serverless NoSQL at Scale
2024-08-20
Complete guide to Amazon DynamoDB - fast, flexible NoSQL database service with single-digit millisecond latency, automatic scaling, and serverless architecture.
2135 words
|
11 minutes
Complete Guide to AWS Lambda: Serverless Computing Revolution
2024-08-20
Complete guide to AWS Lambda - serverless compute service for running code without managing servers, with event-driven architecture and pay-per-use pricing.
1812 words
|
9 minutes
Complete Guide to AWS CloudFront: Global Content Delivery Network
2024-08-20
Complete guide to AWS CloudFront - global content delivery network (CDN) for fast, secure delivery of websites, APIs, and video content worldwide.
1539 words
|
8 minutes
Complete Guide to AWS CloudFormation: Infrastructure as Code Made Simple
2024-08-20
Complete guide to AWS CloudFormation - Infrastructure as Code service for provisioning and managing AWS resources using templates and stacks.
1438 words
|
7 minutes
Complete Guide to Amazon Athena: Serverless SQL Analytics for S3
2024-08-20
Complete guide to Amazon Athena - serverless query service for analyzing data in S3 using SQL, with practical examples and best practices.
1266 words
|
6 minutes
Using DuckDB in Python to access Parquet data
2024-08-20
Did a quick experiment with [DuckDB](https://duckdb.org/) today, inspired by the [bmschmidt/hathi-binary](https://github.com/bmschmidt/hathi-binary...
291 words
|
1 minute
Format code examples in documentation with blacken-docs
2024-08-19
I decided to enforce that all code examples in the [Datasette documentation](https://docs.datasette.io/) be formatted using [Black](https://github....
396 words
|
2 minutes
Set environment variables for all steps in a GitHub Action
2024-08-19
From [this example](https://github.com/GoogleCloudPlatform/github-actions/blob/20c294aabd5331f9f7b8a26e6075d41c31ce5e0d/example-workflows/cloud-run...
89 words
|
1 minute
Simplest possible OAuth authentication with Auth0
2024-08-19
[Auth0](https://auth0.com/) provides an authentication API which you can use to avoid having to deal with user accounts in your own web application.
576 words
|
3 minutes
Running Prettier against Django or Jinja templates
2024-08-18
I really like auto-formatting tools like Black. I've been hoping to find one that works with Django and Jinja templates for years.
360 words
|
2 minutes
Allowing a container in Docker Desktop for Mac to talk to a PostgreSQL server on the host machine
2024-08-18
I like using [Postgres.app](https://postgresapp.com/) to run PostgreSQL on my macOS laptop. I use it for a bunch of different projects.
290 words
|
1 minute
Using the GitHub Actions cache with npx and no package.json
2024-08-18
Some of my repositories have GitHub Actions workflows that execute commands using `npx`, for example my [graphql-scraper](https://github.com/simonw...
263 words
|
1 minute
Complete Guide to AWS IAM: Secure Access Management for the Cloud
2024-08-18
Complete guide to AWS IAM - manage access to AWS services securely with users, groups, roles, policies, and best practices for identity management.
533 words
|
3 minutes
Complete Guide to Amazon S3: Scalable Object Storage for the Cloud
2024-08-18
Complete guide to Amazon S3 - understanding buckets, storage classes, security, lifecycle policies, and best practices for scalable object storage.
590 words
|
3 minutes
Athena error: The specified key does not exist
2024-08-17
I was trying to run Athena queries against compressed JSON log files stored in an S3 bucket.
267 words
|
1 minute
Complete Guide to Amazon EC2: Scalable Cloud Computing Made Simple
2024-08-17
A comprehensive guide to Amazon EC2 - understanding instances, pricing models, security, and best practices for scalable cloud computing.
632 words
|
3 minutes
__init_subclass__
2024-08-17
David Beazley [on Twitter](https://twitter.com/dabeaz/status/1466731368956809219) said:
306 words
|
2 minutes
Using Fabric with an SSH public key
2024-08-16
Inspired by [this tweet](https://twitter.com/driscollis/status/1445772718507376646) by Mike Driscoll I decided to try using Fabric to run commands ...
97 words
|
1 minute
Testing the Access-Control-Max-Age CORS header
2024-08-16
Today I noticed that [Datasette](https://datasette.io/) wasn't serving a `Access-Control-Max-Age` header.
543 words
|
3 minutes