Creating a Strong Brand with Twitter

Twitter has become one of the most common ways I find people, services and even support. With Twitter, you can create a strong brand, or you can weaken your existing brand.

Let me give you two unnamed examples. Example 1 is a SEO that sells SEO services. I have no doubt that he is great at what he does, but when I view his twitter stream, it’s full of tweets about getting drunk, having random sex and not remembering much of every weekend.

Example 2 is a friend of Example 1, I know this because Example 1 frequently references Example 2 in his drunken tweets talking about where they are going and what they are doing. However, Example 2 never tweets about anything inappropriate.

If you were going to hire someone, aren’t you going to do a little research? For both men, their Twitter account ranks #2 or #3 behind their blogs and company websites. Googling someone’s name is the first thing I do to find out about them. When I find Example 1′s twitter stream am I going to hire him? Definitely not. Even though Example 2 is partying with Example 1, I don’t have any clue because his stream is professional (with occasional personal tweets).

What does your Twitter stream say about you?

iMacros Select Random Datasource Line

If you’re like me, you want things to be as random as possible, this means selecting just about everything from a CSV or database. If you want to select a random line from your datasource, just create as many columns you need and use this code.


URL GOTO=http://www.graphpad.com/quickcalcs/randomN1.cfm
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:CFForm_1 ATTR=ID:low CONTENT=1
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:CFForm_1 ATTR=ID:hi CONTENT=10
TAG POS=1 TYPE=INPUT:SUBMIT FORM=NAME:CFForm_1 ATTR=NAME:Random
TAG POS=18 TYPE=TD ATTR=TXT:* EXTRACT=TXT
'
SET !VAR1 {{!EXTRACT}}
'
CMDLINE !DATASOURCE datasource.csv
SET !DATASOURCE_COLUMNS 1
SET !DATASOURCE_LINE {{!VAR1}}

The last three lines are what choose the random line in your CSV. Line 2 sets the low range and line 3 sets the high range of your random choice, so if you have a datasource with 55 lines, set the following.

TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:CFForm_1 ATTR=ID:hi CONTENT=10

Hope that helps you use iMacros in a better and more random way!

iMacros Random Number Variable

I’ve been using iMacros a lot lately and absolutely love it! Here is a quick and easy snippet of code to set your variable to be a random number between X and Y.

URL GOTO=http://www.graphpad.com/quickcalcs/randomN1.cfm
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:CFForm_1 ATTR=ID:low CONTENT=1
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:CFForm_1 ATTR=ID:hi CONTENT=10
TAG POS=1 TYPE=INPUT:SUBMIT FORM=NAME:CFForm_1 ATTR=NAME:Random
TAG POS=18 TYPE=TD ATTR=TXT:* EXTRACT=TXT
'
SET !VAR1 {{!EXTRACT}}
SET !EXTRACT NULL

This bit of code will choose a random number between 1 and 10 (you can change the high and low number on lines 2 and 3), extract that random number then set your random number into an iMacros variable !VAR1. It then erases the !EXTRACT so you’re ready to move onto something else.

You can then use !VAR1 anywhere else you need to use that random number. You can even use it multiple times!

WordPress 2.8 Recheck Queue for Spam Akismet

Does anyone know where the “recheck queue for spam” button/function went? I have over 200 comments on a blog and don’t want to manually go through them 20 at a time.

Anyone?