Changing the “From” address in emails generated by scripts

  Here is a convenient way to set the From address in emails generated automatically (for example report jobs run from cron):       echo be good | mutt -s 'message from Santa'  -e 'my_hdr From: Santa.Claus@NorthPole.org'   mutt's my favorite command-line emailer.   It is featureful and highly customizable.   www.mutt.org   

What is Object-Oriented Programming?

There is a remarkably lucid (and brief!) explanation of object-oriented programming at http://www.aonaware.com/OOP1.htm This is something I've tried to clear up twice before and given up.  Boy, am I glad I found the above explanation! Aleksey

Philosophy of System Administration

At a job interview last year, I was asked “What is your philosophy of system administration?” It’s a good question and one I hadn’t been asked before. Here’s Digital Elf on his philosophy of system administration: https://digitalelf.net/2011/09/philosophy-of-system-administration/ What’s yours?

Increase USB Flash Drive Write Speed

We nearly tripled our USB thumb drive write speed by changing the partitioning and aligning the filesystem with the parititioning, following “Increase USB Flash Drive Write Speed” http://linux-howto-guide.blogspot.com/2009/10/increase-usb-flash-drive-write-speed.html

“Security Questions”

From OWASP Development Guide Applications MUST NOT implement questions and answers as they are contrary to most privacy regimes and ineffective http://code.google.com/p/owasp-development-guide/wiki/WebAppSecDesignGuide_D2 Personal note: web apps that allow you to bypass password authentication via security question/answer drive me batty. I have half a mind to start contacting the webmasters to show them the above. Aleksey