[FREE] Quick & Dirty Auto Spinner

Status
Not open for further replies.
Sounds awesome!

Looks like a free replacement for some of Ubertoolz most useful functions ;)

Cheers!
Janis

Article directory scraper, definitely. This spinner, definitely. Posting (at least to wordpress through xmlrpc), definitely. I'm thinking 60 seconds from searching for an article, having it spun and posted to a blog.

There are lots of tools I want to make public. A keyword rank checker, a double or triple article merge-to-spin autospinner, a high quality manual spin creator, a tool to help stick a long list of backlinks into AMR spins for better indexing, a record-keeping system/checklist for manual seo, and tons more.
 
Awesome, thanks phpbuilt! Definitely looking forward to an XML-RPC poster for WP-style blogs.
 
simple ways are generally not good, and don't reach the success story.
 
Thanks for this. I like it. Very good choices of words to use.
 
This is cool for general content but I am looking for a content spinner that will also swap out cities, states, and even counties - anyone know of anything like that or anyone who is willing to build it? I will certainly pay for it!
 
Simple and effective, thanks for sharing + rep
 
If you need something like this for your simple standalone script you can use this code (although not as powerful as phpbuilt's one)

PHP:
function text_to_spintext( $text )
{
	// SET
	$thesaurus = file_get_contents( 'thesaurus.txt' );
	$library = preg_split( '/\r?\n/', $thesaurus );
	// PROC
	for( $a = 0; $a < count( $library ); ++$a):
		$searchlib = explode( '|', $library[$a] );
		for( $b = 0; $b < count( $searchlib ); ++$b ):
			if( stripos( $text, $searchlib[$b] . ' ' ) !== false ):
				$capitalized = ( $text{stripos( $text, $searchlib[$b] . ' ' )} === strtoupper( $text{stripos( $text, $searchlib[$b] . ' ' )} ) )? true : false;
				$spinstr = '{';
				for( $c = 0; $c < count( $searchlib ) - 1; ++$c):
					if( $capitalized ):
						$spinstr .= ucfirst( $searchlib[$c] ) . '|';
					else:
						$spinstr .= strtolower( $searchlib[$c] ) . '|';
					endif;
				endfor;
					if( $capitalized ):
						$spinstr .= ucfirst( $searchlib[count( $searchlib ) - 1] ) . '}';
					else:
						$spinstr .= strtolower( $searchlib[count( $searchlib ) - 1] ) . '}';
					endif;
				$text = str_ireplace( ' ' . $searchlib[$b] . ' ',' ' . $spinstr . ' ', $text );
			endif;
		endfor;
	endfor;
	// OUT
	return $text;
}

You'll need thesaurus.txt file with synonyms formated like this:
Code:
It's|It is
become|turn out to be|grow to be|turn into
don't|do not|really don't|tend not to
first|initial|very first
Have fun ;)
 
Stupid that I ignored this thread so many time having been disappointed with so many free spinners out there. But lucky now that I checked it. I really liked it man. Most free spinners I tried till now give such amazingly awful outputs that can put even a rapist to shame lol. But this one is quite nice. Its generating meaningful sentences. Thanks a lot for this and keep developing :)
 
wow! simple and it rocks! :-) better than any free spinner out there!!! hey phpbuilt, where you in the phils?? (i'm rocking here in dumaguete city)

good share!
 
Status
Not open for further replies.
Back
Top