HN user

emreb

834 karma
Posts171
Comments56
View on HN
medium.com 1mo ago

Seventy years of mathematics built the thing we call AI

emreb
3pts0
fonts.google.com 2mo ago

Datatype – Google Fonts

emreb
1pts0
www.seangoedecke.com 2mo ago

I don't like the "staff engineer archetypes"

emreb
2pts0
hackaday.com 2mo ago

Building a C-3PO You Can Talk To

emreb
1pts0
news.ycombinator.com 2mo ago

May the Fourth Be with You

emreb
4pts0
pkg.go.dev 5mo ago

Inline package – golang.org/x/tools/go/analysis/passes/inline – Go Packages

emreb
1pts0
villagesql.com 5mo ago

VillageSQL: A New Path for MySQL in the Agentic AI Era

emreb
2pts0
github.com 5mo ago

Vritual Screen: macOS utility that captures a region of your screen and mirrors

emreb
1pts0
strategizeyourcareer.com 6mo ago

The biggest obstacle for engineer productivity in 2026

emreb
1pts0
github.com 6mo ago

ChatPRD/lennys-podcast-transcripts: Transcripts from all Lenny's podcasts

emreb
1pts0
www.wired.com 6mo ago

What is the 'Super Flu' that is spreading in Europe and the United States?

emreb
7pts3
iss-sim.spacex.com 7mo ago

SpaceX – ISS Docking Simulator

emreb
3pts0
news.ycombinator.com 7mo ago

Tell HN: Happy Thanksgiving – Grateful

emreb
4pts3
github.com 7mo ago

ZeroLu/awesome-nanobanana-pro: list of curated Nano Banana pro prompts

emreb
4pts0
objectiveunclear.com 7mo ago

LHR London – Live 3D Flight Tracker – Air Loom

emreb
3pts0
cluesbysam.com 8mo ago

Clues by Sam

emreb
2pts0
miras.global 8mo ago

Miras – Trustless Crypto Inheritance

emreb
1pts0
www.cerbos.dev 9mo ago

Zero-Trust for microservices, a practical blueprint

emreb
3pts0
www.siddharthbharath.com 9mo ago

Software-as-a-Prompt: How AI is enabling on-demand software

emreb
1pts0
a16z.com 9mo ago

A Deep Dive into MCP and the Future of AI Tooling

emreb
1pts0
claude.ai 9mo ago

Death Star Venture Capital Pitch Deck

emreb
1pts0
github.com 9mo ago

Nicespoon/retro-adsb-radar: Aircraft radar display with retro styling

emreb
3pts0
pypi.org 9mo ago

PyPI cerbos-fastmcp: FastMCP powered by Cerbos for authorization checks

emreb
2pts0
lwn.net 9mo ago

Radicle: Peer-to-Peer Collaboration with Git (2024)

emreb
98pts28
www.cerbos.dev 9mo ago

MCP and AI Agent Authorization. A Guide to Securing the New AI Perimeter

emreb
4pts0
www.theverge.com 10mo ago

The influencer in this Vodafone ad isn't real

emreb
1pts0
www.cerbos.dev 10mo ago

Stop trusting your employees. Uber's "God View" proves you can't

emreb
4pts0
github.com 10mo ago

Fiberplane/MCP: Lightweight, composable MCP framework for TypeScript

emreb
5pts0
www.kuppingercole.com 10mo ago

Ten Next-Gen Trends to Watch

emreb
2pts1
newsletter.posthog.com 10mo ago

The benefits of being an open-source startup

emreb
2pts0
No Hello 1 year ago

I think it is more of a if you are not there right now, and won't be able to respond, I am not going to write it all to wait for an answer later. I think most people want to make sure someone is there to respond before committing to a conversation.

You are overlooking a very simple fact in your comment. Cerbos is open source and has an Apache2 license. Therefore most of your points are irrelevant:

  * No one needs to pay
  * No need for a company to be around for the next 100 years.

Keycloak handles both authentication and authorization and they are tightly coupled. Cerbos solely focuses on authorization and is capable of integrating with any authentication method that is already existing in your application.

Built-in logging is definitely one of the main benefits. However, the following are also other major benefits of using a service like Cerbos:

  * By running as a standalone service, any part of your application stack (in any language) can make consistent authorization checks 
  * Support for most major programming languages via SDKs
  * Infinite scalability via serverless functions or sidecar deployment model
  * GitOps enabled policy development and deployment via a full testing suite for ci/cd pipelines. 
  * Full audit trails of every decision made and how they were derived.
  * Simple human readable YAML policies
  * Ability to have different policies for different environments and ability to have canary deployments
You can find more about all of the benefits and features on our product page[0]

[0] https://cerbos.dev/product-features

Sorry about that and thank you for bringing it to our attention. As you might imagine we spend a lot of time on that site and did not notice the option to reject is not available. We will action this very soon.

Disclaimer: I am the co-founder of Cerbos[0]

Auth is actually a combination of two things: authentication and authorization.

Whatever you do, please do not build either by yourself. It always starts simple and it is guaranteed to get more complex than anyone is willing to maintain (unless you have a dedicated security engineering team)

There are many providers for each. Authentication is about the user's identity and where they belong in the organization (directory), and authorization is about what they are allowed to do based on their identity, role, and attributes.

Cerbos[0] is an open-source authorization solution which integrates with many identity providers to enable your product to implement fine grained permissions. We have integrated with the most popular authentication providers and they can be found on our ecosystem page[1]

Cerbos also has an out-of-the-box integration with Prisma[2] which enables you to fetch only those records that the user has permissions to from your data store - one of the most tricky parts of implementing authorization.

Whatever solution you end up going with, please save yourself some time and do not re-invent the wheel!

[0] https://cerbos.dev [1]: https://cerbos.dev/ecosystem [2]: https://cerbos.dev/blog/fully-featured-authorization-for-you...

Disclaimer: I work on Cerbos [0] (an alternative to OPA based authorization systems focusing on RBAC/ABAC) to deliver enterprise-grade access management for any application.

There is another alternative approach to policy-as-code: policy-as-configuration. At Cerbos we believe that for most use cases, using a full programming language is too much work and creates problems such as being hard to comprehend and work with (because it's a completely different language with its own idiosyncrasies) and being too open-ended (thus making it easy to write lots of very complicated code with surprising side effects and performance issues). The rules for your authorization policies can be human readable for those developers who cannot spend lots of time learning a whole new programming language, and is independent of any particular language, architecture or tech stack.

We’ve built and open sourced Cerbos trying to make the deployment and management of an authorization service as simple as possible while configuration rules as flexible as possible. While doing so, we also achieved response times that are faster than OPA.

[0] https://cerbos.dev

Disclaimer: I am the co-founder of Cerbos.

Thanks for explaining the problem space so well and referring to Cerbos[1] as contextual solution.

We had to build these systems in the past so many times and we were tired of reinventing the wheel. With Cerbos we aim to turn this problem space into configuration rather than code and enable enterprise-grade access management for any application.

[1] https://cerbos.dev

Cerbos | Remote | Worldwide | Full-time | DevRel Manager

Cerbos is an open source enterprise-grade access management service for any application.

We are building a decoupled authorization service for those who do not want to reinvent the wheel when it comes to user permissions, authorization, RBAC, ABAC etc.

We are looking for an experienced dev-rel manager to join our globally remote team. You will be in charge of creating and executing a developer relations communication strategy and engaging with developers, suggest solutions, and produce accessible technical content.

For more information please see: https://cerbos.dev/join-us

Looking forward to hearing from you. emre@

Unfortunately, the article does not talk about the GAS prices to make a transaction. For an average purchase of milk or bread the transaction cost will be too high to make crypto a feasible option for daily purchases during a war.

Seems like a scam to collect credit card information from browsers that are not safe enough. When I click on the name field I get a message saying "Automatic credit card filling is disabled because this form does not ..."

Disclaimer, I am a founder of Cerbos. At Cerbos, rather than writing policies in Rego, you can write them in a much simpler YAML/JSON (much more like AWS IAM)

(a bit late to the party)

Hi Fabian, At Cerbos we had to handle this issue as well and wrote a blog post about [1] how we can convert a policy into a generic AST that you can use in your data filtering logic on your data storage. This way you can empower your data storage queries to only fetch the relevant records.

To showcase how this works, we have released a Prisma ORM plugin [2] that converts our AST to Prisma filters - you can see a demo on Prisma’s YouTube channel[3]

[1] https://cerbos.dev/blog/filtering-data-using-authorization-l...

[2] https://cerbos.dev/blog/fully-featured-authorization-for-you...

[3] https://youtu.be/lqiGj02WVqo?t=3616