HackerTrans
トップ新着トレンドコメント過去質問紹介求人

chtefi

no profile record

投稿

Testing a Kafka Proxy: Taming Millions of Permutations

conduktor.io
2 ポイント·投稿者 chtefi·16 日前·0 コメント

Loop Engineering: When Generation Gets Cheap, Judgment Gets Expensive

sderosiaux.substack.com
2 ポイント·投稿者 chtefi·16 日前·0 コメント

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

medium.com
2 ポイント·投稿者 chtefi·17 日前·0 コメント

MCP is definitely not dead

sderosiaux.substack.com
3 ポイント·投稿者 chtefi·先月·1 コメント

Kafka Partitions are the wrong ordering abstraction. Keys are

medium.com
1 ポイント·投稿者 chtefi·先月·0 コメント

Most agent reliability problems are data engineering problems

sderosiaux.substack.com
2 ポイント·投稿者 chtefi·2 か月前·0 コメント

Unified macOS service console for launchd and Homebrew

github.com
3 ポイント·投稿者 chtefi·2 か月前·1 コメント

Agents Are Microservices with a Brain

blog.dataengineerthings.org
1 ポイント·投稿者 chtefi·2 か月前·0 コメント

Do LLMs Dream? The Post-Transformers Generation

sderosiaux.substack.com
2 ポイント·投稿者 chtefi·3 か月前·0 コメント

Is Anthropic Enshittifying their core product?

sderosiaux.substack.com
2 ポイント·投稿者 chtefi·3 か月前·1 コメント

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

github.com
3 ポイント·投稿者 chtefi·3 か月前·0 コメント

$200 subscription VS $3,650 in compute

sderosiaux.substack.com
3 ポイント·投稿者 chtefi·3 か月前·4 コメント

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

kafka-options-explorer.conduktor.io
2 ポイント·投稿者 chtefi·3 か月前·0 コメント

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

sderosiaux.substack.com
3 ポイント·投稿者 chtefi·3 か月前·0 コメント

Decisions, extracted knowledge, handoff context: reasoning data infrastructure

sderosiaux.substack.com
2 ポイント·投稿者 chtefi·4 か月前·0 コメント

How to stop your AI agent from gaming its own KPI

sderosiaux.substack.com
1 ポイント·投稿者 chtefi·4 か月前·1 コメント

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

sderosiaux.substack.com
1 ポイント·投稿者 chtefi·4 か月前·0 コメント

Claude Code told me what tools it needs to work faster

sderosiaux.substack.com
33 ポイント·投稿者 chtefi·4 か月前·4 コメント

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

sderosiaux.substack.com
5 ポイント·投稿者 chtefi·5 か月前·0 コメント

Prompt optimization can outperform reinforcement learning on LLMs

sderosiaux.substack.com
1 ポイント·投稿者 chtefi·6 か月前·0 コメント

コメント

chtefi
·先月·議論
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 か月前·議論
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 か月前·議論
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 か月前·議論
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 か月前·議論
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.