frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GPT-5.6

https://openai.com/index/gpt-5-6/
650•logickkk1•2h ago•451 comments

ChatGPT Work

https://openai.com/index/chatgpt-for-your-most-ambitious-work/
234•Tiberium•2h ago•100 comments

GLM 5.2 is nearly as accurate as a human book keeper

https://toot-books.pages.dev/blog/glm-5-2-vat-benchmark
59•adamkurkiewicz•1h ago•28 comments

Show HN: 18 Words

https://18words.com/
661•pompomsheep•6h ago•245 comments

EU Parliament greenlights Chat Control 1.0

https://www.patrick-breyer.de/en/eu-parliament-greenlights-chat-control-1-0-breyer-our-children-l...
688•rapnie•8h ago•353 comments

Hy3

https://hy.tencent.com/research/hy3
225•andai•4h ago•62 comments

Buried Apple Feature Turns an iPhone into the Perfect Kids' Dumb Phone

https://www.wired.com/story/this-buried-apple-feature-turns-an-iphone-into-the-perfect-kids-dumb-...
98•PotatoNinja•3d ago•53 comments

A possible future for Damn Interesting

https://www.damninteresting.com/a-possible-future/
138•mzur•4h ago•12 comments

Girls Just Wanna Have Fast MPMC Queues with Bounded Waiting

https://nahla.dev/blog/waitfree_queue/
73•EvgeniyZh•2d ago•12 comments

TLS certificates for internal services done right

https://tuxnet.dev/posts/tls-for-internal-services/
92•mrl5•4h ago•62 comments

Wildcard (YC W25) Is Hiring a Founding Engineer

https://www.ycombinator.com/companies/wildcard/jobs/ZSLVaaU-founding-engineer
1•kaushikmahorker•2h ago

The glass backbone: Why the Army's logistics will break in the next war

https://mwi.westpoint.edu/the-glass-backbone-why-the-armys-logistics-will-break-in-the-next-war/
201•baud147258•6h ago•255 comments

Muse Spark 1.1

https://ai.meta.com/blog/introducing-muse-spark-meta-model-api/
244•ot•5h ago•144 comments

How to Start a Ruby Meetup

https://guides.rubyevents.org/meetups/
20•mooreds•1h ago•4 comments

Launch HN: Context.dev (YC S26) – API to get structured data from any website

https://www.context.dev
51•TheYahiaBakour•4h ago•39 comments

No leap second will be introduced at the end of December 2026

https://datacenter.iers.org/data/latestVersion/bulletinC.txt
175•ChrisArchitect•5h ago•142 comments

Train SIM Created by Just One Person Is Being Called the Best Ever Made

https://kotaku.com/a-train-sim-created-by-just-one-person-is-being-called-the-best-ever-made-2000...
25•oumua_don17•4d ago•0 comments

Opinionated and Easy Pi.dev Configuration

https://lazypi.org/
71•lwhsiao•4h ago•45 comments

Show HN: I mapped 8.5M research papers into an interactive atlas

https://tomesphere.com/atlas
35•leonickson•17h ago•7 comments

How should group chats work in decentralized systems?

https://marindedic.com/groups/
29•Realman78•2h ago•15 comments

Show HN: Analog Watch

https://analog.watch
72•ezekg•5h ago•64 comments

Meta reuses old RAM in new servers with custom bridge chip

https://www.networkworld.com/article/4192827/meta-reuses-old-ram-in-new-servers-with-custom-bridg...
257•ihsw•6d ago•174 comments

New open access book on history of computers and politics

https://mitpress.mit.edu/9780262053198/simpolitics/
45•mckelveyf•5h ago•4 comments

AI changes the economics of software rewrites

https://thetruthasiseeitnow.com/ai-slop-starts-with-the-codebase-itself/
79•cinooo•13h ago•85 comments

Spider venom kills varroa mites without harming honeybees

https://connectsci.au/news/news-parent/9703/Spider-venom-kills-varroa-mites-without-harming
271•Jedd•14h ago•122 comments

How to Follow a Drummer

https://drummate.app/blog/how-to-follow-a-drummer
10•sashyo•3d ago•12 comments

What is Bending Spoons? The little-known AOL and Vimeo owner that's now public

https://techcrunch.com/2026/07/05/what-is-bending-spoons-everything-to-know-about-aols-acquirer/
51•jack1689•3d ago•75 comments

What's slowing down the AI buildout

https://www.worksinprogress.news/p/ai-is-bottlenecked-by-the-grid
49•droidjj•16h ago•106 comments

Show HN: Devthropology – Better Insights for GitHub Repos

https://devthropology.com/demo
24•dpc94•2h ago•6 comments

Auditory and spontaneous movement responses to music over first postnatal year

https://elifesciences.org/articles/107088
17•bookofjoe•3h ago•2 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.