This week, I learned:

  • Habit tooling can expand habit-building capacity. I already use tools to support my habits. Habit stacking “sticks” new habits to old ones. By sticking new habits into existing tools, I can automate this. (For example, I extended my meeting record fish script with an echo reminding me to write the meeting goal, my role, practice kind candor, and measure effectiveness.)
  • ⭐ The crux of Arthashastra’s advice on defeating an enemy is removing support:
    • मित्राणि भेदयेत्, मित्रं च शत्रोः। Dis-unite friends, enemies from their allies.
    • अमात्यान् द्रव्यैः, जनपदं भेदयेत्। Bribe their ministers, sow discord among subjects.
    • बलं चोच्छिनत्ति, कोशं चोपशोषयेत्। Break the army, exhaust the treasury.
    • ततोऽन्योन्यवैरिणं कुर्यात्। Then set them against each other as mutual foes.
  • Consensus is dangerous in venture capital. “Because if everyone inside the firm sees the same thing, it probably means the market already does too. And when the market sees it, the upside is limited.” Guillermo Flor
  • This CodeMonkeys paper suggests running a mixture of agents in parallel for multiple code + test tasks and auto-pick the best by running and LLM-rewriting tests. #ai-coding
  • We think a new pricing model might emerge for outsourced knowledge work that leads to lower client cost & quality at higher margins. ChatGPT
    • LLMs do the task; multiple LLMs cross-check.
    • Three tiers: Auto-pass (no human), Light review, Full review.
    • Each tier has a clear price and SLA.
  • Using LLMs as validators is one of the safest ways of introducing LLMs into a process. If the human ignores it, no loss. If it spots new errors or the human gets new ideas, quality improves at low cost.
  • I finally get why elders in my family prefers eating in a pure (rather than a mixed) vegetarian restaurant. When in Vietnam, I could pick dishes in pure vegetarian restaurants without worrying about whether they were meat or not, even when I didn’t understand what the dishes were about. That confidence to proceed without fear is a powerful enabler.
  • There’s emerging evidence that jobs automated by (not augmented or unaffected by) AI have fewer entry-level jobs. Experienced workers are less affected. Compensation is affected less. Canaries in the Coal Mine
  • CloudFlare AutoRAG lets you index any website and expose it as an API + Chatbot with a model of your choice. This is available on the free tier, too. The API follows NLWeb, Microsoft’s open standard for LLMs and MCPs to interact with websites in natural language.
  • Cloudflare has an image transformation API that also acts as a CDN. Apart from basic transformations, it can auto detect and crop faces, remove backgrounds, and more.
  • oklch seems the best color model supported by all modern browsers. We can use relative colors with it, making color palette design much easier:
    #darker-color {
      background-color: oklch(from var(--base-color) calc(l - 0.15) c h);
    }
    
  • Malware embedded in the compromised nx build tool leveraged Claude/Gemini CLI to offload fingerprintable password-gathering code into prompts, making detection significantly harder for traditional security tools. semgrep
  • Codex CLI has several updates
    • VS Code plugin with remote container execution
    • Drag & drop image support PR Docs
    • Queued (editable) messages PR
    • Web search via --search PR
    • Esc-Esc to edit previous messages Docs
  • Our team passed an image to an LLM for OCR (especially to identify formatting, e.g. bold, italics, etc.), then passed the output and the image to another LLM for improvement. Interestingly, the best LLM (Gemini 2.5 Pro, for this sample of 8 images) out-performed the two-stage workflow. Perhaps incorrect results confuse more than the correct results help? This needs more research.
  • OpenAI now has a series of llms.txt URLs.
  • Rust seems to catch errors better at compile-time than many typed languages like TypeScript. That makes it better for larger projects (or for AI coding). The unexpected productivity boost of Rust #ai-coding
  • Image APIs that support hotlinking and searching (useful to support LLM-generated content, e.g. slides or presentations):
    1. Openverse: CC, scale, simple REST.
    2. Wikimedia Commons: CC, historic/diagram breadth.
    3. Pixabay: easy, free, broad, but license fuzzier.
    4. Pexels: beautiful but custom license.
    5. Unsplash: stylish but restrictive.
    6. OpenClipart: niche, useful for icons.
  • ⭐ For mental tiredness, the impact of sleep > workload > mood/stress > environment (travel, light, air) > posture > food/drink. To rebound, nap > bright light > exercise > fresh air > water > posture/breathing. ChatGPT
  • In my internal meetings, I tend to ask many questions (1 per 8 turns), but fewer open-ended ones (~40%) compared with others. I also praise once every 22 turns - among the lowest in our group. I could ask more open-ended questions and acknowledge good work. #
  • When seeking advice, people sometimes think aloud, become repetitive, and introduce detail before clarifying intent. Kind candor helps. You can:
    • State time boundaries. “We have 20 min. If we spend 5 min on your question, we’ll have 15 for solutions.”
    • Clarify intent upfront. “Before we dive in: What can I help with?”
    • Interrupt, summarize, clarify early. “Cooperative interruptions” are seen as supportive. E.g. “I get this: six accelerators, two done. Great! What can I help with? To accelerate?”
  • rclone is the cleanest way to copy files from Google Drive. I ran rclone config to set it up with Google Drive via native app OAuth key. Then, rclone copy "gdrive:" transcripts/ --drive-shared-with-me --include "**Transcript*.docx" copied all transcripts including “Shared with me” files (not just drives). The --drive-shared-with-me enables this.
  • What makes Claude Code so damn good has a detailed review of Claude Code’s system prompt and is a great for ideas on using LLMs for coding. #ai-coding
  • With AI coding, task breakdown, context right-sizing, and automated testing are key levers. #ai-coding