Archive for the tech Category

Postini and Really, Really Obvious Spam

I’m not sure how Postini works from the algorithm level, but it doesn’t seem to do anything about two sets of emails, and I must be on the top of the least for each of them.

The first are emails with titles like “85% discount. Coupon #PqG1.” After I get a few thousand of these, won’t Postini figure this out? By the way, the body of these emails is usually something like “Dear michael, be intelligent, buy your meds from the best shop since 2000. ” So there isn’t even a hyperlink in there. I wonder how low of a response they’re looking for. Since they also spoofed the return address, I’d have to work really, really hard to patronize these guys.

Next, my next job as a Rebate Processor seems assured. I’ve got hundreds of offers here:

These all came in a row, but I’ve got many more. Will Postini catch on here?

Now, granted, I’m very happy with Postini. I came from SpamAssassin, and I really, really prefer Postini. But they must have tens or hundreds of thousands of these identical emails - I have over a thousand. So why am I seeing them? They weed out plenty of other garbage from my bulk mail - please get rid of these too!

Backing up my WordPress Blog on my Mac

Long time readers will know that I just started this blog.

Since I installed this on my Mac Mini, I decided I needed a way to back up the SQL data. If this Mac fails, this blog is toast. Most of what follows applies to any Linux machine.

I wrote a pretty simple script to run the backup. If you want to do something similar, use Terminal on the host Mac (or you can login remotely, but that’s another story). Go to a directory where you keep scripts (maybe “/usr/sbin” - you can do that by typing cd /usr/sbin).

Then create a file named something like blogbackup.sh (to do that, type vi blogbackup.sh).

Then, since you’re in the editor vi, you’ll need to press “a” then paste the following, replacing password with your SQL password, and backup with your secondary hard drive (or replacing /Volumes/backup with a different location on your primary drive, but that defeats half the purpose . . .).

 #!/bin/sh
mysqldump --add-drop-table -ppassword wordpress | bzip2 -c > blog.bak.sql.bz2
cp blog.bak.sql.bz2 /Volumes/backup/blog.bak.sql.bz2

To save in vi, press ESC then :w then :q.

Set the permissions to be sure this will execute:

chmod 777 blogbackup.sh

chmod +x blogbackup.sh

(I confess to not being a chmod expert, so those commands might be overlapping.)

To test out the script, type: 

 ./blogbackup.sh

From there, you should set up a recurring crontab to take care of the job. I set mine up as the superuser so that it would run without interruption. To do that, you’ll need root access - that’s a whole different story. But once you have it, here’s what you do:

crontab -e

brings up the list of cron jobs. To add a new one, paste in a line like this:

10 2 * * * /usr/sbin/blogbackup.sh

That basically says at 2:10 AM, run that script everyday. Save and quit with :w then :q.

Follow-up on Magazine Subscriptions via eBay

After my first fabulous success with renewing some magazine subscriptions via eBay, I just got this email from my eBay seller:

Hello. You are receiving this message/email from me since you’re one of the buyers from my store.Today, Ebay implemented their new policy regarding Pre-Sale items and they
consider Magazine Subscription as a violation to this policy. We might not
be selling magazine subscriptions on Ebay but our store will be open and
selling different item instead. We will keep it open so we can answer any
order status and refund requests (if any).

So, does it affect the order you already placed? Absolutely not. Your order
was already processed and will still be received within the timeframe provided.

We will still continue selling magazine subscriptions, but not through Ebay.Com,
but one of their affiliates, prostores. Our prostores website address is
Http://www.Superior-Subscriptions.Com. Not all items have been added there
but we’re working to have all items today. So please bear with us while
we are making the transition.

We will provide the same prices and policies. The new addition to transitioning
to a website is that you can pay using your credit card directly and not
signing up a Paypal account. Of course you can still pay with Paypal. You
have the option for combined payments as well.

For more information on the eBay Presale policy, please visit:

http://pages.ebay.com/help/policies/pre-sale.html

As always, we are here to answer any questions you might have. Please make
sure to include yuour Ebay userID when sending us an email or message.

Sincerely,

Superior Subscriptions
http://www.Superior-Subscriptions.Com

All strange capitalization aside (this company does sell on eBay, after all) I’m sorry the party stopped just after I found it.

But discount subscriptions are still out there. Just never, ever use the renewal forms right from the magazine. Go to a third party website like magazines.com or the one above. In my experience, they’re cheaper every time.

Two Hilarious Blogs

One, I just found. A friend from high school emailed it to me. It’s called Stuff White People Like, and it’s amazing. Maybe even better are the comments. Somehow, this guy tapped into a pretty funny community.

The other tied-for-funniest blog I read is the Fake Steve Jobs blog. Half of the posts are just of the variety of “I’m speechless” with a link to a YouTube video or something, but even those are good editorial choices. Beyond that, his relentless attacks on the Borg (Microsoft), Hillary, Faceberg (Zuckerberg of Facebook), and, really, himself (the real Steve here, since he’s supposedly writing this) are really well written, and endlessly entertaining.