frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Pre-Release of Polars 2.0

https://pola.rs/posts/announcing-polars-2/
207•komape•4h ago•54 comments

The Browser's Main Thread Is Expensive

https://kciter.so/posts/the-expensive-main-thread/en/
125•kciter•1d ago•42 comments

Muse Spark 1.3

https://developer.meta.com/ai/models/muse-spark/
608•bvaldivielso•16h ago•400 comments

Gemini 3.8 Flash and 3.8 Flash Cyber

https://blog.google/innovation-and-ai/models-and-research/gemini-models/3-8-flash-and-3-8-flash-c...
1052•bratao•20h ago•587 comments

Fish Bad, Sugar Good and Other Medieval Ideas About Food

https://lithub.com/fish-bad-sugar-good-and-other-medieval-ideas-about-food/
23•mooreds•2d ago•7 comments

What I Learned from My Mom (1941-2026)

https://experimentalliving.substack.com/p/what-i-learned-from-my-mom-1941-2026
37•NaOH•4d ago•3 comments

Google avoids a breakup of its ad tech business

https://www.nytimes.com/2026/09/02/technology/google-ad-tech-remedies.html
410•donohoe•20h ago•286 comments

Three sites made 215,128 “best software” pages for AI. Perplexity cites them

https://trellner.com/reports/manufactured-sources-behind-ai-recommendations/
443•jakobgreenfeld•21h ago•214 comments

Three schoolgirls in Kinsale pulled up a pea plant covered in warts (2016)

https://scienceblog.com/b-three-schoolgirls-in-kinsale-pulled-up-a-pea-plant-covered-in-warts-and...
77•DamonHD•4h ago•27 comments

Holden's Lightning Flight

https://en.wikipedia.org/wiki/Holden%27s_Lightning_flight
167•ColinWright•3d ago•36 comments

Invisible Companies

https://colossus.com/article/invisible-companies/
3•ltononro•1d ago•0 comments

The Computer Museum of America reclamation project

https://computer-museum.org/wp/
53•rbanffy•2d ago•22 comments

Can I opt out of my input or output data being used for training?

https://help.mistral.ai/en/articles/455207-can-i-opt-out-of-my-input-or-output-data-being-used-fo...
459•teekert•23h ago•208 comments

Fable 5.1 World Modeling

https://github.com/PhiloLabs/fable51-worlds
277•surreal_•15h ago•80 comments

Reverse Engineering Unknown File Formats with ImHex

https://werwolv.net/posts/file_format_reverse_engineering/
214•carlos-menezes•2d ago•38 comments

Higher Multipoles of the Cow

https://arxiv.org/abs/2504.00506
87•MrOrelliOReilly•2d ago•24 comments

Launch HN: RonanRX (YC S26) – Personalized Peptides and GLP-1s

68•lloydarmbrust•13h ago•71 comments

Biggest dark matter detector spots a single weird particle

https://www.science.org/content/article/world-s-biggest-dark-matter-detector-spots-single-weird-p...
309•randycupertino•22h ago•108 comments

Aging brains blend memories together instead of just forgetting them

https://studyfinds.com/aging-brains-blend-memories-together-instead-of-forgetting-them-study-finds/
299•mdp2021•22h ago•119 comments

A dark horse enters China's AI race: StartLux

https://chinaonchina.com/article/chen-dawei-returns-enters-the-large-model-sector
6•try-working•30m ago•0 comments

Wendell Berry has died

https://www.nytimes.com/2026/08/31/us/wendell-berry-dead.html
198•Curiositry•2d ago•99 comments

Qantas Airbus A380 engine failure in 2010 (2023)

https://admiralcloudberg.medium.com/a-matter-of-millimeters-the-story-of-qantas-flight-32-bdaa62d...
150•gumby•17h ago•89 comments

Engineering of the fastest WebAssembly interpreters

https://wasmi-labs.github.io/blog/posts/wasmi-v2.0/
107•herobird•1d ago•8 comments

Exit the Cave

https://turtlespace.blog/p/exit-the-cave
276•akkartik•21h ago•95 comments

A Selection of Los Alamos Rolodex Business Cards

https://clui.org/collections/los-alamos-business-cards/selection-cards
181•1970-01-01•2d ago•49 comments

Async Rust vs RTOS showdown (2022)

https://tweedegolf.nl/en/blog/65/async-rust-vs-rtos-showdown/
100•kooi•17h ago•50 comments

We could save petabytes of cache storage with Zstandard and Pingora

https://blog.cloudflare.com/cache-transcoding/
119•torutofu•1d ago•54 comments

Altair Basic Interpreter Source Code (1975) [pdf]

https://images.gatesnotes.com/12514eb8-7b51-008e-41a9-512542cf683b/34d561c8-cf5c-4e69-af47-3782ea...
65•Eridanus2•15h ago•35 comments

Poisson Disk Sampling

https://stripeacross.com/posts/poisson-disk-sampling/
175•vismit2000•21h ago•21 comments

WebLLM: high-performance in-browser LLM inference engine

https://github.com/mlc-ai/web-llm
130•saikatsg•21h ago•21 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.