frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

OpenRouter is joining Stripe

https://openrouter.ai/blog/announcements/openrouter-is-joining-stripe/
428•rvz•3h ago•245 comments

Go 1.27

https://go.dev/blog/go1.27
297•database64128•2h ago•52 comments

Unsloth Dynamic 3.0 GGUFs

https://unsloth.ai/docs/basics/dynamic-3.0-ggufs
106•jonesy827•2h ago•26 comments

Unlocking a locked/deactivated e-waste Cricut Maker

https://sprocketfox.io/xssfox/2026/07/01/cricut-unlock/
61•1e1a•2h ago•14 comments

Router by Ramp

https://router.com
70•zackfield•2h ago•38 comments

A joke domain purchase turned in geopolitical warfare

https://sprocketfox.io/xssfox/2026/08/19/sondehub-and-war/
640•kareiva•10h ago•84 comments

Google replaced Git tags for certain source code with obtaining via Google Drive

https://grapheneos.social/@GrapheneOS/117057099753905023
117•Animux•3h ago•29 comments

Pressed Penny Machine Map

https://pennypresses.net/home/map.php
20•willmeyers•1h ago•8 comments

Casio F-B100W-1A

https://www.casio.com/uk/watches/casio/product.F-B100W-1A/
207•__fst__•6h ago•157 comments

The little-known winstart.bat batch file

https://devblogs.microsoft.com/oldnewthing/20260811-00/?p=112605
29•ingve•4d ago•0 comments

Geolocating a random island using geometry and CUDA programming

https://yassa9.github.io/osint/gralhix-004/
367•yassa9•9h ago•64 comments

XWayland 26.1-rc1 Released Two Years After the Last Release

https://lists.x.org/archives/xorg/2026-August/062280.html
18•ErenayDev•1h ago•0 comments

Ornith-1.5: From Self-Scaffolding to Self-Improvement

https://ornith.ai/ornith_1_5.html
146•CommonGuy•6h ago•44 comments

A portable, sensitive, low power, analog Geiger counter

https://ludens.cl/Electron/geiger2/geiger2.html
15•crorella•3d ago•0 comments

Mathematics in the age of AI

https://arxiv.org/abs/2608.16753
82•jonbaer•6h ago•61 comments

DFlash 2: Keep Drafting Parallel

https://inco.ai/blog/dflash2/
16•mike-the-brain•1h ago•3 comments

Extensible Software in the age of LLMs

https://jeremymorrell.dev/blog/extensible-software-in-the-age-of-llms/
83•coloneltcb•5h ago•36 comments

How Kubernetes Probes Work

https://ngrok.com/blog/probes
94•cyndunlop•5h ago•18 comments

fx :Tiny, open, native coding agent.

https://fx.sh
135•handfuloflight•23h ago•64 comments

Rules of Good Social Skills (2025)

https://liamrosen.com/2025/07/24/33-rules-of-good-social-skills/
45•bilsbie•2h ago•18 comments

Remote workers report the highest well-being in study of 7,700 employees

https://www.colorado.edu/today/2026/08/12/remote-workers-report-highest-well-being-study-7700-emp...
390•downbad_•5h ago•184 comments

PostgreSQL for Everything

https://www.raphaelbauer.com:443/posts/postgresql-everything/
261•karlmush•8h ago•168 comments

Digital Immortality

https://dogdogfish.com/blog/2026/08/19/digital-immortality/
16•matthewsharpe3•1h ago•2 comments

Introducing MicroLighter

https://daverupert.com/2026/08/microlighter/
37•tobr•3h ago•7 comments

Launch HN: OneCLI (YC S26) – OSS sandboxed agent harness for teams

https://github.com/onecli/onecli
41•guyb3•5h ago•13 comments

Air Theremin – a browser theremin you play by waving at your webcam

https://theremin.bizibah.com/
220•gurov•11h ago•78 comments

Pacing model development in an era of cyber-critical capabilities

https://openai.com/index/pacing-model-development-cyber-capabilities/
99•j4mie•1d ago•97 comments

From Quantum Relative Entropy to the Semiclassical Einstein Equations

https://arxiv.org/abs/2510.24491
15•Luc•1h ago•0 comments

Moderna reports first positive Phase 3 for mRNA neoantigen therapy in melanoma

https://twitter.com/NoubarAfeyan/status/2090050162441752787
465•heydenberk•7h ago•213 comments

Microgpt in pure C hits 10M tps on Apple m5

https://github.com/vixhal-baraiya/microgpt-c
110•dhorthy•1d ago•36 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.