{
  "$type": "site.standard.document",
  "bskyPostRef": {
    "cid": "bafyreie3akx6g6bge2ttoojnfakhlql4ipsc3b65orjmjpuwg2o3xg66we",
    "uri": "at://did:plc:vyjlfm46mfv6u4vjp6qtrfx2/app.bsky.feed.post/3mk6mow4p4zl2"
  },
  "coverImage": {
    "$type": "blob",
    "ref": {
      "$link": "bafkreidg2k33tiuupnstmiowh7hyyvtsbe3gyhfygiytrzynysnhoctrxi"
    },
    "mimeType": "image/jpeg",
    "size": 81260
  },
  "path": "/articles/tune-out-the-static",
  "publishedAt": "2026-04-23T06:30:00.000Z",
  "site": "https://thedailywtf.com",
  "tags": [
    "CodeSOD",
    "previously",
    "Learn more."
  ],
  "textContent": "**Henrik H** (previously) sends us a simple representative C# line:\n\n\n    static void GenerateCommercilaInvoice()\n\n\nThis is a static method which takes no parameters and returns nothing. Henrik didn't share the implementation, but this static function likely does something that involves side effects, maybe manipulating the database (to generate that invoice?). Or, possibly worse, it could be doing something with some global or static state. It's all side effects and no meaningful controls, so enjoy debugging _that_ when things go wrong. Heck, good luck _testing_ it. Our best case possibility is that it's just a wrapper around a call to a stored procedure.\n\nThis method signature is basically a commercila for refactoring.\n\n[Advertisement] ProGet’s got you covered with security and access controls on your NuGet feeds. Learn more.",
  "title": "CodeSOD: Tune Out the Static"
}