Sponsored Content
The Lounge What is on Your Mind? Badging System: UNIX.COM Bug Hunter Badge (New) Post 303028878 by Neo on Thursday 17th of January 2019 07:29:24 AM
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:
 

3 More Discussions You Might Find Interesting

1. 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

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?

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
DH_BUGFILES(1)							     Debhelper							    DH_BUGFILES(1)

NAME
dh_bugfiles - install bug reporting customization files into package build directories SYNOPSIS
dh_bugfiles [-A] [debhelperoptions] DESCRIPTION
dh_bugfiles is a debhelper program that is responsible for installing bug reporting customization files (bug scripts and/or bug control files and/or presubj files) into package build directories. FILES
debian/package.bug-script This is the script to be run by the bug reporting program for generating a bug report template. This file is installed as usr/share/bug/package in the package build directory if no other types of bug reporting customization files are going to be installed for the package in question. Otherwise, this file is installed as usr/share/bug/package/script. Finally, the installed script is given execute permissions. debian/package.bug-control It is the bug control file containing some directions for the bug reporting tool. This file is installed as usr/share/bug/package/control in the package build directory. debian/package.bug-presubj The contents of this file are displayed to the user by the bug reporting tool before allowing the user to write a bug report on the package to the Debian Bug Tracking System. This file is installed as usr/share/bug/package/presubj in the package build directory. OPTIONS
-A, --all Install debian/bug-* files to ALL packages acted on when respective debian/package.bug-* files do not exist. Normally, debian/bug-* will be installed to the first package only. SEE ALSO
/usr/share/doc/reportbug/README.developers.gz debhelper(1) This program is a part of debhelper. AUTHOR
Modestas Vainius <modestas@vainius.eu> 11.1.6ubuntu2 2018-05-10 DH_BUGFILES(1)
All times are GMT -4. The time now is 03:03 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy