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/ruby | |
require 'rubygems' | |
require 'ruby-growl' | |
msg = `/opt/local/bin/fortune` | |
g = Growl.new('localhost', 'Fortune Growler', ['Fortune'], nil, "GrowlP4ss"); | |
g.notify 'Fortune', 'Fortune Growler', msg |
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
/** | |
* Based off of the Lucene prolog parser in the wordnet contrib package within the | |
* main Lucene project. It has been modified to remove the Lucene bits and generate | |
* a synonyms.txt file suitable for consumption by Solr. The idea was mentioned in | |
* a sidebar of the book Solr 1.4 Enterprise Search Server by Eric Pugh. | |
* | |
* @see <a href="http://lucene.apache.org/java/2_3_2/lucene-sandbox/index.html#WordNet/Synonyms">Lucene Sandbox WordNet page</a> | |
* @see <a href="http://svn.apache.org/repos/asf/lucene/dev/trunk/lucene/contrib/wordnet/">SVN Repository of the WordNet contrib</a> | |
* @see <a href="https://www.packtpub.com/solr-1-4-enterprise-search-server/book">Solr 1.4 Enterprise Search Server Book</a> | |
*/ |
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/ruby | |
# | |
# Generate a screensaver for your Nook with the contents of the current XKCD RSS feed | |
# http://xkcd.com/rss.xml | |
# | |
# Requirements: | |
# * Hpricot | |
# Optional: | |
# * RMagick | |
# |
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/sh | |
# | |
# Regenerates documentaion and adds it to the commite | |
# | |
# To enable this hook, rename this file to "pre-commit". | |
echo | |
echo "Regenerating Documentation" | |
echo | |
rake doc:generate | |
echo |
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 node | |
// Require the filesystem library | |
var fs = require('fs'); | |
// Connect to MySQL | |
var Client = require('mysql').Client, client = new Client(); | |
client.user = 'rails'; | |
client.connect(); | |
client.query('USE scratch'); |
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
inm-bradfordcp-mbp:some_folder bradfordcp$ cat .git/hooks/pre-commit | |
#!/bin/sh | |
# | |
# Regenerates documentation and adds it to the commit | |
# | |
echo | |
echo "Regenerating Documentation" | |
echo | |
rake doc:generate | |
echo |
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
<?php | |
// Location where we are storing the cache | |
$CACHE_DIRECTORY = dirname(dirname(__FILE__)) ."/statics"; | |
// Set the lifetime of cached pages | |
$CACHE_LIFETIME = (24 * 60 * 60); // 24 Hours * 60 Minutes (per hour) * 60 Seconds (per minute) | |
// Grab the URL to proxy, strip out the host as a security measure | |
$url = null; |
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
# Package Maintainer: Increment phusion_release to match latest release available | |
%define phusion_release 2011.03 | |
%define _prefix /opt/ruby-enterprise | |
Summary: Ruby Enterprise Edition (Release %{phusion_release}) | |
Name: ruby-enterprise | |
Vendor: Phusion.nl <[email protected]> | |
Packager: Christopher Bradford <[email protected]> | |
Version: 1.8.7 | |
Release: 7%{?dist} |
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
for (NSString *family in [UIFont familyNames]) { | |
NSLog(@"Family: %@", family); | |
for (NSString *font in [UIFont fontNamesForFamilyName:family]) { | |
NSLog(@" - %@", font); | |
} | |
NSLog(@""); | |
} |
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 ruby | |
require 'rubygems' | |
require 'uri' | |
require 'net/http' | |
require 'json' | |
require 'pp' | |
require 'mysql' | |
SERVER = "http://drupal.example.com/api/blog" |
OlderNewer