[FREE] Quick & Dirty Auto Spinner

Status
Not open for further replies.
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 :)

Thanks :) I plan on having awesome improvments to this in the future -- got a ton of work to catch up with before I can improve it some more. But I'll get it done.

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!

Davao City
 
Dude I am impressed. You just saved me bunch of $ buying the best spinner.
 
I would like to ask if there's a technique to automatically remove the syntax randomly choose one word inside the { ||}?

thanks
 
I would like to ask if there's a technique to automatically remove the syntax randomly choose one word inside the { ||}?

thanks

I'm noob but it's nesting methode so you need a small HTML code to resolve it ( BHW is the key ! )


Code:
blackhat-seo/black-hat-seo/422056-get-article-spinner-html-support-nesting.html
 
Nice accomplishment mate, shame auto generating spun articles is less useful now thanks to penguin!
 
nice! love it buddy! and looking forward to the upcoming tools that you will share. :)
 
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 ;)

Isn't the algorithm more complicated
, if you want it to be smart? For example using certain words in the righ
 
Yes its good but its not create automatically create article like http://www.smallseotools.com/article-rewriter/. Please use something like this.
 
very nice spinner! works perfect but current your site is down.
 
Site is down , lets hope that every thing will be fixed soon
 
Status
Not open for further replies.
Back
Top