Skip to content

Instantly share code, notes, and snippets.

@dabio
dabio / gist:4239163
Created December 8, 2012 07:50 — forked from nickjenkin/gist:3175420
Golang Solr result xml parser
package solr
import (
"encoding/xml"
)
type SolrResponse struct {
Results SolrResults `xml:"result"`
}
@dabio
dabio / configure_liblo_iphone.sh
Created February 3, 2012 12:21 — forked from mikewoz/configure_liblo_iphone.sh
Configure liblo for iOS 5.0
./configure \
--host="arm-apple-darwin" \
--enable-static \
--disable-shared \
--disable-dependency-tracking \
CC=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc \
CPP=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/llvm-cpp-4.2 \
CXXCPP=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/llvm-cpp-4.2 \
CXX=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc\
AR=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/ar \