Skip to content

Instantly share code, notes, and snippets.

View jonDowdle's full-sized avatar

Jon Dowdle jonDowdle

View GitHub Profile

Keybase proof

I hereby claim:

  • I am jonDowdle on github.
  • I am jondowdle (https://keybase.io/jondowdle) on keybase.
  • I have a public key whose fingerprint is 5F3D 12C3 B7EE 79B9 3640 D142 C7CE 1B2F C5F5 9E38

To claim this, I am signing this object:

#
# VM configuration
#
# Where to find JVM, if {java.home}/jre exists then that JVM is used
# if not then it must be the path to the JRE itself
java.home=/opt/coldfusion9/runtime/jre/
#
# If no java.home is specified a VM is located by looking in these places in this
# order:
#
###############################################################################
# byobu's tmux f-key keybindings
#
# Copyright (C) 2011-2014 Dustin Kirkland <kirkland@byobu.co>
#
# Authors: Dustin Kirkland <kirkland@byobu.co>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 3 of the License.
CmdUtils.CreateCommand({
name: "show-tweets",
homepage: "http://www.jdowdle.com/",
author: { name: "Jon Dowdle", email: "jdowdle@gmail.com" },
license: "MPL",
_userSelection: function(input){
var userSelection = input ? input:CmdUtils.getSelection();
return userSelection;
<cfscript>
cKey = '68gG2okEZUOrl0dNKQeNPQ';
cSecret = 'qqPHVYLSjrJ4J9wDysQ9eAHenLiB2dYPdwsfLtTmQ';
reqUrl = 'https://twitter.com/oauth/request_token';
authUrl = 'http://twitter.com/oauth/authorize';
accessUrl = 'http://twitter.com/oauth/access_token';
</cfscript>
<cfhttp url="#reqUrl#" method="get" redirect="false">

Keybase proof

I hereby claim:

  • I am jonDowdle on github.
  • I am jondowdle (https://keybase.io/jondowdle) on keybase.
  • I have a public key whose fingerprint is 94F1 0C94 D66C 5BA4 1A18 79CD 556C E1E5 584D AA40

To claim this, I am signing this object:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>New Web Project</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js""></script>
<script type="text/javascript">
$(function(){
// Begin overriding jQuery data()
// Make all elements with the class 'photo' into a taggable object
$('.photo').taggable({
tags: '#tags .tag.active',
tagged: onTag ,
untagged: onUntag
});
/**
* Handler for the 'tag' event. When this fires,
* this handler will send the tag data to
@jonDowdle
jonDowdle / Twitter.cfc
Created September 7, 2010 18:16
Easy way to use twitter4j with ColdFusion
<cfcomponent output="false">
<cffunction name="init" returntype="Twitter">
<cfargument name="consumerKey" required="true">
<cfargument name="consumerSecret" required="true">
<cfargument name="authKey" type="string" required="false" default="">
<cfargument name="authSecret" type="string" required="false" default="">
<cfscript>
var local = {};
@jonDowdle
jonDowdle / eclipse.ini
Created October 18, 2010 00:19
My current eclipse.ini
-startup
plugins/org.eclipse.equinox.launcher_1.0.201.R35x_v20090715.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.0.200.v20090519
-product
org.eclipse.epp.package.java.product
--launcher.XXMaxPermSize
512M
-showsplash
org.eclipse.platform