frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Plasma Bigscreen – 10-foot interface for KDE plasma

https://plasma-bigscreen.org
408•PaulHoule•9h ago•115 comments

UUID package coming to Go standard library

https://github.com/golang/go/issues/62026
177•soypat•7h ago•98 comments

this css proves me human

https://will-keleher.com/posts/this-css-makes-me-human/
257•todsacerdoti•11h ago•87 comments

QGIS 4.0

https://changelog.qgis.org/en/version/4.0/
16•jonbaer•39m ago•0 comments

Maybe there's a pattern here?

https://dynomight.net/pattern/
111•surprisetalk•2d ago•65 comments

Galileo's handwritten notes found in ancient astronomy text

https://www.science.org/content/article/galileo-s-handwritten-notes-found-ancient-astronomy-text
119•tzury•1d ago•24 comments

LLMs work best when the user defines their acceptance criteria first

https://blog.katanaquant.com/p/your-llm-doesnt-write-correct-code
210•dnw•8h ago•171 comments

Working and Communicating with Japanese Engineers

https://www.tokyodev.com/articles/working-and-communicating-with-japanese-engineers
15•zdw•3d ago•4 comments

Helix: A post-modern text editor

https://helix-editor.com/
131•doener•9h ago•43 comments

Querying 3B Vectors

https://vickiboykis.com/2026/02/21/querying-3-billion-vectors/
43•surprisetalk•3d ago•5 comments

Show HN: Moongate – Ultima Online server emulator in .NET 10 with Lua scripting

https://github.com/moongate-community/moongatev2
253•squidleon•19h ago•139 comments

Sarvam 105B, the first competitive Indian open source LLM

https://www.sarvam.ai/blogs/sarvam-30b-105b
26•logicchains•1h ago•2 comments

Editing changes in patch format with Jujutsu

https://www.knifepoint.net/~kat/kb-jj-patchedit.html
21•cassepipe•2d ago•2 comments

What canceled my Go context?

https://rednafi.com/go/context-cancellation-cause/
55•mweibel•3d ago•28 comments

The Longing (1999)

https://www.cluetrain.com/book/longing.html
18•herbertl•3d ago•1 comments

Modernizing swapping: virtual swap spaces

https://lwn.net/Articles/1059201/
22•voxadam•1d ago•13 comments

Tech employment now significantly worse than the 2008 or 2020 recessions

https://twitter.com/JosephPolitano/status/2029916364664611242
875•enraged_camel•15h ago•582 comments

Show HN: Kula – Lightweight, self-contained Linux server monitoring tool

https://github.com/c0m4r/kula
51•c0m4r•9h ago•23 comments

CT Scans of Health Wearables

https://www.lumafield.com/scan-of-the-month/health-wearables
215•radeeyate•19h ago•44 comments

My application programmer instincts failed when debugging assembler

https://landedstar.com/blog/posts/how-my-application-programmer-instincts-failed-when-debugging-a...
8•lifefeed•1d ago•6 comments

Launch HN: Palus Finance (YC W26): Better yields on idle cash for startups, SMBs

50•sam_palus•15h ago•72 comments

Entomologists use a particle accelerator to image ants at scale

https://spectrum.ieee.org/3d-scanning-particle-accelerator-antscan
128•gmays•17h ago•24 comments

The shady world of IP leasing

https://acid.vegas/blog/the-shady-world-of-ip-leasing/
109•alibarber•12h ago•61 comments

C# strings silently kill your SQL Server indexes in Dapper

https://consultwithgriff.com/dapper-nvarchar-implicit-conversion-performance-trap
97•PretzelFisch•10h ago•68 comments

Hardening Firefox with Anthropic's Red Team

https://www.anthropic.com/news/mozilla-firefox-security
564•todsacerdoti•21h ago•153 comments

A tool that removes censorship from open-weight LLMs

https://github.com/elder-plinius/OBLITERATUS
163•mvdwoord•19h ago•76 comments

Tell HN: I'm 60 years old. Claude Code has re-ignited a passion

423•shannoncc•9h ago•294 comments

Show HN: 1v1 coding game that LLMs struggle with

https://yare.io
21•levmiseri•1d ago•6 comments

A Modular Robot Dashboard

https://github.com/transitiverobotics/transact
19•chfritz•1d ago•0 comments

Workers who love ‘synergizing paradigms’ might be bad at their jobs

https://news.cornell.edu/stories/2026/03/workers-who-love-synergizing-paradigms-might-be-bad-thei...
556•Anon84•20h ago•310 comments
Open in hackernews

Fast(er) regular expression engines in Ruby

https://serpapi.com/blog/faster-regular-expression-engines-in-ruby/
60•davidsojevic•10mo ago

Comments

yxhuvud•10mo ago
Eww, pretending to support utf8 matchers while not supporting them at all was not pretty to see.
gitroom•10mo ago
Honestly that part bugs me, fake support is worse than no support imo
kayodelycaon•10mo 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•10mo 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•10mo 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•10mo 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.