I hereby claim:
- I am iconifyit on github.
- I am iconify (https://keybase.io/iconify) on keybase.
- I have a public key whose fingerprint is 847A 07C3 3800 2AF9 FEC7 3895 7B41 79F6 F0B4 7F26
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| =(CONCAT( | |
| INDIRECT("E" & ROW()) , | |
| CONCAT( | |
| IF (COUNTIF( | |
| INDIRECT("E2:E" & (ROW())), | |
| INDIRECT("E" & ROW()) | |
| ) > 99, ".0", | |
| IF (COUNTIF( | |
| INDIRECT("E2:E" & (ROW())), | |
| INDIRECT("E" & ROW()) |
| #target illustrator | |
| /** | |
| * USAGE: | |
| * | |
| * 1. Place this script in Applications > Adobe Illustrator > Presets > en_US > Scripts | |
| * 2. Restart Adobe Illustrator to activate the script | |
| * 3. The script will be available under menu File > Scripts > Ai_Sessions | |
| * 4. Follow the on-screen prompts | |
| */ | |
| /** |
| /** | |
| * @author Scott Lewis | |
| * @date June 4, 2011 | |
| * @link http://technify.me | |
| * | |
| * Just follow the comments in the code to understand what's going on. | |
| */ | |
| /** | |
| * Create an anonymous function to avoid library conflicts | |
| */ |
| <?php | |
| /** | |
| * Provide a public-facing view for the plugin | |
| * | |
| * This file is used to markup the public-facing aspects of the plugin. | |
| * | |
| * @link http://iconify.it | |
| * @since 1.0.0 | |
| * | |
| * @package Iconfinder_Portfolio |
| [ | |
| { | |
| "appSpecificKey": { | |
| "artboardLayout": 0, | |
| "artboardRowsOrCols": 1, | |
| "artboardSpacing": 20, | |
| "bleedOffset": [ | |
| 0, | |
| 0, | |
| 0, |
| #http://diversityavatars.com# => https://cdn.diversityavatars.com | |
| #src="https://diversityavatars.com/wp-content/(.*)"# => src="https://cdn.diversityavatars.com/wp-content/$1" | |
| #src='https://diversityavatars.com/wp-content/(.*)'# => src='https://cdn.diversityavatars.com/wp-content/$1' | |
| #src="https://diversityavatars.com/wp-includes/(.*)"# => src="https://cdn.diversityavatars.com/wp-includes/$1" | |
| #src='https://diversityavatars.com/wp-includes/(.*)'# => src='https://cdn.diversityavatars.com/wp-includes/$1' | |
| #href="https://diversityavatars.com/wp-content/(.*)\.css"# => href="https://cdn.diversityavatars.com/wp-content/$1.css" | |
| #href='https://diversityavatars.com/wp-content/(.*)\.css'# => href='https://cdn.diversityavatars.com/wp-content/$1.css' |
| /** | |
| * Add leading zeroes to an integer. | |
| * @param {int} num The number to which to add leading zeros. | |
| * @param {ing} zeros The length of the resulting string. | |
| * @returns {str} | |
| */ | |
| function addLeadingZeros(num, width) { | |
| return String(Math.pow(10, width) + num).slice(-width) ; | |
| } |
| # Add the following block to your WordPress .htaccess just above the section labeled 'BEGIN WordPress' | |
| <IfModule mod_rewrite.c> | |
| # Restrict login to my IP | |
| RewriteCond %{REQUEST_URI} ^(.*)?wp-login\.php(.*)$ [OR] | |
| RewriteCond %{REQUEST_URI} ^(.*)?wp-admin$ | |
| # Your IP address goes below. Escape the dots with a backslash. | |
| # Whitelist multiple IP addresses by copying and pasting the line below and | |
| # changing the IP address to the one you want to whitelist. |
| # Select the rows to which you want the rule to apply | |
| # Go to Format > Conditional Formatting | |
| # Add a new formatting rule to the tool bar in the right-hand column | |
| # Select 'Custom Formula' from the drop down | |
| # Enter the formula below and modify the column name as needed | |
| =(AND(NOT(INDIRECT("C" & ROW()) = ""), INDIRECT("C" & ROW()) = 0)) | |
| # Select the formatting styles youw ant to apply |