Sponsored Content
The Lounge What is on Your Mind? New Badging System - Badges Prototype Beta 1 (Badges Only) Post 303027976 by RavinderSingh13 on Saturday 29th of December 2018 01:29:11 AM
Old 12-29-2018
Quote:
Originally Posted by Neo
Congrats to Ravinder, who I have just awarded our first "Formulator" badge who is not a forum "Dev Ops" coder. This Formulator Badge is for pushing hard over the years for us to modernize the site, and for many good ideas, including the badging system. Only four people have this badge: Reborg, Scott and Neo (Admin Dev Ops Coders, Past and Present) and Ravinder Singh.
Thanks Again Ravinder!
Code:
$('.fa-flask').css("color",badge["formulator"]);
$('.fa-flask').css("cursor","pointer").attr("title","Big Picture Ideas Team");
$('.fa-flask').closest('div').find('.fa-circle').css("color",badge["formulator"]);

Wowww I am feeling honored here. Thanks a TON Neo for this, I am grateful to you and feeling happy to do a bit for this GREAT FORUM Smilie

Thanks,
R. Singh
This User Gave Thanks to RavinderSingh13 For This Post:
 

7 More Discussions You Might Find Interesting

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

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

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

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

5. What is on Your Mind?

Current Array of Badges (Beta 1)

Here is the current array of the short description of badges for the new prototype badging system (Beta 1) with 42 icons allocated (prototype logic written) and 6 reserved (for future use); <?php $badges_desc = array( "fauser" => "Total Post Count", "faaward" => "First Post", ... (6 Replies)
Discussion started by: Neo
6 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
cssdiff(1)							      CRM114								cssdiff(1)

  NAME
      cssdiff - generate a difference summary of two .css files

  SYNOPSIS
      cssdiff [cssfile 1] [cssfile 2]

  WARNING
      This  man  page  is  taken from an older CRM114 version.	It is provided as a convenience to Debian users and may not be up-to-date.  If you
      would like to update it, please send appropriate patches to the Debian bug tracking system.

  DESCRIPTION
      cssdiff is a special-purpose utility to measure the distance between the classes represented by cssfile1 and cssfile2.  The  summary  result
      output  tells  how  many	features  were in each of the .css files, how many features appeared in both (balanced overlap), how many features
      appeared only in one (or unbalanced overlaps), and how often the feature set of one .css file strictly dominated the feature set of  another
      .css  file.  This set of metrics provides an intuitive way to determine the similarity (or dissimilarity) of two classes represented as .css
      files.  When using the CRM114 spamfilter, it can be used to find out how easy it will be for CRM114 to differentiate spam from nonspam  with
      your .css files.	cssdiff prints a report like e.g.

	 Sparse spectra file spam.css has 1048577 bins total
	 Sparse spectra file nonspam.css has 1048577 bins total

	 File 1 total features		  :	 1605968
	 File 2 total features		  :	 1045152

	 Similarities between files	  :	  142039
	 Differences between files	  :	 1279964

	 File 1 dominates file 2	  :	 1463929
	 File 2 dominates file 1	  :	  903113

      Note that in this case there's a big difference between the two files; in this case there are about 10 times as many differences between the
      two files as there are similarities.

  OPTIONS
      There are no options to cssdiff.

  SHORTCOMINGS
      Note that cssdiff as of version 20040816 is NOT capable of dealing with the CRM114 Winnow classifier's  floating-point  .cow  files.  Worse,
      cssdiff  is  unaware of it's shortcomings, and will try anyway. The only recourse is to be aware of this issue and not use cssdiff on Winnow
      classifier floating point .cow format files.

  HOMEPAGE AND REPORTING BUGS
      http://crm114.sourceforge.net/

  VERSION
      This manpage: $Id: cssdiff.azm,v 1.5 2004/08/19 09:06:44 vanbaal Exp $ This  manpage  describes  cssdiff	as  shipped  with  crm114  version
      20040816.BlameClockworkOrange.

  AUTHOR
      William S. Yerazunis. Manpage typesetting by Joost van Baal and Shalendra Chhabra

  COPYRIGHT
      Copyright  (C)  2001, 2002, 2003, 2004 William S. Yerazunis.  This is free software, copyrighted under the FSF's GPL.  There is NO warranty;
      not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the file COPYING for more details.

  SEE ALSO
      cssutil(1), cssmerge(1), crm(1), cssmerge(1)

  cssdiff 20040816.BlameClockworkOrange-auto.3			      19 Aug 2004							  cssdiff(1)
All times are GMT -4. The time now is 11:30 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy