The Most Active and Friendliest
Affiliate Marketing Community Online!

“Adavice”/  “RollerAds”/

How fast can you type?

60 to 70, which is kind of slow, but it never stopped me. As a copywriter, I write about 4000 words a day. It's not about how fast can you type and more about how fast can you think.
 
Right now I am at 40 words per minute with very few errors.i have been trying to get better but it is not that important. What I focus on more is the content and not how fast I type the content. My speed is just ok.
 
I am really slow at typing and try to improve this. I really want to learn how to type blindly in order not to waste time on looking at the keyboard.
 
I really thought I'm fast at typing.. But it's only 45WPM Crying Face

Screenshot - 29_07_2021 , 10_16_21.png


- Samira
 
891,135 code words daily with a bash script I wrote in ~10sec
LOAD LOCAL FILE +~3sec
SQL:
mysql> select count(*) from nasdaqdaily;
+----------+
| count(*) |/*lines*/
+----------+
|     7959 |
+----------+
1 row in set (0.00 sec)

It's all repetitive with these values
SQL:
nasdaqdaily | CREATE TABLE `nasdaqdaily` (
  `last_day` date DEFAULT NULL,
  `symbol` varchar(8) NOT NULL,
  `name` varchar(100) NOT NULL,
  `lastsale` decimal(10,6) NOT NULL,
  `netchange` decimal(10,6) NOT NULL,
  `pctchange` decimal(10,6) NOT NULL,
  `marketcap` int NOT NULL,
  `country` varchar(40) NOT NULL,
  `ipoyear` int NOT NULL,
  `volume` int NOT NULL,
  `sector` varchar(100) NOT NULL,
  `industry` varchar(100) NOT NULL,
  KEY `symbol` (`symbol`),
  KEY `lastsale` (`lastsale`),
  KEY `ipoyear` (`ipoyear`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci

now that's a real bot :D

Bash:
$ ./nasdaq_SpanCge.sh
 
MI
Back