frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

€54k spike in 13h from unrestricted Firebase browser key accessing Gemini APIs

https://discuss.ai.google.dev/t/unexpected-54k-billing-spike-in-13-hours-firebase-browser-key-wit...
220•zanbezi•1h ago•139 comments

IPv6 traffic crosses the 50% mark

https://www.google.com/intl/en/ipv6/statistics.html?yzh=28197
499•Aaronmacaron•1d ago•313 comments

Apple accelerates eco progress with highest-ever recycled materials

https://www.apple.com/newsroom/2026/04/apple-accelerates-progress-with-highest-ever-recycled-mate...
45•salkahfi•1h ago•26 comments

The Future of Everything Is Lies, I Guess: Where Do We Go from Here?

https://aphyr.com/posts/420-the-future-of-everything-is-lies-i-guess-where-do-we-go-from-here
9•aphyr•16m ago•1 comments

Darkbloom – Private inference on idle Macs

https://darkbloom.dev
348•twapi•9h ago•165 comments

AI cybersecurity is not proof of work

https://antirez.com/news/163
56•surprisetalk•3h ago•14 comments

FSF trying to contact Google about spammer sending 10k+ mails from Gmail account

https://daedal.io/@thomzane/116410863009847575
238•pabs3•10h ago•146 comments

Show HN: 48 absurd web projects – one every month

32•absurdwebsite•1h ago•13 comments

Ancient DNA reveals pervasive directional selection across West Eurasia [pdf]

https://reich.hms.harvard.edu/sites/reich.hms.harvard.edu/files/inline-files/2026_Akbari_Nature_s...
32•Metacelsus•2h ago•14 comments

Modern Microprocessors – A 90-Minute Guide

https://www.lighterra.com/articles/
75•Flex247A•4d ago•7 comments

Cloudflare's AI Platform: an inference layer designed for agents

https://blog.cloudflare.com/ai-platform/
12•nikitoci•30m ago•2 comments

Codex Hacked a Samsung TV

https://blog.calif.io/p/codex-hacked-a-samsung-tv
89•campuscodi•3h ago•61 comments

PHP 8.6 Closure Optimizations

https://wiki.php.net/rfc/closure-optimizations
23•moebrowne•2d ago•4 comments

Cybersecurity looks like proof of work now

https://www.dbreunig.com/2026/04/14/cybersecurity-is-proof-of-work-now.html
487•dbreunig•1d ago•179 comments

Long Instruction Word architectures and the ELI-512

https://dl.acm.org/doi/10.1145/800046.801649
6•rbanffy•4d ago•0 comments

RedSun: System user access on Win 11/10 and Server with the April 2026 Update

https://github.com/Nightmare-Eclipse/RedSun
127•airhangerf15•9h ago•29 comments

The paper computer

https://jsomers.net/blog/the-paper-computer
185•jsomers•3d ago•51 comments

Too much discussion of the XOR swap trick

https://heather.cafe/posts/too_much_xor_swap_trick/
108•CJefferson•3d ago•66 comments

RamAIn (YC W26) Is Hiring

https://www.ycombinator.com/companies/ramain/jobs/bwtwd9W-founding-gtm-operations-lead
1•svee•6h ago

ChatGPT for Excel

https://chatgpt.com/apps/spreadsheets/
255•armcat•16h ago•162 comments

Moving a large-scale metrics pipeline from StatsD to OpenTelemetry / Prometheus

https://medium.com/airbnb-engineering/building-a-high-volume-metrics-pipeline-with-opentelemetry-...
51•jmarbach•8h ago•10 comments

North American English Dialects

https://aschmann.net/AmEng/
63•skogstokig•10h ago•32 comments

Cal.com is going closed source

https://cal.com/blog/cal-com-goes-closed-source-why
350•Benjamin_Dobell•22h ago•274 comments

Google broke its promise to me – now ICE has my data

https://www.eff.org/deeplinks/2026/04/google-broke-its-promise-me-now-ice-has-my-data
1585•Brajeshwar•20h ago•682 comments

Introduction to spherical harmonics for graphics programmers

https://gpfault.net/posts/sph.html
126•luu•3d ago•20 comments

FIXAPL

https://fixapl.netlify.app/
49•tosh•4d ago•3 comments

I made a terminal pager

https://theleo.zone/posts/pager/
148•speckx•15h ago•35 comments

The Accursèd Alphabetical Clock

https://boat.horse/clock/index.html
43•ohjeez•1d ago•10 comments

Fast and Easy Levenshtein distance using a Trie (2011)

https://stevehanov.ca/blog/fast-and-easy-levenshtein-distance-using-a-trie
87•sebg•4d ago•15 comments

CRISPR takes important step toward silencing Down syndrome’s extra chromosome

https://medicalxpress.com/news/2026-04-crispr-bold-silencing-syndrome-extra.html
203•amichail•21h ago•123 comments
Open in hackernews

Fast(er) regular expression engines in Ruby

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

Comments

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