frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

DeepSeek-v4-flash-vision-exp

https://api-docs.deepseek.com/guides/vision/
106•dares2573•1h ago•17 comments

The Lost Treasure of Sid Meier's Pirates

https://remapradio.com/articles/the-lost-treasure-of-sid-meiers-pirates/
116•spankibalt•4h ago•55 comments

Small, native web tricks worth remembering

https://htmlcat.net/
52•marcomezzavilla•1h ago•14 comments

We Rebuilt the Linux MicroVM Stack on Apple Silicon

https://encore.dev/blog/firecracker-apple-silicon
91•signa11•4h ago•44 comments

The August 17 outage

https://github.blog/news-insights/company-news/the-august-17-outage-and-the-work-ahead/
558•0xedb•16h ago•612 comments

Flat Chair by Sara Paculdo

https://www.toxel.com/tech/2026/08/07/flat-chair-by-sara-paculdo/
28•surprisetalk•3d ago•10 comments

I like 'em thick: an apology to my English teachers

https://www.experimental-history.com/p/i-like-em-thick
759•Ariarule•2d ago•307 comments

The case against a C alternative (2022)

https://c3.handmade.network/blog/p/8486-the_case_against_a_c_alternative
47•theanonymousone•4d ago•37 comments

HTML Can Do That

https://chrisburnell.com/html-can-do-that/
855•encyclopedism•1d ago•190 comments

Malicious Rust crate Arrayref runs a build-time payload

https://safedep.io/arrayref-proc-macro1-rust-build-time-malware/
511•abhisek•22h ago•438 comments

The Religious Experience of Philip K. Dick by R. Crumb (1986)

https://philipdick.com/resources/miscellaneous/the-religious-experience-of-philip-k-dick-by-r-cru...
52•wise_blood•6h ago•29 comments

Ox Alpha

https://openrouter.ai/stealth/ox-alpha
178•mtokmak06•11h ago•136 comments

I should have loved biology (2020)

https://jsomers.net/i-should-have-loved-biology/
292•tyre•17h ago•109 comments

Micron announces $10B research hub in Boise

https://investors.micron.com/news/press-release/2026/Micron-Unveils-Micron-Research-Labs-a-U-S--B...
38•osnium123•7h ago•3 comments

Japan tried to build an operating system for the world, the US intervened

https://www.xda-developers.com/japan-tried-build-operating-system-entire-world-us-government-inte...
217•rdmuser•6h ago•109 comments

Why aren't smart people happier? (2022)

https://www.experimental-history.com/p/why-arent-smart-people-happier
197•rafaelc•17h ago•282 comments

The Mystery of Dark Oxygen

https://www.newyorker.com/science/elements/the-mystery-of-dark-oxygen
3•rbanffy•4d ago•0 comments

CIA funding helped keep NeXT afloat in the 80s

https://www.wsj.com/tech/steve-jobs-apple-next-cia-161b65f9?st=NWWds1&reflink=desktopwebshare_per...
411•EwanG•1d ago•251 comments

Launch HN: Vendo (YC S26) – Let users build features on top of your product

https://github.com/runvendo/vendo
43•yousefh409•20h ago•20 comments

Better Batteries

https://matklad.github.io/2026/08/20/better-batteries.html
12•olexsmir•3h ago•3 comments

Show HN: Huzzah – a novel approach to coding with AI

https://www.danielvaughn.dev/posts/huzzah/
325•danielvaughn•16h ago•172 comments

Vomit: Clean up Claude 5's token output with a separate LLM

https://github.com/zachahn/vomit
263•Bluestein•20h ago•259 comments

Captain Zilog

https://www.zilog.com/captain_zilog/
60•rbanffy•3d ago•7 comments

Stop Anthropomorphizing Intermediate Tokens as Reasoning/Thinking Traces (2025)

https://arxiv.org/abs/2504.09762
251•nunodonato•2d ago•195 comments

Linux 7.2

https://www.igalia.com/2026/08/19/Linux-72-Released.html
262•mariuz•19h ago•106 comments

AliExpress runs silent WebAudio fingerprinting that breaks Bluetooth multipoint

https://blog.laserphile.com/2026/08/aliexpress-webpage-keeping-multipoint.html
977•emctech•1d ago•310 comments

Seed: Minimal, self-modifying agent harness

https://github.com/vivekhaldar/seed
30•gandalfgeek•6h ago•12 comments

Anti-AI fonts are useless and harmful

https://blog.yaros.ae/anti-ai-fonts-are-useless-and-harmful/
175•speckx•20h ago•133 comments

Speeding Up (Small) Ruby Hashes

https://byroot.github.io/ruby/performance/2026/08/13/speeding-up-ruby-hashes.html
64•arto•1w ago•0 comments

Make a 6-Tesla-class high-temperature superconducting dipole magnet at 4.2 K

https://journals.aps.org/prab/abstract/10.1103/4nhs-bkwh
43•supermagnet•6d ago•11 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.