It’s up to you to figure out why I did what I did, but I fixed the external logfile support, OpenSSL, building under MacOS X, and, er, formatting and timezone buglets, as well as a couple of other minor things.
This gzipped patch is against the Debian tagged sSMTP 2.60.3.
Update: This patch...
I recieved a few emails over the past few days from various folks in a specific user group who were looking for flavors of UNIX to put on some old machines they were donated.
The poor folks ended up getting similar hardware that I used to have on my NAT box; bad BIOS that can’t speak above 16MB pr...
Yes, yes. I know, you hate using the command line. I’ve already received email requests for a “front end” to my port of xmame to MacOS X, and I haven’t even mentioned it other than to three OS X using friends!
Sadly, most “front ends” utilities are not open source, or tied to third-party GUI widge...
You’ve probably wanted ‘du’ to print in a tree formation at some point to make it easier to comprehend… right? Right? Well, I know I have!
Here’s my pretty little zsh alias: pdu () {du $1 | sort +1 -2 | expand | awk -F/ ‘{for (i = 0; i < NF; ++i) printf “ “; print; }’ }
What’s it do? Simple!
...It’s quick, it’s dirty, and it’s ugly. Works for me, though.
#include int main() { int c; while(1) { c=getchar(); if (c==EOF) exit(1); if (c != ‘<’) putchar©; else while (c != ‘>’) { c=getchar(); if (c==EOF) exit(1); } } exit 0; }