Skip to content

Instantly share code, notes, and snippets.

View connor's full-sized avatar

Connor Montgomery connor

View GitHub Profile
@connor
connor / search2.js
Created May 28, 2012 05:44
search method implementation
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) )
})
}
@connor
connor / search3.js
Created May 28, 2012 05:47
search method implementation with encodeURIComponent
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) )
})
}
@connor
connor / info1.js
Created May 28, 2012 05:57
info method implementation
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) )
}
@connor
connor / rdio-prev.js
Created July 4, 2012 19:14
rdio script for chrome extension
var fake_prev_el = document.getElementById('fake_prev_el')
fake_prev_el.addEventListener('click', function() {
R.Services.Player.previous();
})
@connor
connor / jedmund.js
Last active December 15, 2015 08:48 — forked from jedmund/gist:5233111
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) {
@connor
connor / things.scpt
Created May 11, 2013 06:18
Alert'ing the open to-dos for the day in Things.app
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