I hereby claim:
- I am joshje on github.
- I am joshje (https://keybase.io/joshje) on keybase.
- I have a public key ASDCnV5pterqvlBYRNzpVFNwU1ov27u0PY1_HhnenBFcgQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
const intercomClient = new require('intercom-client').Client({appId:"he1f413x" ,appApiKey: "************"}); | |
intercomClient.companies.create({ company_id: '636e7949-f0ac-4b73-bedf-ba8204205714', custom_attributes: { plan:"STARTER_ANNUAL", trial_ended: true } }, function (r) { console.log(r); }); |
// Make close icons always visible | |
.tab-bar .tab, | |
.tab-bar .tab.active { | |
.title { | |
padding-right: 20px; | |
} | |
.close-icon { | |
transform: scale(1); |
I hereby claim:
To claim this, I am signing this object:
(function() { | |
var codeBlocks = document.getElementsByTagName('pre'), | |
codeLines = 0, | |
body = document.getElementsByTagName('body')[0], | |
text = function(el) { | |
if (el.innerText) return el.innerText; | |
return el.textContent; | |
}; | |
var wordCount = text(body).split(' ').length; |
(function() { | |
var l = document.querySelectorAll('.prodInfoContainer a'); | |
for (i=0; i<l.length; i++) { | |
s = document.createElement('span'); | |
s.innerHTML = l[i].href.replace(/[^0-9]/,'') + '<br>'; | |
l[i].appendChild(s); | |
} | |
}(); |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<script> | |
function async(url) { | |
var a = document.createElement('script'); | |
a.async = true; | |
a.src = url; | |
var b = document.getElementsByTagName('script')[0]; |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Opentype Test</title> | |
<style> | |
span.opentype-test { | |
font-family: Corbel; | |
font-size: 100px; | |
position: absolute; |
// Uncompressed: | |
(function() { | |
var els = document.querySelectorAll('[title]'); | |
for (var i=0,len=els.length;i<len;++i) { | |
var el = els[i]; | |
if (el.title!='') { | |
el.innerHTML+=' <span style="background:#EEE;color:#333;padding:2px;font-weight:normal;font-style:normal">'+el.title+'</span>'; | |
el.removeAttribute('title'); | |
} | |
} |
function async(url) { | |
var a = document.createElement('script'); | |
a.async = true; | |
a.src = url; | |
var b = document.getElementsByTagName('script')[0]; | |
b.parentNode.insertBefore(a, b); | |
} |