Badging System: UNIX.COM Bug Hunter Badge (New)

I have moved the bug badge out of reserve and into the main stream. Basically, I will assign a color level like the others, based on who has made a good actionable bug report for UNIX.COM. "Good" means screenshots, links, and even details from web dev tools our the HTML source code. So far, here is the logic and current awards for this badge (with fanfare).

If your userid is not in these arrays and you think it should be, please let me know via PM (and why, including any links to any forum bugs you have reported and your bug report).

Thanks.

<?php
$debugger_L4 = array('1'); 
$debugger_L3 = array('Reserved'); 
$debugger_L2 = array('Reserved'); 
$debugger_L1 = array('37127', '302034745', '302122727'); 

if (in_array($uid, $debugger_L4)) { 
    $color['fabug'] = 'black'; 
} elseif (in_array($uid, $debugger_L3)) { 
    $color['fabug'] = 'indigo'; 
} elseif (in_array($uid, $debugger_L2)) { 
    $color['fabug'] = 'blue'; 
} elseif (in_array($uid, $debugger_L1)) { 
    $color['fabug'] = 'limegreen'; 
} else { 
    $color['fabug'] = 'lightgray'; 
} 

Please do not be shy. Everyone knows I am very busy coding and developing and so if I forgot your past bug report, that does not mean you are not important, I just don't have time to go back and search all prior posts at this time. Just send me a PM or email with your GOOD well written bug report info and the forum links to it and I'm happy to add you to the "Bug Hunter" Team!

4 Likes