This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Review Countdown | |
| // @namespace Violentmonkey Scripts | |
| // @match https://jpdb.io/review | |
| // @grant none | |
| // @version 2.0 | |
| // @author hmry | |
| // @description 5/7/2022, 10:07:03 PM | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Interval Slider | |
| // @namespace Violentmonkey Scripts | |
| // @match https://jpdb.io/settings | |
| // @grant GM_getValue | |
| // @grant GM_setValue | |
| // @version 2.2 | |
| // @author hmry | |
| // @description 8/24/2022, 11:01:48 AM | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Logarithmic Coverage | |
| // @namespace Violentmonkey Scripts | |
| // @match https://jpdb.io/learn | |
| // @match https://jpdb.io/deck-list | |
| // @grant none | |
| // @version 1.2 | |
| // @author hmry | |
| // @description 5/19/2022, 5:29:17 PM | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Colorful (and Perceptually Linear) Heatmap | |
| // @namespace Violentmonkey Scripts | |
| // @match https://jpdb.io/stats | |
| // @grant GM_getValue | |
| // @grant GM_setValue | |
| // @version 3.2 | |
| // @author hmry | |
| // @description Makes the heatmap on the Stats page more colorful, as well as adding multiple color modes to deal with outlier days better. | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Additional Kanji Fonts | |
| // @namespace Violentmonkey Scripts | |
| // @match https://jpdb.io/review | |
| // @grant none | |
| // @version 2.0 | |
| // @author hmry | |
| // @description Adds two additional fonts to the Kanji review screen. | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include "lang1.h" | |
| char * read_entire_file(char const *path); | |
| int main(int argc, char const *argv[]); | |
| char * read_entire_file(char const *path) |