Sponsored Content
Top Forums Web Development Notes with Ravinder on Badging System Development Part II Post 303028371 by Neo on Saturday 5th of January 2019 08:44:46 PM
Old 01-05-2019
Hi Ravinder,

It's OK. Thanks for the great ideas on the badging system.

No reason to worry about coding, as I know you are busy working 12 to 13 hours a day on your IT job.

I will code the "days active in sequence" badge when I am back at my desk after the 8th of Jan and will prototype a simple "new badge issued" alert based on a hash of the JSON string-ified badges afterwards.

You have already done a lot and I can easily take it from here and finish the prototype badging system and leave a few badges "in reserve" for the future.

Take care and keep sharing your good ideas for the forums!
This User 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. 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

3. What is on Your Mind?

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,... (0 Replies)
Discussion started by: Neo
0 Replies
PPI::Token::Prototype(3)				User Contributed Perl Documentation				  PPI::Token::Prototype(3)

NAME
PPI::Token::Prototype - A subroutine prototype descriptor INHERITANCE
PPI::Token::End isa PPI::Token isa PPI::Element SYNOPSIS
sub ($@) prototype; DESCRIPTION
Although it sort of looks like a list or condition, a subroutine prototype is a lot more like a string. Its job is to provide hints to the perl compiler on what type of arguments a particular subroutine expects, which the compiler uses to validate parameters at compile-time, and allows programmers to use the functions without explicit parameter braces. Due to the rise of OO Perl coding, which ignores these prototypes, they are most often used to allow for constant-like things, and to "extend" the language and create things that act like keywords and core functions. # Create something that acts like a constant sub MYCONSTANT () { 10 } # Create the "any" core-looking function sub any (&@) { ... } if ( any { $_->cute } @babies ) { ... } METHODS
This class provides one additional method beyond those defined by the PPI::Token and PPI::Element parent classes. prototype The "prototype" accessor returns the actual prototype pattern, stripped of braces and any whitespace inside the pattern. SUPPORT
See the support section in the main module. AUTHOR
Adam Kennedy <adamk@cpan.org> COPYRIGHT
Copyright 2001 - 2011 Adam Kennedy. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of the license can be found in the LICENSE file included with this module. perl v5.16.2 2011-02-25 PPI::Token::Prototype(3)
All times are GMT -4. The time now is 04:57 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy