This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.3.8) | |
// Compass (v1.0.0.alpha.19) | |
// ---- | |
$color-red:#ff0000; | |
body { | |
background:color: $color-red; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
n = 1; | |
do | |
{ | |
if (n%3===0 && n%5===0) | |
{ | |
document.write("FizzBuzz"); | |
} | |
else if (n%5===0) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
session: { | |
key: “98fb4c5a-c4fc-4d0a-8bae-26215d27f68b” | |
} | |
options: { | |
first-decision: { | |
decision-1: { | |
code: “option-b” | |
fields: { | |
name: “value” |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<input code="totalVisits,totalPurchaseAmount"> | |
<evaluate-expression> | |
<expression><![CDATA[ totalPurchaseAmount / totalVisits ]]></expression> | |
<assign-user-attribute code="average-spend"/> | |
</evaluate-expression> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<input code="totalVisits,totalPurchaseAmount"> | |
<test-expression> | |
<expression><![CDATA[ totalPurchaseAmount / totalVisits > 50 ]]></expression> | |
<assign-segment code="big-average-spender"/> | |
</test-expression> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<input code="income"> | |
<rbf-exponential center="5" width="1"> | |
<assign-user-attribute code="income-rbf"/> | |
</ rbf-exponential> | |
</input> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<input code="mpath.geo-lite.country-name"> | |
<categorize match="France,Italy,Spain" separator="," case-sensitive="true"> | |
<assign-segment code="western-europeans"/> | |
</categorize> | |
</input> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<categorize match="New,Old" separator="," partial-matches="true"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<input code="mpath.geo-lite.city"> | |
<categorize match="New" partial-matches="true"> | |
<assign-segment code="new-city-folks"/> | |
</categorize> | |
</input> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<input code="mpath.geo-lite.country-name"> | |
<categorize match="France,Italy,Spain" separator=","> | |
<assign-segment code="western-europeans"/> | |
</categorize> | |
</input> |
NewerOlder