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
tell application "Things" | |
repeat with td in to dos of list "Today" | |
set tdName to the name of td | |
set tdStatus to the status of td | |
if tdStatus = open then | |
display dialog tdName | |
end if |
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 getUser(username) { | |
var config = Instagram.config; | |
var url = config.api_host + "/v1/users/" + searchUsers(username, _usernameToId) + "/?access_token=" + config.access_token + "&callback=?"; | |
$.getJSON(url, function(data) { | |
console.log(data); | |
}); | |
} | |
function searchUsers(q, callback) { |
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
var fake_prev_el = document.getElementById('fake_prev_el') | |
fake_prev_el.addEventListener('click', function() { | |
R.Services.Player.previous(); | |
}) |
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
exports.info = function(query, callback) { | |
request("http://domai.nr/api/json/info?q=" + query, function(err, response, body) { | |
if (response.statusCode === 200) { | |
callback( JSON.parse(body) ) | |
} else { | |
throw new Error("Sorry, there was an error. Make sure " + query + " is a valid domain to look up. Here's the response I got:\n" + JSON.stringify(response) ) | |
} |
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
var request = require('request') | |
exports.search = function( query, callback ) { | |
request("http://domai.nr/api/json/search?q=" + encodeURIComponent(query), function(err, response, body) { | |
callback( JSON.parse(body) ) | |
}) | |
} |
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
var request = require('request') | |
exports.search = function( query, callback ) { | |
request("http://domai.nr/api/json/search?q=" + query, function(err, response, body) { | |
callback( JSON.parse(body) ) | |
}) | |
} |
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
var request = require('request') | |
exports.search = function( query, callback ) { | |
// more code will go here | |
} |
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
var domainr = require("Domai.nr") | |
domainr.search("connor montgomery", function(responseFromDomainr) { | |
// do things with the responseFromDomainr object | |
}) | |
domainr.info("cnnr.me", function(responseFromDomainr) { |
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
{ | |
"name": "Domai.nr" | |
, "version": "1.0.0" | |
, "description": "A dead-simple way to utilize Domai.nr's JSON API" | |
, "keywords": [ | |
"domainr" | |
, "domains" | |
, "search" | |
, "domain" | |
] |
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
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
background: #f06; | |
background: linear-gradient(42deg, #f06, yellow); | |
min-height: 100%; |
NewerOlder