Principles and resources for writing concise professional updates.
URL: https://paulgraham.com/simply.html
Core idea: The less energy readers spend on your prose, the more they have for your ideas.
Key points:
| package llm | |
| import "context" | |
| type Llm interface { | |
| CompleteStreaming(ctx context.Context, c Conversation, pch chan string, ch chan string) error | |
| } | |
| type Conversation interface { | |
| Messages() []Message |
Principles and resources for writing concise professional updates.
URL: https://paulgraham.com/simply.html
Core idea: The less energy readers spend on your prose, the more they have for your ideas.
Key points: