Thread: Folding@Home Cboard team?

  1. #151
    Software Developer jverkoey's Avatar
    Join Date
    Feb 2003
    Location
    New York
    Posts
    1,905
    We need to get more users working for the team!

  2. #152
    Carnivore ('-'v) Hunter2's Avatar
    Join Date
    May 2002
    Posts
    2,879
    I just installed it, for the heck of it. My first WU is 1000 frames long and is estimated to finish in 20 days

    Heyyyy wait a minute, it says I completed a work unit in 2003.. wtf? Looks like I just took someone else's name. *switches to HunterGuy2*

    **EDIT**
    Hm. Now says 2 days, but that's still a long time if I periodically turn my computer off as I usually do...
    Last edited by Hunter2; 06-13-2005 at 06:03 PM.
    Just Google It. √

    (\ /)
    ( . .)
    c(")(") This is bunny. Copy and paste bunny into your signature to help him gain world domination.

  3. #153
    Registered User major_small's Avatar
    Join Date
    May 2003
    Posts
    2,787
    Quote Originally Posted by Hunter2
    I just installed it, for the heck of it. My first WU is 1000 frames long and is estimated to finish in 20 days

    Heyyyy wait a minute, it says I completed a work unit in 2003.. wtf? Looks like I just took someone else's name. *switches to HunterGuy2*

    **EDIT**
    Hm. Now says 2 days, but that's still a long time if I periodically turn my computer off as I usually do...
    dont' always trust what it tells you when you're just starting a WU. just set it to run and forget about it and you'll notice how fast they build up...

    edit: only two more spaces to move up before we're #1000 :P
    Join is in our Unofficial Cprog IRC channel
    Server: irc.phoenixradio.org
    Channel: #Tech


    Team Cprog Folding@Home: Team #43476
    Download it Here
    Detailed Stats Here
    More Detailed Stats
    52 Members so far, are YOU a member?
    Current team score: 1223226 (ranked 374 of 45152)

    The CBoard team is doing better than 99.16% of the other teams
    Top 5 Members: Xterria(518175), pianorain(118517), Bennet(64957), JaWiB(55610), alphaoide(44374)

    Last Updated on: Wed, 30 Aug, 2006 @ 2:30 PM EDT

  4. #154
    5|-|1+|-|34|) ober's Avatar
    Join Date
    Aug 2001
    Posts
    4,429
    #997!! Woohoo!

    Has anyone figured out how to view the teams around you? I'd love to see the teams ranked 950-1050 or something like that.

  5. #155
    Carnivore ('-'v) Hunter2's Avatar
    Join Date
    May 2002
    Posts
    2,879

    Well, after running F@H all yesterday, I'm now at 40/1000. Although I did start halfway through the day, and turned my comp off during the night...
    Just Google It. √

    (\ /)
    ( . .)
    c(")(") This is bunny. Copy and paste bunny into your signature to help him gain world domination.

  6. #156
    5|-|1+|-|34|) ober's Avatar
    Join Date
    Aug 2001
    Posts
    4,429
    Leave your computer on all nite

  7. #157
    Software Developer jverkoey's Avatar
    Join Date
    Feb 2003
    Location
    New York
    Posts
    1,905
    We're in the top 1000!!!!!!!

  8. #158
    5|-|1+|-|34|) ober's Avatar
    Join Date
    Aug 2001
    Posts
    4,429
    You're sooo 3 posts behind

  9. #159
    Software Developer jverkoey's Avatar
    Join Date
    Feb 2003
    Location
    New York
    Posts
    1,905
    Oh....*cry* I just woke up, hah!

    But if you want a quick update, there's a script that generates my sig:

    http://thejefffiles.com/temp/fah.php

    (thanks to major_small for making it)

  10. #160
    Registered User major_small's Avatar
    Join Date
    May 2003
    Posts
    2,787
    /me waits until jverkoey gets a cease & desist on his DoS attack =P

    j/k they probably won't notice--I don't think we generate enough traffic as a team... so here's one meant to be viewed in a web-browser: http://www.johnshaoonline.com/misc/p...oardstyled.php

    AFAIK, there's no way to see the teams around you... I didn't look very hard though... and google is in the aggregate teams section, with the default team... they're ranked in their own section, so we wouldn't have to beat them out if we wanted to be in 2nd place

    edit: that code includes no auto-update or caching or anything else I should have used... it's just a call-me-and-I'll-go-get-it piece of code, so if you want to see it updated every second, hit refresh every second
    Last edited by major_small; 06-14-2005 at 01:32 PM.
    Join is in our Unofficial Cprog IRC channel
    Server: irc.phoenixradio.org
    Channel: #Tech


    Team Cprog Folding@Home: Team #43476
    Download it Here
    Detailed Stats Here
    More Detailed Stats
    52 Members so far, are YOU a member?
    Current team score: 1223226 (ranked 374 of 45152)

    The CBoard team is doing better than 99.16% of the other teams
    Top 5 Members: Xterria(518175), pianorain(118517), Bennet(64957), JaWiB(55610), alphaoide(44374)

    Last Updated on: Wed, 30 Aug, 2006 @ 2:30 PM EDT

  11. #161
    5|-|1+|-|34|) ober's Avatar
    Join Date
    Aug 2001
    Posts
    4,429
    Mind sharing the code? Or did you just get the contents of our team's page and parse out the details?

  12. #162
    Software Developer jverkoey's Avatar
    Join Date
    Feb 2003
    Location
    New York
    Posts
    1,905
    I'm sure major_small won't mind:

    PHP Code:
    <?PHP
        $filename
    ="http://vspx27.stanford.edu/cgi-bin/main.py?qtype=teampage&teamnum=43476";
        
    $fc=file_get_contents($filename);

        
    preg_match('/Grand Score[^0-9]+[0-9]+/',$fc,$data);
        
    preg_match('/[0-9]+/',$data[0],$data);
        
    $GrandScore=$data[0];

        
    preg_match('/Team Ranking[^0-9]+[0-9]+/',$fc,$data);
        
    preg_match('/[0-9]+/',$data[0],$data);
        
    $OurTeamRank=$data[0];

        
    preg_match('/ of [0-9]+/',$fc,$data);
        
    preg_match('/[0-9]+/',$data[0],$data);
        
    $TotalTeams=$data[0];

        
    preg_match('/ of [0-9]+/',$fc,$data);
        
    preg_match('/[0-9]+/',$data[0],$data);
        
    $TotalTeams=$data[0];

        for(
    $i=0;$i<5;$i++)
        {    
            
    $MemberCount=preg_match_all('/main.py?.+username=.+<\/a>/',$fc,$data);
            
    preg_match('/ [A-z]+/',$data[0][$i],$data);
            
    $mem[$i]=trim($data[0]);
        }

        for(
    $i=0,$x=0;$i<5;$i++,$x+=2)
        {
            
    preg_match_all('/cert.php?[^0-9]+pts=.+\" t/',$fc,$data);
            
    preg_match('/[0-9]+/',$data[0][$x],$data);
            
    $scr[$i]=trim($data[0]);
        }

        
    $outString="[SIZE=1][URL=http://www.thejefffiles.com/]TheJeffFiles.com[/URL]<BR><BR>";
        
    $outString.="[URL=http://vspx27.stanford.edu/cgi-bin/main.py?qtype=teampage&teamnum=43476]Team Cprog Folding@Home: Team #43476[/URL]<BR>";
        
    $outString.="[URL=http://folding.stanford.edu/]Download it Here[/URL]<BR>";
        
    $outString.="$MemberCount Members so far, are [B]YOU[/B] a member?<BR>";
        
    $outString.="Current team score: $GrandScore (ranked $OurTeamRank of $TotalTeams)<BR><BR>";
        
        
    $percentage=(($TotalTeams-$OurTeamRank)/($TotalTeams+1))*100;
        
    $percentage*=100;
        
    $percentage=(int)$percentage;
        
    $percentage/=100;
        
        
    $outString.="[/SIZE][SIZE=4][B]The CBoard team is doing better than [COLOR='#0000FF']$percentage%[/COLOR] of the other teams[/B][/SIZE][B][/B]<BR>";
        
    $outString.="[SIZE=1]Top 5 Members: ";
        
        for(
    $i=0;$i<5;$i++)
        {
            
    $outString.="{$mem[$i]}({$scr[$i]})";
            if(
    $i<4)
            {
                
    $outString.=', ';
            }
        }

        
    $outString.='[/SIZE]';
        echo(
    $outString);
    ?>

  13. #163
    Carnivore ('-'v) Hunter2's Avatar
    Join Date
    May 2002
    Posts
    2,879
    >>Leave your computer on all nite
    Alas, but it's right beside my head and quite noisy unless I'm running at about 5% CPU usage I also turned it off because it kept minimizing my game -_- But after an afternoon out (with F@H running at 100%), I've brought the frame count up to 150/1000... hopefully that'll keep creeping up slowly. Sure hope I get a lot of points for it

    [Edit] I'm not showing up on the team page, is this a bad thing? [/edit]
    Last edited by Hunter2; 06-14-2005 at 05:55 PM.
    Just Google It. √

    (\ /)
    ( . .)
    c(")(") This is bunny. Copy and paste bunny into your signature to help him gain world domination.

  14. #164
    Software Developer jverkoey's Avatar
    Join Date
    Feb 2003
    Location
    New York
    Posts
    1,905
    You won't show up until your first complete WU.

  15. #165
    Carnivore ('-'v) Hunter2's Avatar
    Join Date
    May 2002
    Posts
    2,879
    Alrighty, looking forward to a big pile of points
    Just Google It. √

    (\ /)
    ( . .)
    c(")(") This is bunny. Copy and paste bunny into your signature to help him gain world domination.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. problem with league table
    By vw1970 in forum C Programming
    Replies: 6
    Last Post: 01-04-2009, 09:16 AM
  2. Reverse order printing
    By JFonseka in forum C Programming
    Replies: 1
    Last Post: 08-19-2007, 06:47 AM
  3. Football team league need help to make this work
    By wurzull in forum C Programming
    Replies: 1
    Last Post: 04-07-2007, 07:35 AM
  4. Forming RTS Demo Team – Sixth Extinction
    By SteelRain4eva in forum Projects and Job Recruitment
    Replies: 0
    Last Post: 06-08-2006, 08:47 PM
  5. cprog.com game dev. team
    By Generator in forum A Brief History of Cprogramming.com
    Replies: 90
    Last Post: 11-01-2001, 08:42 PM