frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Southwest Headquarters Tour

https://katherinemichel.github.io/blog/travel/southwest-headquarters-tour-2026.html
69•KatiMichel•1h ago•6 comments

BYOMesh – New LoRa mesh radio offers 100x the bandwidth

https://partyon.xyz/@nullagent/116499715071759135
21•nullagent•45m ago•5 comments

Mercedes-Benz commits to bringing back physical buttons

https://www.drive.com.au/news/mercedes-benz-commits-to-bringing-back-phycial-buttons/
403•teleforce•4h ago•231 comments

A desktop made for one

https://isene.org/2026/05/Audience-of-One.html
59•xngbuilds•3h ago•28 comments

How far behind is each major Chromium browser?

https://chromium-drift.pages.dev/
87•skaul•1h ago•29 comments

Alert-driven monitoring

https://simpleobservability.com/docs/alert-driven-monitoring
67•khazit•4h ago•29 comments

What is Z-Angle Memory and why is Intel developing it?

https://www.hpcwire.com/2026/02/05/what-is-z-angle-memory-and-why-is-intel-developing-it/
52•rbanffy•2d ago•17 comments

For thirty years I programmed with Phish on, every day

https://christophermeiklejohn.com/ai/personal/phish/flow/agents/2026/05/03/rift.html
154•azhenley•2h ago•104 comments

Metal Gear Solid 2's source code has been leaked on 4chan

https://www.thegamer.com/mgs2-hd-edition-source-code-massive-leak/
77•rishabhd•2h ago•25 comments

Cordouan Lighthouse

https://en.wikipedia.org/wiki/Cordouan_Lighthouse
15•Petiver•4d ago•0 comments

Show HN: Apple's SHARP running in the browser via ONNX runtime web

https://github.com/bring-shrubbery/ml-sharp-web
133•bring-shrubbery•9h ago•35 comments

Nuclear receptor 4A1 linked to health effects of coffee: study

https://sciencex.com/news/2026-04-coffee-doesnt-key-biological-pathway.html
79•pseudolus•7h ago•58 comments

A couple million lines of Haskell: Production engineering at Mercury

https://blog.haskell.org/a-couple-million-lines-of-haskell/
369•unignorant•18h ago•180 comments

Group averages obscure how an individual's brain controls behavior: study

https://med.stanford.edu/news/all-news/2026/04/brain-scans-individual-versus-group.html
97•hhs•2d ago•25 comments

Porsche will contest Laguna Seca in historic colors of the Apple Computer livery

https://newsroom.porsche.com/en_US/2026/motorsport/porsche-will-contest-laguna-seca-in-historic-c...
82•Amorymeltzer•4h ago•29 comments

Text-to-CAD

https://github.com/earthtojake/text-to-cad
5•softservo•2d ago•0 comments

This Month in Ladybird – April 2026

https://ladybird.org/newsletter/2026-04-30/
467•richardboegli•22h ago•133 comments

Dav2d

https://code.videolan.org/videolan/dav2d
574•dabinat•1d ago•166 comments

Six years perfecting maps on watchOS

https://www.david-smith.org/blog/2026/04/29/maps-on-watchos/
413•valzevul•21h ago•106 comments

Embedded Rust or C Firmware? Lessons from an Industrial Microcontroller Use Case

https://arxiv.org/abs/2604.25679
138•mrtz•2d ago•125 comments

Do_not_track

https://donottrack.sh/
473•RubyGuy•1d ago•146 comments

Windows quality update: Progress we've made since March

https://blogs.windows.com/windows-insider/2026/05/01/windows-quality-update-progress-weve-made-si...
146•jovial_cavalier•1d ago•414 comments

Largest electric autonomous container ship begins commercial service

https://global.chinadaily.com.cn/a/202604/16/WS69e0ee90a310d6866eb43dd4.html
22•Geekette•1h ago•7 comments

Show HN: I built a RISC-V emulator that runs DOOM

https://github.com/lalitshankarch/rvcore
21•Flex247A•6h ago•0 comments

The Oscars just banned AI from winning acting and writing awards

https://gizmodo.com/the-oscars-just-banned-ai-from-winning-acting-and-writing-awards-2000753740
40•ZeidJ•1h ago•12 comments

Neanderthals ran 'fat factories' 125,000 years ago (2025)

https://www.universiteitleiden.nl/en/news/2025/07/neanderthals-ran-fat-factories-125000-years-ago
271•andsoitis•22h ago•146 comments

Utilyze measures how efficiently your GPU is doing useful work

https://github.com/systalyze/utilyze
45•nateb2022•2d ago•10 comments

Care homes and hotels in Japan shut as expansion strategy unravels

https://www.newsonjapan.com/article/149075.php
99•mikhael•17h ago•38 comments

Breaking Up with WordPress After Two Decades

https://yusufaytas.com/breaking-up-with-wordpress-after-two-decades
59•owenbuilds•4h ago•29 comments

Inventions for battery reuse and recycling increase seven-fold in last decade

https://www.epo.org/en/news-events/news/inventions-battery-reuse-and-recycling-increase-more-seve...
236•JeanKage•3d ago•34 comments
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•12mo 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.