Commit graph

8320 commits

Author SHA1 Message Date
Miodec 5ae51b36ff moved british english below languages 2022-10-22 12:59:16 +02:00
Peter Moore 677481b3fb
Add quotes to code_c (#3674) PeterMoore24
* Added fibonacci to code_c

* Added FreeBSD boot and GCC quotes to code_c

* Added python and vkd3d quotes to code_c

* fixed quote lenghts

Co-authored-by: Miodec <jack@monkeytype.com>
2022-10-21 23:08:40 +02:00
Miodec 42a70c61bd fixed leaderboards not working when not signed in 2022-10-21 22:44:01 +02:00
Miodec 2551a98bf5 fixed one package vuln 2022-10-21 14:57:45 +02:00
Miodec 3d90c398d0 updated to husky 8 2022-10-21 14:51:44 +02:00
Miodec 9813c9d757 updated firebase version 2022-10-21 14:51:44 +02:00
Swarit Choudhari 062cfeaca3
add quotes for 3 languages (#3672) SwiftyProgrammer690
* Add quotes for languages english, hindi, norwegian

* added vintage_red theme

* Delete vintage_red.css

* Update _list.json
2022-10-21 14:12:50 +02:00
Miodec 1414c7301d fixed missing decimal points 2022-10-19 12:44:38 +02:00
Miodec 22d07d14ec making sure the preset filters have all the required keys 2022-10-19 00:55:47 +02:00
Miodec b1d53f1f99 fixed incorrect schema 2022-10-19 00:34:47 +02:00
Miodec ebd19f0a56 fixed incorrect event handler binding
closes #3669
2022-10-19 00:30:23 +02:00
Miodec 293a7868e2 showing decimal places on the accounts page if enabled in the settings 2022-10-19 00:27:20 +02:00
EMRD95 825ea7f520
More french quotes (#3661) emrd95
* More french quotes

Translation: 

 "text": "You are sitting and you only want to wait, wait only until there is nothing left to wait for: until the night comes, until the hours ring, until the days go by, until the memories fade away",
      "source": "A Sleeping Man (1967) by Georges Perec",
      "length": 207,
      "id": 117
    },
    {
      "text": "I love peanuts. You're drinking a beer and you're sick of the taste. So you eat peanuts. Peanuts are sweet and salty, strong and tender, like a woman. Eating peanuts, it's a really strong feeling. And then you feel like drinking beer again. Peanuts are the perpetual motion within the reach of man,
      "source": "JCVD cult quotes from Jean-Claude Van Damme",
      "length": 342,
      "id": 118
    },
    {
      "text": "To live is to go from one space to another trying as much as possible not to bump into each other.",
      "source": "Espèces d'espaces (1974) by Georges Perec",
      "length": 100,
      "id": 119
    },
    {
      "text": "He was a word killer: he worked on updating the Larousse dictionaries.",
      "source": "La Vie mode d'emploi (1978) by Georges Perec",
      "length": 84,
      "id": 120
    },
    {
      "text": "The law is implacable, but the law is unpredictable. No one is supposed to ignore it, but no one can know it.",
      "source": "W. ou le Souvenir d'enfance (1975) by Georges Perec",
      "length": 110,
      "id": 121
    },
    {
      "text": "You have everything to learn, everything that cannot be learned: solitude, indifference, patience, silence.",
      "source": "A Sleeping Man by Georges Perec",
      "length": 107,
      "id": 122
    },
    {
      "text": "You can be God of the dogs, God of the cats, God of the poor, all you need is a leash, some slack, some fortune, but you will never be master of the tree. You will never be able to but want to become a tree in your turn.",
      "source": "A Sleeping Man by Georges Perec",
      "length": 229,
      "id": 123
    },
    {
      "text": "Yea, though I walk through the valley of the shadow of death, I will fear no evil: for thou art with me, thy rod and thy staff, they comfort me.",
      "source": "Psalm 23:4 Darby Bible",
      "length": 164,
      "id": 124
    },
	{
      "text": "Nature has not made each of us like each other, but different in ability, and fit for this or that purpose.",
      "source": "Plato's Republic",
      "length": 88,
      "id": 125
    },
	{
      "text": "None of the human things are worth taking with great seriousness.",
      "source": "Plato's Republic",
      "length": 65,
      "id": 126
    },
	{
      "text": "True philosophers guard against all the passions of the body, resist them and do not give themselves over to them.",
      "source": "Phaedo, 82b by Plato",
      "length": 107,
      "id": 127
    },
	{
      "text": "Some call the body the tomb of the soul where it is presently buried.",
      "source": "Cratylus of Plato",
      "length": 106,
      "id": 128
    }
  ]
}

* Removed the peanut and word killer quote

Translation of the changes:

id 120
Your room is the most beautiful of the deserted islands, and Paris is a desert that nobody ever crossed. You don't need anything else but this calm, this sleep, this silence, this torpor. Let the days begin and let the days end, let time pass, let your mouth close, let the muscles of your neck, your jaw, your chin, relax completely, let only the heaving of your ribcage, the beating of your heart, still testify to your patient survival.

id 118
Plants, for example, which have no hands and no ears, feel things, vibrations, they are more aware than other species.

* Update french.json
2022-10-18 15:46:17 +02:00
Brian Evans cffa7514ea
Save speed stats in leaderboard update (#3652) mrbrianevans
* Save speed stats in leaderboard update

Saves a histogram data structure of speeds for buckets rounded to the nearest 10.

Signed-off-by: Brian Evans <ebrian101@gmail.com>

* API endpoint to get public speed stats

Signed-off-by: Brian Evans <ebrian101@gmail.com>

* Add APE class for public stats (WIP)

I created an APE class for accessing public stats. Also stubbed getting and showing the public speed stats on the about page. Haven't implemented the histogram yet though.

Signed-off-by: Brian Evans <ebrian101@gmail.com>

* Draw histogram for global speed stats

On about page

Signed-off-by: Brian Evans <ebrian101@gmail.com>

* Update histogram colors on theme change

Signed-off-by: Brian Evans <ebrian101@gmail.com>

* Fixed out-of-order data in speed histogram

 Data was not sorted correctly, which resulted in an incorrect histogram being drawn.

Signed-off-by: Brian Evans <ebrian101@gmail.com>

* Public speed stats PR fixes

Small fixes based on PR feedback:
 - changed _req to req
 - removed unnecessary client version header

Signed-off-by: Brian Evans <ebrian101@gmail.com>

* Add endpoint for typing stats

New endpoint to retrieve the public typing stats such as global count of tests completed.

Signed-off-by: Brian Evans <ebrian101@gmail.com>

* Renamed public-stats to public

Except in cases where it would cause an identifier named `public` as this is forbidden in strict mode.

Signed-off-by: Brian Evans <ebrian101@gmail.com>

* Add stats section to about page

In this commit:
 - add a section above about called stats
 - display typing stats in three columns
 - underneath show the histogram of speeds on english time 60
 - make chart responsive

Signed-off-by: Brian Evans <ebrian101@gmail.com>

* Add unit test for Public DAL

Signed-off-by: Brian Evans <ebrian101@gmail.com>

* updated styling

* only requesting data once per session

* going one column on narrow screens

* added option to specify number of decimal poitns

* just showing million instead of abbreviating
updated structure
updated styling

Signed-off-by: Brian Evans <ebrian101@gmail.com>
Co-authored-by: Miodec <jack@monkeytype.com>
2022-10-18 15:45:45 +02:00
Jack 208e5c5e7f
backend server, not database 2022-10-18 12:35:40 +02:00
Miodec 18229a2beb installing dependencies manually is not required when using docker 2022-10-18 12:34:17 +02:00
Miodec e47048f0b2 added concurrently as a dev frontend dependency 2022-10-18 12:34:00 +02:00
Miodec 1b94f90bde removed unnecessary class check,
replaced deprecated function
2022-10-18 04:00:11 +02:00
Miodec e0d76ff439 removed quotes 2022-10-18 03:44:24 +02:00
Miodec 47c4028aed more specific event binding 2022-10-18 03:41:20 +02:00
Miodec aa0b5caf42 more specific query for slightly better performance 2022-10-18 03:33:15 +02:00
Miodec e3d34311c3 storing caret globally
removed unnecessary words wrapper class check
2022-10-18 03:21:51 +02:00
Miodec 6d75b64666 vanilla js for m o r e s p e e d 2022-10-18 03:11:59 +02:00
Miodec 4c2e7ee5cb fixed placement of caps lock warning 2022-10-18 03:05:47 +02:00
Miodec 6970fbddaa storing state
binding event to words input instead of document
2022-10-18 03:05:31 +02:00
Miodec 78e3a54b02 updated contributors list 2022-10-18 02:37:09 +02:00
Jack 33e4c5e9f9
spacing 2022-10-17 22:41:04 +02:00
Jack 845a6dfaee
new line 2022-10-17 22:39:53 +02:00
Miodec 7425ba52cc better grouping 2022-10-17 22:38:08 +02:00
Miodec 0f1f7bc6b0 reduced indent 2022-10-17 22:33:47 +02:00
Miodec 4d05d61b59 small update 2022-10-17 22:31:51 +02:00
Miodec cf68398c15 reworked advanced contributing file 2022-10-17 22:26:54 +02:00
Miodec 56457b29b7 quote lengthx fix 2022-10-17 21:22:43 +02:00
Miodec 8a283836e7 quote reports 2022-10-17 21:22:04 +02:00
Miodec fbd58a3202 fixed practise words popup not showign 2022-10-17 20:08:21 +02:00
Miodec 0b5e312897 added option to add or not add periods when replacing new lines with spaces
closes #3660
2022-10-17 16:13:58 +02:00
QuackerDeezles 80df3dc61f
New language: english doubleletter (#3664) QuackerDeezles
* New language: english doubleletter -> A 200-word list only including words that have the same letter used consecutively.

* english doubleletter error, comma syntax fixed!

* english doubleletter -> english_doubleletter
2022-10-17 16:13:05 +02:00
Miodec 575cbcef60 fixed a bug where smooth line transition would cause quick consecutive line jumps to not work correctly
closes #3662
2022-10-17 15:21:35 +02:00
Miodec 40cd8c58b0 stopping animations on restart
removing smooth scroller on restart
2022-10-17 15:15:03 +02:00
Miodec 02e3c5a46f incorrect parent element 2022-10-17 14:23:20 +02:00
Miodec 37a56b11e3 saving repeated time typing as incomplete
so it can be saved on the next successful result save
closes #3666
2022-10-17 14:21:53 +02:00
Kavin Ruengprateepsang a67aeaf977
Add English quote (#3656) kavinvin
* Add English quote

* Add more English quote

* Add more English quotes from Eighty Six

* Fix quote length

* Add more quotes

* Remove some quotes

* Remove more quotes
2022-10-17 14:04:16 +02:00
Miodec d99e4ca4c9 making sure the buttons are ready
updating active buttons
2022-10-17 14:03:15 +02:00
Miodec 26487a2366 added pb filter 2022-10-17 13:51:48 +02:00
Miodec 1fd1e30806 showing if user got a pb for the newly added tag
closes #3663
2022-10-17 13:41:53 +02:00
Miodec b6c73fca49 not doing anything if arrays are equal 2022-10-17 13:39:38 +02:00
Miodec c55f322616 setting to empty array when empty string 2022-10-17 13:39:17 +02:00
Miodec f0dca0cf13 filling default values 2022-10-17 13:32:52 +02:00
Miodec b13448ae7c turns out foreach stops exceptions from propagating 2022-10-17 13:30:14 +02:00
Miodec 437614b20c strict undefined check instead of a nullish check 2022-10-17 13:18:30 +02:00