Advertisement Β· 728 Γ— 90

Posts by Chris Rybicki

TIL: in distributed systems; crash faults (process stops responding) are a subset of omission faults (process drops messages) which are a subset of timing faults (process handles messages early or late) which are a subset of Byzantine faults (process does any arbitrary behavior). It's a hierarchy!

3 days ago 1 0 0 0
screenshot of macOS software update dialog, which begins "This update introduces 8 new emojis, along with other features, bug fixes, and security updates for your Mac"

screenshot of macOS software update dialog, which begins "This update introduces 8 new emojis, along with other features, bug fixes, and security updates for your Mac"

I'm pleased that Apple realizes new emojis are among the top most reasons I choose to upgrade my operating system in 2026

3 weeks ago 1 0 0 0

great read! It reminds me a lot of the Strange Loop talk "The Economics of Programming Languages" - the business models of software is a pretty under-discussed topic as a whole

4 weeks ago 2 0 1 0

Also it goes without saying but reading non-slop technical writing is always delightful!

4 weeks ago 1 0 0 0
Preview
JavaScript execution model - JavaScript | MDN This page introduces the basic infrastructure of the JavaScript runtime environment. The model is largely theoretical and abstract, without any platform-specific or implementation-specific details. Mo...

Side note: considering the sheer complexity of JavaScript (that I've forgotten about since not touching it in a little while), I can sort of imagine how understanding how all of this works could provide Probably Decent Job Security as a software engineer.

developer.mozilla.org/en-US/docs/W...

4 weeks ago 0 0 1 0
screenshot of MDN page, titled "Agent execution model"

screenshot of MDN page, titled "Agent execution model"

TIL JavaScript has been using agents since before it was cool:

4 weeks ago 1 0 1 0

They should add an unenthusiastic "alright" to the available HTTP status codes.

1 month ago 1 0 0 0
Advertisement
Why JavaScript promises aren’t technically monads While I was chomping down on my lunch the other day, I was web browsing when I stumbled on this tweet.

I was also pretty weirded out by this (though discovered it by a pretty unrelated path)! but yeah, <insert utopia meme if JavaScript promises were monads>

rybicki.io/blog/2023/12...

1 month ago 1 1 0 0
Post image

I started a software research company

notes.eatonphil.com/2026-02-25-i...

1 month ago 93 8 6 1

🀲 Boston TS Club needs your help! We're out of a venue space and are on the lookout for one who can host our monthly meetups.

If you work at or know of a company who wants to support the local web development & JavaScript/TypeScript community, please let us know. πŸ’™

2 months ago 8 6 1 1

the ideal class to me would be a survey like class that each day takes one topic and looks at it cross sectionally, like

"How do languages across research/industry approach X?"

where every day X could be subtyping, GC, async, metaprogramming, etc

and each class you read 2-3 papers in advance

2 months ago 1 0 1 0

Syntax design and type inference and data flow analysis and JITs and so on are also interesting but I could understand wanting to keep them for a compiler class?

2 months ago 1 0 1 0

Mmm I see.

I guess by rare features I'm thinking of fancy types of polymorphism, linear/affine types, refinement types, gradual typing... (rare should probably be in quotes)

2 months ago 1 0 2 0

Providing more student exposure to languages with useful-but-rare semantic properties would be appealing to me. And intros to model/proof checking languages.

2 months ago 0 0 1 0

To bridge the gap between software implementations and their corresponding designs / formal models? (thinking of eg Dafny)

2 months ago 0 0 2 0

HEARTBREAKING: This Woman Thought Her PR Was Already Merged

3 months ago 51 5 1 0
Advertisement

Are words basically just pointers to concepts? πŸ€”

3 months ago 2 0 0 0
screenshot of the beginning of the blog post, black text over plain white background. It begins with a bad joke, "Did you know that in programming, threads have been locking in before it was cool?"

screenshot of the beginning of the blog post, black text over plain white background. It begins with a bad joke, "Did you know that in programming, threads have been locking in before it was cool?"

New blog post!

Writing mutexes from scratch in Go

rybicki.io/blog/2026/01...

3 months ago 4 0 0 0
Experimenting with GO

TIL reentrant locks are considered harmful?

These are locks that are OK to call .acquire() on by the same thread more than once. For example, Java provides ReentrantLock out of the box in java.util.concurrent.locks.

But they aren't available in Go:

groups.google.com/g/golang-nut...

3 months ago 13 0 2 0

"The best time to start training a policy was 20 episodes ago. The second best time is now." -Chinese proverb

3 months ago 1 0 0 0
Preview
GitHub - Chriscbr/advent-of-code-2025 Contribute to Chriscbr/advent-of-code-2025 development by creating an account on GitHub.

advent of code 2025 here I come!

embarrassingly I've never completed all 25 days in a single year. but this time, there's only 12 days of puzzles so I think I have a fighting chance!

I'm also going to try using Haskell (language I barely know)!

github.com/Chriscbr/adv...

4 months ago 5 0 0 0
Preview
Announcing Unison 1.0 After years of engineering, design, and community collaboration, we're excited to release Unison 1.0. This version delivers a refined programming workflow and a mature toolchain. Join us as we celebrate this milestone and look ahead to the future of Unison.

πŸŽ‰ Unison 1.0 has landed!

After years of engineering, design, and community collaboration, we’re excited to announce this milestone!

Spread the word!

4 months ago 120 62 0 6

Huge congrats to the Unison team for launching 1.0 of their language. Really ambitious vision! πŸŽ‰

I'll have to try it out some more (maybe for Advent of Code? πŸ‘€). Curious to see where it gets adopted in production.

www.unison-lang.org/unison-1-0/

4 months ago 1 0 0 0

sui generis (adj.) - unique; in a class by itself

5 months ago 0 0 0 0
photo of NYC subway times display, where the orange M line is shaped like a pumpkin instead of a circle, and faded ghosts overlay

photo of NYC subway times display, where the orange M line is shaped like a pumpkin instead of a circle, and faded ghosts overlay

nice Halloween touches NYC!

5 months ago 2 0 0 0
Advertisement

To that end, using AI seems like a great solution!

As a human there might not be a finite list of criteria for what makes a puzzle interesting. But if I give the model enough positive and negative examples, there's a chance (but not guarantee) it might pick up on some patterns.

5 months ago 2 0 0 0

This is a good starting point, but depending on the puzzle type, your artifacts might still feel very randomly generated, so you might still need a human curation process.

5 months ago 0 0 1 0

Many puzzles are like constraint-satisfaction problems (CSPs). One strategy I tried was to generate puzzles at random and rank them to:

- minimize the # of constraints, since elegant puzzles have fewer moving parts
- maximize the search tree complexity, so mentally finding the solution feels hard

5 months ago 0 0 1 0

In college I used to hack around with writing code to generate grid-based pencil and paper puzzles like Sudoku, Numberlink, etc. So I love this stuff.

Teaching a computer to solve puzzles is straightforward once you have the algorithm down. But how do you make it generate puzzles that feel "human"?

5 months ago 0 0 1 0
Preview
DeepMind's AI Learns To Create Original Chess Puzzles, Praised By GMs In a new study, researchers from Google DeepMind have created an AI system that is capable of generating creative chess puzzles, some of which impressed experts in chess compositions.

www.chess.com/news/view/ai...

Really cool results! In most game-like domains, the focus of AI is on maximizing win rate or score etc., but measuring the "novelty" of objects like puzzles turns out to be quite hard because it requires human taste, in a sense.

5 months ago 1 0 1 0