Skip to content

Instantly share code, notes, and snippets.

View slucero's full-sized avatar

Stephen Lucero slucero

  • Red Hat
  • Arkansas
View GitHub Profile
@slucero
slucero / 0_reuse_code.js
Created January 31, 2014 15:41
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@slucero
slucero / gist:3869470
Created October 11, 2012 00:47
Alfred Extension: Tabbed Adium Chat
on alfred_script(q)
set theString to "" & q
set theMessage to theString
#get the name portion of the string
set AppleScript's text item delimiters to {":"}
set chatParts to (every text item in theString) as list
set theName to item 1 of chatParts