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
# Add this to your shell profile (e.g. .zshrc or .bashrc) | |
publishBranch() { | |
git checkout -b $1 | |
git push -u origin $1 | |
} | |
alias gcb=publishBranch | |
######################### |
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
{ | |
"auto-close-tag.activationOnLanguage": [ | |
"blade", | |
"cfml", | |
"eex", | |
"ejs", | |
"erb", | |
"html-eex", | |
"javascript", | |
"javascriptreact", |
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
/** | |
* Supports Demandbase Customer Attributes integration | |
* Map the MCVID to itself via the alias "demandbase" | |
*/ | |
(function(){ | |
function map_mcvid(retry) { | |
var mcvid = visitor.getMarketingCloudVisitorID(); | |
if (mcvid) { | |
visitor.setCustomerIDs({ "demandbase": mcvid }); | |
//Optional - send to Conversion Variable: s.eVar# = mcvid; |
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
(function(){ | |
function map_mcvid(retry) { | |
var sat = window._satellite; | |
if('undefined' !== typeof sat && sat.getVisitorId()) { | |
var mcvid = sat.getVisitorId().getMarketingCloudVisitorID(); | |
if (mcvid) { | |
sat.getVisitorId().setCustomerIDs({ "demandbase": mcvid }); | |
} else if (retry) { | |
window.setTimeout(function() { map_mcvid(false) }, 1000); | |
} |
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
<result> | |
<company-name>Advance Magazine Publishers</company-name> | |
<demandbase-sid type="integer">1334313</demandbase-sid> | |
<audience>Enterprise Business</audience> | |
<audience-segment>Media & Entertainment</audience-segment> | |
<industry>Media & Entertainment</industry> | |
<sub-industry>Publisher</sub-industry> | |
<company-size>Over $5B</company-size> | |
<employee-count type="integer">37200</employee-count> | |
<isp type="boolean">false</isp> |