Writing

| View comments on Hacker News

Writing is hard. You’re condensing your thoughts into more general concepts that can (hopefully) be understood by others. It’s equivalent to compressing a giant file (your mind) into some smaller artifact (some scribbles on a page).

Writing is valuable. It’s how we can give the gift of knowledge to the future. One can learn some concept and teach it to others with no investment other than the time spent compressing that knowledge.

Writing is introspective and philosophical. Writing delves into the nature of knowledge. What’s worth sharing with others?

The process of writing is good practice for thinking. It forces you to focus on communicating clearly. It makes you think about language and how to effectively convey concepts. It makes you consider if your examples are truly clear and engaging, or just a distraction not adding any value.

I’m really bad at writing. My thoughts are chaotic and disorganized and hard to communicate. Praciting writing gives me the chance to hone what I’ve been thinking about, and work “muscles” to help me communicate more clearly.

Recent posts from blogs that I like

SentencePiece BPE Tokenizer in Go

Earlier this year I wrote a post about implementing BPE tokenization in Go, which made it possible to reproduce OpenAI's tokenizer. Today I want to mention a new project I've been hacking on recently: go-sentencepiece - a pure Go implementation of the SentencePiece tokenizer that's used for Google A...

via Eli Bendersky

What if I need to wait for more than MAXIMUM_WAIT_OBJECTS threads?

Studying your options, and the consequences of breaking things up. The post What if I need to wait for more than MAXIMUM_WAIT_OBJECTS threads? appeared first on The Old New Thing.

via The Old New Thing

Claude's API now supports CORS requests, enabling client-side applications

via Simon Willison