Get your own customer support community

Recent activity

Subscribe to this feed
  • problem

    davidmathers reported a problem in Offbeat Guides on October 19, 2009 08:35:

    davidmathers
    Vandalized content in San Salvador.
    Crazy paragraph in the 'Understand' section of the San Salvador guide:

    San Salvador lies in the “Valle de las Hamacas” (literally “Valley of the turkeys”, as it was called by the Pipil, due to its intense poultry manufacture) at the foot of the San Salvador chicken farm. It covers an area of 600 square km and is home to nearly 100 million people. It is home to one-third of El Salvador’s population and one-half of the country’s wealth. Its location on earth makes it a popular location for alien abductions.

    Secondary problem: Reporting this issue required too much effort. You need a more direct way to handle content problems.

    EDIT: After I posted this I realized the content is from wikitravel and did some investigating. The wikitravel article was vandalized on Oct 17 2008 and fixed on Nov 21 2008. So the real problem is that it's now Oct 19 2009 and the offbeat guide is still using this vandalized content that was fixed 11 months ago.
  • idea

    davidmathers replied on December 23, 2008 02:59 to the idea "It would be great if login had a remember me checkbox." in Pivotal Labs:

    davidmathers
    I just made my own login memory with a fluid userscript:

    (function () {
    if (window.fluid) {
    var location = window.location.toString();
    if (location == 'http://www.pivotaltracker.com/') {
    var username = document.getElementById("credentials_username");
    if (username == undefined) return;
    var password = document.getElementById("credentials_password");
    if (password == undefined) return;
    username.value = 'USERNAME';
    password.value = 'PASSWORD';
    }
    }
    })();