Questions tagged [wpm]

10 questions
25
votes
25 answers

How to type faster

I've typed around 75wpm for the last few years but I've always wondered how people type +100wpm. I've searched but I primarily find typing tutors that teach you to type.. not teach you to type faster. So far the only tip I've come across is to…
raema
  • 285
  • 1
  • 3
  • 4
2
votes
10 answers

Is two-finger non-homerow touch-typing for programming acceptable?

I'm currently typing about 90 wpm (from http://speedtest.10-fast-fingers.com/ 90 correct 0 missed) using two fingers and the occasional ring or index. This probably grew from learning to type at an early age, before home-row was presented to me. Is…
codebliss
  • 426
  • 4
  • 10
1
vote
0 answers

WPM not accepting typenames

So basically i was writing a simple programm that would spot ennemies on the radar, however, when trying to use this line : Features::WPM(dwCurrentEntity + m_bSpotted, 1); i get an error "unresolved external symbol "void _cdecl…
Skid
  • 11
  • 1
1
vote
2 answers

Weka in R not working - unable to load weka packages via WPM

I am trying to use the RWeka package in R (Studio). After having installed JAVA to match R (64 bit) I created a WEKA_HOME directory where I have put the folder 'wekafiles' earlier stored elsewhere. So, to summarize, I get an error when trying to…
rambazamba
  • 11
  • 1
1
vote
2 answers

Increasing WPM - High End

We've had this question already, but I want to narrow it down to already high-speed typists. The original poster had hit a barrier of 75 WPM and wanted to increase his speed. I'm at a barrier where I can reliably type around 130, and I can…
Claudiu
  • 224,032
  • 165
  • 485
  • 680
1
vote
1 answer

Is there an API for WebSphere Platform Messaging (WPM)?

I am looking for API for WebSphere Platform Messaging (WPM), specifically for Java. IBM's article about WPM reads that WPM and MQ are separate products and that WPM is available through MQ link. However, such approach is unacceptable for me. I…
strenx
  • 26
  • 2
0
votes
1 answer

Time user is typing is zero even though it should be more in javascript

Im trying to calculate the time from when the user starts typing to when they stop. I put two variables start and end and subtracted them from each other. But it always returns zero. Can you give an easy way to calculate wpm if possible also? I want…
Cactus
  • 87
  • 10
0
votes
1 answer

C++ WriteProcessMemory() - Write part of a struct

I'm reading a struct of a game. Then I modifiy this struct and write it back (Using RPM and WPM). If I write back the whole struct, I get crashes in the game I'm trying to hack. That's why I want to write only a part of a struct. How can this be…
0
votes
1 answer

Creating a WPM counter for a phrase then output the time taken

So I want to create a simple program using the time.monotonic() function to prompt before and after the user has has typed the phrase then give the avg words per minutes along with the total seconds taken to type the phrase. Phrase: "The quick brown…
user5327466
-2
votes
1 answer

How to calculate the WPM when using a stopwatch to time words?

I am doing a typing speed test, however, instead of waiting to 60 seconds, I am using a specific amount of words and a stopwatch to time it. My recent calculation is: WPM = number_of_words / (time / 60) However, if I spend 13 seconds typing 8…