Skip to content

Instantly share code, notes, and snippets.

View markturansky's full-sized avatar

Mark Turansky markturansky

View GitHub Profile
@markturansky
markturansky / gist:d4ab560aaf9f0e88d477f3c2560e8a82
Created March 5, 2026 13:20
Comparison of Amber vs. Coderabbitai
Now I have both reviews to compare! Let me analyze the differences and similarities between CodeRabbit's review and my own review.
Comparison Analysis: CodeRabbit vs Claude Code Review
Functionality & Scope
Both reviews are functionally similar in their core purpose - identifying issues in a Kubernetes Helm chart that adds AWS Pod Identity support. Both caught critical configuration problems
that could lead to runtime failures.
Issues Identified - Overlap & Differences
> /amber.review is running… https://github.com/ambient-code/platform/pull/810
● I'll review the GitHub pull request #810. Let me start by loading the memory system and then fetching the PR diff to understand what changes need to be reviewed.
@markturansky
markturansky / gist:93b205a93ee1c1d0f3e96ec3880d3c97
Created March 4, 2026 23:33
Example /amber.review $worktree
> /amber.review is running… ~/projects/src/github.com/ambient/platform/platform-control-plane
● I'll perform a comprehensive code review of the platform-control-plane component. Let me start by loading the memory system files and identifying what needs to be reviewed.
● Update Todos
⎿  ☐ Load all required memory system files for control-plane review
☐ Identify changes to review in platform-control-plane
☐ Perform comprehensive code review against standards
☐ Classify findings by severity
☐ Generate review report for platform-control-plane
Senior Technical Advisor Evaluation: ambient-api-server (rh-trex-ai) vs POC Backend (Gin + K8s)
Clarification on the POC Branch
The feature/cdr-to-database branch does not transform the backend's persistence layer. It adds a standalone migration tool (tools/crd-migrate/) that exports CRDs to PostgreSQL. The components/backend/ code remains 100% Kubernetes-native. So this
evaluation compares ambient-api-server (rh-trex-ai framework, PostgreSQL-native) against the existing backend (Gin framework, K8s CRD persistence) as competing API architectures.
---
1. Framework Maturity & Community Risk
@markturansky
markturansky / ambient-trex-hyperfleet-feedback-loop.md
Last active February 3, 2026 21:25
Ambient->Trex->Hyperfleet Feedback loop

Dogfooding Feedback Loop: Ambient → TRex → Hyperfleet

The Self-Reinforcing System

Ambient (AI tooling) develops TRex (template) which generates Hyperfleet (real services) which provides feedback back to both TRex and Ambient.

┌─────────────────────────────────────────────────────────────────┐
│                    DOGFOODING FEEDBACK LOOP                     │
└─────────────────────────────────────────────────────────────────┘
Pension Math
March 2, 2011 at 10:13am
Several people have linked to the following blog entry on Fortune:
http://blogs.forbes.com/rickungar/2011/02/25/the-wisconsin-lie-exposed-taxpayers-actually-contribute-nothing-to-public-employee-pensions/
I think the “update” section is extremely important, particularly the last paragraph:
“As a result, the taxpayers do not contribute to the public employee pension programs so much as serve as insurers. If their elected officials have been sloppy, the taxpayers must stand behind it. But if the market continues to perform as it has been performing this past year, don’t be surprised if the funding crisis begins to recede. If it does, what will you say then?”
@markturansky
markturansky / gist:3f2273ae39f970ff56ff22a047cc6345
Last active August 3, 2018 07:32
GoLang Stack implementation w/ maximum capacity
package useranalytics
type Stack struct {
top *Element
size int
max int
}
type Element struct {
value interface{}