frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ask.com has closed

https://www.ask.com/
136•supermdguy•1h ago•64 comments

Ti-84 Evo

https://education.ti.com/en/products/calculators/graphing-calculators/ti-84-evo
393•thatxliner•9h ago•357 comments

Job Postings for Software Engineers Are Rapidly Rising

https://www.citadelsecurities.com/news-and-insights/2026-global-intelligence-crisis/
86•delichon•3h ago•28 comments

Artemis II Photo Timeline

https://artemistimeline.com/#artemis-ii-walkout-nhq202604010003
141•geerlingguy•2d ago•12 comments

New research suggests people can communicate and practice skills while dreaming

https://www.newyorker.com/culture/annals-of-inquiry/its-possible-to-learn-in-our-sleep-should-we
299•XzetaU8•11h ago•166 comments

LFM2-24B-A2B: Scaling Up the LFM2 Architecture

https://www.liquid.ai/blog/lfm2-24b-a2b
10•nateb2022•2d ago•1 comments

K3k: Kubernetes in Kubernetes

https://github.com/rancher/k3k
9•jzebedee•1h ago•1 comments

CollectWise (YC F24) Is Hiring

https://www.ycombinator.com/companies/collectwise/jobs/rEWfZ6R-senior-forward-deployed-engineer
1•OBrien_1107•1h ago

To Restore an Island Paradise, Add Fungi

https://e360.yale.edu/digest/atoll-islands-sea-level-rise-fungi
37•Brajeshwar•2d ago•2 comments

I built the Playwright for desktop apps. 80% token savings

https://github.com/lahfir/agent-desktop
28•lahfir•3h ago•4 comments

I'm Peter Roberts, immigration attorney who does work for YC and startups. AMA

145•proberts•14h ago•206 comments

Direct electrochemical black coffee quality appraisal using cyclic voltammetry

https://www.nature.com/articles/s41467-026-71526-5
36•bookofjoe•2d ago•9 comments

Lib0xc: A set of C standard library-adjacent APIs for safer systems programming

https://github.com/microsoft/lib0xc
117•wooster•10h ago•45 comments

Sourcefeed – a pop-up RSS service

https://www.sourcefeed.app/
14•bjhess•3d ago•3 comments

Ask HN: Who is hiring? (May 2026)

247•whoishiring•14h ago•263 comments

Eka’s robotic claw feels like we're approaching a ChatGPT moment

https://www.wired.com/story/when-robots-have-their-chatgpt-moment-remember-these-pincers/
117•zdw•2d ago•149 comments

The smelly baby problem

https://www.worksinprogress.news/p/how-disposable-diapers-conquered
149•dionysou•2d ago•89 comments

Show HN: WhatCable, a tiny menu bar app for inspecting USB-C cables

https://github.com/darrylmorley/whatcable
469•sleepingNomad•21h ago•134 comments

A Report on Burnout in Open Source Software Communities (2025) [pdf]

https://mirandaheath.website/static/oss_burnout_report_mh_25.pdf
54•susam•6h ago•12 comments

Whohas – Command-line utility for cross-distro, cross-repository package search

https://github.com/whohas/whohas
135•peter_d_sherman•14h ago•32 comments

Chasing a SharedKey signature mismatch: fix azurerm_storage_table_entity

https://topaz.thecloudtheory.com/blog/debugging-table-entity-auth/
8•kamilmrzyglod•1d ago•0 comments

Apocalypse Early Warning System

https://ews.kylemcdonald.net/
149•carlsborg•13h ago•79 comments

Whimsical Animations Course Open House

https://courses.joshwcomeau.com/wham/open-house/00-introduction
83•SpyCoder77•10h ago•9 comments

Create an MP4 video of a web page scrolling at a steady speed

https://github.com/upenn/web-scroll-video
8•shawnzam•3h ago•2 comments

City Learns Flock Accessed Cameras in Children's Gymnastics Room as a Sales Demo

https://www.404media.co/city-learns-flock-accessed-cameras-in-childrens-gymnastics-room-as-a-sale...
361•joshcsimmons•11h ago•97 comments

Tvheadend: Self-Hosted IPTV Server

https://tvheadend.org
22•hyperific•3d ago•7 comments

The gay jailbreak technique (2025)

https://github.com/Exocija/ZetaLib/blob/main/The%20Gay%20Jailbreak/The%20Gay%20Jailbreak.md
457•bobsmooth•12h ago•186 comments

Show HN: AI CAD Harness

https://fusion.adam.new/install
78•zachdive•12h ago•79 comments

Understand Anything

https://github.com/Lum1104/Understand-Anything
123•taubek•12h ago•38 comments

Ask HN: Who wants to be hired? (May 2026)

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