Skip to content

Instantly share code, notes, and snippets.

View gulbaki's full-sized avatar
:octocat:
Focusing

baki gul gulbaki

:octocat:
Focusing
View GitHub Profile
@gulbaki
gulbaki / gist:a64010915eccda2ccaa527199bcfd323
Created February 22, 2026 13:56
Claude Code’un arkasındaki ekipten paylaşılan gerçek kullanım alışkanlıkları bir araya getirilmiş ve tek bir dosyada toplanmış: CLAUDE.md
# Workflow Orchestration
## 1. Plan Mode Default
- Enter plan mode for ANY non-trivial task (3+ steps or architectural decisions)
- If something goes sideways, STOP and re-plan immediately — don't keep pushing
- Use plan mode for verification steps, not just building
- Write detailed specs upfront to reduce ambiguity
## 2. Subagent Strategy
@gulbaki
gulbaki / arrayManipulation.js
Last active June 7, 2023 17:45
arrayManipulation
// brute force
function arrayManipulation(arr, n) {
const temp = new Array(n).fill(0);
for (let i = 0; i < arr.length; i++) {
for (let index = arr[i][0]; index <= arr[i][1]; index++) {
temp[index - 1] += arr[i][2]
}
}
console.log( Math.max(...temp))
}