Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > HTML > rankmylist.com, please critique

Reply
Thread Tools

rankmylist.com, please critique

 
 
Paul Watt
Guest
Posts: n/a
 
      09-30-2006
"Nik Coughlin" <> wrote in message
news:451cc92f$...
>A work in progress, would like anyone who has a moment to please take a
>look:
>
> Current site is http://rankmylist.com/
>
> Next version is http://rankmylist.com/testTabs/
>
> The tables for layout will be replaced with CSS in the next iteration.
>
> So far tested in IE6/7 and newest versions of Firefox and Opera, seems to
> work fine.
>
> Any comments, critiques, questions or suggestions on the html/css, layout
> or mechanics of the page very welcome!
>


Hi,
I didnt like the bit telling me what browser I should be using. Surely the
aim is to display correctly whatever browser is being used?

--
Cheers

Paul
le singe est dans l'arbre
http://www.paulwatt.info


 
Reply With Quote
 
 
 
 
Nik Coughlin
Guest
Posts: n/a
 
      10-01-2006
Paul Watt wrote:
> "Nik Coughlin" <> wrote in message
> news:451cc92f$...
>> A work in progress, would like anyone who has a moment to please
>> take a look:
>>
>> Current site is http://rankmylist.com/
>>
>> Next version is http://rankmylist.com/testTabs/
>>
>> The tables for layout will be replaced with CSS in the next
>> iteration. So far tested in IE6/7 and newest versions of Firefox and
>> Opera,
>> seems to work fine.
>>
>> Any comments, critiques, questions or suggestions on the html/css,
>> layout or mechanics of the page very welcome!
>>

>
> Hi,
> I didnt like the bit telling me what browser I should be using.
> Surely the aim is to display correctly whatever browser is being used?


It does display correctly, just not as nicely. IE 6 and under are incapable
of displaying links with an alpha transparent background without some extra
work that I'm not willing to undertake. Point taken though.


 
Reply With Quote
 
 
 
 
Nik Coughlin
Guest
Posts: n/a
 
      10-01-2006
Leonard Blaisdell wrote:
> In article <efio89$c9n$>,
> "Nik Coughlin" <> wrote:
>
>> http://rankmylist.com/tabTest/

>
> Perhaps some indication of progress while clicking on options would be
> of help. Or a far smaller example group than food. When do you stop or
> win


The ranking algorithm is undergoing an upgrade, once it's done I'll add a
progress indicator (i.e., how close you are to having made a decision for
each possible combination), thanks!


 
Reply With Quote
 
Nik Coughlin
Guest
Posts: n/a
 
      10-01-2006
Charles Sweeney wrote:
> Nik Coughlin wrote
>
>> http://rankmylist.com/tabTest/

>
> Visually it's very nice indeed, clean, easy to read, uncluttered.
>
> As a concept I think it's bonkers. It's a website that tells you how
> much you like things? Do you need to be told that? Don't you
> already know that? Will there be a rush of people visiting to
> remember what they like most?


Whenever things ask me what my 10 favorite bands or movies etc. are I have
trouble making my mind up, the idea was for a tool that could help me get
over my indecisiveness. Hopefully some other people will find it useful or
fun for the same reason


 
Reply With Quote
 
Nik Coughlin
Guest
Posts: n/a
 
      10-01-2006
Toby Inkster wrote:
> Charles Sweeney wrote:
>
>> As a concept I think it's bonkers. It's a website that tells you
>> how much you like things? Do you need to be told that? Don't you
>> already know that? Will there be a rush of people visiting to
>> remember what they like most?

>
> A very good point.
>
> An improvement in usefulness would be a way to save my list as, say,
> http://rankmylist.com/my_film_list, and save my rankings as
> http://rankmylist.com/my_film_list/toby. Then I could invite people to
> visit http://rankmylist.com/my_film_list/ and rank the list too -- and
> they could save it as http://rankmylist.com/my_film_list/dave or
> http://rankmylist.com/my_film_list/bob.
> http://rankmylist.com/my_film_list/ could display an overall set of
> rankings.


Hi Toby,

Once I've implemented the private/public list functionality currently on my
to do list you'll be able to do just that I like the url structure
you've suggested a lot though.


 
Reply With Quote
 
Nik Coughlin
Guest
Posts: n/a
 
      10-01-2006
Toby Inkster wrote:
> Nik Coughlin wrote:
>
>> http://rankmylist.com/tabTest/

>
> Make a list of red, green, yellow, blue and click "apply". The first
> time it asks, vote for either of the two colours (doesn't matter), now
> repeatedly click "I can't decide" and look at the rankings.


When I changed the urls from index.php?blah=blah to just ?blah=blah it broke
that, I've fixed it now though, thanks!


 
Reply With Quote
 
Leonard Blaisdell
Guest
Posts: n/a
 
      10-01-2006
In article <efn7su$fod$>,
"Nik Coughlin" <> wrote:

> The ranking algorithm is undergoing an upgrade, once it's done I'll add a
> progress indicator (i.e., how close you are to having made a decision for
> each possible combination), thanks!


I quit. I had elevens, tens and nines through the first six rankings and
no clue whether I got a cookie or what for completing the thing. Isn't
that some factorial deal for all possible combinations that might take
me the rest of my life? 30x29x28...

leo

--
<http://web0.greatbasin.net/~leo/>
 
Reply With Quote
 
David Segall
Guest
Posts: n/a
 
      10-02-2006
"Nik Coughlin" <> wrote:

>A work in progress, would like anyone who has a moment to please take a
>look:
>
>Current site is http://rankmylist.com/
>
>Next version is http://rankmylist.com/testTabs/
>
>The tables for layout will be replaced with CSS in the next iteration.
>
>So far tested in IE6/7 and newest versions of Firefox and Opera, seems to
>work fine.
>
>Any comments, critiques, questions or suggestions on the html/css, layout or
>mechanics of the page very welcome!

The sort algorithm does not seem to terminate! If I enter 1,2 it just
keeps asking me to compare them. You need an algorithm that uses the
minimum number of comparisons and maintains the original order for
equal values - the "I don't know" case. You also need an algorithm
that never gives the user a chance to contradict himself. That is, if
he prefers 1 to 2 and 2 to 3 then he must not be asked to compare 1
and 3 in case he decides on 3. I'd like to give you a suitable
algorithm but I don't know one.
 
Reply With Quote
 
Nik Coughlin
Guest
Posts: n/a
 
      10-02-2006
David Segall wrote:
> "Nik Coughlin" <> wrote:
>
>> A work in progress, would like anyone who has a moment to please
>> take a look:
>>
>> Current site is http://rankmylist.com/
>>
>> Next version is http://rankmylist.com/testTabs/
>>
>> The tables for layout will be replaced with CSS in the next
>> iteration.
>>
>> So far tested in IE6/7 and newest versions of Firefox and Opera,
>> seems to work fine.
>>
>> Any comments, critiques, questions or suggestions on the html/css,
>> layout or mechanics of the page very welcome!

> The sort algorithm does not seem to terminate! If I enter 1,2 it just
> keeps asking me to compare them. You need an algorithm that uses the
> minimum number of comparisons and maintains the original order for
> equal values - the "I don't know" case. You also need an algorithm
> that never gives the user a chance to contradict himself. That is, if
> he prefers 1 to 2 and 2 to 3 then he must not be asked to compare 1
> and 3 in case he decides on 3. I'd like to give you a suitable
> algorithm but I don't know one.


In the next iteration it will only ask you to compare each possible pair
once, in a random order, I was just too lazy to do this initially which is
why it is always random. However, the user *will* be able to contradict
themselves. It seems to work better if they can, believe it or not!

Thanks for taking the time to play with it.


 
Reply With Quote
 
David Segall
Guest
Posts: n/a
 
      10-02-2006
"Nik Coughlin" <> wrote:

>David Segall wrote:
>> "Nik Coughlin" <> wrote:
>>
>>> A work in progress, would like anyone who has a moment to please
>>> take a look:
>>>
>>> Current site is http://rankmylist.com/
>>>
>>> Next version is http://rankmylist.com/testTabs/
>>>
>>> The tables for layout will be replaced with CSS in the next
>>> iteration.
>>>
>>> So far tested in IE6/7 and newest versions of Firefox and Opera,
>>> seems to work fine.
>>>
>>> Any comments, critiques, questions or suggestions on the html/css,
>>> layout or mechanics of the page very welcome!

>> The sort algorithm does not seem to terminate! If I enter 1,2 it just
>> keeps asking me to compare them. You need an algorithm that uses the
>> minimum number of comparisons and maintains the original order for
>> equal values - the "I don't know" case. You also need an algorithm
>> that never gives the user a chance to contradict himself. That is, if
>> he prefers 1 to 2 and 2 to 3 then he must not be asked to compare 1
>> and 3 in case he decides on 3. I'd like to give you a suitable
>> algorithm but I don't know one.

>
>In the next iteration it will only ask you to compare each possible pair
>once, in a random order

I doubt if any visitor will have the patience to do this. According to
my rather rusty maths you will be asking them to do (n*(n-1))/2
comparisons when, in the easiest case, they only needed to do n-1. For
a list of five items that's ten instead of four which is tolerable.
However, most people could order five items without the aid of your
program. For your food list it's 4,465 instead of 94.
>, I was just too lazy to do this initially which is
>why it is always random. However, the user *will* be able to contradict
>themselves. It seems to work better if they can, believe it or not!

I'm sure it does given your definition of better. My definition of
better was minimising the amount of effort for your user.

I should add that I think your project is a good idea and my comments
are only intended to optimise it for my use
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Critique food site please Nik Coughlin HTML 33 03-06-2006 07:15 AM
Feedback/critique my website please? Familyman HTML 24 02-12-2006 02:21 AM
Please critique this HTA (Change Database Remotely) Highlander HTML 9 12-07-2005 06:41 AM
critique these sites please Developwebsites HTML 15 09-20-2004 10:49 PM
edgesoft.ca site critique please Long HTML 5 10-21-2003 09:18 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57