Home › Forums › Archives › Community Center › The BigBlueBall Lounge › Test your reflexes
- This topic has 38 replies, 24 voices, and was last updated 21 years, 7 months ago by
Shadowjack.
-
AuthorPosts
-
June 3, 2004 at 1:28 am #78710
Someguy03
MemberWoot:
Was a 0.012 screen shot but I removed it to save Photobucket BandwithJune 3, 2004 at 2:46 am #78720AwesomeSauce
ParticipantQuote:quote:Originally posted by someguy03Woot:
Was a 0.012 screen shot but I removed it to save Photobucket BandwithYeah, those are those alien people who can respond at like the speed of light.
BUT HOLY CRAP! how do you manage to do that? ๐ฎ
June 3, 2004 at 3:04 am #78706David
ParticipantHeh!
June 3, 2004 at 4:48 am #78709Someguy03
MemberI killed all of you! After about 15 min of straight trying:
June 3, 2004 at 7:50 am #78723colin
Memberugh, this is making me so mad. the best ive gotten so far is .203 ๐ but the funny thing is, I have very fast reflexes(not according to that stupid thing but…), I can beat anyone I know at egyptian rat screw(a card game that you have to have very fast hands to win). im gonna try and try til I prove this stupid thing wrong!
June 3, 2004 at 8:30 am #78703DJHyperbyte
MemberQuote:quote:Originally posted by someguy03
Sorry, I refuse to believe that is your reaction time. My guess is that the webpage script constantly uses the same interval to change the background and after fifteen minutes you got very good at timing when the background would change.
2 miliseconds is not a human reaction time.
June 3, 2004 at 8:45 am #78715rafaelemt
MemberMy best .147 but this is addictive ๐
Rafael
June 3, 2004 at 7:00 pm #78708Someguy03
MemberQuote:quote:Originally posted by DJHyperbyteQuote:quote:Originally posted by someguy03
Sorry, I refuse to believe that is your reaction time. My guess is that the webpage script constantly uses the same interval to change the background and after fifteen minutes you got very good at timing when the background would change.
2 miliseconds is not a human reaction time.No, I just got really good with photoshop ๐ (I’m guessing dave did the same)
June 3, 2004 at 8:35 pm #78724Crazy Penguin
MemberWell, i’m gonna tell you all how my semingly impossible response time came about….
I wondered what would happen if you clicked the button before the screen flashed, and clicked coincidently at the time that the screen flashed, which got me my seemingly impossible response time…. guess i’m just lucky ๐
June 3, 2004 at 11:26 pm #78707Someguy03
MemberIf anyone is interested, I nabbed the source code off the site using the good old right click and hold trick. It seems that dave wasn’t lying when it said “You are king!” Also, judging from the source it seems the color appearing is totally random, so I couldn’t have gotten “good at it.” I don’t even know how Dave did it.
Quote:quote:The Reflex Tester <!–
function SymError()
{
return true;
}window.onerror = SymError;
var SymRealWinOpen = window.open;
function SymWinOpen(url, name, attributes)
{
return (new Object());
}window.open = SymWinOpen;
//–>
<!– hiding for old browsers
// response time test, created by Jasper van Zandbeek
// e-mail: jasperz@stack.urc.tue.nlvar startTime=new Date();
var endTime=new Date();
var startPressed=false;
var bgChangeStarted=false;
var maxWait=20;
var timerID;function startTest()
{
document.bgColor=document.response.bgColorChange.options[document.response.bgColorChange.selectedIndex].text;
bgChangeStarted=true;
startTime=new Date();
}function remark(responseTime)
{
var responseString=””;
if (responseTime > 0 && responseTime <0.01)
responseString=”You are the king!”
if (responseTime >.01 && responseTime <.05 )
responseString=”You have the reflexes of a snake”;
if (responseTime >= 0.05 && responseTime <.10)
responseString=”Well done!”;
if (responseTime >= 0.10 && responseTime < 0.20)
responseString=”Nice!”;
if (responseTime >=0.20 && responseTime < 0.30)
responseString=”Could be better…”;
if (responseTime >=0.30 && responseTime < 0.60)
responseString=”Keep practicing!”;
if (responseTime >=0.60 && responseTime < 1)
responseString=”Have you been drinking?”;
if (responseTime >=1)
responseString=”Did you fall asleep?”;return responseString;
}function stopTest()
{
if(bgChangeStarted)
{
endTime=new Date();
var responseTime=(endTime.getTime()-startTime.getTime())/1000;document.bgColor=”black”;
alert(“Your response time is: ” + responseTime + ” seconds ” + “n” + remark(responseTime));
startPressed=false;
bgChangeStarted=false;
}
else
{
if (!startPressed)
{
alert(“press start first to start test”);
}
else
{
clearTimeout(timerID);
startPressed=false;
alert(“cheater! you pressed too early!”);
}
}
}var randMULTIPLIER=0x015a4e35;
var randINCREMENT=1;
var today=new Date();
var randSeed=today.getSeconds();
function randNumber()
{
randSeed = (randMULTIPLIER * randSeed + randINCREMENT) % (1 << 31);
return((randSeed >> 15) & 0x7fff) / 32767;
}function startit()
{
if(startPressed)
{
alert(“Already started. Press stop to stop”);
return;
}
else
{
startPressed=true;
timerID=setTimeout(‘startTest()’, 6000*randNumber());
}
}
// –>THE REFLEX
TESTERTest your Reflex Response time!
Click on “Start”
first, and wait until the background color changes. As soon as it changes, hit
“stop!”Be warned. This is more
addictive than any drug you can think of. You’ll see what I mean.Reflex response time test, created by Jasper van Zandbeek
e-mail: jasperz@net-v.com
The Original Reflex
Tester. Don’t settle for imitations.Keyword: Reflex
#1 on Google,
Yahoo, AOL, Netscape, and more. Help keep the original #1. Link to us from
your own website.Don’t forget to tell your friends and coworkers about the
reflex tester. Just don’t get them fired. I don’t need any lawsuits
for making an addicting website.<!– // Begin hiding from old browsers
// (Rightclick:) This section disables right click in MSIE and Netscape
function right(evnt) {
if (navigator.appName.toUpperCase().match(/NETSCAPE/) != null) {
if (evnt.which >= 2){
alert(“Sorry, wrong button”);
return false;
}
}
else
if (event.button>=2)
alert(“Sorry, wrong button”);
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;
// (Resize:) End rightclick disable section// End hiding –>
<!–
function MM_openBrWindow(theURL,winName,features) { //v1.2
window.open(theURL,winName,features);
}
//–>Webmasters: Link to the Reflex Tester!
Brought to you by HappyHub.com
<!–
var SymRealOnLoad;
var SymRealOnUnload;function SymOnUnload()
{
window.open = SymWinOpen;
if(SymRealOnUnload != null)
SymRealOnUnload();
}function SymOnLoad()
{
if(SymRealOnLoad != null)
SymRealOnLoad();
window.open = SymRealWinOpen;
SymRealOnUnload = window.onunload;
window.onunload = SymOnUnload;
}SymRealOnLoad = window.onload;
window.onload = SymOnLoad;//–>
June 3, 2004 at 11:39 pm #78705David
ParticipantOh, I just hacked the source, was that bad? ๐
June 3, 2004 at 11:55 pm #78712Mr.Curlynose1
MemberIf you’re not using IE or have javascript turned off, you can get the source very easily. ๐
June 4, 2004 at 1:56 am #78719AwesomeSauce
Participant๐
June 7, 2004 at 7:06 am #78733Lucifina
Memberok ok i’m no hacker and I once in awhile play fair…only b/c I don’t know any hacking stuff…but my first try I got .14
SO HAAAAAAAAA, MUUUUUAHHHHHHHAHAHAHAHAHA:mad::D:pJune 14, 2004 at 12:09 am #78729goldladydeb
MemberHmmm, I got “Cheater, You pressed to early”.
-
AuthorPosts
- You must be logged in to reply to this topic.