Sponsored Content
The Lounge What is on Your Mind? Current Array of Badges (Beta 1) Post 303028433 by Neo on Tuesday 8th of January 2019 06:14:41 AM
Old 01-08-2019
Also, I want to thank everyone for their patience as we continue to develop our new badging system.

It's going to be great and these things take time; so that you for your patience during this growth and transition phase.

When the badging system is developed it will be easier for moderators to moderate the forums and all moderation will be completely transparent to all members. In addition, the badging system will help all members understand their progress, activity and participation in the forums.

Thank you again for your patience as I code this new system for the benefit of everyone.
These 4 Users Gave Thanks to Neo For This Post:
 

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to compare current record,with next and previous record in awk without using array?

Hi! all can any one tell me how to compare current record of column with next and previous record in awk without using array my case is like this input.txt 0 32 1 26 2 27 3 34 4 26 5 25 6 24 9 23 0 32 1 28 2 15 3 26 4 24 (7 Replies)
Discussion started by: Dona Clara
7 Replies

2. Hardware

Stack Overflow Questions Tags Users Badges Unanswered Ask Question Ask for the explanation of types

I have read a document which tells me the following 4 things are done by the RAM embedded on disk driver controller. But I don't know what's difference between buffer and cache. Thanks! RAM on disk drive controllers 1 firmware 2 speed matching buffer 3 prefetching buffer 4 cache (1 Reply)
Discussion started by: 915086731
1 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

4. What is on Your Mind?

Four More UNIX.COM Achievement Award Badges to Award

Happy New Year! There are currently four UNIX.COM achievement awards up for grabs, as the say. Here they are, in no particular order: The Order of the Raven The Order of the Hippo The Order of the Spider The Order of the Dragon Don't ask me what they mean, or who who will get those... (0 Replies)
Discussion started by: Neo
0 Replies

5. Web Development

Current New Badge Alert Script (Beta 1)

Here is the JS I wrote and am now testing live for alerting a member when they have received a new badge (seems to be working OK so far, still testing live): var badgeChange = readCookie("badgestatechange"); $(function() { if (badgeChange == "1") { if (vbuserId > 0) { var... (0 Replies)
Discussion started by: Neo
0 Replies

6. What is on Your Mind?

Patreon Badges Now Available as BBCODE at UNIX.COM

Dear All, We have a lot of amazing moderators and other very talented unix.com members who provide tireless top quality free technical support assistance to others. As a service to those long term unix.com members, I am making a new Patreon BBCODE badge available which can be posted in forum... (8 Replies)
Discussion started by: Neo
8 Replies

7. What is on Your Mind?

My Badges Page - A Major UserCP Update (v0.661):

Another major upgrade on the new UserCP today. I have created the "My Badges" page in the new control panel, and it's looking very cool :) If you have visited the new UserCP recently, you will more-than-likely need to close your browser (completely) and then restart it to clear out the old... (2 Replies)
Discussion started by: Neo
2 Replies
cpanfile-faq(3pm)					User Contributed Perl Documentation					 cpanfile-faq(3pm)

NAME
cpanfile-faq - cpanfile FAQ QUESTIONS
Does cpanfile replace Makefile.PL or Build.PL? No, it doesn't. "cpanfile" is a simpler way to declare CPAN dependencies, mainly to your application rather than CPAN distributions. In fact, most CPAN distributions do not need to switch to "cpanfile" unless they absolutely want to take advantage of some of the features (see below). This is considered a new extension for applications and installers. Why do we need yet another format? Here are some of the reasons that motivates the new cpanfile format. Not everything is a CPAN distribution First of all, it is annoying to write Makefile.PL when what you develop is not a CPAN distirbution. It gets more painful when you develop a web application that you want to deploy on a different environment using version control system (such as cloud infrastructure), because it requires you to often commit the META file or "inc/" directory (or even worse, botu) to a repository when your build script uses non-core modules such as Module::Install or File::Copy::Recursive. Many web application frameworks generate a boiler-plate "Makefile.PL" for dependency declaration and to let you install dependencies with "cpanm --installdeps .", but that doesn't always mean they are meant to be installed. Things can be often much simpler if you run the application from the checkout directory. With cpanfile, dependencies can be installed either globally or locally using supported tools such as cpanm or carton. Because "cpanfile" lists all the dependencies of your entire application and will be updated over time, it makes perfect sense to commit the file to a version control system, and push the file for a deployment. More control for the dependencies analysis One of the limitation when I tried to implement a self-contained local::lib library path feature for cpanminus was that the configuration phase runs the build file as a separate perl process, i.e. "perl Makefile.PL". This makes it so hard for the script to not accidentally load any modules installed in the local "site_perl" directory when determining the dynamic dependencies. With the recent evolution of CPAN installer ecosystem such as local::lib support, it makes things much easier if installers figure out whether dependencies are installed, instead of by build tools such as Module::Install. Familiar DSL syntax This is a new file type, but the format and syntax isn't entirely new. The metadata it can declare is exactly a subset of "Prereqs" in CPAN Meta Spec, with some conditionals such as "platform" and "perl". The syntax borrows a lot from Module::Install. Module::Install is a great way to easily declare module metadata such as name, author and dependencies. cpanfile format is simply to extract the dependencies into a separate file, which means most of the developers are familiar with the syntax. Complete CPAN Meta Spec v2 support "cpanfile" basically allows you to declare CPAN::Meta::Spec prerequisite specification using an easy Perl DSL syntax. This makes it easy to declare per-phase dependencies and newer version 2 features such as conflicts and version ranges. How can I start using "cpanfile"? First of all, most distributions on CPAN are not required to update to this format. If your application currently uses "Makefile.PL" etc. for dependency declaration because of the current toolchain implementation (e.g. "cpanm --installdeps ."), you can upgrade to "cpanfile" while keeping the build file based installation working for the backward compatibility. TBD: Support in other tools such as MakeMaker perl v5.14.2 2012-04-04 cpanfile-faq(3pm)
All times are GMT -4. The time now is 05:34 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy