The Daily WTF's summer rerun mines a classic: an interface that abandons abstraction for enumeration. Christian, a German developer, encounters ITableSelector in the codebase—a C# interface declaring 31 individual methods to select different tables. Rather than a parameterized approach (selectTable(int tableNumber)), the designer hardcoded selectTable1(), selectTable2()... all the way to selectTable31(), with some tables splitting into variants (selectTable4a, selectTable4b, selectTable14a through 14d).
The offense is textbook design failure: the interface locks in table names at compile time, eliminates type safety, and makes adding a 32nd table require a contract rewrite. It's the opposite of the Open/Closed Principle. The code screams for a single method accepting a table identifier—or better, a proper abstraction layer.
Christian's coined term, quäl-kot (torture-code), is apt: this is the kind of structure that makes maintenance a permanent hostage situation.