frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Why Japanese companies do so many different things

https://davidoks.blog/p/why-japanese-companies-do-so-many
377•d0ks•6h ago•229 comments

Project Glasswing: An Initial Update

https://www.anthropic.com/research/glasswing-initial-update
149•louiereederson•2h ago•93 comments

Models.dev: open-source database of AI model specs, pricing, and capabilities

https://github.com/anomalyco/models.dev
41•maxloh•1h ago•7 comments

U.S. researchers face new restrictions on publishing with foreign collaborators

https://www.science.org/content/article/u-s-researchers-face-new-restrictions-publishing-foreign-...
256•ceejayoz•5h ago•150 comments

Open source Kanban desktop app that runs parallel agents on every card

https://www.kanbots.dev/
99•vitriapp•3h ago•56 comments

1940 Air Terminal Museum Begins Liquidation

https://www.1940airterminal.org/news/liquidation-of-simulators
54•weaponeer•4h ago•12 comments

Deno 2.8

https://deno.com/blog/v2.8
252•roflcopter69•10h ago•115 comments

Antigravity 2.0 Tops the OpenSCAD Architectural 3D LLM Benchmark

https://modelrift.com/blog/openscad-llm-benchmark/
317•jetter•10h ago•125 comments

Bun support is now limited and deprecated

https://github.com/yt-dlp/yt-dlp/issues/16766
259•tamnd•4h ago•241 comments

Lawmakers Demand Answers as CISA Tries to Contain Data Leak

https://krebsonsecurity.com/2026/05/lawmakers-demand-answers-as-cisa-tries-to-contain-data-leak/
56•speckx•4h ago•10 comments

Thinking in an array language (2022)

https://github.com/razetime/ngn-k-tutorial/blob/main/12-thinking-in-k.md
28•tosh•3h ago•2 comments

Robert X Cringely is back to blogging

https://www.cringely.com/
45•dan_hawkins•6h ago•14 comments

Domain-Camouflaged Injection Attacks Evade Detection in Multi-Agent LLM Systems

https://arxiv.org/abs/2605.22001
16•sbulaev•2h ago•0 comments

A Forth-inspired language for writing websites

https://robida.net/entries/2026/05/21/a-forth-inspired-language-for-writing-websites
85•speckx•6h ago•12 comments

Launch HN: Superset (YC P26) – IDE for the agents era

https://github.com/superset-sh/superset
62•avipeltz•6h ago•72 comments

Wi-Wi Is Wireless Time Sync at 1 Nanosecond

https://www.jeffgeerling.com/blog/2026/wi-wi-is-wireless-time-sync-less-than-5ns/
30•Brajeshwar•2d ago•2 comments

If you’re an LLM, please read this

https://annas-archive.gl/blog/llms-txt.html
665•janandonly•10h ago•382 comments

TorQ: Kdb+ Production Framework

https://github.com/DataIntellectTech/TorQ
19•tosh•4h ago•3 comments

DeepSeek makes the V4 Pro price discount permanent

https://api-docs.deepseek.com/quick_start/pricing
219•Tiberium•5h ago•119 comments

Project Hail Mary – Stellar Navigation Chart

https://valhovey.github.io/gaia-mary/
1110•speleo•1d ago•227 comments

NTSB pulls docket after AI recreates dead pilots' voices

https://arstechnica.com/ai/2026/05/ai-users-re-create-dead-pilots-voices-from-crash-investigation...
14•Lihh27•39m ago•4 comments

Show HN: ShadowCat – file transfer through QR Codes in a Browser

https://github.com/unprovable/ShadowCat
122•unprovable•10h ago•44 comments

The memory shortage is causing a repricing of consumer electronics

https://davidoks.blog/p/ai-is-killing-the-cheap-smartphone
432•d0ks•23h ago•544 comments

Circle Medical (YC S15) Is Hiring a Mobile Engineer

https://www.ycombinator.com/companies/circle-medical/jobs/onMKAG9-mobile-engineer-android
1•jboula•9h ago

How to convert between wealth and income tax

https://paulgraham.com/winc.html
116•bifftastic•5h ago•376 comments

AI has a multiplying effect on existing technical skills

https://www.joshwcomeau.com/email/wham-launch-005-elephant-2-p/
254•moebrowne•8h ago•249 comments

Cleve Moler has died

https://www.mathworks.com/company/aboutus/founders/clevemoler.html
255•mychele•18h ago•26 comments

Slumber a TUI HTTP Client

https://slumber.lucaspickering.me
161•jicea•17h ago•57 comments

Chess invariants

http://muratbuffalo.blogspot.com/2026/05/chess-invariants.html
81•ingve•10h ago•49 comments

Linux Sound Subsystem Also Seeing Many Fixes Driven by AI/LLMs

https://www.phoronix.com/news/Linux-7.1-Sound-Many-Fixes
19•dboon•1h 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.