frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Statement from Dario Amodei on Our Discussions with the Department of War

https://www.anthropic.com/news/statement-department-of-war
220•qwertox•47m ago•110 comments

Smartphone Mkt to Decline 13% in '26, Largest Drop Ever Due to Memory Shortage

https://www.idc.com/resource-center/press-releases/wwsmartphoneforecast4q25/
94•littlexsparkee•1h ago•89 comments

Layoffs at Block

https://twitter.com/jack/status/2027129697092731343
244•mlex•2h ago•219 comments

AirSnitch: Demystifying and breaking client isolation in Wi-Fi networks [pdf]

https://www.ndss-symposium.org/wp-content/uploads/2026-f1282-paper.pdf
304•DamnInteresting•7h ago•150 comments

What Claude Code Chooses

https://amplifying.ai/research/claude-code-picks
180•tin7in•5h ago•88 comments

Will vibe coding end like the maker movement?

https://read.technically.dev/p/vibe-coding-and-the-maker-movement
264•itunpredictable•7h ago•262 comments

What does " 2>&1 " mean?

https://stackoverflow.com/questions/818255/what-does-21-mean
54•alexmolas•3h ago•33 comments

Launch HN: Cardboard (YC W26) – Agentic video editor

https://www.usecardboard.com/
83•sxmawl•4h ago•42 comments

Hydroph0bia – a fixed SecureBoot bypass for UEFI firmware based on Insyde H2O

https://coderush.me/hydroph0bia-part3/
13•transpute•1h ago•0 comments

Understanding the Go Runtime: The Memory Allocator

https://internals-for-interns.com/posts/go-memory-allocator/
11•valyala•3d ago•1 comments

OsmAnd's Faster Offline Navigation (2025)

https://osmand.net/blog/fast-routing/
97•todsacerdoti•4h ago•24 comments

Lidar waveforms are worth 40x128x33 words

https://openaccess.thecvf.com/content/ICCV2025/html/Scheuble_Lidar_Waveforms_are_Worth_40x128x33_...
25•teleforce•3d ago•9 comments

Museum of Plugs and Sockets

https://plugsocketmuseum.nl/index.html
55•ohjeez•3d ago•17 comments

Palm OS User Interface Guidelines (2003) [pdf]

https://cs.uml.edu/~fredm/courses/91.308-spr05/files/palmdocs/uiguidelines.pdf
131•spiffytech•6h ago•61 comments

Show HN: Deff – Side-by-side Git diff review in your terminal

https://github.com/flamestro/deff
68•flamestro•5h ago•43 comments

Show HN: Hacker Smacker – spot great (and terrible) HN commenters at a glance

https://hackersmacker.org
78•conesus•2d ago•70 comments

I baked a pie every day for a year and it changed my life

https://www.theguardian.com/lifeandstyle/2026/feb/22/a-new-start-after-60-i-baked-a-pie-every-day...
187•NaOH•3d ago•128 comments

Show HN: Terminal Phone – E2EE Walkie Talkie from the Command Line

https://gitlab.com/here_forawhile/terminalphone
279•smalltorch•12h ago•70 comments

Bild AI (YC W25) Is Hiring Interns to Make Housing Affordable

https://www.workatastartup.com/jobs/80596
1•rooppal•6h ago

BuildKit: Docker's Hidden Gem That Can Build Almost Anything

https://tuananh.net/2026/02/25/buildkit-docker-hidden-gem/
134•jasonpeacock•9h ago•41 comments

Nano Banana 2: Google's latest AI image generation model

https://blog.google/innovation-and-ai/technology/ai/nano-banana-2/
453•davidbarker•7h ago•439 comments

The Wolfram S Combinator Challenge

https://www.combinatorprize.org/
59•paraschopra•3d ago•20 comments

Show HN: Linex – A daily challenge: placing pieces on a board that fights back

https://www.playlinex.com/
38•Humanista75•1d ago•19 comments

This time is different

https://shkspr.mobi/blog/2026/02/this-time-is-different/
96•speckx•10h ago•146 comments

Banned in California

https://www.bannedincalifornia.org/
527•pie_flavor•1d ago•632 comments

Steering interpretable language models with concept algebra

https://www.guidelabs.ai/post/steerling-steering-8b/
38•luulinh90s•23h ago•3 comments

The Physics and Economics of Moving 44 Tonnes at 56mph

https://www.mikeayles.com/blog/heavy-haulage-basics/
86•mikeayles•3d ago•81 comments

Google Street View in 2026

https://tech.marksblogg.com/google-street-view-coverage.html
121•marklit•5h ago•86 comments

Open Source Endowment – new funding source for open source maintainers

https://endowment.dev/
197•kvinogradov•7h ago•124 comments

Show HN: Rev-dep – 20x faster knip.dev alternative build in Go

https://github.com/jayu/rev-dep
32•jayu_dev•4h ago•7 comments
Open in hackernews

Fast(er) regular expression engines in Ruby

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

Comments

yxhuvud•10mo ago
Eww, pretending to support utf8 matchers while not supporting them at all was not pretty to see.
gitroom•10mo ago
Honestly that part bugs me, fake support is worse than no support imo
kayodelycaon•10mo 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•9mo 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•9mo 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•9mo 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.