20250627
https://scrapbox.io/files/685e6141778c0484d231f0e5.png
0730 起床
朝から vibe coding
https://scrapbox.io/files/685dd08e93ee074def33c5f0.png
Claude Code クン迫真の refactoring
どういう? ?
code:ts
const someCondition = Math.random() < 0.5;
const doSomething = () => console.log("😮");
const someFunc = () => {
if (someCondition) {
doSomething();
return;
}
};
const someFuncRewrittenByClaudeCode = () => {
if (someCondition) return void (doSomething());
};
someFunc();
someFuncRewrittenByClaudeCode();
健康診断で初めての C 判定を喰らった
『影の雨』プロンプト
Vitestを使ってコンポーネントテストをしたい
#いつかみる