frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Iroh 1.0

https://www.iroh.computer/blog/v1
571•chadfowler•3h ago•194 comments

TinyWind: A pixel pirate sailing game with real wind physics (380k+ kms sailed)

https://tinywind.io
247•tinywind•2h ago•50 comments

Ask HN: Has anyone replaced Claude/GPT with a local model for daily coding?

198•cloudking•4h ago•130 comments

Typst 0.15.0

https://typst.app/docs/changelog/0.15.0/
58•schu•1h ago•7 comments

My Homelab AI Dev Platform

https://rsgm.dev/post/ai-dev-platform/
117•rsgm•3h ago•32 comments

How TimescaleDB compresses time-series data

https://roszigit.com/en/blog/timescaledb-compression-hypercore
42•lkanwoqwp•1h ago•4 comments

Game Engine White Papers Commander Keen

https://forgottenbytes.net/commander_keen.html
29•mfiguiere•1h ago•3 comments

Making glass-to-metal seals for home­made vacuum tubes

https://maurycyz.com/projects/glass/1/
81•zdw•1d ago•25 comments

Launch HN: Drafted (YC P26) – Models for residential architecture

25•PrimalNick•2h ago•22 comments

Show HN: Fata – Spaced repetition to fight skill rot from AI coding

https://fata.dev
21•djoume•4d ago•9 comments

Hetzner Price Adjustment

https://docs.hetzner.com/general/infrastructure-and-availability/price-adjustment/#cloud-servers
142•tuhtah•5h ago•264 comments

Fox to buy Roku

https://www.wsj.com/business/deals/fox-roku-deal-f6e564f9
177•thm•6h ago•242 comments

Boot Naked Linux

https://nick.zoic.org/art/boot-naked-linux/
37•abnercoimbre•2h ago•13 comments

Copper transport drug restores memory and clears toxic Alzheimer's proteins

https://www.monash.edu/news/articles/copper-drug-restores-memory-and-clears-toxic-alzheimers-prot...
156•bookofjoe•4h ago•58 comments

The Alaska Server

https://serialport.org/blog/the-alaska-server/
4•speckx•18m ago•0 comments

CrankGPT

https://crankgpt.com
468•rishikeshs•5h ago•191 comments

Your ePub Is fine

https://andreklein.net/your-epub-is-fine-kobo-disagrees-blame-adobe/
842•sohkamyung•20h ago•286 comments

Apple Foundation Models

https://platform.claude.com/docs/en/cli-sdks-libraries/libraries/apple-foundation-models
422•MehrdadKhnzd•14h ago•196 comments

Show HN: machine0 – Persistent NixOS VMs You Control from the CLI

https://machine0.io
41•bwm•2h ago•11 comments

Can Europe train a frontier AI model on the compute it owns?

https://github.com/sammysltd/euromesh
63•smashini•5h ago•73 comments

Show HN: Exploiting Slack's video embeds to achieve E2EE communication

https://v1c.rocks/log/exploiting-slack-video/
20•victorio•3h ago•2 comments

Memory safety CVEs differ between Rust and C/C++

https://kobzol.github.io/rust/2026/06/15/how-memory-safety-cves-differ-between-rust-and-c-cpp.html
57•nicoburns•2h ago•45 comments

Openrouter Fusion API

https://openrouter.ai/openrouter/fusion
176•tdchaitanya•11h ago•68 comments

Teenagers Stayed Overnight at Their School and Found Hidden Ancient Roman Ruins

https://www.smithsonianmag.com/smart-news/these-italian-teenagers-stayed-overnight-at-their-schoo...
143•thunderbong•4d ago•70 comments

Even more batteries included with Emacs

https://karthinks.com/software/even-more-batteries-included-with-emacs/
326•signa11•16h ago•117 comments

Improvement in advanced Alzheimer’s disease following high-dose psilocybin

https://www.frontiersin.org/journals/neuroscience/articles/10.3389/fnins.2026.1813281/full
157•cl3misch•12h ago•117 comments

Salesforce to Acquire Fin (formerly Intercom) for $3.6B

https://www.salesforce.com/news/press-releases/2026/06/15/salesforce-signs-definitive-agreement-t...
237•colesantiago•6h ago•187 comments

Building a plugin system without runtime, storage, or shared JavaScript context

https://tolgee.io/blog/building-a-plugin-system-for-tolgee-without-a-runtime-storage-or-shared-js...
6•jancizmar•3d ago•1 comments

Ported my C game to WASM, here's every bug that I hit

http://ernesernesto.github.io/writes/portingmatchmorphosistowasm/
85•birdculture•3d ago•68 comments

Dalus (YC W25) Is Hiring a Senior Software Engineer in Germany

https://www.ycombinator.com/companies/dalus/jobs/5IDmKJt-senior-software-frontend-engineer-german...
1•sebastianvoelkl•11h ago
Open in hackernews

Fast(er) regular expression engines in Ruby

https://serpapi.com/blog/faster-regular-expression-engines-in-ruby/
60•davidsojevic•1y ago

Comments

yxhuvud•1y ago
Eww, pretending to support utf8 matchers while not supporting them at all was not pretty to see.
gitroom•1y ago
Honestly that part bugs me, fake support is worse than no support imo
kayodelycaon•1y ago
> Another nuance was found in ruby, which cannot scan the haystack with invalid UTF-8 byte sequences.

This is extremely basic ruby: UTF-8 encoded strings must be valid UTF-8. This is not unique to ruby. If I recall correctly, python 3 does the same thing.

    2.7.1 :001 > haystack = "\xfc\xa1\xa1\xa1\xa1\xa1abc"
    2.7.1 :003 > haystack.force_encoding "ASCII-8BIT"
    => "\xFC\xA1\xA1\xA1\xA1\xA1abc" 
    2.7.1 :004 > haystack.scan(/.+/)
    => ["\xFC\xA1\xA1\xA1\xA1\xA1abc"]
This person is a senior engineer on their Team page. All they had to do was google "ArgumentError: invalid byte sequence in UTF-8". Or ask a coworker... the company has Ruby on Rails applications. headdesk
burntsushi•1y ago
The nuance is specifically relevant here because neither of the other two regex engines benchmarked have this requirement. It's doubly relevant because that means running a regex search doesn't require a UTF-8 validation step, and is therefore likely beneficial from a perf perspective, dependening on the workload.
kayodelycaon•1y ago
That’s a good point. I hadn’t considered it because I’ve hit the validation error long before getting to search. It is possible to avoid string operations with careful coding prior to the search.

Edit: After a little testing, the strings can be read from and written to files without triggering validation. Presumably this applies to sockets as well.

DmitryOlshansky•1y ago
I wonder how std.regex of dlang would fare in such test. Sadly due to a tiny bit of D’s GC use it’s hard to provide as a library for other languages. If there is an interest I might take it through the tests.