This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"connect" : ["irc://freenode/#pdxtech", | |
"irc://freenode/#pdxbots"], | |
"networks" : { "freenode" => {"host": "irc.freenode.net"}, | |
"psu" => {"host": "irc.cat.pdx.edu"} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[main] | |
logdir=/var/log/puppet | |
vardir=/var/lib/puppet | |
ssldir=/var/lib/puppet/ssl | |
rundir=/var/run/puppet | |
factpath=/lib/facter | |
pluginsync=true | |
templatedir=/templates | |
prerun_command=/etc/puppet/etckeeper-commit-pre | |
postrun_command=/etc/puppet/etckeeper-commit-post |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
## | |
# This is script with useful tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# install it: | |
# curl -sL https://raw.github.com/gist/2263406/osx.sh | sh | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// import for MongoDB Scala Driver | |
import com.osinka.mongodb.{MongoObject} | |
import com.osinka.mongodb.shape._ | |
import com.osinka.mongodb.wrapper.DBO | |
import com.osinka.mongodb.Preamble._ | |
import com.mongodb.{Mongo,DBObject} | |
case class User extends MongoObject { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#------------------------------------------------------------------------------ | |
# 2009-04-07 Bill Jackson <[email protected]> | |
# http://twitter.com/wajiii | |
#------------------------------------------------------------------------------ | |
/usr/local/git/bin/git diff --no-ext-diff "${1}" | /usr/local/bin/gitx | |
#------------------------------------------------------------------------------ | |
# end |