random text generator

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Spider Ninja
    Registered User
    • Nov 2005
    • 2051

    #1

    random text generator

    Random Text Generator - hit refresh a few times.

    Input file:

    http://www.spiderninja.com/random-te...text-input.txt

    If you are interested, email me: ninja [at] spiderninja.com
  • fris
    Too lazy to set a custom title
    • Aug 2002
    • 55679

    #2
    nice how much do you want?
    Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

    Comment

    • JoeMeca
      So Fucking Banned
      • Nov 2005
      • 2266

      #3
      what he said?

      Comment

      • Spider Ninja
        Registered User
        • Nov 2005
        • 2051

        #4
        $30 is great ;-) I have it in php and perl

        Comment

        • kernelpanic
          Too lazy to set a custom title
          • Jan 2005
          • 2961

          #5
          This looks awfully like a Mark V Shaney bot.


          ZangoCash - Turn Your Traffic Into Ca$h.
          $.40 Per Install - No Tier

          Comment

          • Spider Ninja
            Registered User
            • Nov 2005
            • 2051

            #6
            what's a "Mark V Shaney bot?"

            Comment

            • Spider Ninja
              Registered User
              • Nov 2005
              • 2051

              #7
              Check it out, I'm soul rebel certified

              so no bot

              Comment

              • relaxengine
                Confirmed User
                • Jan 2006
                • 121

                #8
                alot like - www.charlierobot.com
                [email protected]

                Comment

                • Spider Ninja
                  Registered User
                  • Nov 2005
                  • 2051

                  #9
                  Originally posted by relaxengine
                  please explain relaxengine...you mean using the Markov Chain to generate random text?

                  Comment

                  • kernelpanic
                    Too lazy to set a custom title
                    • Jan 2005
                    • 2961

                    #10
                    Originally posted by Spider Ninja
                    what's a "Mark V Shaney bot?"
                    Fairly useful test generator based on Markov chaining. The code has been sold over and over to webmasters even though its freely available.


                    ZangoCash - Turn Your Traffic Into Ca$h.
                    $.40 Per Install - No Tier

                    Comment

                    • Spider Ninja
                      Registered User
                      • Nov 2005
                      • 2051

                      #11
                      Originally posted by kernelpanic
                      Fairly useful test generator based on Markov chaining. The code has been sold over and over to webmasters even though its freely available.
                      Ahhh...thanks for the clarification ;-)

                      Sure..this is the Markov Chain:

                      Code:
                      $MAXGEN = 10000;
                      $NONWORD = "\n";
                      $w1 = $w2 = $NONWORD;           # initial state
                      while (<>) {                    # read each line of input
                      	foreach (split) {
                      		push(@{$statetab{$w1}{$w2}}, $_);
                      		($w1, $w2) = ($w2, $_);	# multiple assignment
                      	}
                      }
                      push(@{$statetab{$w1}{$w2}}, $NONWORD); 	# add tail
                      
                      $w1 = $w2 = $NONWORD;
                      for ($i = 0; $i < $MAXGEN; $i++) {
                      	$suf = $statetab{$w1}{$w2};	# array reference
                      	$r = int(rand @$suf);		# @$suf is number of elems
                      	exit if (($t = $suf->[$r]) eq $NONWORD);
                      	print "$t\n";
                      	($w1, $w2) = ($w2, $t);		# advance chain
                      }
                      I made some improvements on it which I think are worth the buck, but you don't have to buy from me

                      Comment

                      • Spider Ninja
                        Registered User
                        • Nov 2005
                        • 2051

                        #12
                        Originally posted by kernelpanic
                        This looks awfully like a Mark V Shaney bot.
                        you're right...it is just like the Mark V Shaney bot ;-)

                        Comment

                        • Spider Ninja
                          Registered User
                          • Nov 2005
                          • 2051

                          #13
                          Originally posted by relaxengine
                          paul...why are you spamming my threads?

                          Comment

                          • relaxengine
                            Confirmed User
                            • Jan 2006
                            • 121

                            #14
                            Originally posted by Spider Ninja
                            paul...why are you spamming my threads?
                            No no I don't mean to spam anyones threads, I just like to comment on things, like anyone else. www.charlierobot.com is not like your product so I won't compare it again.
                            [email protected]

                            Comment

                            • Spider Ninja
                              Registered User
                              • Nov 2005
                              • 2051

                              #15
                              haha...thanks bro for spamming my thread again

                              Comment

                              • Spider Ninja
                                Registered User
                                • Nov 2005
                                • 2051

                                #16
                                btw paul, charlierobot is really a sweet use of AJAX ;-)

                                Comment

                                • relaxengine
                                  Confirmed User
                                  • Jan 2006
                                  • 121

                                  #17
                                  :-) sorry Spider Ninja ....

                                  Ping me on yahoo - relaxengine for a chat....
                                  [email protected]

                                  Comment

                                  • Spider Ninja
                                    Registered User
                                    • Nov 2005
                                    • 2051

                                    #18
                                    no problems, I'm just teasting you ;-)

                                    Comment

                                    Working...