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
| 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 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
| 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 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
| 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 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
| var fake_prev_el = document.getElementById('fake_prev_el') | |
| fake_prev_el.addEventListener('click', function() { | |
| R.Services.Player.previous(); | |
| }) |
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 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 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
| 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 |
OlderNewer