Time to "waste" some more time!
Wow, E_S looking for intelligence and yet she had to use the ! key AND capitalize all the words (as if uppercase really conveys any sense of urgency) just like an AOL'er. Right on.
But, because I'm interested in the content of the post, I'll digress and let's go get perl... I figured that since this *is* a security site and programming is part of it, I'll contribute something... a text-to-binary converter and word/space/carriage return/total text counter!
Now, without any further ado, here we go. Oh yeah, for your future education, I included the letter being translated instead of doing just straight binary, so it wouldn't confuse you.
1: take your most current reply and run it through awk/sed to single-line the input and shove it to a file aptly named 'blah'.
2: run a for loop from the shell so that I parse every line with my trusty t2b script, giving me the binary equivalent of any single-digit character. This is done by the following:
for i in `cat blah`
do
echo "$i:`./t2b $i`" >> foo
done
3: ftp 'foo' to my winblows machine (since I'm at work) and attach to this reply, aptly named 'foo2.txt'.
Anyways, I had fun, how about you? On a parting note, I'd say your insults are losing their edge, but that's just MHO.