Skip to content

Instantly share code, notes, and snippets.

Why LLMs Often Make "Locally Smart, Globally Wrong" Engineering Decisions

One of the core problems in LLM-driven software development is not that models are simply "bad at coding." It is that they are often extremely strong at local optimization inside the current task frame, while being much weaker at preserving system intent, architectural boundaries, and domain-level coherence.

This creates a very specific failure mode.

An LLM can often:

  • continue a design direction very convincingly,
  • find subtle edge cases,
@zoceany
zoceany / OpenWithSublimeText.bat
Last active January 15, 2020 07:28 — forked from cstewart90/OpenWithSublimeText3.bat
Open folders and files with Sublime Text 3 from windows explorer context menu (tested in Windows 10)
@echo off
SET st3Path=C:\Program Files\Sublime Text 3\sublime_text.exe
rem add it for folders
@reg add "HKEY_CLASSES_ROOT\Directory\shell\Open with Sublime Text" /t REG_SZ /v "" /d "Open with Sublime Text" /f
@reg add "HKEY_CLASSES_ROOT\Directory\shell\Open with Sublime Text" /t REG_EXPAND_SZ /v "Icon" /d "%st3Path%,0" /f
@reg add "HKEY_CLASSES_ROOT\Directory\shell\Open with Sublime Text\command" /t REG_SZ /v "" /d "%st3Path% \"%%1\"" /f
pause