Writing Better Code: The Quick and Easy Guide to Doing the Title of this Blog Post

Given this snippet of PHP code, how much could you improve it? [php] // INPUT: an array // OUTPUT: message to the screen // UPDATED: 2017-6-5 // AUTHOR: Elongo Wendrico function displayedDetaileMessages($passed_cnt) { $return = false; if(length($passed) == 0){ $return = true; }else{ $return = false; } return $return; } [/php] Short answer to “how […]

WordPress Was Hijacked!

So, I opened up endlick.com and hoped to see some new content – ignoring the fact that I’m the only one who posts here and I sure as hell haven’t been vigilant about it – and saw some ad for insurance. endlick.com is a site where I post shitty content about computer issues and baudy […]

Bughunting

“OK, so which levels does this occur on?” “1,2, and 4.” “Not 3?” “Not 3.” “And this only happens on mobile?” “Yes, but only some mobile devices” Well shit. Every level of the maze uses the same logic. They are all checking collisions based on whether or not the player’s “pawn” came in contact with […]