Jun 03

check out screen shot i took when I noticed email count inside of my inbox on gmail account!

gmail2.png

Oct 25

Oct 15

Oct 10

d# cat _qs.sh
#!/bin/sh
# $Id: _qs.sh,v 1.4 2007/10/11 04:24:36 alexus Exp $
#

_q()
{

for j in `grep rblsmtpd $1 | grep spam | awk '{print $3}' | sort | uniq`; do
grep -q $j /etc/tcp.smtp
if [ $? != 0 ]; then
echo $j:deny >> /etc/tcp.smtp
c=`expr $c + 1`
fi
done

}
c=0

if [ -z $1 ]; then
echo “usage: $0 [c|a]”
exit 1
elif [ $1 = c ] ; then
_q /var/log/qmail/smtpd/current
elif [ $1 = a ] ; then
for i in `ls /var/log/qmail/smtpd/@*`; do
_q $i
done
fi

if [ $c -gt 0 ]; then
mv /etc/tcp.smtp /etc/tcp.smtp.bak
cat /etc/tcp.smtp.bak | sort > /etc/tcp.smtp
echo $c ; /var/qmail/bin/qmailctl cdb
fi
d#

Apr 12

Use Microsoft Virtual PC 2007 to run multiple operating systems at the same time on the same physical computer. Switch between virtual machines with the click of a button. Use virtual machines to run legacy applications, provide support, train users, and enhance quality assurance.

Virtual PC lets you create separate virtual machines on your Windows desktop, each of which virtualizes the hardware of a complete physical computer. Use virtual machines to run operating systems such as MS-DOS, Windows, and OS/2. You can run multiple operating systems at once on a single physical computer and switch between them as easily as switching applications—instantly, with a mouse click. Virtual PC is perfect for any scenario in which you need to support multiple operating systems, whether you use it for tech support, legacy application support, training, or just for consolidating physical computers.

http://go.microsoft.com/fwlink/?LinkId=78095