Page 6 of 6 FirstFirst ... 456
Results 51 to 59 of 59

Thread: WCA Statistics Website

  1. #51
    Member antoineccantin's Avatar
    Join Date
    Nov 2010
    Location
    near Ottawa, Canada
    WCA Profile
    2010CANT02
    YouTube
    antoineccantin
    Posts
    2,721

    Default

    Nothing on the site seems to work for me... (except for the stats on worldcubeassociation.com)
    Personal Bests
    Currently working on 7x7, BLD, 4BLD and a bit of SQ1.

  2. #52
    Member ardi4nto's Avatar
    Join Date
    Mar 2009
    Location
    Bandung, West Java, Indonesia
    WCA Profile
    2009SATR01
    YouTube
    ardisatriawan
    Posts
    181

    Default

    Is this project still alive?
    I need to do sub 30 FMC officially!

  3. #53
    Member Henrik's Avatar
    Join Date
    Aug 2007
    Location
    Fyn, Denmark
    WCA Profile
    2006BUUS01
    YouTube
    henrikthedane
    Posts
    482

    Default

    I guess it died

    World & European Champion in 3x3-Feet
    3x3-Feet: Single: 26.16, Mo3: 29.37, Avg5: 32.26, Avg12: 34.59, Avg50: 39.03

  4. #54
    Premium Member Sebastien's Avatar
    Join Date
    Apr 2008
    WCA Profile
    2008AURO01
    Posts
    539

    Default

    They are having problems with the webspace.

  5. #55
    Member jonlin's Avatar
    Join Date
    Jul 2011
    Location
    A cottage next to where the rolling foothills rise.
    WCA Profile
    2012LINJ01
    Posts
    344

    Default

    If they fix it, put Youngest/oldest solver/blindfold solver
    I want my name on there
    I'm 283rd in 2x2.
    I'm a nub.

  6. #56
    Super Moderator Mike Hughey's Avatar
    Join Date
    Jun 2007
    Location
    Indianapolis
    WCA Profile
    2007HUGH01
    YouTube
    MikeHughey1
    Posts
    7,532

    Default

    Quote Originally Posted by jonlin View Post
    If they fix it, put Youngest/oldest solver/blindfold solver
    I want my name on there
    You don't need the statistics website for that - you're already on the statistics page of the main site:
    http://www.worldcubeassociation.org/...statistics.php
    My square-1 BLD method: http://skarrie.se/square1blind/

  7. #57
    Premium Member
    Join Date
    Apr 2006
    Location
    Stanford, CA
    WCA Profile
    2003MAKI01
    Posts
    383

    Default

    We'll get stats.cubing.net working again, but it'll take some time to do it well. The hosting service shut down the database because some queries were taking too long, for reasons I don't understand. We have to improve the queries (probably using many pre-computed tables) and test them before we can put them back online without risking getting Lucas in trouble.

    It's too big of a project for me alone; I need to do math. If you have knowledge about MySQL/php and would like to lead the project or help maintain it, let me know at Gmail account smakisumi.

    As a note, all the code is on github: https://github.com/cubing/stats
    Tell me your cubing stories: Story Time with Uncle Tyson. Seriously, not enough people know about my advanced F2L section.

  8. #58

    Default

    I don't have my new system set up yet and I'm not familiar with git(hub), but here's my code suggestion for most_solve_hours.php, maybe someone else wants to integrate it into the repository (if not, I'll do it, but I don't know when). Or maybe it can just serve as an example for how to precompute and use stuff later. I tested this code when I wrote it recently, and it did speed up the very slow original query a lot.

    Do this once after every update/import of the database:
    Code:
    DROP TABLE HelperMostSolveHours;
    
    CREATE TABLE HelperMostSolveHours
    SELECT   personId, personCountryId, continentId, year,
           (sum( if(value1>0,value1,0) ) +
            sum( if(value2>0,value2,0) ) +
            sum( if(value3>0,value3,0) ) +
            sum( if(value4>0,value4,0) ) +
            sum( if(value5>0,value5,0) ))/100/60/60 hours,
            personName
    FROM     Results
           JOIN Events      ON Events.id = eventId
           JOIN Competitions ON Results.competitionId = Competitions.id
           JOIN Countries    ON Results.countryId = Countries.id
    WHERE    format = 'time'
    GROUP BY personId, Results.countryId, year;
    Use this (well, with the dynamic conditions instead of hardcoded year<=2008 etc, of course) in the viewer script:
    Code:
    SELECT   sum(hours) hours, personId, personName, personCountryId
    FROM     HelperMostSolveHours
    WHERE    continentId = '_Europe'
     AND    year <= 2008
    GROUP BY personId
    ORDER BY hours DESC
    LIMIT    100;
    Some timings on my PC:

    Original query: 15-17 seconds

    Original query simply without the "LIMIT 100": 1.0-1.7 seconds
    (Very interesting, somehow telling it to produce less made it a lot slower... apparently the overhead of trying to do less work actually made it a lot *more* work.)

    Precomputation: 3 seconds
    Query using the precomputed table: 0.1-0.2 seconds

  9. #59
    blind Noahaha's Avatar
    Join Date
    Dec 2011
    Location
    CT
    WCA Profile
    2012ARTH01
    YouTube
    NoahCubes
    Posts
    2,130

    Default

    How many people who have never had WRs would have at some point had one if Feliks was never a speedcuber?
    I learned BLD once, but I only really use it as a party trick.
    BLD TUTORIALS +3-Style! PBs:24.48/30.57 mo3/30.57 avg5/32.99 avg12/31.38 Official/4BLD NAR/MBLD NAR

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •