How many *unique* daily sig views do you get on GFY?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • borked
    Totally Borked
    • Feb 2005
    • 6284

    #1

    How many *unique* daily sig views do you get on GFY?

    I'll tell you mine if you tell me yours

    All I can say, is there a lot of lazy bods on GFY - There's a helluva lot of lurkers around, given the ratio between number of posts per day and the unique daily sig views.

    And when it comes to raw sig views, there are *really* a frikken lot of lazy fuggers out there. WTF do some of you do? Spend your day reloading GFY every minute?

    What is the average CTR on a GFY sig anyway?

    Collecting GFY demographics is, well interesting the say the least ;)

    For coding work - hit me up on andy // borkedcoder // com
    (consider figuring out the email as test #1)



    All models are wrong, but some are useful. George E.P. Box. p202
  • seeandsee
    Check SIG!
    • Mar 2006
    • 50945

    #2
    million per day
    BUY MY SIG - 50$/Year

    Contact here

    Comment

    • JayDeeZee
      Confirmed User
      • Aug 2006
      • 3595

      #3
      I'm not lurking in this thread

      Comment

      • JamesK
        hi
        • Jun 2002
        • 16731

        #4
        at least one gazillion
        M3Server - NATS Hosting

        Comment

        • jurar1
          Confirmed User
          • Feb 2004
          • 2284

          #5
          http://www.alexa.com/data/details/tr...ils/gfy.com?q=
          http://porn.paydir.com - Affiliate Programs Directory for Webmasters

          Signups-M578 + 3M140=Rebills-710 MY BEST BDSM Affiliate Programm


          <<<<<MY BEST TEEN RATIO 1:47 FUCKING-CASH>>>>>

          Comment

          • HorseShit
            Too lazy to set a custom title
            • Dec 2004
            • 17513

            #6
            I get quite a few as you can imagine

            Comment

            • CurrentlySober
              Too lazy to wipe my ass
              • Aug 2002
              • 38944

              #7
              Hey Borked,

              Your Geo-IP sig is a LOT more accurate than the usual geo fair!

              When I see the 'Meet Local Girl' ads, they always say, 'Near you in...' and then give a town over 300 miles away... But your 'Town' is less than 30 miles from where I am !!!

              Good work !


              👁️ 👍️ 💩

              Comment

              • JFK
                FUBAR the ORIGINATOR
                • Jan 2002
                • 67373

                #8
                Originally posted by ThatGuyInTheCorner
                Hey Borked,

                Your Geo-IP sig is a LOT more accurate than the usual geo fair!

                When I see the 'Meet Local Girl' ads, they always say, 'Near you in...' and then give a town over 300 miles away... But your 'Town' is less than 30 miles from where I am !!!

                Good work !
                my town is right on

                FUBAR Webmasters - The FUBAR Times - FUBAR Webmasters Mobile - FUBARTV.XXX
                For promo opps contact jfk at fubarwebmasters dot com

                Comment

                • borked
                  Totally Borked
                  • Feb 2005
                  • 6284

                  #9
                  Originally posted by JayDeeZee
                  I'm not lurking in this thread
                  too late, I got you man - sending the feds in tomorrow at 3am

                  For coding work - hit me up on andy // borkedcoder // com
                  (consider figuring out the email as test #1)



                  All models are wrong, but some are useful. George E.P. Box. p202

                  Comment

                  • borked
                    Totally Borked
                    • Feb 2005
                    • 6284

                    #10
                    Originally posted by ThatGuyInTheCorner
                    Hey Borked,

                    Your Geo-IP sig is a LOT more accurate than the usual geo fair!

                    When I see the 'Meet Local Girl' ads, they always say, 'Near you in...' and then give a town over 300 miles away... But your 'Town' is less than 30 miles from where I am !!!

                    Good work !
                    Originally posted by JFK
                    my town is right on


                    Thanks guys -

                    you check out the nearby towns that this free service offers?

                    For coding work - hit me up on andy // borkedcoder // com
                    (consider figuring out the email as test #1)



                    All models are wrong, but some are useful. George E.P. Box. p202

                    Comment

                    • Bro Media - BANNED FOR LIFE
                      MOBILE PORN: IMOBILEPORN
                      • Jan 2004
                      • 16502

                      #11
                      I wondered this same thing, and have been on my spare time, writing a sig script that logs all views, and clicks on it so I can measure the CTR

                      Comment

                      • borked
                        Totally Borked
                        • Feb 2005
                        • 6284

                        #12
                        Originally posted by Retox Josh
                        I wondered this same thing, and have been on my spare time, writing a sig script that logs all views, and clicks on it so I can measure the CTR
                        PHP Code:
                        if ( !is_file($abs_path . '/cache/'.date('Ymd').'-'.$_SERVER['REMOTE_ADDR']) ) {
                           $fh = fopen($abs_path . '/cache/'.date('Ymd').'-'.$_SERVER['REMOTE_ADDR'], 'w');
                           fwrite($fh, $animation);
                           fclose($fh);
                        } 
                        
                        for the uniques
                        do a $i++ file write on a file for raw

                        and something else for clicks before a redirect to send them where they need to go

                        you know all this - you're just yanking my chain

                        --edit
                        that fwrite code is for my own sig, so as not to have to go through the whole processor-crunching stuff on every page load...I can grab uniques by the shell command:

                        Code:
                        ls -l | sed 1d | awk 'BEGIN{print "Month (Num Files)"}{count[$6]++}END{for(j in count) print j,"("count[j]")"}'
                        Last edited by borked; 12-19-2008, 01:24 PM.

                        For coding work - hit me up on andy // borkedcoder // com
                        (consider figuring out the email as test #1)



                        All models are wrong, but some are useful. George E.P. Box. p202

                        Comment

                        • Bro Media - BANNED FOR LIFE
                          MOBILE PORN: IMOBILEPORN
                          • Jan 2004
                          • 16502

                          #13
                          Originally posted by borked
                          PHP Code:
                          if ( !is_file($abs_path . '/cache/'.date('Ymd').'-'.$_SERVER['REMOTE_ADDR']) ) {
                             $fh = fopen($abs_path . '/cache/'.date('Ymd').'-'.$_SERVER['REMOTE_ADDR'], 'w');
                             fwrite($fh, $animation);
                             fclose($fh);
                          } 
                          
                          for the uniques
                          do a $i++ file write on a file for raw

                          and something else for clicks before a redirect to send them where they need to go

                          you know all this - you're just yanking my chain
                          Hahaha, yes I have it already, I've been writing it ;)

                          Comment

                          • borked
                            Totally Borked
                            • Feb 2005
                            • 6284

                            #14
                            raw:unique for me 1685:1

                            unique: 3490

                            that is some serious thread reloading, or bot activity (edit: or something seriously fucked up with my code!!!)

                            35 minutes to the end of the day, and I think I posted about 6 or 7 posts today
                            Last edited by borked; 12-19-2008, 01:28 PM.

                            For coding work - hit me up on andy // borkedcoder // com
                            (consider figuring out the email as test #1)



                            All models are wrong, but some are useful. George E.P. Box. p202

                            Comment

                            • borked
                              Totally Borked
                              • Feb 2005
                              • 6284

                              #15
                              bollox - I always get these things fucked up...
                              unique 1685
                              raw:unique 3490:1

                              For coding work - hit me up on andy // borkedcoder // com
                              (consider figuring out the email as test #1)



                              All models are wrong, but some are useful. George E.P. Box. p202

                              Comment

                              • Fletch XXX
                                GFY HALL OF FAME DAMMIT!!!
                                • Jan 2002
                                • 60840

                                #16
                                Millions

                                Want an Android App for your tube, membership, or free site?

                                Need banners or promo material? Hit us up (ICQ Fletch: 148841377) or email me fletchxxx at gmail.com - recent work - About me

                                Comment

                                • borked
                                  Totally Borked
                                  • Feb 2005
                                  • 6284

                                  #17
                                  unique: 1685
                                  raw: 588065

                                  you work it out, cos I think I'm wrong

                                  350 page loads on avg per person??? You lazy fuggers!! unless you *really* want to know the weather today, 350 times a day
                                  Last edited by borked; 12-19-2008, 01:32 PM.

                                  For coding work - hit me up on andy // borkedcoder // com
                                  (consider figuring out the email as test #1)



                                  All models are wrong, but some are useful. George E.P. Box. p202

                                  Comment

                                  • borked
                                    Totally Borked
                                    • Feb 2005
                                    • 6284

                                    #18
                                    Originally posted by borked
                                    bollox - I always get these things fucked up...
                                    unique 1685
                                    raw:unique 3490:1
                                    unique 1685
                                    raw:unique 349:1

                                    Thanks Mathematics Mike

                                    For coding work - hit me up on andy // borkedcoder // com
                                    (consider figuring out the email as test #1)



                                    All models are wrong, but some are useful. George E.P. Box. p202

                                    Comment

                                    • The Duck
                                      Adult Content Provider
                                      • May 2005
                                      • 18243

                                      #19
                                      Looks like we will have snow on christmas eve if your thingy is correct, nice.
                                      Skype Horusmaia
                                      ICQ 41555245
                                      Email [email protected]

                                      Comment

                                      • borked
                                        Totally Borked
                                        • Feb 2005
                                        • 6284

                                        #20
                                        Originally posted by kandah
                                        Looks like we will have snow on christmas eve if your thingy is correct, nice.
                                        cunt, go away with your snow
                                        sunny and 17oC here

                                        --edit
                                        weather from wunderground btw, not my fault ;)

                                        For coding work - hit me up on andy // borkedcoder // com
                                        (consider figuring out the email as test #1)



                                        All models are wrong, but some are useful. George E.P. Box. p202

                                        Comment

                                        • arock10
                                          Confirmed User
                                          • Jan 2006
                                          • 6217

                                          #21
                                          interesting, here is one more load for you
                                          Sup

                                          Comment

                                          • Bro Media - BANNED FOR LIFE
                                            MOBILE PORN: IMOBILEPORN
                                            • Jan 2004
                                            • 16502

                                            #22
                                            Originally posted by borked
                                            unique: 1685
                                            raw: 588065

                                            you work it out, cos I think I'm wrong

                                            350 page loads on avg per person??? You lazy fuggers!! unless you *really* want to know the weather today, 350 times a day
                                            Could it be giving a raw for every time your sig is in the thread? since you've posted 9 times (as of my reply) for every page view, it counts 9 times? so if I open this thread 10 times, thats 90 raw for me.

                                            Comment

                                            • borked
                                              Totally Borked
                                              • Feb 2005
                                              • 6284

                                              #23
                                              Originally posted by Retox Josh
                                              Could it be giving a raw for every time your sig is in the thread? since you've posted 9 times (as of my reply) for every page view, it counts 9 times? so if I open this thread 10 times, thats 90 raw for me.
                                              for sure - good call

                                              For coding work - hit me up on andy // borkedcoder // com
                                              (consider figuring out the email as test #1)



                                              All models are wrong, but some are useful. George E.P. Box. p202

                                              Comment

                                              Working...