Skip to content

Instantly share code, notes, and snippets.

View connor's full-sized avatar

Connor Montgomery connor

View GitHub Profile
@connor
connor / .jshintrc.js
Created January 11, 2012 22:20
jshintrc example
// NOTE: I added the .js extension to this gist so it would have syntax highlighting. This file should have NO file extension
{
// Settings
"passfail" : false, // Stop on first error.
"maxerr" : 100, // Maximum error before stopping.
// Predefined globals whom JSHint will ignore.
"browser" : true, // Standard browser globals e.g. `window`, `document`.
@connor
connor / pre-commit.sh
Created January 11, 2012 22:14
Check your files against JSHint before committing
# WHAT IS THIS?
# This is a pre-commit hook that runs your js code against jshint before committing.
# If you ever want to make a commit without it running this, simply run:
# git commit -n
# INSTRUCTIONS:
# 1. Install jshint-runner: npm install -g jshint-runner
# 2. In your git project, rename .git/hooks/pre-commit.sample to .git/hooks/pre-commit
# 3. Create a .jshintrc file in ~/. This is simply an object with the options you want. See mine here: https://gist.github.com/1597131
# 4. Paste the code below line 14 in that ~/.jshintrc file
@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 / 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 / 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 / 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 / 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"
]