frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The last six months in LLMs in five minutes

https://simonwillison.net/2026/May/19/5-minute-llms/
341•yakkomajuri•6h ago•213 comments

Turn your Android phone into a ham radio transceiver

https://www.kv4p.com/
71•krupan•2d ago•20 comments

Click (2016)

https://clickclickclick.click/
290•andrewzeno•9h ago•70 comments

Peter Neumann has died

https://www.tuhs.org/pipermail/tuhs/2026-May/033748.html
67•pabs3•4h ago•3 comments

Anthropic acquires Stainless

https://www.anthropic.com/news/anthropic-acquires-stainless
437•tomeraberbach•15h ago•293 comments

Pope Leo XIV’s first encyclical Magnifica humanitas to be published May 25

https://www.vaticannews.va/en/pope/news/2026-05/pope-leo-xiv-first-encyclical-magnifica-humanitas...
209•cucho•8h ago•116 comments

Polypad

https://polypad.amplify.com/
18•ivank•2d ago•1 comments

PyTorch Landscape

https://pytorch.landscape2.io
28•salamo•3h ago•4 comments

Cursor Introduces Composer 2.5

https://cursor.com/blog/composer-2-5
129•asar•14h ago•77 comments

Regex Chess: A 2-ply minimax chess engine in 84,688 regular expressions

https://nicholas.carlini.com/writing/2025/regex-chess.html
108•surprisetalk•4d ago•22 comments

1024000^2 Blocks, 2B2T Minecraft Server World Download Project, and Discoveries

https://github.com/2b2tplace/1m_release
139•exploraz•18h ago•82 comments

My domain got abused on GitHub Pages

https://meertens.dev/blog/github-enables-domain-abuse/
3•rmeertens•45m ago•0 comments

Mini Shai-Hulud Strikes Again: 314 npm Packages Compromised

https://safedep.io/mini-shai-hulud-strikes-again-314-npm-packages-compromised/
35•theanonymousone•3h ago•4 comments

Anyone on the Internet Can Ring Your Doorbell

https://www.abgeo.dev/blog/anyone-can-ring-your-doorbell
93•jrdres•2d ago•54 comments

The lasting influence of Netscape Time

https://thehistoryoftheweb.com/the-lasting-influence-of-netscape-time/
10•zdw•2d ago•1 comments

Show HN: Hsrs – Type-Safe Haskell Bindings Generator for Rust

https://github.com/harmont-dev/hsrs
22•suis_siva•4h ago•1 comments

Make ZIP files smaller with ZIP Shrinker

https://evanhahn.com/make-zip-files-smaller-with-zip-shrinker/
17•zdw•2d ago•2 comments

Hyperpolyglot Lisp: Common Lisp, Racket, Clojure, Emacs Lisp

https://hyperpolyglot.org/lisp
156•veqq•12h ago•35 comments

We let AIs run radio stations

https://andonlabs.com/blog/andon-fm
244•lukaspetersson•14h ago•198 comments

Show HN: Number Gacha, a gacha game distilled to its essence

https://isabisabel.com/gacha/
143•babel16•5d ago•55 comments

When can the C++ compiler devirtualize a call?

https://quuxplusone.github.io/blog/2021/02/15/devirtualization/
54•lionkor•1d ago•18 comments

Peter Salus has died

https://www.tuhs.org/pipermail/tuhs/2026-May/033750.html
120•speckx•5h ago•10 comments

Codex-maxxing

https://jxnl.co/writing/2026/05/10/codex-maxxing/
66•dnw•3h ago•46 comments

AI eats the world (Spring 26) [pdf]

https://static1.squarespace.com/static/50363cf324ac8e905e7df861/t/6a0af5d0484fbf5fe9a7743e/177910...
212•topherjaynes•19h ago•114 comments

Elon Musk has lost his lawsuit against Sam Altman and OpenAI

https://techcrunch.com/2026/05/18/elon-musk-has-lost-his-lawsuit-against-sam-altman-and-openai/
929•nycdatasci•14h ago•456 comments

Two computers, one monitor, zero fiddling (2025)

https://alexplescan.com/posts/2025/08/16/kvm/
205•ankitg12•3d ago•124 comments

LLMCap – A proxy that hard-stops LLM API calls when you hit a dollar cap

https://www.llmcap.io/
9•cfaruk•4h ago•5 comments

Alignment pretraining: AI discourse creates self-fulfilling (mis)alignment

https://arxiv.org/abs/2601.10160
52•anigbrowl•10h ago•21 comments

Agora-1: The Multi-Agent World Model

https://odyssey.ml/introducing-agora-1
105•olivercameron•13h ago•21 comments

Why is it called Kent House?

https://diamondgeezer.blogspot.com/2026/05/kent-house.html
23•susam•2d ago•5 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•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.