Skip to content

Instantly share code, notes, and snippets.

View seebi's full-sized avatar

Sebastian Tramp seebi

View GitHub Profile
### Keybase proof
I hereby claim:
* I am seebi on github.
* I am seebi (https://keybase.io/seebi) on keybase.
* I have a public key whose fingerprint is 0EDA 8086 2AF4 2518 ECFA A71B 5009 05B6 2DFE 00E3
To claim this, I am signing this object:
@seebi
seebi / virtuoso-database.make
Created January 17, 2014 12:45
Makefile which you can link to a virtuoso db directory to run some virtuoso specific tasks
port=$(shell cat virtuoso.ini| grep ServerPort | grep 111 | head -1 | cut -d "=" -f 2 | tr -d ' ')
default:
@echo "start - start a virtuoso instance from this directory"
@echo "stop - shutdown the running server"
@echo "clean - delete all files except the config"
@echo "isql - start a virtuoso based isql shell"
@echo "log - tail the logfile"
log:
@seebi
seebi / ldif.snippets
Created November 23, 2013 11:31
snipmate template for vim to create an aksw account
snippet akswa
dn: cn=${1:Givename} ${2:Surname},ou=People,dc=aksw,dc=org
sn: $2
objectClass: inetOrgPerson
mail: ${3:mail}
givenName: $1
uid: $1$2
cn: $1 $2
displayName: $1 $2