frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Flock Wants a Closely Surveilled World with No Exit

https://www.newyorker.com/culture/infinite-scroll/flock-wants-a-closely-surveilled-world-with-no-...
154•pseudolus•1h ago•121 comments

Desert Ant Labs: local, fast models that run on device

https://desertant.com/blog/introducing-desert-ant-labs/
41•willwhitedc•49m ago•3 comments

I advertise malicious software on Google Ads

https://xlii.space/eng/malicious-software-on-google-ads/
34•xlii•45m ago•11 comments

Lotus Notes and the dangers of starting from scratch

https://buttondown.com/blog/lotus-notes-email
59•maguay•2h ago•28 comments

Muse – Meta’s personal AI agent

https://ai.meta.com/muse/
547•yks•17h ago•599 comments

How An AI math breakthrough ignited a controversy

https://www.science.org/content/article/how-ai-math-breakthrough-ignited-controversy
114•pseudolus•2h ago•108 comments

Roame (YC S23) Is Hiring Viral Content Editor

https://www.ycombinator.com/companies/roame/jobs/KuVVqSh-content-systems-builder-editor
1•zman0225•27m ago

DeepSeek launching v4.1 flash cheaper and more capable than v4 pro

52•nickweb•1h ago•8 comments

Navier-Stokes – Tristan Buckmaster [pdf]

https://cims.nyu.edu/~tristanb/statement.pdf
1777•procedurecall•1d ago•741 comments

Coyote v. Acme (1990)

https://www.newyorker.com/magazine/1990/02/26/coyote-v-acme
40•ChrisArchitect•2d ago•11 comments

Tension wood: A 'muscle' that can both bend and straighten plants

https://phys.org/news/2026-09-trees-muscle-posture-newly-role.html
131•mdp2021•6d ago•34 comments

Building a Wall Lamp from Scratch

https://mbugert.de/posts/2026-09-09-bedroom-lamp-build/
14•jcklie•2h ago•1 comments

How to build a printer

https://nishantjosh.dev/blogs/how-to-build-a-fking-printer/
375•cat-whisperer•15h ago•82 comments

Open-source 3D anatomy explorer: 2,234 selectable BodyParts3D meshes

https://github.com/ashemag/human-atlas
10•metrofun•1d ago•1 comments

AlphaGenome Atlas: a high-resolution map of human DNA

https://blog.google/innovation-and-ai/models-and-research/google-deepmind/alphagenome-atlas/
572•utiiiD•21h ago•124 comments

Researchers Spot Fake Ancient Pottery Using the Earth's Magnetic Field

https://www.smithsonianmag.com/smart-news/researchers-determine-how-to-spot-fake-ancient-pottery-...
54•cisc•3d ago•25 comments

A Biography of Lee Holloway, the Architect of Cloudflare's Technology (Part 1)

https://note.com/masakazu_urabe/n/n7815f5b64fab?hl=en
70•porridgeraisin•7h ago•16 comments

Maak.el: Lisp machine command runner in Emacs, infinitely extensible and Scheme

https://codeberg.org/jjba23/maak.el
20•jjba23•1d ago•4 comments

How GPT‑5.6 Sol helps run quantum computing experiments

https://openai.com/index/codex-quantum-computing-experiments/
88•theanonymousone•5h ago•74 comments

Mercury 2.5

https://www.inceptionlabs.ai/blog/introducing-mercury-2-5
216•Topfi•16h ago•37 comments

Large language models develop novel social biases through adaptive exploration

https://openreview.net/challenge?redirect=%2Fforum%3Fid%3Dpc7fqaOcAH
179•paimapi•14h ago•93 comments

On Really Trying (2009)

https://gwern.net/on-really-trying
72•whoami_nr•5h ago•43 comments

DaVinci Resolve 21.1

https://www.blackmagicdesign.com/media/release/20260908-03
415•tosh•22h ago•187 comments

I-have-ADHD: A skill to stop coding agents from burying the answer

https://github.com/ayghri/i-have-adhd
474•domhudson•22h ago•327 comments

“Tweet” and the bird logo apparently enter the public domain

https://blog.ericgoldman.org/archives/2026/09/tweet-and-the-bird-logo-apparently-enter-the-public...
130•progval•6h ago•77 comments

Benchmarking Qwen3.8 27B quantizations: 4-bit holds up, 1-bit collapses

https://quesma.com/blog/qwen38-27b-quantizations-benchmarked/
264•stared•21h ago•127 comments

On the Navier–Stokes Millennium Prize Problem

https://openai.com/index/navier-stokes-solution/
1282•tedsanders•19h ago•1031 comments

Tao: Open math problems being non-renewably mined by AI

https://mathstodon.xyz/@tao/117237320796901560
393•_alternator_•15h ago•348 comments

27.5KB language-agnostic WebGPU syntax highlighter

https://gpu-lexer.vercel.app/
96•bpierre•11h ago•31 comments

An Accidental Blackboard

https://martinfowler.com/articles/exploring-gen-ai/an-accidental-blackboard.html
71•saikatsg•3d ago•34 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.