frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Pokémon Go Scans Trained the Navigation Tech for Military Drones

https://dronexl.co/2026/06/09/pokemon-go-scans-niantic-vantor-military-drone-navigation/
339•vrganj•4h ago•138 comments

AI agent runs amok in Fedora and elsewhere

https://lwn.net/SubscriberLink/1077035/c7e7c14fbd60fae9/
435•tanelpoder•11h ago•180 comments

Cybersecurity researchers aren't happy about the guardrails on Anthropic's Fable

https://techcrunch.com/2026/06/10/cybersecurity-researchers-arent-happy-about-the-guardrails-on-a...
472•speckx•18h ago•403 comments

Web Browsers on Video Game Consoles

https://vale.rocks/posts/game-console-browsers
41•robin_reala•2h ago•17 comments

πFS

https://github.com/philipl/pifs
783•helterskelter•16h ago•183 comments

Anthropic requires 30 day data retention for Fable and Mythos

https://support.claude.com/en/articles/15425996-data-retention-practices-for-mythos-class-models
466•lebovic•1d ago•237 comments

Build a Basic AI Agent from Scratch: Long Task Planning

https://medium.com/@rogi23696/build-a-basic-ai-agent-from-scratch-long-task-planning-14e803f9bd6d
23•ruxudev•1d ago•2 comments

Linux latency measurements and compositor tuning

https://farnoy.dev/posts/linux-latency
51•GalaxySnail•2d ago•6 comments

Starfish by Peter Watts (1999)

https://www.rifters.com/real/STARFISH.htm#prelude
61•zetalyrae•2d ago•19 comments

The Life and Works of Raoul Bott

https://arxiv.org/abs/math/0201027
4•mindcrime•2d ago•0 comments

Reverse engineering the Creative Katana soundbar to control it from Linux

https://blog.nns.ee/2026/02/20/katana-v2x-re/
82•theanonymousone•4d ago•6 comments

I'm Eric Ries, author of "The Lean Startup" and new book "Incorruptible" – AMA

689•eries•20h ago•497 comments

Making a Shading Language for My Offline Renderer

https://agraphicsguynotes.com/posts/making_a_shading_langauge_for_my_offline_renderer/
21•ibobev•2d ago•1 comments

Sequoyah’s syllabary created a written language for the Cherokee

https://www.smithsonianmag.com/innovation/man-created-written-language-cherokee-did-efficiently-e...
161•grahambargeron•13h ago•93 comments

PgDog is funded and coming to a database near you

https://pgdog.dev/blog/our-funding-announcement
478•levkk•21h ago•228 comments

How JPL keeps the 13-year-old Curiosity rover doing science

https://spectrum.ieee.org/curiosity-rover-jpl-mars-science
243•pseudolus•17h ago•70 comments

GeoLibre 1.0

https://geolibre.app/
254•jonbaer•17h ago•21 comments

L'Affaire Siloxane

https://mceglowski.substack.com/p/laffaire-siloxane
240•idlewords•2d ago•41 comments

Klondike Solitaire game for curses in 5k of C

https://nanochess.org/klondike_in_c.html
80•nanochess•2d ago•15 comments

Vacuum-Form Signage

https://bethmathews.substack.com/p/the-history-behind-the-signs-lighting
68•benbreen•1d ago•11 comments

Sweet Jeebus, macOS 27 Golden Gate Removes the Dumb Icons from Menu Items

https://daringfireball.net/2026/06/macos_27_golden_gate_removes_the_dumb_icons_from_menu_items
94•epaga•3h ago•29 comments

Show HN: Extend UI – open-source UI kit for modern document apps

https://www.extend.ai/ui
217•kbyatnal•19h ago•55 comments

Who's the smartest corvid?

https://thetyee.ca/Culture/2026/06/05/Whos-the-Smartest-Corvid/
120•NaOH•1d ago•106 comments

World Capitals Voronoi

https://www.jasondavies.com/maps/voronoi/capitals/
96•vincnetas•2d ago•51 comments

Building an HTML-first site doubled our users overnight

https://mohkohn.co.uk/writing/html-first/
1154•edent•22h ago•517 comments

CSS: Unavoidable Bad Parts

https://matklad.github.io/2026/06/04/css-unavoidable-bad-parts.html
92•surprisetalk•2d ago•41 comments

Human migration has surged since 2000 – these maps reveal where people are going

https://www.nature.com/articles/d41586-026-01796-y
3•tzury•4m ago•0 comments

Apache Burr: Build reliable AI agents and applications

https://burr.apache.org/
229•anhldbk•20h ago•109 comments

Raspberry Pi 5 – 16GB RAM

https://www.adafruit.com/product/6125?src=raspberrypi
277•akman•15h ago•277 comments

What is it like to be a bat? (1974) [pdf]

https://www.sas.upenn.edu/~cavitch/pdf-library/Nagel_Bat.pdf
96•shadow28•14h ago•105 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.