frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Austin’s surge of new housing construction drove down rents

https://www.pew.org/en/research-and-analysis/articles/2026/03/18/austins-surge-of-new-housing-con...
232•matthest•1h ago•186 comments

Autoresearch for SAT Solvers

https://github.com/iliazintchenko/agent-sat
25•chaisan•1h ago•0 comments

Warranty Void If Regenerated

https://nearzero.software/p/warranty-void-if-regenerated
196•Stwerner•5h ago•106 comments

Nvidia greenboost: transparently extend GPU VRAM using system RAM/NVMe

https://gitlab.com/IsolatedOctopi/nvidia_greenboost
147•mmastrac•3d ago•28 comments

Show HN: Duplicate 3 layers in a 24B LLM, logical deduction .22→.76. No training

https://github.com/alainnothere/llm-circuit-finder
65•xlayn•4h ago•18 comments

OpenRocket

https://openrocket.info/
402•zeristor•3d ago•84 comments

Rob Pike’s Rules of Programming (1989)

https://www.cs.unc.edu/~stotts/COMP590-059-f24/robsrules.html
842•vismit2000•16h ago•412 comments

Ask HN: How do you deal with people who trust LLMs?

24•basilikum•26m ago•18 comments

Wander – A tiny, decentralised tool to explore the small web

https://susam.net/wander/
201•susam•18h ago•53 comments

The math that explains why bell curves are everywhere

https://www.quantamagazine.org/the-math-that-explains-why-bell-curves-are-everywhere-20260316/
56•ibobev•2d ago•20 comments

Nvidia NemoClaw

https://github.com/NVIDIA/NemoClaw
238•hmokiguess•10h ago•192 comments

Show HN: Will my flight have Starlink?

176•bblcla•8h ago•223 comments

What’s on HTTP?

https://whatsonhttp.com/
28•elixx•4h ago•8 comments

Book: The Emerging Science of Machine Learning Benchmarks

https://mlbenchmarks.org/00-preface.html
87•jxmorris12•4d ago•4 comments

Nightingale – open-source karaoke app that works with any song on your computer

https://nightingale.cafe/
508•rzzzzru•17h ago•147 comments

An x86-64 back end for raven-uxn

https://www.mattkeeter.com/blog/2026-03-15-uxn/
10•dcre•3d ago•0 comments

Show HN: Playing LongTurn FreeCiv with Friends

https://github.com/ndroo/freeciv.andrewmcgrath.info
51•verelo•7h ago•27 comments

CVE-2026-3888: Important Snap Flaw Enables Local Privilege Escalation to Root

https://blog.qualys.com/vulnerabilities-threat-research/2026/03/17/cve-2026-3888-important-snap-f...
96•askl•10h ago•61 comments

2025 Turing award given for quantum information science

https://awards.acm.org/about/2025-turing
96•srvmshr•15h ago•26 comments

Show HN: I built 48 lightweight SVG backgrounds you can copy/paste

https://www.svgbackgrounds.com/set/free-svg-backgrounds-and-patterns/
167•visiwig•10h ago•29 comments

RX – a new random-access JSON alternative

https://github.com/creationix/rx
8•creationix•2h ago•1 comments

Show HN: Tmux-IDE, OSS agent-first terminal IDE

https://tmux.thijsverreck.com
63•thijsverreck•8h ago•36 comments

On a Boat

https://moq.dev/blog/on-a-boat/
125•mmcclure•5d ago•23 comments

OpenAI Has New Focus (on the IPO)

https://om.co/2026/03/17/openai-has-new-focus-on-the-ipo/
150•aamederen•15h ago•147 comments

Show HN: Hacker News archive (47M+ items, 11.6GB) as Parquet, updated every 5m

https://huggingface.co/datasets/open-index/hacker-news
301•tamnd•4d ago•130 comments

Machine Payments Protocol (MPP)

https://stripe.com/blog/machine-payments-protocol
145•bpierre•10h ago•72 comments

Despite Doubts, Federal Cyber Experts Approved Microsoft Cloud Service

https://www.propublica.org/article/microsoft-cloud-fedramp-cybersecurity-government
438•hn_acker•11h ago•203 comments

Explore 19th Century Scientific Correspondence

https://epsilon.ac.uk/
21•rramadass•3d ago•3 comments

Measuring progress toward AGI: A cognitive framework

https://blog.google/innovation-and-ai/models-and-research/google-deepmind/measuring-agi-cognitive...
100•surprisetalk•14h ago•171 comments

Trevor Milton is raising funds for a new jet he claims will transform flying

https://www.wsj.com/business/trevor-milton-pardon-nikola-trump-3163e19c
90•jgalt212•13h ago•152 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.