frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Qwen 3.8 27B

https://huggingface.co/Qwen/Qwen3.8-27B-FP8
873•erdaltoprak•10h ago•571 comments

Going Dark, and the era of law enforcement hacking

https://blog.cryptographyengineering.com/2026/08/14/everything-is-about-to-go-dark/
177•vslira•4h ago•109 comments

RISC-V: They should have known better

https://dmitry.gr/?r=06.%20Thoughts&proj=12.%20RV
102•kaycebasques•2h ago•53 comments

The case for overhauling American science

https://www.economist.com/by-invitation/2026/08/13/the-case-for-overhauling-american-science
23•andsoitis•1h ago•10 comments

Why does Opus 5 feel worse to work with?

https://mun-logadan.github.io/why-does-opus-5-feel-worse/
773•numeri•14h ago•705 comments

Stop sending me huge PRs; a rant

https://getsmall.xyz/post/cmstjfl9l000if70ljmpzr4va
43•trezm•2h ago•24 comments

Google is making private AI practical with homomorphic encryption

https://blog.google/security/how-google-is-making-private-ai-practical-with-homomorphic-encryption/
270•u1hcw9nx•9h ago•163 comments

RustDesk now supports true unattended remote access on Wayland

https://rustdesk.com/blog/unattended-remote-access-wayland/
215•rustdesk•8h ago•94 comments

Super Mario Derivations

https://fzakaria.com/2026/08/05/super-mario-derivations
43•domenkozar•1w ago•6 comments

Jane Street suffers $15B hit after meltdown at Situational Awareness

https://www.ft.com/content/47dd5308-dd17-404a-a615-61046defd697
60•bobstax•1h ago•18 comments

AI by Hand

https://www.byhand.ai/
194•sans_souse•9h ago•16 comments

Firefox is now the last major browser that still supports uBlock Origin

https://www.pcworld.com/article/3212428/firefox-is-now-the-last-major-browser-that-still-supports...
364•DemiGuru•5h ago•139 comments

eigendrum

https://eigendrum.com/#p=circle
16•bookofjoe•2h ago•2 comments

Ultraviolet Bird Photography

https://uvbirds.com/
106•EndXA•1w ago•22 comments

Introducing Toast 1

https://www.mixedbread.com/blog/toast-1
173•mplappert•9h ago•58 comments

I turned my RSS feeds into an e-ink newspaper to stop reading on my phone

https://heyjonny.dev/posts/rss-to-eink-newspaper/
144•speckx•10h ago•58 comments

Maximizing the value of your Claude Code sessions

https://claude.com/blog/maximizing-the-value-of-your-claude-code-sessions
130•twapi•8h ago•87 comments

New Lower and Upper Bounds for the Grothendieck Constant

https://arxiv.org/abs/2608.11158
34•surprisetalk•5h ago•6 comments

Show HN: Mole – Deep research agent for your terminal

https://github.com/lajosdeme/mole
46•lajosdeme•6h ago•7 comments

Turbo Pascal on CP/M, MSX-DOS and MS-DOS

http://pascal.hansotten.com/delphi/turbo-pascal-on-cpm-msx-dos-and-ms-dos/
67•rbanffy•2d ago•24 comments

The American sports plutocracy

https://www.derekthompson.org/p/the-american-sports-plutocracy-is
49•momentmaker•6h ago•33 comments

Seven books I keep close because I love them

https://blog.plover.com/2026/08/02/
294•surprisetalk•9h ago•129 comments

GLM-5.3: Frontier coding with emergent cyber capabilities

https://z.ai/blog/glm-5.3
1025•pella•19h ago•514 comments

Every exterior shot in The Taking of Pelham 123

https://iafisher.com/2026/07/pelham-123
28•evakhoury•4h ago•6 comments

Don't classify, hallucinate

https://softwaredoug.com/blog/2026/08/10/hypothetical-classifications
216•softwaredoug•4d ago•85 comments

Show HN: Ember – Redshift safe color palettes

https://github.com/carpdiem/ember
55•carpdiem•5d ago•13 comments

Show HN: LuaCAD – Parametric CAD Scripted in Lua

https://luacad.ad-si.com
70•adius•8h ago•14 comments

Ant teams beat gravity-based puzzle solvers

https://phys.org/news/2026-08-ant-teams-gravity-based-puzzle.html
4•wjSgoWPm5bWAhXB•4d ago•0 comments

Every Fucking Website (2020)

https://lxe.github.io/everywebsite/
738•doubletwoyou•10h ago•446 comments

A humble cabbage became one of the Forbidden City’s treasures (2025)

https://www.cnn.com/2025/11/10/style/jadeite-cabbage-taiwan-forbidden-city-curio-hnk-intl
54•dude250711•2d ago•7 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.