HackerTrans
TopNewTrendsCommentsPastAskShowJobs

chtefi

no profile record

Submissions

Testing a Kafka Proxy: Taming Millions of Permutations

conduktor.io
2 points·by chtefi·16 ngày trước·0 comments

Loop Engineering: When Generation Gets Cheap, Judgment Gets Expensive

sderosiaux.substack.com
2 points·by chtefi·16 ngày trước·0 comments

How to Tell If Your Kafka Self-Service Is Working?

medium.com
2 points·by chtefi·17 ngày trước·0 comments

MCP is definitely not dead

sderosiaux.substack.com
3 points·by chtefi·tháng trước·1 comments

Kafka Partitions are the wrong ordering abstraction. Keys are

medium.com
1 points·by chtefi·tháng trước·0 comments

Most agent reliability problems are data engineering problems

sderosiaux.substack.com
2 points·by chtefi·2 tháng trước·0 comments

Unified macOS service console for launchd and Homebrew

github.com
3 points·by chtefi·2 tháng trước·1 comments

Agents Are Microservices with a Brain

blog.dataengineerthings.org
1 points·by chtefi·2 tháng trước·0 comments

Do LLMs Dream? The Post-Transformers Generation

sderosiaux.substack.com
2 points·by chtefi·3 tháng trước·0 comments

Is Anthropic Enshittifying their core product?

sderosiaux.substack.com
2 points·by chtefi·3 tháng trước·1 comments

Stream your terminal. Watch AI agents work. Like Twitch, for shells

github.com
3 points·by chtefi·3 tháng trước·0 comments

$200 subscription VS $3,650 in compute

sderosiaux.substack.com
3 points·by chtefi·3 tháng trước·4 comments

Kafka Explorer – Configuration, Protocol, Wire Format, Errors, Flink SQL

kafka-options-explorer.conduktor.io
2 points·by chtefi·3 tháng trước·0 comments

Paper Cuts #2: RAG is dead, long live memory

sderosiaux.substack.com
3 points·by chtefi·3 tháng trước·0 comments

Decisions, extracted knowledge, handoff context: reasoning data infrastructure

sderosiaux.substack.com
2 points·by chtefi·4 tháng trước·0 comments

How to stop your AI agent from gaming its own KPI

sderosiaux.substack.com
1 points·by chtefi·4 tháng trước·1 comments

Algorithm names are the new cognitive activators. Your vocabulary is your tool

sderosiaux.substack.com
1 points·by chtefi·4 tháng trước·0 comments

Claude Code told me what tools it needs to work faster

sderosiaux.substack.com
33 points·by chtefi·4 tháng trước·4 comments

Semantic closure: why compilers know when they are right and LLMs do not

sderosiaux.substack.com
5 points·by chtefi·5 tháng trước·0 comments

Prompt optimization can outperform reinforcement learning on LLMs

sderosiaux.substack.com
1 points·by chtefi·6 tháng trước·0 comments

comments

chtefi
·tháng trước·discuss
I don't like seeing people market "mcp is dead" and always say the same thing, talking about context and how CLIs are better, so wrote this.

What do you think, what have you saw in terms of usage/adoption/issues?
chtefi
·2 tháng trước·discuss
Working on https://kapturekafka.dev, a desktop app for Kafka protocol inspection. Think Wireshark or Fiddler, but native for Kafka.

Useful to debug local Kafka apps against any cluster, intercepts the traffic, decodes the protocol. You see interesting (and weird) things when you look at the protocol. Still early, though already useful for local debugging when you know what you want.
chtefi
·2 tháng trước·discuss
I run a lot of small background services on my Mac (thanks Claude/Codex), and Homebrew services that I barely look at. It felt surprisingly hard to know what was actually happening on my machine and investigate/fix quickly, so I built Launchdeck: a fast TUI for launchd jobs and Homebrew services.
chtefi
·4 tháng trước·discuss
Mitigations mentioned:

- Make the validator read-only for the agent. Mount it as read-only in the container, or hash your eval scripts at startup and verify before each run. If the agent can write to anything in its evaluation path, it can (will) game it.

- Log the full trajectory, not just the output. Every tool call, file diff, reasoning step. Then run a second agent over the trace with no knowledge of the KPI: it only knows what honest execution looks like and will use its internal honest alignment to assess it.

- Write system prompts like job descriptions, not optimization targets. Name a reviewer. Give the agent permission to fail ("if you can't hit the target, explain why").

- Walk your own prompts: what's the metric, what can the agent write, and can it reach the metric by modifying the measurement instead of doing the work? If yes, close that path.
chtefi
·7 tháng trước·discuss
Wanted to build a curated list of truly free, publicly accessible real-time datasets and streaming sources to have real-life data, and see their shape quickly in the browser (WebSocket, SSE). Also led me to build kafka-connect-websocket (https://github.com/conduktor/kafka-connect-websocket) to publish into Kafka directly.