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".
Vows 作 , # 2009/03/30 17:12:29
doctorherbalhappy 作 , # 2009/02/15 12:37:50
timemanagement 作 , # 2009/02/14 15:11:15
doguard57 作 , # 2008/05/11 19:43:43
gemma 2007 作 , # 2007/05/03 10:26:20
Dmitriy + Olga = 81%
I like it, but Dima = Dmitriy in russian.
Sondatra 作 , # 2007/02/03 23:44:06
Microsoft + Internet Users = 96%
aleksanteri 作 , # 2006/10/21 12:37:23
seifip 作 , # 2006/10/09 21:40:22
Starfire + Robin = 86%
Beastboy + Raven = 9%
Milk + Cookies = 82%
Cheese + Chocolate = 99% (Hm...)
SilvaKai 作 , # 2006/10/08 2:36:03
Not feeling so bad about my 32% now.
Caution 作 , # 2006/08/17 21:10:42
mjcantrill 作 , # 2006/07/25 11:21:06
blaxtiger 作 , # 2006/07/23 18:43:41
Tony Blair & George Bush scored 88%
Captain Insaneo 作 , # 2006/07/23 17:32:07
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!
☺ 作 , # 2006/07/17 21:27:31
ratface35
ratface35 作 , # 2006/07/05 19:06:33
Miss Chicken 作 , # 2006/07/04 10:56:52
Demonstro 作 , # 2006/07/03 11:26:13
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.
ionutalexchitu 作 , # 2006/07/02 11:39:09
If you are using a Mac, perhaps your text issues are the same as mine, "Fred100".
Brian Sexton 作 , # 2006/07/02 7:38:38
Fredd100 作 , # 2006/07/01 15:24:27