User: Pass: | Sign Up | Help
data-driven college admission predictions
Connect with Facebook





Your Recent Colleges:

  1. University of California, San Diego
  2. University of Notre Dame
  3. Lewis & Clark College


38 guests and 29 members currently online. (Show/Hide)




Brent « MyChances.net

About: Brent

Website
http://www.mychances.net
Profile

Posts by Brent:

    Adding Threaded Comments for Author Pages on P2 Wordpress Theme


    by Brent May 10th, 2009
    No Gravatar

    P2 is one of the sweetest wordpress themes out there (see http://ma.tt/2009/05/how-p2-changed-automattic/), but for certain applications it needs tweaking.  At MyChances.net, we wanted to give each of our members their own blog so they could write about the college application process.  To accomplish this, we needed two additional features: 1) Threaded comments for author pages.  If members are going to feel like they have a legit blog, they need to have user comments on the articles they are writing.  2.)  If the logged in user is the author of the blog, that user should see the “Hi, watcha up to?” quick post box on their blog – NOT just on the main page (aka the “firehose” – thanks Twitter!).

    Adding comments to author pages in the P2 wordpress theme is an easy process.  You just need a few minutes and a very small amount of programming knowledge.

    Step 1:  Open up wp-content > themes > P2 > entry.php.

    Step 2:  find the following line:  if ( ( is_home() || is_front_page() )) $withcomments = true;

    Step 3: change the line to   if ( ( is_home() || is_front_page() || is_author() ) ) $withcomments = true;

    Step 4: Save entry.php, and make sure that you upload it to your P2 directory.

    Step 5: Profit.

    If you need comments on the tags page, you can simply change the line to this:

    if ( ( is_home() || is_front_page() || is_author() || is_tag() ) ) $withcomments = true;

    Essentially you are adding in some logic so that if the page the user is looking at “is an author page” OR “is a tag page” then turn on the withcomments variable so the page is allowed to show the threaded comments feature which we all love.

    You can see this functionality live here:

    http://www.mychances.net/membership/blog/author/Brent/

    and here:

    http://www.mychances.net/membership/blog/tag/member-blogs/

    Now for our second need, showing the quick post box on author’s own author page (if the logged in user is the author).

    Step 1:  Open up wp-content > themes > P2 > author.php.

    Step 2:  At the very top of the page, add this line in the php brackets like so:

    <?
    get_currentuserinfo();
    ?>

    This allows you to access information about the current user, such as their username.  To let php see the username, you can access the data like this:

    $current_user->user_login (So if you want to echo out the username of the logged in user, you can put <?=$current_user->user_login?>

    Step 3:  Just below the line that has <div class=”sleeve_main”  id=”userpage”> insert this block of code:

    <?
    if( current_user_can( ‘publish_posts’ ) && $current_user->user_login==$author->user_nicename) require_once dirname( __FILE__ ) . ‘/post-form.php’;
    ?>

    This checks two things.  1) Can the current user even post things.  2) If the current username is equal to that of the author.  If these criteria are met, it will display the “post form” which is the quick post box.  Otherwise, nothing shows up, so it just looks like a blog page for a normal visitor.

    That’s it!  Please let me know if you have implementation questions.

    Brent

    • Share/Bookmark

    UCSD Accidentally Sends Accepted letters to 28,000 Rejected Students


    by Brent March 31st, 2009
    No Gravatar

    University of California, San Diego accidentally sent an email to 28,000 students who had already received letters of rejection. School administrators blamed the error on “access[ing] the wrong database.”

    Has anyone on MyChances received one of the 28,000 acceptance goof-ups?

     

    Read the full story here from the LA Times:  http://latimesblogs.latimes.com/lanow/2009/03/uc-admissions.html

    • Share/Bookmark

    Are you suffering from WFCR Syndrome?


    by Brent March 26th, 2009
    No Gravatar

    It’s March and thousands upon thousands of high school seniors are suffering from what our users are calling “Waiting for College Reply Syndrome”. Symptoms include uneasiness, constantly wondering if the college actually got your application materials, and feeling like you are the only person who hasn’t heard back from a school. If you’re feeling this right now, please know that you are not alone. Hop onto our forums and commiserate with others in your same situation, go play our Admissions Expert game, and check out the profiles of other students applying to your schools to pass the time (and get transparency into the application decisions coming out!).

    • Share/Bookmark

    MyChances.net in the Los Angeles Times


    by Brent March 15th, 2009
    No Gravatar

    On March 9, MyChances.net got a shout out from the LA Times. The original article, Anxious college hopefuls look for reassurance online, mainly focused on the “Chance Me” threads found on college admissions websites, including City-Data.com, CollegeConfidential.com, and MyChances.net. While the LA Times did tout the benefits students can receive from getting feedback from each other, the article took a mostly critical tone of students “chance me” threads in forums online, with a primary focus on negative postings found on CollegeConfidential.com as supporting evidence of how students can give hurtful feedback. The implication was that such feedback can be non-constructive and could harm a student’s ability to get into the colleges of their dreams – either by hurting their confidence or by discouraging them from applying to a college altogether.

    The biggest problem with students chancing one another, the Times argued, was that there is an over-reliance on “the numbers” and too little emphasis is given to the student as a whole to determine if a student is truly a good fit for a college. Here at MyChances, James and I want to provide the community the means to support each other as best as possible. We provide both algorithm based estimates to help advise students of their odds of getting accepted, as well as the ability for the community to give feedback and “chance” their fellow students to provide further insight to applicants.

    Our computer based predictions are based on actual real world statistics from actual applicants and their accepted/rejected information, not on personal whims (as appears is the case for many other college admissions “What are My Chances” tools out there on the web). Even so, our predictions by no means guarantee an accepted or rejected letter. This was part of the rationale for implementing our community predictions tool.  Ideally, human “chancers” would look deeper into the profiles of each other to get an even more holistic view of how likely our members are of getting accepted or rejected by a college than even our algorithms are (with their thousands upon thousands of datapoints).

    If you have any ideas about how we might improve our current system for providing feedback and advice for one another, please let us know. James and I strive to provide the best, most transparent (and statistics driven) college admissions resource available.  As always, we’re open to any suggestions, comments, or criticisms you may have of our college analytics features, or anything else on MyChances.

    • Share/Bookmark

    Updates to the blog


    by Brent February 3rd, 2009
    No Gravatar

    Logged in users no longer need to enter additional info to post comments on the blog. Additionally, a link to all prior articles has been added (just scroll to the bottom and click the link on the left hand side). In the future I’ll make a more sensible organization for older articles – but this will serve our needs for now.

    • Share/Bookmark

    My Chances Gets a Mention in The Wallstreet Journal


    by Brent January 8th, 2009
    No Gravatar

    If you didn’t catch it a few weeks back, My Chances got a mention in “The Juggle” portion of The Wallstreet Journal as a resource high school students are using to find colleges. In a post titled “How to Survive the College Admissions Frenzy,” My Chances was described as a site used to help students determine their odds of getting accepted at their top choice college.

    If you’ve found My Chances useful, please let us know! James and I are working as hard as we can to make the site useful for you and to (hopefully) reduce some of the stress of the college search.

    • Share/Bookmark

    State of the Blog


    by Brent December 30th, 2008
    No Gravatar

    My fellow students, our blog is now nearly completely integrated with the site. Please let me know if you run into any problems. Down the line I’ll be building out all the rest of features necessary so you don’t have to do annoying things like be redirected to our original wordpress location when you post a comment. For the time being, I guess we’ll all have to put up with the slight inconvenience.

    This new integrated blog will allow for much more information to be added to the site (hopefully we’ll write up some useful articles along the way too!)

    Happy holidays everyone :)

    • Share/Bookmark