frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Claude Opus 5.5

https://www.anthropic.com/claude-opus-5-5
450•km144•1h ago•475 comments

GPT-6 Sol and Luna

https://openai.com/index/introducing-gpt-6-sol-and-luna/
129•OfficialTurkey•14m ago•40 comments

OpenAI GPT–6 Astra breaks Enigma message that has resisted solution since 2005

https://www.cryptocellar.org/bgac/the-mvueh-break.html
378•sohkamyung•4h ago•294 comments

WordPress: Unauthenticated path traversal leading to conditional RCE

https://github.com/WordPress/wordpress-develop/security/advisories/GHSA-7hp8-65ch-5whp
54•vntok•1h ago•21 comments

Claude Opus 5.5 Intelligence, Performance and Price Analysis (Max)

https://artificialanalysis.ai/models/claude-opus-5-5
68•theanonymousone•1h ago•29 comments

OpenAI is well positioned to fast-follow Jev

https://arcturus-labs.com/blog/2026/09/21/will-openai-eat-jevs-lunch/
169•JohnBerryman•3h ago•122 comments

16-bit Intel 8088 chip (c. 1985)

https://allpoetry.com/16-bit-Intel-8088-chip
60•rbanffy•2h ago•7 comments

There's a high chance of devices being sold with GrapheneOS preinstalled in 2027

https://grapheneos.social/@GrapheneOS/117299954135808210
80•Cider9986•1h ago•34 comments

Launch HN: Coverage Cat (YC S22) – Umbrella insurance via your personal agent

https://www.coveragecat.com/
10•botacode•48m ago•10 comments

Writing Rust code that's fast by asking agents to make the code faster

https://minimaxir.com/2026/09/agentic-iteration/
56•mooreds•2h ago•25 comments

Apple has added persistent 'ads' to iOS, and it's driving users crazy

https://www.techradar.com/phones/iphone/i-wish-apple-would-just-stop-that-crap-apple-has-added-pe...
397•MC995•3h ago•300 comments

Show HN: Drop – A rootless Linux sandbox with gVisor support

https://droprun.sh/
116•mixedbit•4h ago•38 comments

Show HN: AI·rete·RAG – a Rete rule engine decides, RAG explains why

https://ai-rete-rag.com/
19•ZaharaHussain•2h ago•0 comments

Solitaire Alone Together

https://solitairealonetogether.com/
77•eieio•19h ago•21 comments

Can gzip be a language model?

https://nathan.rs/posts/gzip-lm/
340•networked•12h ago•129 comments

AMD's random number generator can't generate a 0?

https://board.flatassembler.net/topic.php?t=24261
211•BruceEel•9h ago•154 comments

Training a model to identify AI-generated web content from structure alone

https://arxiv.org/abs/2609.15369
7•jochenmadler•5h ago•0 comments

Truman World

https://trumanworld.live
28•trollied•2d ago•26 comments

One Minute Park

https://oneminutepark.tv/
16•namuorg•1d ago•3 comments

Show HN: InstinctFlash – Run 5B world-action models in real time on Jetson Thor

https://github.com/General-Instinct/InstinctFlash
9•guanming0717•2h ago•0 comments

Spymarks, not Watermarks

https://brand.io/article/spymarks/
623•possibilistic•19h ago•157 comments

The Economics of Open-Weight Inference

https://data.ornn.com/publications/the-economics-of-open-weight-inference
24•marinesebastian•4h ago•12 comments

MUNI Heritage Weekend in San Francisco

https://daniel.lawrence.lu/blog/2026-09-20-muni-heritage-weekend/
109•plun9•1d ago•24 comments

Relativistic raytracing

https://publish.obsidian.md/h1m3/Articles/Relativistic+raytracing
19•vismit2000•1d ago•4 comments

I asked Meta’s Muse for its filesystem and it sent me 6.8GB

https://mouse.dev/blog/muse-runtime-export/
209•Aeroi•2h ago•115 comments

Transformers Explained Visually

https://poloclub.github.io/transformer-explainer/
577•aray07•22h ago•85 comments

Side-stepping the Secretary Problem, unwittingly

https://www.evalapply.org/posts/side-step-secretary-problem-hiring/index.html
6•pvdebbe•15h ago•1 comments

Meta’s Muse has a serious 0-day

https://arstechnica.com/security/2026/09/muse-metas-extraordinarily-privileged-ai-assistant-has-a...
84•pavel_lishin•3h ago•34 comments

Vacate a drone restriction that criminalized recording immigration agents

https://www.eff.org/deeplinks/2026/09/dc-circuit-must-vacate-drone-flight-restriction-criminalize...
66•hn_acker•3h ago•13 comments

I said no and Apple said yes

https://dbushell.com/2026/09/22/apple-intelligence/
696•thatslast•10h ago•561 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.