frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Jemalloc 5.4.0

https://github.com/jemalloc/jemalloc/releases/tag/5.4.0
126•gkfasdfasdf•5h ago•34 comments

The scourge of x86 emulation

https://fex-emu.com/Scourge-of-emulation/
126•dagmx•5h ago•20 comments

Astra for Law

https://openai.com/index/astra-for-law/
484•vertigoruntime•13h ago•516 comments

Bonsai 2 27B: Near-Lossless Compression in a 9x Smaller Footprint

https://prismml.com/news/bonsai-2-27b
433•JonSchneider•12h ago•127 comments

Bend – A language that blocks AI mistakes via proof, on CPU and GPU

https://bend-lang.com/
455•nicolas-siplis•12h ago•213 comments

Qwen 3.8 Omni Flash

https://qwen.ai/blog?id=qwen3.8-omni-flash
207•jjcm•10h ago•78 comments

When the fractional part of a float fixes your shader

https://crocidb.com/post/when-the-fractional-part-of-a-float-fixes-your-shader/
21•vinhnx•1d ago•1 comments

Hister: A private search engine for the pages you visit and the files you keep

https://github.com/asciimoo/hister
602•bookofjoe•16h ago•163 comments

Wax motor

https://en.wikipedia.org/wiki/Wax_motor
396•mhb•1d ago•68 comments

Pre-Greek: The lost language hidden within Ancient Greek

https://linguisticdiscovery.com/posts/pre-greek/
77•axiologist•6h ago•32 comments

A heap overflow and SSO misconfiguration to compromise OpenAI internal repos

https://www.hacktron.ai/blog/hacking-openai
348•Handy-Man•6h ago•143 comments

Fujitsu launches made-in-Japan next-generation CPU FUJITSU-MONAKA

https://global.fujitsu/en-global/pr/news/2026/09/14-02
589•my123•2d ago•227 comments

Shapelearn Qwen 3.8 27B (13.1 GB VRAM)

https://byteshape.com/blogs/Qwen3.8-27B/
63•syntaxing•7h ago•7 comments

How to Write with an LLM

https://sockpuppet.org/blog/2026/09/17/how-to-write-with-an-llm/
159•joeriddles•11h ago•90 comments

Ask A Monk – A digital wilderness for thoughts with no immediate answer

https://askamonk.online
39•13613288957•7h ago•23 comments

Why Does the Universe Expand?

https://cosmicave.org/2026/09/15/why-does-the-universe-expand/
58•the__alchemist•1d ago•49 comments

Flet 1.0 – Build cross-platform apps in Python

https://flet.dev/
119•absqueued•12h ago•55 comments

Telstra outage: The night a network decided the year was 2006

https://www.netnod.se/blog/telstra-outage-night-network-decided-year-was-2006
52•TMWNN•8h ago•23 comments

Speeding up gearhash on ARM64

https://sam.dev/blog/gearhash-on-arm64
15•pranitha_m•2d ago•0 comments

Diplodocus, Long Thought Exclusively American, Turns Up in Spain

https://www.sci.news/paleontology/spanish-diplodocus-15064.html
66•embedding-shape•2d ago•37 comments

Apple detectives solved mystery of ancient tree and rewrote the history of fruit

https://www.scientificamerican.com/article/how-apple-detectives-solved-the-mystery-of-an-ancient-...
42•nkurz•1d ago•6 comments

Fixing an NZXT Signal 4K30 part 2: the green/pink video bug

https://www.downtowndougbrown.com/2026/09/fixing-an-nzxt-signal-4k30-part-2-the-green-pink-video-...
32•zdw•4d ago•9 comments

Why I didn’t sign the Fields medallists’ letter

https://gowers.wordpress.com/2026/09/17/why-i-didnt-sign-the-fields-medallists-letter/
256•simianwords•1d ago•366 comments

CrowdSec Source Code Leak

https://www.crowdsec.net/blog/crowdsec-statement-source-code-exposure
151•eccgecko•17h ago•46 comments

The most important product decision is what you don't build

https://liamnugent.me/posts/what-you-dont-build/
104•ChrisArchitect•12h ago•36 comments

Show HN: Snapdrop: Instantly share files between devices. No setup, no signup

https://snapdrop.me
73•Capira•12h ago•34 comments

Infinite-Parameter LLMs: Generating and Adapting Weights from Live Data

https://arxiv.org/abs/2609.18842
143•Betelbuddy•16h ago•39 comments

How do we prevent mathemathics from devolving into the Medieval Era of secrecy?

https://mathoverflow.net/questions/515260/how-do-we-prevent-mathematics-from-devolving-into-the-m...
118•jjgreen•2d ago•105 comments

Khipu (Quipu) Field Guide

https://www.khipufieldguide.com/
18•SanjayMehta•2d ago•0 comments

How Uber Protects Against Retry Storms

https://www.uber.com/us/en/blog/protecting-against-retry-storms/
95•iscmt•12h ago•41 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.