Small complaint about this years VCA's

Locked
User avatar
Osakaisthebomb
Joined: Sat Jul 09, 2005 5:05 pm
Status: 16 kib limit is a crime.
Location: Florence,Alabama
Contact:
Org Profile

Small complaint about this years VCA's

Post by Osakaisthebomb » Fri Mar 11, 2011 10:17 am

I really don't get the strange names for the awards. I mean yeah I've been gone a while and maybe somewhere in that time the awards names were created and the choice of the names made sense then, but they are SO darn confusing. I don't know what Half of these video won for. At least put an explanation of what the award is based on under the name. This was done at the start of this years contest but that was thrown out as the days passed.

Seriously why complicate this process so much?
Image
Image

User avatar
mirkosp
The Absolute Mudman
Joined: Mon Apr 24, 2006 6:24 am
Status: (」・ワ・)」(⊃・ワ・)⊃
Location: Gallarate (VA), Italy
Contact:
Org Profile

Re: Small complaint about this years VCA's

Post by mirkosp » Fri Mar 11, 2011 10:31 am

Hover the mouse on the name of the awards and you get a tooltip with the "old" category name and description.
It's not implemented very well due to :reasons:, hopefully next year it'll be setup better.
Image

User avatar
NS
I like pants
Joined: Sat Jul 08, 2006 10:05 pm
Status: Pants
Location: Minneapolis, Minnesota
Contact:
Org Profile

Re: Small complaint about this years VCA's

Post by NS » Fri Mar 11, 2011 12:23 pm

You guys keep saying hover, and people keep bitching because it's a bad system. You'd think you woulda just put the real names in the results for the finals since the semi finals had the same bitching. But I guess we don't learn from mistakes :O.

User avatar
mirkosp
The Absolute Mudman
Joined: Mon Apr 24, 2006 6:24 am
Status: (」・ワ・)」(⊃・ワ・)⊃
Location: Gallarate (VA), Italy
Contact:
Org Profile

Re: Small complaint about this years VCA's

Post by mirkosp » Fri Mar 11, 2011 1:20 pm

NS wrote:You guys keep saying hover, and people keep bitching because it's a bad system. You'd think you woulda just put the real names in the results for the finals since the semi finals had the same bitching. But I guess we don't learn from mistakes :O.
I did ask G_Q. What he told me was that due to how VCA system handles the thing, it wasn't really possible to do any better anymore at that point in time... he was more specific, but I don't really remember the exact issue and the exact words, so this is about all I have. He did say that we'd do better for next year, yes, but that's about it...
Image

User avatar
Phantasmagoriat
Joined: Mon Feb 06, 2006 11:26 pm
Status: ☁SteamPunked≈☂
Contact:
Org Profile

Re: Small complaint about this years VCA's

Post by Phantasmagoriat » Fri Mar 11, 2011 6:09 pm

I don't know how the original page is generated, but after a couple minutes of ctrl+h, ctrl+c, ctrl+v you can use this page instead:

True Award Names for 2011 VCAs | (Original)

I didn't really follow the VCAs this year, so I thought it was an early April fools joke :lol:
Still, I favor simplicity, so I even omitted redundant words like Best, Most .. Video, Award... etc...

Org so silly :dino:
PLAY FREEDOOM!! | Phan Picks! | THE424SHOW | YouTube | "Painkiller" | Vanilla MIDI's
"Effort to Understand; Effort to be Understood; to See through Different Eyes."

User avatar
Corran
Joined: Mon Oct 14, 2002 7:40 pm
Contact:
Org Profile

Re: Small complaint about this years VCA's

Post by Corran » Fri Mar 11, 2011 7:34 pm

Mirko, it is all database based... you guys would only need to rename the categories now that the contest is over.


EDIT: And if you really want to keep the current names somewhat you could swap the titles with the hover text... That way someone looking for instrumental or sentimental don't have to hover over every link to find what they are looking for and the Eva related title is still readable in the hover.
Last edited by Corran on Sat Mar 12, 2011 2:04 am, edited 1 time in total.

User avatar
CodeZTM
Spin Me Round
Joined: Fri Mar 03, 2006 6:13 pm
Status: Flapping Lips
Location: Arkansas
Contact:
Org Profile

Re: Small complaint about this years VCA's

Post by CodeZTM » Fri Mar 11, 2011 7:59 pm

I tend to agree. On the forums, it's cute and could have really good images incorporated with the help of our designers.

But when voting, it's just a pain. A very big pain.

User avatar
NS
I like pants
Joined: Sat Jul 08, 2006 10:05 pm
Status: Pants
Location: Minneapolis, Minnesota
Contact:
Org Profile

Re: Small complaint about this years VCA's

Post by NS » Sat Mar 12, 2011 11:09 pm

I don't even care about the fact that there are different titles, but the fact that you had the real ones ONLY one hover was the only thing that was weird. It should always at least be under or to the side of it.

trythil
is
Joined: Tue Jul 23, 2002 5:54 am
Status: N͋̀͒̆ͣ͋ͤ̍ͮ͌ͭ̔̊͒ͧ̿
Location: N????????????????
Org Profile

Re: Small complaint about this years VCA's

Post by trythil » Tue Mar 15, 2011 10:36 pm

You whiners.

Just write a Greasemonkey script to do the replacement on the fly. All the data is in the document.

trythil
is
Joined: Tue Jul 23, 2002 5:54 am
Status: N͋̀͒̆ͣ͋ͤ̍ͮ͌ͭ̔̊͒ͧ̿
Location: N????????????????
Org Profile

Talk the talk, walk the walk

Post by trythil » Tue Mar 15, 2011 10:51 pm

trythil wrote:You whiners.

Just write a Greasemonkey script to do the replacement on the fly. All the data is in the document.

Code: Select all

// ==UserScript==
// @name           Rewrite awards
// @namespace      org.ninjawedding.whiners
// @description    Rewrites VCA descriptions for the lazy.  God, I was hoping I wouldn't ever look at that damn page ever again.
// @include        http://www.animemusicvideos.org/members/amvvca/2011/
// ==/UserScript==

var vcaResults = document.getElementById('vcaResults'),
    categories = vcaResults.getElementsByTagName('abbr'),
    synopsisPattern = new RegExp(/^\(([^\)]+)\)/),
    matchResult,
    category,
    i,
    synopsis;

for (i = 0; i < categories.length; ++i) {
  category = categories[i];
  matchResult = synopsisPattern.exec(category.getAttribute('title'));
  synopsis = matchResult[1];

  if (synopsis) {
    category.innerHTML = synopsis;
  }
}

Locked

Return to “Site Help & Feedback”