Skip to content

Instantly share code, notes, and snippets.

@sfreiberg
sfreiberg / gist:4515042
Created January 11, 2013 23:57
Install fpm on centos 6.x with shepherd
// install fpm on centos 6.x
yum("ruby rubygems ruby-devel")
// yum groupinstall "Development Tools"
command("gem install fpm")
@sfreiberg
sfreiberg / ldap_auth.go
Created August 16, 2012 18:23
LDAP authentication in Go
package main
import (
"github.com/jbcrail/ldap"
"fmt"
)
func main() {
server := "ldap01.example.com:389"
package main
import (
"bufio"
"fmt"
"io"
"os"
"strings"
)