frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Iceland declares ocean-current instability a national security risk

https://www.dagens.com/news/iceland-declares-ocean-current-instability-a-national-security-risk
188•donohoe•3h ago•84 comments

It's Always the Process, Stupid

https://its.promp.td/its-always-the-process-stupid/
194•DocIsInDaHouse•4h ago•69 comments

Hardening the C++ Standard Library at scale

https://queue.acm.org/detail.cfm?id=3773097
31•ndesaulniers•6d ago•2 comments

An Update on the Farphone's Battery

https://far.computer/battery-update/
7•birdculture•21m ago•5 comments

Testing Shows Automotive Glassbreakers Can't Break Modern Automotive Glass

https://www.core77.com/posts/138925/Testing-Shows-Automotive-Glassbreakers-Cant-Break-Modern-Auto...
55•surprisetalk•2h ago•35 comments

DNS LOC Record (2014)

https://blog.cloudflare.com/the-weird-and-wonderful-world-of-dns-loc-records/
92•mikejeays•4h ago•26 comments

Hachi: An Image Search Engine

https://eagledot.xyz/hachi.md.html
78•warangal•4h ago•11 comments

Bronze Age mega-settlement in Kazakhstan has advanced urban planning, metallurgy

https://archaeologymag.com/2025/11/bronze-age-mega-settlement-in-kazakhstan/
65•CGMthrowaway•1w ago•9 comments

AccessOwl (YC S22) Is Hiring a Technical Account Manager (IAM)

https://www.ycombinator.com/companies/accessowl/jobs/dGC3pcO-technical-account-manager-identity-a...
1•philipeller•1h ago

Zero Knowlege Proof of Compositeness

https://www.johndcook.com/blog/2025/11/29/zkp-composite/
8•ColinWright•46m ago•0 comments

Show HN: Network Monitor – a GUI to spot anomalous connections on your Linux

6•grigio•5d ago•0 comments

The CRDT Dictionary: A Field Guide to Conflict-Free Replicated Data Types

https://www.iankduncan.com/engineering/2025-11-27-crdt-dictionary/
66•birdculture•6h ago•3 comments

We're learning more about what Vitamin D does to our bodies

https://www.technologyreview.com/2025/11/21/1128206/vitamin-d-bodies-bone-health-immune/
53•Brajeshwar•1h ago•18 comments

System 7 natively boots on the Mac mini G4

https://macos9lives.com/smforum/index.php?topic=7711.0
287•ibobev•15h ago•81 comments

Major AI conference flooded with peer reviews written by AI

https://www.nature.com/articles/d41586-025-03506-6
110•_____k•3h ago•68 comments

Building road signs at home using a Cricut Machine

https://annanay.dev/build-a-signboard/
19•annanay•3d ago•6 comments

WinApps: Run Windows apps as if they were a part of the native Linux OS

https://github.com/winapps-org/winapps
271•klaussilveira•4d ago•131 comments

WebR – R in the Browser

https://webr.sh/
72•creata•5d ago•25 comments

Airbus A320 – intense solar radiation may corrupt data critical for flight

https://www.airbus.com/en/newsroom/press-releases/2025-11-airbus-update-on-a320-family-precaution...
449•pyrophoenix•21h ago•143 comments

Garfield's Proof of the Pythagorean Theorem

https://en.wikipedia.org/wiki/Garfield%27s_proof_of_the_Pythagorean_theorem
134•benbreen•12h ago•67 comments

Show HN: Explore what the browser exposes about you

https://neberej.github.io/exposedbydefault/
165•coffeecoders•5d ago•56 comments

Every mathematician has only a few tricks (2020)

https://mathoverflow.net/questions/363119/every-mathematician-has-only-a-few-tricks
209•nill0•17h ago•53 comments

Imgur geo-blocked the UK, so I geo-unblocked my network

https://blog.tymscar.com/posts/imgurukproxy/
463•tymscar•1d ago•155 comments

Running a Business Means Contact with Reality

https://fredkozlowski.com/2025/11/02/running-a-business-means-contact-with-reality/
64•fkozlowski•3d ago•35 comments

Confessions of a Software Developer: No More Self-Censorship

https://kerrick.blog/articles/2025/confessions-of-a-software-developer-no-more-self-censorship/
322•Kerrick•20h ago•276 comments

Build Your Own Router with URLPattern()

https://jschof.dev/posts/2025/11/build-your-own-router/
48•tobr•4d ago•23 comments

Anthony Bourdain's Lost Li.st's

https://bourdain.greg.technology/
138•gregsadetsky•3d ago•36 comments

So you wanna build a local RAG?

https://blog.yakkomajuri.com/blog/local-rag
362•pedriquepacheco•1d ago•92 comments

Show HN: I built Magiclip – an all-in-one AI studio

https://magiclip.io/
35•kokau•6h ago•7 comments

OCaml maintainers reject massive AI-generated pull request

https://devclass.com/2025/11/27/ocaml-maintainers-reject-massive-ai-generated-pull-request/
5•Qem•58m ago•1 comments
Open in hackernews

Fast(er) regular expression engines in Ruby

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

Comments

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