May 1, 2012

[iMacros Script] iMacros - Fake Name Generator

iMacros - Fake Name Generator

This will let you quickly generate tons of fake female names. All the results will match (i.e. the ZIP code matches the State and phone number area code).

 ' ------------------------------------------ Start Script ----------------------------------------
 'you need to change highlighted in Red

VERSION BUILD=7401110 RECORDER=FX
TAB T=1

SET !ERRORIGNORE YES
SET !EXTRACT_TEST_POPUP NO
FILTER TYPE=IMAGES STATUS=ON
URL GOTO=http://www.fakenamegenerator.com/gen-female-us-us.php
TAG POS=1 TYPE=SPAN ATTR=CLASS:given-name EXTRACT=TXT
TAG POS=1 TYPE=SPAN ATTR=CLASS:additional-name EXTRACT=TXT
TAG POS=1 TYPE=SPAN ATTR=CLASS:family-name EXTRACT=TXT
TAG POS=1 TYPE=SPAN ATTR=CLASS:street-address EXTRACT=TXT
TAG POS=1 TYPE=SPAN ATTR=CLASS:locality EXTRACT=TXT
TAG POS=1 TYPE=SPAN ATTR=CLASS:region EXTRACT=TXT
TAG POS=1 TYPE=SPAN ATTR=CLASS:postal-code EXTRACT=TXT
'password
TAG POS=1 TYPE=LI ATTR=TXT:Password*
TAG POS=R1 TYPE=LI ATTR=TXT:* EXTRACT=TXT
'phone number
TAG POS=R1 TYPE=SPAN ATTR=TXT:* EXTRACT=TXT
'mother's maiden name
TAG POS=R2 TYPE=LI ATTR=TXT:* EXTRACT=TXT
'birthday
TAG POS=R2 TYPE=LI ATTR=TXT:* EXTRACT=TXT
'SSN
TAG POS=R6 TYPE=LI ATTR=TXT:* EXTRACT=TXT
'job
TAG POS=R2 TYPE=LI ATTR=TXT:* EXTRACT=TXT
FILTER TYPE=IMAGES STATUS=OFF
SAVEAS TYPE=EXTRACT FOLDER=C:\ FILE=Women.csv









 ' ------------------------------------------- End Script ----------------------------------------

NOTES:

1. You will need to use the Play (Loop) button under where it says "Repeat Macro." I usually generate 10 at a time.

2. This saves the results to a CSV file under C:\. You can change the directory if you want.

3. If you are using this for Dating methods, you might want to run through the list of birth dates and change the year to 1993 (for 18-19 y/o girls) or another year. It generates a random age, and sometimes they are 70 years old.

4. Use Excel or other spreadsheet program to open the file for easy data manipulation.

Name this iMacro as Women.iim if you want it to work with the bonus macro below...

BONUS

Javascript to quickly generate 10 names (or however many you want)

var i
var ret

var i=0;
for (i=0;i<=9;i++)
{
/* Run the Macro(s)  */
ret = iimPlay("Women")
}
 
 Bonus Notes:
 

1.  Save this code in a file named Women.j s (no space between j and s)
 

2.  You can change the 9 to any number based on the number of names you 
need.  For example, if you want 50 names, change 9 to 49.  (That's 
because javascript counts the 0 as the first result, so all the end 
numbers are one number less than what you need).
 

Hope you enjoy this one.  
 

It's very practical for combining with the Signup macros.  Create 10 
names and then sign them up automatically for yahoo, digg, facebook, 
twitter, etc.  
 

And remember, hit the thanks button right here  --------------------------------->
                        
 
 

1 comment:

iMacros Script