Skip to content
CAREERS

The team is small and stays that way.

Nobody here hands work to somebody else. If you pick up an area, you own its design, its code, its deploy and its 2am bugs — and its decisions.

How we work

No bureaucracy, no daily standup, no status reports. A green build and running software is the definition of done. Code review is serious and never personal.

What we build

Three products in production: a retrieval-grounded legal assistant, a multi-tenant Telegram platform, and an accounting system. Plus client work.

What we look for

Someone who has taken something all the way and kept it running. A short CV is fine; nothing to show is not.

OPEN ROLES · 0

No listed roles right now.

But if you build things at this level, write to us. No listing means no list — not no room. For the right person we make room.

Send us your work
tenant filter on channel queryPR #128
OPEN2 files · +18 −4daradesk
protected override void OnModelCreating(
- b.Entity<Channel>().HasQueryFilter(null);
+ b.Entity<Channel>().HasQueryFilter(
+ c => c.TenantId == _tenant.Current);
}
reviewrequested changes

Filter is right, but it has no test. Add one that catches a leak across two tenants.