Hacker News

Subscribe to Hacker News feed
Hacker News RSS
Updated: 1 min 47 sec ago

Ask HN: How do you manage content for React-based websites?

Sun, 07/12/2026 - 1:47am

I've been exploring modern publishing workflows for React applications.

Curious how others solve:

- content management - editors - frontend separation - deployment

What is your current stack?

Comments URL: https://news.ycombinator.com/item?id=48878654

Points: 1

# Comments: 0

Categories: Hacker News

BSD Make Extravaganza

Sun, 07/12/2026 - 1:35am
Categories: Hacker News

Taste

Sun, 07/12/2026 - 1:18am
Categories: Hacker News

Ask HN: Do your tests clear "If the tests pass, you cannot break the code" bar?

Sun, 07/12/2026 - 1:08am

Why or why not?

This is how I have found AI to be very powerful. If my tests pass, I know my code won't break. I spend more time on tests than any other part of the code-base. I am curious who else is building in this manner? I use the statement in the title because I feel that is the bar you have to meet to get the AI to work well, but once you meet that bar lately it has been working pretty flawlessly for me.

Comments URL: https://news.ycombinator.com/item?id=48878448

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: AsyncFutures – A Ruby gem for asynchronous/concurrent code execution

Sun, 07/12/2026 - 1:06am

This gem allows you to execute code more-or-less identically across Ractors, Threads, and Fibers. This makes it much easier to test out your code's performance behavior by using an identical API across all concurrency primitives. It is built around a flexible core Future class.

This was actually the impetus for creating this Gem: the core Ruby concurrency primitives all have different APIs and subtly different behavior even for the APIs that initially look similar. For example, `join` on Ractor and Thread instances do NOT behave the same. This Gem adds Executors that expose near identical behavior across all of them and return a Future object with identical API and behavior across all of them.

I've been working on this Gem for a few months in my spare time. I just published the Gem and made the git repo public a few minutes ago. Please feel free to review the code, test out the gem, and provide your feedback.

As a footnote: this was not vibe coded. I wanted to learn through experience how to correctly write concurrent code, so using AI would have defeated the purpose. Also, I don't particularly enjoy writing/generating code via AI, so that would have made vibe coding this doubly pointless.

The Gem has 100% line and branch coverage on CRuby 4.0 and is 0BSD licensed.

Thank you.

Comments URL: https://news.ycombinator.com/item?id=48878436

Points: 1

# Comments: 0

Categories: Hacker News

Pages