Need better understanding of how it works. Does it change if you put the same persons name in every day? Is it like a mood ring, where the percentage for the same names changes each day? It's cute but wish it have more sparks.
GeeZus...I think if you enter your first and last names your get a higher ranking. We were at 4%with just our first name.....80% with first and last (not married)
The reason it's not possible to enter text on the left side of the text input fields is the overlaying graphics (His/her name, Your name). Style beats function here.
I have not tried this widget under other operating systems, but under Mac OS X 10.4.7, the text entry is very strange: you need to click the far right sides of the text fields, after which the parser appears to the right of the corresponding field and the text is right-aligned. The right-alignment might be as designed, but the positioning looks accidental (the "Timestamp Converter" widget also has text box issues under Mac OS X).
If you are using a Mac, perhaps your text issues are the same as mine, "Fred100".
By Vows , # Mar 30, 2009 5:12:29 PM
By doctorherbalhappy , # Feb 15, 2009 12:37:50 PM
By timemanagement , # Feb 14, 2009 3:11:15 PM
By doguard57 , # May 11, 2008 7:43:43 PM
By gemma 2007 , # May 3, 2007 10:26:20 AM
Dmitriy + Olga = 81%
I like it, but Dima = Dmitriy in russian.
By Sondatra , # Feb 3, 2007 11:44:06 PM
Microsoft + Internet Users = 96%
By aleksanteri , # Oct 21, 2006 12:37:23 PM
By seifip , # Oct 9, 2006 9:40:22 PM
Starfire + Robin = 86%
Beastboy + Raven = 9%
Milk + Cookies = 82%
Cheese + Chocolate = 99% (Hm...)
By SilvaKai , # Oct 8, 2006 2:36:03 AM
Not feeling so bad about my 32% now.
By Caution , # Aug 17, 2006 9:10:42 PM
By mjcantrill , # Jul 25, 2006 11:21:06 AM
By blaxtiger , # Jul 23, 2006 6:43:41 PM
Tony Blair & George Bush scored 88%
By Captain Insaneo , # Jul 23, 2006 5:32:07 PM
1 is 49
d means zero
if you add a d before any name there will be no difference
dSmith=Smith
2 and 1 loves eachother much!
By ☺ , # Jul 17, 2006 9:27:31 PM
ratface35
By ratface35 , # Jul 5, 2006 7:06:33 PM
By Miss Chicken , # Jul 4, 2006 10:56:52 AM
By Demonstro , # Jul 3, 2006 11:26:13 AM
function calculatePercentage(string1, string2) {
var val1 = hashIt(string1.toLowerCase());
var val2 = hashIt(string2.toLowerCase());
var percentage = ( (val1 + val2) % 100);
if (percentage == 100) percentage--; // Nobody's perfect ;-)
return percentage;
}
function hashIt(string) {
var val = 0;
for (i = 0; i < string.length; i++) {
val = 37 * val + string.charCodeAt(i);
}
return val;
}
The Opera guy who wrote this should know that (val1 + val2) % 100 is a number between 0 and 99, so the comparison with 100 is useless.
By ionutalexchitu , # Jul 2, 2006 11:39:09 AM
If you are using a Mac, perhaps your text issues are the same as mine, "Fred100".
By Brian Sexton , # Jul 2, 2006 7:38:38 AM
By Fredd100 , # Jul 1, 2006 3:24:27 PM