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

yoava

no profile record

投稿

Head to head: Claude Code (Opus 4.6 / 1M) vs. Cursor (Composer 1.5 / 200k)

medium.com
1 ポイント·投稿者 yoava·4 か月前·0 コメント

I Stop Prompting and Start Logging: The Design-Log Methodology

wix.engineering
1 ポイント·投稿者 yoava·6 か月前·2 コメント

コメント

yoava
·6 か月前·議論
ADRs are similar, yet the important point is not the format of the design log entry, but it's usage with AI.

with design log, we ask the AI to create the ADR or log entry, but unlike ADR we 1. require the AI to ask question and we answer. 2. require the AI to update the design log after implementation with any drift from the original design.

Both of the above help to make the AI more precise and prevent context drift.
yoava
·8 年前·議論
What you seek is actually something a bit different.

It is the observation that all software is built of 3 layers -

Inbound IO, what you call imperative shell Business logic core, what you call functional core Outbound IO, what you call again imperative shell.

The problem with the terms in functional programming is that when they say side effects, in most cases they mean IO.

The functional core does not have to be functional for you to get the benefits - easy testing, easy to reason about, easy to develop. In fact, in some cases, functional programing is the wrong tool while having a business logic core that is separated from IO is still a very valid architecture.
yoava
·8 年前·議論
Actor model is even worse, you have no gerentee of a response or error status
yoava
·8 年前·議論
Function composition