[GET] Free content spinner - with source code!

bbrez1

Power Member
Joined
Feb 21, 2009
Messages
675
Reaction score
2,378
It's really simple actually (I made it in 2-3 hours). It doesn't have nested spinner yet but I will probably create it in the next version. I will also add synonyms. It's going to be like the best spinner except this one is going to be completely free. You can find the source at the bottom (not whole, but the most important part - the spinning functions - I haven't found this source code anywhere yet). There are some tool tips on buttons for some more info. Expect the updated version till the end of the month.

Screenshot:
111wz.png


v1.0 Download:
Code:
http://udesignmedia.com/ContentSpinner.zip

v1.01 Download:
Code:
http://udesignmedia.com/ContentSpinner1.zip
Changes in v1.01 - fixed one small bug, added word and char counter

VirusTotal:
Code:
http://www.virustotal.com/analisis/8a56f92c8ed8dab5365294492b58f3a7c85fadf7f3d5c85d2ea592298caada16-1278627271

Source:
Code:
        private string returnSpinnedPart(string part)
        {
            Random random = new Random();

            string[] values = part.Split('|');

            if (values.Length > 0)
                return values[random.Next(0, values.Length)];

            return "";
        }

        private string returnSpinnedContent(string input)
        {
            string spinned = input;
            try
            {
                Regex regexObj = new Regex(@"\{.*?\}", RegexOptions.Singleline);
                MatchCollection m = regexObj.Matches(input);
                foreach (Match match in m)
                {
                        string part = returnSpinnedPart(match.Value.Replace("{", "").Replace("}", ""));
                        spinned = spinned.Replace(match.Value, part);
                }
            }
            catch (ArgumentException ex)
            {
                MessageBox.Show("RegEx prob");
            }
            return spinned;
        }
 
Last edited:
nvm..

I cant get it to work, check this yourself, its not spinning anything..
 
Last edited:
nvm..

I cant get it to work, check this yourself, its not spinning anything..
Its working fine; here's some of the results of spinning

This is so cool.

This is so powerful.

This is totally powerful.

This is perfect.

This is absolutely useful.

This is pretty much blabla.

This is pretty much perfect.

This is really awesome.

This is absolutely great.
 
Thanks bro, simple and effective...works like a snake charmer!
 
nvm..

I cant get it to work, check this yourself, its not spinning anything..

I think you've doubts regarding automatic synonym replacement for a selected word. Is it that?

If it is, the author has stated that synonyms are to be included in the future version.

If you use the syntax manually, then it is working fine.
 
I made a small update

v1.01 Download:
Code:
http://udesignmedia.com/ContentSpinner1.zip
Changes in v1.01 - fixed one small bug, added word and char counter
 
I think you've doubts regarding automatic synonym replacement for a selected word. Is it that?

If it is, the author has stated that synonyms are to be included in the future version.

If you use the syntax manually, then it is working fine.

My bad, this is exactly it, i will edit my first post.
I did not read the original post fully, sorry!
 
My bad, this is exactly it, i will edit my first post.
I did not read the original post fully, sorry!

No problem. Thanks skindu26 for helping him out.

I would be really happy if anyone else could write a review and maybe suggest some features (he would like to see) for the new version. As stated I will add synonyms and probably nested spinner.

Thanks :o
 
Great, happy to hear that. :) Thanks
 
How many articles can be gotten from this amazin software
Posted via Mobile Device
 
How many articles can be gotten from this amazin software
Posted via Mobile Device

It depends on how many spinned words you use. The more you use, the more possible combinations you can have.

I will need to start to work on the update tho, thanks for reminding me :D
 
I downloaded it but dont know how to use it. Anybody please guide me ?
Posted via Mobile Device
 
:)

Are there any article spinners out there that are ready to run, with all the bells and whistles.

I need something easy to understand and operate, that produces quality and dependable results. No mumbo jumbo !!!

If I have to buy this . . . then so be it. I will pay one time fee for program, no monthly or annual renewal fees.

I guess thats it for now,

Be seeing you.

:cool:
 
thanks for this buddy

You are welcome :)

is this c#?

Yes C#.

I downloaded it but dont know how to use it. Anybody please guide me ?
Posted via Mobile Device

It's very simple actually. Look at the input text that appears when you open the program. For every word that you want to be a random word out of a number of words you start with {} and then put the words in there and split them by |. For example: {Hi|Hey|Hello}. One of these 3 words will be randomly chosen.

:)

Are there any article spinners out there that are ready to run, with all the bells and whistles.

I need something easy to understand and operate, that produces quality and dependable results. No mumbo jumbo !!!

If I have to buy this . . . then so be it. I will pay one time fee for program, no monthly or annual renewal fees.

I guess thats it for now,

Be seeing you.

:cool:

I don't really know what you are asking for. If you would like a better tool than I suggest the best spinner. However this tool that I made is completely free for you and it's very simple. It just does not have the synonym database (yet) so you need to write them on your own.
 
last night I was coding a text spinner for my bot and got frustrated....... my code just didn't worked as I wanted....searched google and found nothing....was browsing bhw and found this thread. damn I am Lucky.........:banana:

Thanks for the code.
 
thanks for the great tool.
as for the features request.. just what you mentioned you are working on, nested brackets and synonyms finder would be great.
 
Back
Top