frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The August 17 outage, and the work ahead

https://github.blog/news-insights/company-news/the-august-17-outage-and-the-work-ahead/
258•0xedb•4h ago•298 comments

Consumer Rights Wiki

https://consumerrights.wiki/w/Main_Page
184•gregsadetsky•5h ago•12 comments

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

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

Aaron Swartz was prosecuted for scraping, while Meta does it without consequence

https://blog.curiousquail.com/im-upset-again-about-a-co-creator-of-rss-being-prosecuted-for-somet...
744•speckx•3h ago•162 comments

AliExpress runs silent WebAudio fingerprinting that breaks Bluetooth multipoint

https://blog.laserphile.com/2026/08/aliexpress-webpage-keeping-multipoint.html
848•emctech•13h ago•280 comments

I should have loved biology (2020)

https://jsomers.net/i-should-have-loved-biology/
182•tyre•6h ago•67 comments

HTML Can Do That

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

Malicious Rust crate Arrayref runs a build-time payload

https://safedep.io/arrayref-proc-macro1-rust-build-time-malware/
372•abhisek•10h ago•352 comments

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

https://www.danielvaughn.dev/posts/huzzah/
194•danielvaughn•4h ago•110 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...
311•EwanG•23h ago•200 comments

Show HN: I trained a 125M model to autocomplete piano on-device

https://simedw.com/2026/08/20/midi-autocomplete/
478•simedw•11h ago•105 comments

Why aren't smart people happier? (2022)

https://www.experimental-history.com/p/why-arent-smart-people-happier
71•rafaelc•5h ago•113 comments

SpacetimeDB: A Short Technical Review

https://strn.cat/posts/spacetime/
50•hurrrr•4h ago•10 comments

Linux 7.2

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

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

https://github.com/zachahn/vomit
169•Bluestein•8h ago•184 comments

Detecting scraper bots through scroll behaviour

https://niki.cat/detecting-scraper-bots-through-scroll-behaviour
9•theanonymousone•1h ago•4 comments

Tidal Cycles – Live coding music with Algorithmic patterns

https://tidalcycles.org/
48•gjvc•4h ago•8 comments

How to compromise your system with a job interview

https://www.codedge.de/posts/how-to-compromise-your-system-with-a-job-interview
114•codedge•8h ago•93 comments

The Wonders of the Male Human Pelvis

https://nautil.us/the-wonders-of-the-male-human-pelvis-1283947
30•littlexsparkee•3h ago•12 comments

Sixtyfour (YC P25) Is Hiring

https://www.ycombinator.com/companies/sixtyfour/jobs/39SkSrA-software-engineering-intern
1•HPMOR•7h ago

Speeding Up (Small) Ruby Hashes

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

Code as an Artifact

https://pradeeproark.com/posts/code-as-an-artifact-means-to-an-end/
18•pradeeproark•2h ago•4 comments

Anti-AI fonts are useless and harmful

https://blog.yaros.ae/anti-ai-fonts-are-useless-and-harmful/
100•speckx•8h ago•69 comments

Mojo is now open source

https://www.modular.com/blog/mojo-open-source
331•visheshdembla•2d ago•70 comments

Watching TikTok and Instagram deactivates the cognitive control network: Study

https://www.rathbiotaclan.com/tiktok-videos-deactivate-key-cognitive-brain-regions/
289•Akasci•5h ago•111 comments

Every Model Cheats

https://dreadnode.io/research/every-model-cheats-prompt-level-mitigation-of-cheating-on-offensive...
75•vga805•10h ago•56 comments

Hacking with Claude on a $27 smart watch

https://www.mikekasberg.com/blog/2026/08/19/hacking-with-claude-on-a-27-smart-watch.html
79•speckx•9h ago•44 comments

DiffusionGemma Technical Report

https://arxiv.org/abs/2608.00146
129•gmays•10h ago•34 comments

Git at any scale

https://cursor.com/blog/git-at-any-scale
260•meetpateltech•2d ago•79 comments

In Which I Lose My Mind over Embeddings (HPLM Chapter 2)

https://www.maayanroth.com/blog/posts/hundred-page-lm-book-chapter-2.html
7•evakhoury•3d ago•0 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.