frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Norway imposes near ban on AI in elementary school

https://www.reuters.com/technology/norway-imposes-near-ban-ai-elementary-school-2026-06-19/
356•ilreb•8h ago•225 comments

Bobby Prince, composer for Doom, Wolfenstein 3D, and Duke Nukem 3D, has died

https://www.legacy.com/legacy/robert-bobby-prince-lll
152•pgrote•4h ago•16 comments

There are no instances in ATProto

https://overreacted.io/there-are-no-instances-in-atproto/
325•danabramov•9h ago•188 comments

Think of the Children: How to Force Real ID for All Internet Traffic (2023)

https://nochan.net/b/Internet-Crap/20230829-Think-Of-The-Children/
59•Bender•4h ago•18 comments

I used sound waves to make espresso. It could cut coffee‑brewing energy use by ¾

https://theconversation.com/i-used-sound-waves-to-make-espresso-it-could-cut-coffee-brewing-energ...
173•zeristor•6d ago•109 comments

Hyundai buys Boston Dynamics

https://startupfortune.com/hyundai-takes-full-control-of-boston-dynamics-as-softbank-exits-for-32...
607•ck2•7h ago•292 comments

Iran requires insurance on ships using Strait of Hormuz, fees likely to follow

https://www.lloydslist.com/LL1157571/Iran-imposes-mandatory-insurance-on-ships-transiting-Strait-...
32•decimalenough•53m ago•13 comments

Americans express unease over SpaceX's influence on retirement savings

https://www.theguardian.com/science/2026/jun/19/spacex-retirement-savings-elon-musk
99•ValentineC•1h ago•42 comments

Surprising Economics of Load-Balanced Systems

https://brooker.co.za/blog/2020/08/06/erlang.html
28•KraftyOne•3h ago•12 comments

Egyptian Fractions

https://blog.plover.com/math/egyptian-fractions.html
56•luu•4d ago•0 comments

Project Valhalla, Explained: How a Decade of Work Arrives in JDK 28

https://www.jvm-weekly.com/p/project-valhalla-explained-how-a
531•philonoist•17h ago•327 comments

How many of the 170k English words do you know?

https://vocabowl-870366514258.us-west1.run.app/
214•abnry•10h ago•339 comments

Zenzizenzizenzic

https://en.wikipedia.org/wiki/Zenzizenzizenzic
55•gyosifov•2h ago•17 comments

A 1976 university experiment spun up the U.S. wind industry

https://spectrum.ieee.org/william-heronemus-wind-energy
64•pseudolus•4d ago•5 comments

Google workspace threatening to block Firefox access

https://tales.fromprod.com/2026/169/google-workspace-threatening-to-block-firefox.html
403•birdculture•7h ago•134 comments

DuckDB Internals Part 1

https://www.greybeam.ai/blog/duckdb-internals-part-1
428•marklit•3d ago•128 comments

Telescope Ranchers

https://kottke.org/26/06/telescope-ranchers
94•bookofjoe•3d ago•38 comments

Court Records Should Be Free

https://www.eff.org/deeplinks/2026/06/court-records-should-be-free
204•hn_acker•6h ago•33 comments

How do flocking birds and schools of fish move?

https://www.nyu.edu/about/news-publications/news/2026/june/how-do-flocking-birds-and-schools-of-f...
5•hhs•1h ago•0 comments

Show HN: Metiq: a real time 3D globe for 100 public datasets

https://metiq.space
81•rakeda•3d ago•23 comments

A new bill takes aim at government pressure to silence lawful online speech

https://www.eff.org/deeplinks/2026/06/new-bill-takes-aim-government-pressure-silence-lawful-onlin...
228•hn_acker•6h ago•111 comments

Zen and the Art of Machine Learning Research

https://blog.jxmo.io/p/zen-and-the-art-of-machine-learning
233•jxmorris12•3d ago•75 comments

A Perceptron in Age of Empires II

https://adewynter.github.io/notes/aoe2-circuits
14•EvgeniyZh•1d ago•5 comments

AURpocalypse now: a look at the recent AUR attacks

https://lwn.net/SubscriberLink/1077619/f7b07c5489fdd43a/
23•jwilk•7h ago•13 comments

RhinoCollab a plugin for real-time editing for Rhino 3D

https://rhinocollab.com
12•Ashxius•5d ago•3 comments

Ten years of ClickHouse in open source

https://clickhouse.com/blog/open-source-10
268•saisrirampur•4d ago•71 comments

To study how chips work, MIT researchers built their own operating system

https://news.mit.edu/2026/to-study-how-chips-really-work-mit-researchers-built-their-own-operatin...
347•speckx•4d ago•53 comments

The AirPods Effect

https://www.theescapenewsletter.com/p/the-airpods-effect
375•herbertl•1d ago•674 comments

Hide Secrets from AI Agents and NPM install using Airgap

https://sauleau.com/notes/airgap-security-for-the-modern-ai-age.html
11•netgusto•4h ago•0 comments

Gribouille 0.3.0: A Grammar of Graphics for Typst

https://mickael.canouil.fr/posts/2026-06-15-gribouille-0-3/
205•mcanouil•4d ago•76 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.