Skip to content

Instantly share code, notes, and snippets.

View connor's full-sized avatar

Connor Montgomery connor

View GitHub Profile
@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
@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 / 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 / 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 / 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 / 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 / search1.js
Created May 28, 2012 05:32
search method wrapper
var request = require('request')
exports.search = function( query, callback ) {
// more code will go here
}
@connor
connor / domainr_example.js
Created May 28, 2012 05:28
How to use the domai.nr node module
var domainr = require("Domai.nr")
domainr.search("connor montgomery", function(responseFromDomainr) {
// do things with the responseFromDomainr object
})
domainr.info("cnnr.me", function(responseFromDomainr) {
@connor
connor / package.json
Created May 28, 2012 04:57
Domai.nr node module package.json file
{
"name": "Domai.nr"
, "version": "1.0.0"
, "description": "A dead-simple way to utilize Domai.nr's JSON API"
, "keywords": [
"domainr"
, "domains"
, "search"
, "domain"
]
@connor
connor / dabblet.css
Created May 14, 2012 04:59
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
background: #f06;
background: linear-gradient(42deg, #f06, yellow);
min-height: 100%;