This file contains 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"> | |
window.location.href = "http://example.com" | |
</script> |
This file contains 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
<h1> | |
<strong>Frequently Asked Questions</strong> | |
</h1> | |
<h2>BILLING AND ACCOUNT QUESTIONS</h2> | |
<h3>How do I reset my password?</h3> | |
<p> | |
On the login page, click <strong>Forgot Password</strong>, enter the email associated | |
with your account, and click <strong>Send Instructions. </strong>The instruction | |
email will arrive in your inbox shortly. In the instruction email, click | |
<strong>Reset Password</strong> and you will be directed to select a new password |
This file contains 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
const options = { | |
rootMargin: "25px", | |
threshold: 0.1 | |
}; | |
const io = new IntersectionObserver(entries => { | |
entries.forEach(entry => { | |
//console.log('entry: ', entry); | |
if (entry.intersectionRatio > 0.1) { | |
var imgsrc = entry.target.getAttribute("srcset1"); | |
entry.target.setAttribute("srcset", imgsrc); |
This file contains 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
Here are things a Customer Champion at SafetySync might do in no particular order. List 5 things that are your most favorite to do and 5 things that are least favorite. | |
Call new leads to gauge their level of interest in our software | |
Respond to 30+ support requests via email every day | |
Dig through activity logs to troubleshoot a customer's issue | |
Write and maintain thousands of pages of help documentation | |
Create video tutorials to help teach users a specific feature or use case | |
Help resolve billing issues for customers over the phone | |
Analyze thousands of support tickets to spot trends the product team can use | |
Write template data to help showcase the ways customers can use our software |
This file contains 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
0 info it worked if it ends with ok | |
1 verbose cli [ 'C:\\Program Files\\nodejs\\node.exe', | |
1 verbose cli 'C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js', | |
1 verbose cli 'install' ] | |
2 info using [email protected] | |
3 info using [email protected] | |
4 silly loadCurrentTree Starting | |
5 silly install loadCurrentTree | |
6 silly install readLocalPackageData | |
7 silly install normalizeTree |
This file contains 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 sendFormByEmail(e) | |
{ | |
var email = "[email protected]"; | |
var subject = 0; | |
var doc = SpreadsheetApp.getActiveSpreadsheet(); | |
subject = doc.getName(); |