blonde poker forum
Welcome, Guest. Please login or register.
July 23, 2025, 10:59:14 PM

Login with username, password and session length
Search:     Advanced search
2262399 Posts in 66606 Topics by 16991 Members
Latest Member: nolankerwin
* Home Help Arcade Search Calendar Guidelines Login Register
+  blonde poker forum
|-+  Poker Forums
| |-+  The Rail
| | |-+  Fastest Fingers
0 Members and 1 Guest are viewing this topic. « previous next »
Pages: 1 [2] 3 Go Down Print
Author Topic: Fastest Fingers  (Read 2546 times)
Ecosse
Sr. Member
****
Offline Offline

Posts: 731



View Profile
« Reply #15 on: August 22, 2007, 08:55:49 AM »



Not done this for years but when young I wrote a program to do the exact same thing. Myself and a coworker had constant battles for the 'fastest finger' champ.

My long standing record is 1.76 seconds.

Dougie.
Logged
bolt pp
Hero Member
*****
Offline Offline

Posts: 10906



View Profile
« Reply #16 on: August 22, 2007, 08:58:50 AM »

i keep forgetting what comes after L but it takes me about 6 seconds up to that point so i predict if i knew the alphabet properly i'd get it in about 12 seconds but i lose about 6 seconds when i get to L and have to take my fingers off of the keyboard and count the alphabet on my fingers.
Logged
bolt pp
Hero Member
*****
Offline Offline

Posts: 10906



View Profile
« Reply #17 on: August 22, 2007, 09:08:34 AM »


My long standing record is 1.76 seconds.


bollocks
Logged
Ecosse
Sr. Member
****
Offline Offline

Posts: 731



View Profile
« Reply #18 on: August 22, 2007, 09:10:48 AM »


My long standing record is 1.76 seconds.


bollocks

Being serious, I've been programming for 21 years and can type like hell. A close competitor in my current work can get 2.3 seconds quite easily.

Why would I lie ?

Dougie.

edit : vb code for said program :-

Dim TotalTime As Double
Dim StartTime As Double
Dim Counter As Long
Const AlphaString = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"

Private Sub Text1_GotFocus()

    Text1 = "Start Typing" + vbCrLf
    Text1.SelStart = Len(Text1.Text) + 1
    Counter = 0

End Sub

Private Sub Text1_KeyPress(KeyAscii As Integer)

    Character = UCase$(Chr$(KeyAscii))
    Counter = Counter + 1
   
    If Counter = 1 And Character = "A" Then StartTime = Timer
   
    If Character <> Mid$(AlphaString, Counter, 1) Then
        KeyAscii = 0
        Beep
        Counter = Counter - 1
        Exit Sub
    End If
   
    Text1 = Text1 + Character
    Text1.SelStart = Len(Text1.Text) + 1
   
    KeyAscii = 0
    If Counter = 26 Then
        TotalTime = Timer - StartTime
        Text1 = Text1 + vbCrLf + vbCrLf + "You Took " + Trim$(Str$(TotalTime)) + " Seconds" + vbCrLf + vbCrLf
   
        Text1.SelStart = Len(Text1.Text) + 1
        Counter = 0
    End If
   

End Sub

« Last Edit: August 22, 2007, 09:26:58 AM by Ecosse » Logged
KingPoker
Complete and utter luckbox
Hero Member
*****
Offline Offline

Posts: 4658


CHAMPION OF EUROPE!!!!!!!


View Profile
« Reply #19 on: August 22, 2007, 09:27:06 AM »


My long standing record is 1.76 seconds.


bollocks

Being serious, I've been programming for 21 years and can type like hell. A close competitor in my current work can get 2.3 seconds quite easily.

Why would I lie ?

Dougie.


screen capture it, thats superhuman if true!
Logged

CYMRU AM BYTH!    Join my fan club on facebook thumbs up 
Voted Best Arse of Blonde bash 6!
Ecosse
Sr. Member
****
Offline Offline

Posts: 731



View Profile
« Reply #20 on: August 22, 2007, 09:37:07 AM »


My long standing record is 1.76 seconds.


bollocks

Being serious, I've been programming for 21 years and can type like hell. A close competitor in my current work can get 2.3 seconds quite easily.

Why would I lie ?

Dougie.


screen capture it, thats superhuman if true!

After about a dozen tries, still a bit early in the morning :-

Logged
matt674
Hero Member
*****
Offline Offline

Posts: 10250



View Profile
« Reply #21 on: August 22, 2007, 01:38:35 PM »

Wow, do you all suck or what?

Here's my effort, given half a chance i could probably beat it again but i'm in work now so just had a quick go during lunch.
Logged

sponsored by Fyffes
UpTheMariners
Hero Member
*****
Offline Offline

Posts: 1888


We Only Sing When We're Fishing


View Profile
« Reply #22 on: August 22, 2007, 02:02:05 PM »

i keep forgetting what comes after L but it takes me about 6 seconds up to that point so i predict if i knew the alphabet properly i'd get it in about 12 seconds but i lose about 6 seconds when i get to L and have to take my fingers off of the keyboard and count the alphabet on my fingers.

Wink come on everyone knows that!
Logged

matt674
Hero Member
*****
Offline Offline

Posts: 10250



View Profile
« Reply #23 on: August 22, 2007, 02:16:00 PM »

i keep forgetting what comes after L but it takes me about 6 seconds up to that point so i predict if i knew the alphabet properly i'd get it in about 12 seconds but i lose about 6 seconds when i get to L and have to take my fingers off of the keyboard and count the alphabet on my fingers.

Wink come on everyone knows that!

its S isn't it - then D?
Logged

sponsored by Fyffes
bolt pp
Hero Member
*****
Offline Offline

Posts: 10906



View Profile
« Reply #24 on: August 22, 2007, 02:25:48 PM »

aaaaarrrrrrrgggggggghhhhhhhh!!!

I'd got it down to 14 seconds, now you're just confusing me
Logged
Claw75
Hero Member
*****
Offline Offline

Posts: 28410



View Profile
« Reply #25 on: August 22, 2007, 02:57:06 PM »

the world record is apparently 1.152 seconds
Logged

"Arguing with idiots is like playing chess with a pigeon....no matter how good you are the bird is going to shit on the board and strut around like it won anyway"
NoflopsHomer
Malcontent
Hero Member
*****
Offline Offline

Posts: 20204


Enchantment? Enchantment!


View Profile
« Reply #26 on: August 22, 2007, 03:09:28 PM »

I think if you want to get a really fast score, just keep going through it starting slowly and gradually increasing your speed.

Logged

matt674
Hero Member
*****
Offline Offline

Posts: 10250



View Profile
« Reply #27 on: August 22, 2007, 03:09:45 PM »

the world record is apparently 1.152 seconds

£20 says it was done on an alphabetic keyboard..........
Logged

sponsored by Fyffes
AndrewT
Global Moderator
Hero Member
*****
Offline Offline

Posts: 15483



View Profile WWW
« Reply #28 on: August 22, 2007, 03:21:08 PM »

the world record is apparently 1.152 seconds

£20 says it was done on an alphabetic keyboard..........


Or they remapped their keyboard.
Logged
kinboshi
ROMANES EUNT DOMUS
Administrator
Hero Member
*****
Offline Offline

Posts: 44239


We go again.


View Profile WWW
« Reply #29 on: August 22, 2007, 03:51:22 PM »

The quickest time is 1.00001 seconds (not sure on the number of decimal places).  That's the minimum the game allows, and I guess some have mapped the code and used a script to mimic the key entry.

Sort of ruins the fun though. 
Logged

'The meme for blind faith secures its own perpetuation by the simple unconscious expedient of discouraging rational inquiry.'
Pages: 1 [2] 3 Go Up Print 
« previous next »
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.21 | SMF © 2015, Simple Machines Valid XHTML 1.0! Valid CSS!
Page created in 0.191 seconds with 19 queries.