frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Early rogue AI agent activity and attempts to hack found on urlquery.net

https://transluce.org/agent-activity
75•snikolaev•3h ago•43 comments

Linux support is coming to Snapdragon X2 Series

https://www.qualcomm.com/news/onq/2026/09/snapdragon-summit-agentic-ai-pcs-linux
366•aaronday•9h ago•158 comments

Claude discovers a novel enzyme system with CRISPR-like repeats

https://www.anthropic.com/news/claude-discovers-novel-enzyme-system
629•raahelb•14h ago•647 comments

Ideas on modernizing the open-source desktop

https://lwn.net/SubscriberLink/1095425/2d9f411252325784/
94•signa11•5h ago•58 comments

ArXiv receives multiyear commitments to support it as an independent nonprofit

https://blog.arxiv.org/2026/09/23/arxiv-receives-multiyear-investment/
161•JohnHammersley•9h ago•20 comments

Contrastive Language Models

https://contrastive-lm.notion.site/
52•erichocean•4h ago•9 comments

VSCode's SSH Agent Is Bananas (2025)

https://fly.io/blog/vscode-ssh-wtf/
215•Rapzid•11h ago•133 comments

Microsoft tried to ban "Microslop", and six months later it has given up

https://www.windowslatest.com/2026/09/24/microsoft-tried-to-ban-microslop-and-six-months-later-it...
19•theanonymousone•24m ago•1 comments

Virtio-nvgpu: Near-native Nvidia GPU access inside a KVM guest

https://github.com/nestrilabs/virtio-nvgpu
82•WanjohiRyan•7h ago•40 comments

The "Windows XP Box" (2003)

https://www.mini-itx.com/projects/windowsxpbox/
135•doubletwoyou•2d ago•23 comments

Making portable my unportable transputer C compiler

https://nanochess.org/transputer_c_compiler.html
40•nanochess•2d ago•4 comments

Fixing the Portobello Police Station Clock

https://pointinthecloud.com/2026-04-11-211700.html
434•avidly•17h ago•101 comments

Why 'What's Opera, Doc?' looks like that

https://animationobsessive.substack.com/p/why-whats-opera-doc-looks-like-that
47•CharlesW•16h ago•10 comments

Meta VR Glasses

https://www.meta.com/vr-glasses/
378•polymorph1sm•8h ago•332 comments

Mercury 2.5 LLM hits 770 tokens per second

https://artificialanalysis.ai/models/mercury-2-5
99•Retro_Dev•10h ago•60 comments

Women Who Sold Books Door to Door

https://daily.jstor.org/the-women-who-sold-books-door-to-door/
13•herbertl•2d ago•0 comments

Making Tailscale Faster

https://tailscale.com/blog/making-tailscale-faster
159•yarapavan•14h ago•60 comments

Italian parliament votes for return to nuclear energy

https://apnews.com/article/italy-nuclear-chernobyl-4891b6b7c7791ae84db6b0bf0f7cf567
757•geox•15h ago•535 comments

The mystery animal on an ancient god's head

https://signoregalilei.com/2026/09/13/the-mystery-animal-on-an-ancient-gods-head/
99•surprisetalk•1d ago•27 comments

The backend that ran every game we made, ten years and counting

https://www.m2h.nl/writing/the-toolkit-behind-ten-years-of-games/
6•MikeHer•1d ago•1 comments

Six-year-old breaks women's world Rubik's Cube record [video]

https://www.youtube.com/watch?v=UCMRgvyTm08
45•1659447091•3h ago•21 comments

Data liberation: Apache Kafka's native cluster mirroring

https://developers.redhat.com/articles/2026/09/22/data-liberation-apache-kafka-native-cluster-mir...
12•fvaleri•1d ago•1 comments

Tokens too cheap to meter

https://jyn.dev/tokens-too-cheap-to-meter/
291•teoruiz•23h ago•198 comments

OpenAI agent hacked Australian government website, PM says

https://www.bbc.com/news/live/cvgl73pxgndwt
23•rudy6912•5h ago•2 comments

A brief history of Windows scroll bar shortcuts

https://devblogs.microsoft.com/oldnewthing/20260922-00/?p=112719/
135•tybulewicz•14h ago•77 comments

Show HN: An open-source manufacturing ERP/MES/QMS

https://carbon.ms/self-hosted
31•barbinbrad•7h ago•14 comments

Lambda MicroEgg

https://www.philipzucker.com/lambda_miller_egg/
39•philzook•3d ago•1 comments

LensVLM: Compressing long context as images, expanding only relevant pages

https://huggingface.co/apple/LensVLM-9B
74•victormustar•13h ago•7 comments

Gemini 3.8 text-to-speech

https://blog.google/innovation-and-ai/models-and-research/gemini-models/gemini-3-8-text-to-speech/
300•swolpers•16h ago•134 comments

Feds Target AI Critics as "Foreign Agents"

https://www.kenklippenstein.com/p/feds-think-ai-critics-are-foreign
282•nmeagent•7h ago•276 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.