frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Claude Code is steganographically marking requests

https://thereallo.dev/blog/claude-code-prompt-steganography
1890•kirushik•16h ago•540 comments

Claude Sonnet 5

https://www.anthropic.com/news/claude-sonnet-5
1095•marinesebastian•14h ago•630 comments

The first early human eggs from stem cells

https://www.conception.bio/science-and-updates/the-first-early-human-eggs-from-stem-cells
83•dsr12•3h ago•27 comments

ArXiv's Next Chapter

https://blog.arxiv.org/2026/06/30/arxivs-next-chapter/
80•subset•5h ago•21 comments

Google copybara: moving code between repositories

https://github.com/google/copybara
190•reconnecting•8h ago•31 comments

Claude Science

https://claude.com/product/claude-science
475•lebovic•15h ago•144 comments

Department of Commerce has lifted export controls on Claude Fable 5 and Mythos 5

https://twitter.com/AnthropicAI/status/2072106151890809341
638•Pragmata•8h ago•348 comments

Nano Banana 2 Lite

https://deepmind.google/models/gemini-image/flash-lite/
364•minimaxir•15h ago•145 comments

Leanstral 1.5

https://docs.mistral.ai/models/model-cards/leanstral-1-5-26-06
204•vetronauta•11h ago•54 comments

Matrix Orthogonalization Improves Memory in Recurrent Models

https://ayushtambde.com/blog/matrix-orthogonalization-improves-memory-in-recurrent-models/
28•at2005•3h ago•2 comments

How does a pull-back car work? Illustrated teardown

https://mechanical-pencil.com/products/car
178•Muhammad523•2d ago•35 comments

How information theory saved my word game

https://motplot.app/helloworld
12•jamwise•2d ago•14 comments

Forestiere Underground Gardens

https://en.wikipedia.org/wiki/Forestiere_Underground_Gardens
63•onemoresoop•6h ago•14 comments

CERN bids farewell to the LHC and enters Long Shutdown 3

https://home.cern/cern-bids-farewell-to-the-lhc-and-enters-long-shutdown-3/
214•HelloUsername•1d ago•54 comments

Pystd, similar-ish functionality with a fraction of the compile time

https://nibblestew.blogspot.com/2026/06/pystd-standard-library-similar-ish.html
23•ibobev•4d ago•20 comments

I ported Kubernetes to the browser

https://ngrok.com/blog/i-ported-kubernetes-to-the-browser
250•peterdemin•11h ago•76 comments

From brain waves to words: a new path to communication without surgery

https://ai.meta.com/blog/brain2qwerty-brain-ai-human-communication/?_fb_noscript=1
149•alok-g•10h ago•78 comments

Ante: A new way to blend borrow checking and reference counting

https://verdagon.dev/blog/ante-blending-borrowing-rc
86•g0xA52A2A•2d ago•20 comments

Tokyo has only two barley tea makers, we visited one to see how mugicha is made

https://soranews24.com/2026/06/30/tokyo-has-only-two-barley-tea-makers-and-we-visited-one-to-see-...
125•zdw•12h ago•25 comments

Godot will no longer accept AI-authored code contributions

https://www.pcgamer.com/gaming-industry/open-source-game-engine-godot-will-no-longer-accept-ai-au...
12•pjmlp•33m ago•0 comments

I built a mmWave material classification radar (2025)

https://gauthier-lechevalier.com/radar
179•GL26•14h ago•46 comments

Building a custom octocopter from scratch with no prior hardware experience

https://karolina.mgdubiel.com/drone/
361•noleary•3d ago•77 comments

Hatari – Online Atari ST/STE/TT/Falcon Emulator

https://hatari.frama.io/hatari/online/hatari.html
62•gregsadetsky•9h ago•6 comments

Homemade Transistor from Cadmium Sulfide Photocell (2009)

http://sparkbangbuzz.com/cds-fet/cds-fet.htm
5•thenthenthen•1d ago•3 comments

Stroustrup's Rule (2024)

https://buttondown.com/hillelwayne/archive/stroustrups-rule/
94•bmacho•3d ago•20 comments

Scaling Laws, Carefully

https://lilianweng.github.io/posts/2026-06-24-scaling-laws/
56•tehnub•4d ago•15 comments

Long Island's decommissioned nuclear power plant

https://nickcarr.com/scouting-a-decommissioned-nuclear-power-plant/
126•mkmk•6d ago•62 comments

Meta is adding rate limits and soft paywall to smart glasses

https://www.theverge.com/gadgets/959899/meta-ai-glasses-paywall-rate-limit
30•Exoristos•2h ago•15 comments

Have you restarted your computer this week?

https://taonaw.com/2026/06/27/have-you-restarted-your-computer.html
169•surprisetalk•18h ago•294 comments

Single header Parser Combinators for C

https://github.com/steve-chavez/CParseC
20•steve-chavez•4h ago•1 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.