alt.hn

7/27/2026 at 8:01:07 PM

Building a native C# implementation of CEL engine

https://bsid.io/writing/building-a-cel-engine-for-net

by jackedEngineer

7/30/2026 at 4:21:04 PM

I'm surprised (without any particular positive/negative valence) that the article doesn't mention using AI to write the port - especially since both CEL and protovalidate have fairly extensive conformance testing harnesses. The project should be right in the sweet spot for today's tools.

The omission is especially striking since most of the article sounds AI-authored to me. (Pangram agrees, for what that's worth.)

by akshayshah

7/30/2026 at 4:41:05 PM

The code is also clearly all vibecoded.

I think this is the usual we get these days: "Show HN: I built..." where in fact author did write neither the code nor the writeup.

by progbits

7/30/2026 at 6:17:26 PM

Is the "chore" commit subject prefix an AI thing? I've started seeing that at work too...

by rawling

7/30/2026 at 6:37:09 PM

Semantic git commits have been a thing for years - https://www.conventionalcommits.org/en/v1.0.0/

I've always liked them and tried to convince others to use them

AI models seem to like them as well

by jmkni

7/30/2026 at 6:59:10 PM

This was a thing before LLMs, but you’d frequently see it in open source repos. So LLMs are just regurgitating what they saw.

by vips7L

7/30/2026 at 5:13:27 PM

Maybe they just didn't want to deal with people arguing about our field's current omnipresent discourse topic in the context of their project?

by ameliaquining

7/30/2026 at 5:39:31 PM

I find it’s incredibly rude to subject coworkers or members of the public to reading vibe slop.

I don’t mind it under either of two conditions:

1. The slop is used as a starting point only - then thoroughly reviewed and edited to meet a human quality level

2. The article discloses up front that it is AI slop so I can decide if I want to spend my valuable time engaging with it.

by nxc18

7/30/2026 at 3:50:02 PM

> It’s the language behind Kubernetes admission policies, Envoy’s RBAC rules, Google Cloud IAM conditions, and gRPC’s protovalidate

Very small nitpick, but AFAIK protovalidate comes from Buf, not Google. While protovalidate DOES work with gRPC via backward compatibility (but also Buf's ConnectRPC), saying "gRPC's protovalidate" probably makes people think it came from Google.

Disclaimer: I have no affiliation with either Buf or Google.

by nu11ptr

7/30/2026 at 4:12:28 PM

Very fair point that protovalidate comes from Buf, not Google.

But it's worth noting that protovalidate can also work with plain gRPC - it's an independent library, and anyone can write a gRPC interceptor that uses it. Here's a community-supported example in Go: https://pkg.go.dev/github.com/grpc-ecosystem/go-grpc-middlew...

by akshayshah

7/30/2026 at 5:00:18 PM

I think its more important that protovalidate is not affiliated with grpc in any way. One needs a custom middleware to implement the protovalidate rules for your language used.

by javier2

7/30/2026 at 3:40:22 PM

This seems like it might be good way to guard state transitions in my PLM/PDM project

by xeonax