Skip to content

Instantly share code, notes, and snippets.

View claudinec's full-sized avatar

Claudine Chionh claudinec

View GitHub Profile
@kathgironpe
kathgironpe / solr.textile
Created April 14, 2011 23:29
Install Tomcat 6 and Solr on Mac OS X.

SolR and Tomcat

1. Install Tomcat on Mac

Sources: 
http://www.malisphoto.com/tips/tomcatonosx.html

http://wiki.apache.org/solr/SolrTomcat
@mxcl
mxcl / uninstall_homebrew.sh
Created August 26, 2011 11:25
Uninstall Homebrew
#!/bin/sh
# Just copy and paste the lines below (all at once, it won't work line by line!)
# MAKE SURE YOU ARE HAPPY WITH WHAT IT DOES FIRST! THERE IS NO WARRANTY!
function abort {
echo "$1"
exit 1
}
set -e
@ryangray
ryangray / buttondown.css
Created February 22, 2012 06:45
A clean, minimal CSS stylesheet for Markdown, Pandoc and MultiMarkdown HTML output.
/*
Buttondown
A Markdown/MultiMarkdown/Pandoc HTML output CSS stylesheet
Author: Ryan Gray
Date: 15 Feb 2011
Revised: 21 Feb 2012
General style is clean, with minimal re-definition of the defaults or
overrides of user font settings. The body text and header styles are
left alone except title, author and date classes are centered. A Pandoc TOC
@justinrainbow
justinrainbow / gist:2002574
Created March 8, 2012 18:38
Hipchat emoticon list
:-)
:)
:-)
:o
:$
:/
:(
:-*
:#
:'(
@claudinec
claudinec / vcb_stub.make
Created June 12, 2012 03:23
vcb_stub.make
core = 7.x
api = 2
; Drupal core
projects[drupal][type] = "core"
projects[drupal][version] = "7.14"
; Install profile
projects[vcb_profile][type] = "profile"
projects[vcb_profile][download][type] = "git"
@claudinec
claudinec / hnw.build
Created July 30, 2012 05:29
hnw.build
core = 7.x
api = 2
; Copy of core
projects[drupal][version] = "7.18"
; Copy of hnw_profile
; This contains another makefile that will recursively fetch
; our contrib/custom modules, libraries and themes
@claudinec
claudinec / uft_stub.make
Last active October 9, 2015 11:08
UFT Drupal 7 stub makefile
core = 7.x
api = 2
; Copy of core
projects[drupal][version] = "7.22"
; Copy of uft_profile
; This contains another makefile that will recursively fetch
; our contrib/custom modules, libraries and themes
@claudinec
claudinec / yarragreens.make
Created October 13, 2012 03:23
yarragreens.make
core = 7.x
api = 2
; Copy of core
projects[drupal][version] = "7.16"
; Copy of yarragreens_profile
; This contains another makefile that will recursively fetch
; our contrib/custom modules, libraries and themes
@claudinec
claudinec / drupal6.make
Created December 5, 2012 22:27
Drupal stub makefiles
core = 6.x
api = 2
; Copy of core
projects[drupal][version] = "6.26"
@pjf
pjf / exifpic.pl
Last active December 10, 2015 09:58 — forked from anonymous/exifpic
# /usr/bin/perl -w
use 5.010;
use strict;
use warnings;
use threads;
use Thread::Queue;
use autodie qw(:all);
use Image::ExifTool qw(ImageInfo);
use Data::Dumper;
use Imager;