frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Alberta startup sells no-tech tractors for half price

https://wheelfront.com/this-alberta-startup-sells-no-tech-tractors-for-half-price/
929•Kaibeezy•4h ago•325 comments

Over-editing refers to a model modifying code beyond what is necessary

https://nrehiew.github.io/blog/minimal_editing/
217•pella•3h ago•110 comments

Apple fixes bug that cops used to extract deleted chat messages from iPhones

https://techcrunch.com/2026/04/22/apple-fixes-bug-that-cops-used-to-extract-deleted-chat-messages...
38•cdrnsf•48m ago•16 comments

We found a stable Firefox identifier linking all your private Tor identities

https://fingerprint.com/blog/firefox-tor-indexeddb-privacy-vulnerability/
196•danpinto•3h ago•60 comments

5x5 Pixel font for tiny screens

https://maurycyz.com/projects/mcufont/
285•zdw•3d ago•72 comments

Qwen3.6-27B: Flagship-Level Coding in a 27B Dense Model

https://qwen.ai/blog?id=qwen3.6-27b
527•mfiguiere•7h ago•255 comments

Windows 9x Subsystem for Linux

https://social.hails.org/@hailey/116446826733136456
811•sohkamyung•11h ago•189 comments

The Illuminated Man: an unconventional portrait of JG Ballard

https://www.theguardian.com/books/2026/apr/20/the-illuminated-man-by-christopher-priest-and-nina-...
14•agronaut•52m ago•1 comments

Scores decline again for 13-year-old students in reading and mathematics

https://www.nationsreportcard.gov/highlights/ltt/2023/
118•u1hcw9nx•2h ago•138 comments

You don't need advice from editors on rejected manuscripts

https://twitter.com/orsonscottcard/status/2046702294406680751
72•MrBuddyCasino•12h ago•35 comments

Martin Fowler: Technical, Cognitive, and Intent Debt

https://martinfowler.com/fragments/2026-04-14.html
133•theorchid•5h ago•22 comments

Ping-pong robot beats top-level human players

https://www.reuters.com/sports/ping-pong-robot-ace-makes-history-by-beating-top-level-human-playe...
18•wslh•6h ago•13 comments

Website streamed live directly from a model

https://flipbook.page/
47•sethbannon•3h ago•20 comments

The great Scouse pasty war

https://www.livpost.co.uk/the-great-scouse-pasty-war/
20•DamonHD•2d ago•1 comments

Our eighth generation TPUs: two chips for the agentic era

https://blog.google/innovation-and-ai/infrastructure-and-cloud/google-cloud/eighth-generation-tpu...
344•xnx•9h ago•170 comments

Surveillance Pricing: Exploiting Information Asymmetries

https://lpeproject.org/blog/surveillance-pricing-exploiting-information-asymmetries/
63•cainxinth•4h ago•24 comments

Bodega cats of New York

https://bodegacatsofnewyork.com
125•zdw•4d ago•46 comments

Ultraviolet corona discharges on treetops during storms

https://www.psu.edu/news/earth-and-mineral-sciences/story/treetops-glowing-during-storms-captured...
169•t-3•7h ago•48 comments

Workspace Agents in ChatGPT

https://openai.com/index/introducing-workspace-agents-in-chatgpt/
58•mfiguiere•3h ago•20 comments

A Vompeccc Case Study: Spotify as Pure ICR in Emacs

https://www.chiply.dev/post-vompeccc-spot
6•chiply•1d ago•1 comments

GitHub CLI now collects pseudoanonymous telemetry

https://cli.github.com/telemetry
361•ingve•9h ago•274 comments

Parallel Agents in Zed

https://zed.dev/blog/parallel-agents
107•ajeetdsouza•3h ago•58 comments

Olive CSS: Lisp powered vanilla CSS utility-Class A la Tailwind

https://codeberg.org/jjba23/olive-css
3•jjba23•26m ago•0 comments

Show HN: Broccoli, one shot coding agent on the cloud

https://github.com/besimple-oss/broccoli
32•yzhong94•5h ago•28 comments

3.4M Solar Panels

https://tech.marksblogg.com/american-solar-farms-v2.html
257•marklit•9h ago•193 comments

Anonymous credentials: an illustrated primer (Part 2)

https://blog.cryptographyengineering.com/2026/04/17/anonymous-credentials-an-illustrated-primer-p...
14•kkl•2d ago•0 comments

Columnar Storage Is Normalization

https://buttondown.com/jaffray/archive/columnar-storage-is-normalization/
90•ibobev•8h ago•33 comments

Scoring Show HN submissions for AI design patterns

https://www.adriankrebs.ch/blog/design-slop/
245•hubraumhugo•6h ago•189 comments

Youth Suicides Declined After Creation of National Hotline

https://www.nytimes.com/2026/04/22/science/988-youth-suicides-decline.html
170•marojejian•5h ago•105 comments

How does GPS work?

https://perthirtysix.com/how-the-heck-does-gps-work
206•alfanick•11h ago•46 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.