Just had a great giggle and a shudder after my workmate Henrik showed me some code that is the latest check-in for a project, and I assume running on a site out there.
1: protected void Page_Load(object sender, EventArgs e)
2: {
3: if (Request.QueryString["QueryStringKeyOfAwesomeness"] != null)
4: {
5: ThisWillBeEmbarrassingOneDay();
6: }
7: }
Inside the same class we have methods with such glorious names as:
- DoSomeMoreTrippyStuffOggaOgga()
- DoSomeCrazyAssDataUpdatesV2Awesome()
- DoJDMagicalSuperUpgradeWOotWOt()
Somewhat disturbing that the ThisWillBeEmbarrassingOneDay() can still be run on the live site if you know the magical key, but those method names, wow!
What is the craziest method name that you have encountered?