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 | |
*/ | |
/** |
/** | |
* Name that script. | |
*/ | |
#script "Contact Sheet"; | |
#target Illustrator | |
var originalInteractionLevel = userInteractionLevel; | |
userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS; |
/** | |
* @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, |
@mixin layout($sections, $unit:"%") { | |
#content { | |
@each $name, $rules in $sections { | |
.#{$name} { | |
@each $key, $value in $rules { | |
#{$key} : $value | |
} | |
} | |
} | |
} |
# ############################### # | |
# A/B TESTING (START) # | |
# ############################### # | |
# (1) Check if our cookie is already set. | |
# If so, redirect to the previously-viewed page. | |
RewriteCond %{HTTP_COOKIE} ab_test_vers=([^;]+) | |
RewriteRule ^THE-PAGE-BEING-TESTED$ HTTP://YOUR-DOMAIN.COM/tracking/%1 [cookie=ab_test_vers_match:true:YOUR-DOMAIN.COM,L] |
#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' |