HN user

jiangplus

47 karma
Posts3
Comments31
View on HN
Claude Code SDK 1 year ago

I would also recommend Codebuff (https://www.codebuff.com/), a great CLI code assistant comparable to Claude Code, which can save a lot on token costs.

(I am not affiliated with this project, just a user.)

Papers We Love 5 years ago

I have been organizing the Papers We Love Beijing Chapter with a group of engineers. It is a good place to share wonderful ideas that are not necessary useful.

I think PWA pattern is bad for most website, they are not designed to run offline, just pretend to be available while actually not. ServiceWorker mess up app lifecycle and cache control. I just wish Chrome allow me to just disable all ServiceWorkers.

This PRPL is even worse, just makes the stateless HTML page stateful, keeping more active connections, and is a lot more complicated.

If you want a fast to load page, please keep it simple.

Looking at the TileDB docs, I like the idea that you can store and manipulate array efficiently. It works like a columnar storage, but organized in tiles. I am not clear how it could scale to multiple nodes and how to do queries. Maybe it should be integrated into postgres.

What you need should be a language/framework to better model the complex state of your system, and handle distributing processing, monitoring, fault tolerance, recovery and retries.

Consider a functional programming language with immutability and pattern matching, which should help a lot.