Skip to content

Instantly share code, notes, and snippets.

View radnip's full-sized avatar
😀
Excited at launching my new Salesforce Learning site!

Francis Pindar radnip

😀
Excited at launching my new Salesforce Learning site!
View GitHub Profile
@radnip
radnip / gist:fc15d4763c4333010c16a2602c3f92ca
Created May 21, 2017 17:37
Check that Email domains exist from Google Sheets (MX Lookup).
function MXLookup(domain) {
if (domain.length == 0){
return "No Email";
}
domain = domain.substring(domain.indexOf("@")+1);
//domain = "gmail.com";
try {
var url = "https://dns.google.com/resolve?name=%FQDN%&type=MX".replace("%FQDN%",domain);

Keybase proof

I hereby claim:

  • I am radnip on github.
  • I am radnip (https://keybase.io/radnip) on keybase.
  • I have a public key whose fingerprint is 0E7D 0953 BF2A 8EE0 89D8 1421 370D 6FEC 9E9A 53DD

To claim this, I am signing this object:

@radnip
radnip / Blogs-To-Follow-OPML.xml
Created June 30, 2016 11:22 — forked from abhinavguptas/Blogs-To-Follow-OPML.xml
Best Salesforce Developer Blogs to Follow
<?xml version="1.0" encoding="UTF-8"?>
<opml version="1.0">
<head>
<title>Salesforce Blogs to follow</title>
</head>
<body>
<outline text="salesforce" title="salesforce">
<outline type="rss" text="Sundog" title="Sundog" xmlUrl="http://feeds2.feedburner.com/Sunblog" htmlUrl="http://www.sundoginteractive.com/sunblog/"/>
<outline type="rss" text="Secure Salesforce" title="Secure Salesforce" xmlUrl="http://simplyforce.blogspot.com/feeds/posts/default" htmlUrl="http://simplyforce.blogspot.com/"/>
<outline type="rss" text="Andrew Boettcher - Salesforce Technologist" title="Andrew Boettcher - Salesforce Technologist" xmlUrl="http://techman97.wordpress.com/feed/" htmlUrl="http://techman97.wordpress.com"/>
var cylon = require('cylon');
cylon.api({ host: '0.0.0.0', port: '8080' });
cylon.robot({
connections: {
audio: { adaptor: 'audio' },
hue: { adaptor: 'hue', host: '10.43.1.188', username: '1234567890f' },
sfcon: {
adaptor: 'force',
@radnip
radnip / new_gist_file.js
Created October 21, 2014 19:00
Cylon Hue test code
var Cylon = require('cylon');
Cylon.api({ host: '0.0.0.0', port: '8080' });
Cylon.robot({
connection: { name: 'hue', adaptor: 'hue', host: '192.168.1.64', username: '1234567890f' },
connection: { name: 'sfcon',
adaptor: 'force',
sfuser: 'YY',
sfpass: 'XX',
@radnip
radnip / 0_reuse_code.js
Last active August 29, 2015 14:07
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console