frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

ArXiv Declares Independence from Cornell

https://www.science.org/content/article/arxiv-pioneering-preprint-server-declares-independence-co...
205•bookstore-romeo•4h ago•49 comments

Google details new 24-hour process to sideload unverified Android apps

https://arstechnica.com/gadgets/2026/03/google-details-new-24-hour-process-to-sideload-unverified...
752•0xedb•15h ago•842 comments

FSF Threatens Anthropic over Infringed Copyright: Share Your LLMs Freel

https://www.fsf.org/blogs/licensing/2026-anthropic-settlement
65•m463•3d ago•36 comments

Push events into a running session with channels

https://code.claude.com/docs/en/channels
319•jasonjmcghee•8h ago•180 comments

Full Disclosure: A Third (and Fourth) Azure Sign-In Log Bypass Found

https://trustedsec.com/blog/full-disclosure-a-third-and-fourth-azure-sign-in-log-bypass-found
125•nyxgeek•7h ago•25 comments

Building a Reader for the Smallest Hard Drive

https://www.willwhang.dev/Reading-MK4001MTD/
21•voctor•3d ago•1 comments

Drugwars for the TI-82/83/83 Calculators (2011)

https://gist.github.com/mattmanning/1002653/b7a1e88479a10eaae3bd5298b8b2c86e16fb4404
129•robotnikman•7h ago•49 comments

Cockpit is a web-based graphical interface for servers

https://github.com/cockpit-project/cockpit
248•modinfo•11h ago•139 comments

Return of the Obra Dinn: spherical mapped dithering for a 1bpp first-person game

https://forums.tigsource.com/index.php?topic=40832.msg1363742#msg1363742
343•PaulHoule•3d ago•44 comments

How the Turner twins are mythbusting modern technical apparel

https://www.carryology.com/insights/how-the-turner-twins-are-mythbusting-modern-gear/
205•greedo•2d ago•102 comments

Show HN: Three new Kitten TTS models – smallest less than 25MB

https://github.com/KittenML/KittenTTS
412•rohan_joshi•16h ago•158 comments

A Journey Through Infertility

https://pudding.cool/2026/03/ivf/
26•tchanukvadze•2d ago•12 comments

4Chan mocks £520k fine for UK online safety breaches

https://www.bbc.com/news/articles/c624330lg1ko
355•mosura•17h ago•591 comments

Noq: n0's new QUIC implementation in Rust

https://www.iroh.computer/blog/noq-announcement
197•od0•14h ago•24 comments

Astral to Join OpenAI

https://astral.sh/blog/openai
1340•ibraheemdev•19h ago•825 comments

FSFE supporters affected: Payment provider Nexi cancelled us

https://fsfe.org/news/2026/news-20260316-01.en.html
31•rasjani•1h ago•5 comments

Clockwise acquired by Salesforce

https://www.getclockwise.com
115•nigelgutzmann•12h ago•60 comments

How many branches can your CPU predict?

https://lemire.me/blog/2026/03/18/how-many-branches-can-your-cpu-predict/
68•chmaynard•1d ago•45 comments

Launch HN: Voltair (YC W26) – Drone and charging network for power utilities

70•wweissbluth•15h ago•26 comments

Be intentional about how AI changes your codebase

https://aicode.swerdlow.dev
111•benswerd•11h ago•45 comments

Drawvg Filter for FFmpeg

https://ayosec.github.io/ffmpeg-drawvg/
3•nolta•2d ago•0 comments

Scaling Karpathy's Autoresearch: What Happens When the Agent Gets a GPU Cluster

https://blog.skypilot.co/scaling-autoresearch/
166•hopechong•15h ago•70 comments

Linux Page Faults, MMAP, and userfaultfd for faster VM boots

https://www.shayon.dev/post/2026/65/linux-page-faults-mmap-and-userfaultfd/
28•shayonj•1d ago•1 comments

NanoGPT Slowrun: 10x Data Efficiency with Infinite Compute

https://qlabs.sh/10x
137•sdpmas•13h ago•29 comments

OpenBSD: PF queues break the 4 Gbps barrier

https://undeadly.org/cgi?action=article;sid=20260319125859
196•defrost•18h ago•60 comments

From Oscilloscope to Wireshark: A UDP Story (2022)

https://www.mattkeeter.com/blog/2022-08-11-udp/
110•ofrzeta•13h ago•22 comments

Last love: a romance in a care home (2023)

https://www.theguardian.com/lifeandstyle/2023/nov/23/last-love-a-romance-in-a-care-home
23•NaOH•3d ago•8 comments

Waymo Safety Impact

https://waymo.com/safety/impact/
297•xnx•12h ago•301 comments

Launch HN: Canary (YC W26) – AI QA that understands your code

53•Visweshyc•16h ago•20 comments

Bombarding gamblers with offers greatly increases betting and gambling harm

https://www.bristol.ac.uk/news/2026/march/bombarding-gamblers-with-offers-greatly-increases-betti...
140•hhs•9h ago•104 comments
Open in hackernews

Fast(er) regular expression engines in Ruby

https://serpapi.com/blog/faster-regular-expression-engines-in-ruby/
60•davidsojevic•10mo ago

Comments

yxhuvud•10mo ago
Eww, pretending to support utf8 matchers while not supporting them at all was not pretty to see.
gitroom•10mo ago
Honestly that part bugs me, fake support is worse than no support imo
kayodelycaon•10mo 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•10mo 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•10mo 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•10mo 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.