frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Corruption erodes social trust more in democracies than in autocracies

https://www.frontiersin.org/journals/political-science/articles/10.3389/fpos.2026.1779810/full
461•PaulHoule•5h ago•203 comments

MoD sources warn Palantir role at heart of government is threat to UK security

https://www.thenerve.news/p/palantir-technologies-uk-mod-sources-government-data-insights-securit...
362•vrganj•5h ago•123 comments

US Job Market Visualizer – Andrej Karpathy

https://karpathy.ai/jobs/
125•andygcook•1h ago•76 comments

My Journey to a reliable and enjoyable locally hosted voice assistant

https://community.home-assistant.io/t/my-journey-to-a-reliable-and-enjoyable-locally-hosted-voice...
134•Vaslo•3h ago•39 comments

Launch HN: Voygr (YC W26) – A better maps API for agents and AI apps

12•ymarkov•37m ago•4 comments

I Love FreeBSD

https://it-notes.dragas.net/2026/03/16/why-i-love-freebsd/
141•enz•5h ago•63 comments

Canada's bill C-22 mandates mass metadata surveillance

https://www.michaelgeist.ca/2026/03/a-tale-of-two-bills-lawful-access-returns-with-changes-to-war...
925•opengrass•19h ago•290 comments

Even Faster Asin() Was Staring Right at Me

https://16bpp.net/blog/post/even-faster-asin-was-staring-right-at-me/
58•def-pri-pub•4h ago•27 comments

Cert Authorities Check for DNSSEC from Today

https://www.grepular.com/Cert_Authorities_Check_for_DNSSEC_From_Today
13•zdw•18h ago•8 comments

Comparing Python Type Checkers: Typing Spec Conformance

https://pyrefly.org/blog/typing-conformance-comparison/
51•ocamoss•4h ago•16 comments

Lazycut: A simple terminal video trimmer using FFmpeg

https://github.com/emin-ozata/lazycut
65•masterpos•4h ago•22 comments

Show HN: Hackerbrief – Top posts on Hacker News summarized daily

https://hackerbrief.vercel.app/
47•p0u4a•3h ago•34 comments

Home Assistant waters my plants

https://finnian.io/blog/home-assistant-waters-my-plants/
178•finniananderson•4d ago•77 comments

Human Organ Atlas

https://human-organ-atlas.esrf.fr/
20•giuliomagnifico•1d ago•1 comments

The bureaucracy blocking the chance at a cure

https://www.writingruxandrabio.com/p/the-bureaucracy-blocking-the-chance
16•item•22h ago•10 comments

Nango (YC W23, API Access for Agents and Apps) Is Hiring

https://jobs.ashbyhq.com/Nango
1•bastienbeurier•4h ago

How I write software with LLMs

https://www.stavros.io/posts/how-i-write-software-with-llms/
405•indigodaddy•15h ago•378 comments

Polymarket gamblers threaten to kill me over Iran missile story

https://www.timesofisrael.com/gamblers-trying-to-win-a-bet-on-polymarket-are-vowing-to-kill-me-if...
805•defly•4h ago•476 comments

Event Publisher enables event integration between Keycloak and OpenFGA

https://github.com/embesozzi/keycloak-openfga-event-publisher
10•mooreds•2h ago•1 comments

Obsession with growth is destroying nature, 150 countries warn

https://www.politico.eu/article/obsession-with-growth-destroying-nature-150-countries-warn/
182•speckx•4h ago•126 comments

The 49MB web page

https://thatshubham.com/blog/news-audit
738•kermatt•21h ago•321 comments

MCP Server Is Eating Your Context Window. There's a Simpler Way

https://www.apideck.com/blog/mcp-server-eating-context-window-cli-alternative
46•gertjandewilde•1h ago•49 comments

Skillfile, the declarative skill manager, now with search for 110K+ skills

https://github.com/eljulians/skillfile
11•_juli_•3h ago•0 comments

'Pokémon Go' players unknowingly trained delivery robots with 30B images

https://www.popsci.com/technology/pokemon-go-delivery-robots-crowdsourcing/
95•wslh•3h ago•52 comments

Chrome DevTools MCP (2025)

https://developer.chrome.com/blog/chrome-devtools-mcp-debug-your-browser-session
549•xnx•21h ago•217 comments

Autoresearch Hub

http://autoresearchhub.com/
58•EvgeniyZh•2d ago•21 comments

Stop Sloppypasta

https://stopsloppypasta.ai/
562•namnnumbr•23h ago•221 comments

Six ingenious ways how Canon DSLRs used to illuminate their autofocus points

https://exclusivearchitecture.com/03-technical-articles-CSDS-00-table-of-contents.html
104•ExAr•1d ago•33 comments

Why Are Viral Capsids Icosahedral?

https://www.asimov.press/p/viral-capsids
60•surprisetalk•4d ago•11 comments

Reviewing Large Changes with Jujutsu

https://ben.gesoff.uk/posts/reviewing-large-changes-with-jj/
77•bengesoff•4d ago•9 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.