Background When working with a Node.js service, I intended to send a request to another service with JSON: { "name": "Instant noddle", ...
Context Suppose I want to build a checkout page like below: The first box (above) contains the guest form The second box (below) is a bottom sheet...
Background Once upon a time, I wanted to log something that was executed inside the Java stream for debugging purposes. But, I didn't see anything...
Background When I was using GORM as the ORM in Go, I discovered that we cannot update a field into NULL with struct, even though we use a pointer as...
Background Suppose I want to store and read a JSONB/JSON column from Postgres, how do I do it? Solution Make the data type implements these...
When using context in Go, I used to write this kind of context keys. type contextKeyType string const key1 = contextKeyType("key1") const key2 =...