Libntlm 0.3.13

I made a new release of libntlm today. There are no feature changes, just an update of gnulib files which offers better portability (hopefully including Mac OS X now).

I also noticed that I was not subscribed to the libntlm mailing list. Bad maintainer. 🙂

Announcing krb5dissect

Building on my earlier efforts to document the ccache format, I’ve now created the krb5dissect tool. It will parse your Kerberos ccache file (typically /tmp/krb5cc_$UID) and prints it in a human readable format.

This tool was written in about 1 hour, given the amazing amount of nice modules available from gnulib, and helpful tools such as gengetopt and help2man. Kudos!

Update! Version 2.0 can do the same for Kerberos keytab files (typically /etc/krb5.keytab).

gitco

I have been experimenting with git lately, and one of the results were a replacement for the old ‘cvsco’ tool that I’m highly addicted to.


#!/bin/sh
# gitco - cruel checkout. Discards everything
# that has not been committed, and checkout
# missing files.
#
# Written by Simon Josefsson. Licensed under
# GPLv2 or later. Contributions by Yann Dirson.
git clean -d -x
cg status -w
git reset --hard