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


 
Thread Tools Search this Thread
The Lounge What is on Your Mind? Badging System: UNIX.COM Bug Hunter Badge (New)
# 1  
Old 01-17-2019
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.

Code:
<?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!
These 4 Users Gave Thanks to Neo For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. What is on Your Mind?

Status of Badging System - Beta 1

Dear All, Here is the current status of the badging system: The Beta 1 phase of the new badging system is close to completion. 42 prototype badges have been "allocated" 6 prototype badge slots are held in reserve The "alert you have new badges" prototype is running and is currently... (4 Replies)
Discussion started by: Neo
4 Replies

2. Web Development

Notes with Ravinder on Badging System Development Part II

Part II: Current PHP file Beta 73 Not Optimized: <?php $version = 73; $query = "SELECT * FROM " . TABLE_PREFIX . "user WHERE userid='" . $uid . "'"; $usertable = $db->query_read_slave($query); $modaluser = $db->fetch_array($usertable); $modaluser = gmdate("d F Y", $modaluser); $modaluser... (48 Replies)
Discussion started by: Neo
48 Replies

3. What is on Your Mind?

New Badging System - Badges Prototype Beta 1 (Badges Only)

Today I mapped out the new badging system using FA icons, Beta 1 in no particular order except a 6 x 8 grid: https://www.unix.com/members/1-albums215-picture991.png The prototype HTML code for this layout: <style> .fa-badge-grid { font-size: 1.5em; } .row { ... (38 Replies)
Discussion started by: Neo
38 Replies
Login or Register to Ask a Question