frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Motorola announces a partnership with GrapheneOS Foundation

https://motorolanews.com/motorola-three-new-b2b-solutions-at-mwc-2026/
1638•km•12h ago•579 comments

First-ever in-utero stem cell therapy for fetal spina bifida repair is safe

https://health.ucdavis.edu/news/headlines/first-ever-in-utero-stem-cell-therapy-for-fetal-spina-b...
133•gmays•4h ago•10 comments

New iPad Air, powered by M4

https://www.apple.com/newsroom/2026/03/apple-introduces-the-new-ipad-air-powered-by-m4/
173•Garbage•4h ago•262 comments

Show HN: Govbase – Follow a bill from source text to news bias to social posts

https://govbase.com
46•foxfoxx•1h ago•29 comments

Ask HN: Who is hiring? (March 2026)

82•whoishiring•2h ago•112 comments

/e/OS is a complete, fully “deGoogled” mobile ecosystem

https://e.foundation/e-os/
562•doener•9h ago•313 comments

Felix "fx" Lindner has died

https://blog.recurity-labs.com/2026-03-02/Farewell_Felix
78•is_taken•3h ago•13 comments

Packaging a Gleam app into a single executable

https://www.dhzdhd.dev/blog/gleam-executable
34•todsacerdoti•2h ago•0 comments

Bars close and hundreds lose jobs as US firm buys Brewdog in £33M deal

https://www.bbc.com/news/articles/c05v0p1d0peo
11•tartoran•26m ago•1 comments

Reflex (YC W23) Is Hiring Software Engineers – Python

https://www.ycombinator.com/companies/reflex/jobs
1•apetuskey•1h ago

Launch HN: OctaPulse (YC W26) – Robotics and computer vision for fish farming

23•rohxnsxngh•2h ago•10 comments

Parallel coding agents with tmux and Markdown specs

https://schipper.ai/posts/parallel-coding-agents/
54•schipperai•4h ago•25 comments

Use the Mikado Method to do safe changes in a complex codebase

https://understandlegacycode.com/blog/a-process-to-do-safe-changes-in-a-complex-codebase/
99•foenix•4d ago•35 comments

How to talk to anyone and why you should

https://www.theguardian.com/lifeandstyle/2026/feb/24/stranger-secret-how-to-talk-to-anyone-why-yo...
412•Looky1173•11h ago•449 comments

Zclaw – The 888 KiB Assistant

https://zclaw.dev
33•kristianpaul•2d ago•25 comments

Inside the M4 Apple Neural Engine, Part 1: Reverse Engineering

https://maderix.substack.com/p/inside-the-m4-apple-neural-engine
159•zdw•1d ago•51 comments

Thirty years on, Pokémon is still a monster hit

https://www.economist.com/culture/2026/02/26/thirty-years-on-pokemon-is-still-a-monster-hit
46•andsoitis•3d ago•41 comments

Anthropic Cowork feature creates 10GB VM bundle on macOS without warning

https://github.com/anthropics/claude-code/issues/22543
302•mystcb•4h ago•155 comments

Microsoft bans the word "Microslop" on its Discord, then locks the server

https://www.windowslatest.com/2026/03/02/microsoft-gets-tired-of-microslop-bans-the-word-on-its-d...
803•robtherobber•8h ago•325 comments

Notes on Lagrange Interpolating Polynomials

https://eli.thegreenplace.net/2026/notes-on-lagrange-interpolating-polynomials/
21•ibobev•2h ago•7 comments

Making Video Games in 2025 (without an engine)

https://www.noelberry.ca/posts/making_games_in_2025/
342•alvivar•3d ago•156 comments

An Interesting Find: STM32 RDP1 Decryptor

https://carlossless.io/stm32-rdp1-decryptor/
63•carlossless•4h ago•17 comments

AMD Am386 released March 2, 1991

https://dfarq.homeip.net/amd-am386-released-march-2-1991/
74•jnord•5h ago•18 comments

Writing on Mount Hymettos in Duplo

https://viewsproject.wordpress.com/2026/02/20/writing-on-mount-hymettos-in-duplo/
4•surprisetalk•3d ago•0 comments

Apple AI servers unused in warehouses due to low Apple Intelligence usage

https://9to5mac.com/2026/03/02/some-apple-ai-servers-are-reportedly-sitting-unused-on-warehouse-s...
50•_____k•1h ago•20 comments

Why Go Can't Try

https://niketpatel.com/essays/why-go-cant-try
48•nexneo•4h ago•38 comments

Mondrian Entered the Public Domain. The Estate Disagrees

https://copyrightlately.com/mondrian-public-domain-controversy/
168•Tomte•3d ago•93 comments

A plastic made from milk that vanishes in 13 weeks

https://www.sciencedaily.com/releases/2026/02/260227071922.htm
66•JeanKage•4h ago•59 comments

Show HN: Omni – Open-source workplace search and chat, built on Postgres

https://github.com/getomnico/omni
131•prvnsmpth•9h ago•38 comments

Language Model Contains Personality Subnetworks

https://arxiv.org/abs/2602.07164
14•PaulHoule•3h ago•1 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•10mo 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•10mo 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•10mo 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.