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
| #pragma once | |
| #include <type_traits> | |
| #ifndef DEBUGM | |
| namespace comptime { | |
| namespace List { | |
| #endif | |
| // List variant for tail end. | |
| struct Nothing {}; |
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
| Prerequisites: | |
| * MSYS2 with MinGW64 environment. | |
| * build tools: `pacman -S mingw-w64-x86_64-make mingw-w64-x86_64-cmake mingw-w64-x86_64-gcc mingw-w64-x86_64-winpthreads-git ` | |
| AV1 supports | |
| * libsvtav1 (encoder): `pacman -S mingw-w64-x86_64-svt-av1` | |
| * libdav1d (decoder): `pacman -S mingw-w64-x86_64-dav1d` | |
| VVC supports | |
| * libvvenc (encoder): |
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
| (() => { | |
| const rows = document.querySelectorAll("table tr.alt, table tr.x"); | |
| let i = 1; | |
| for (k of rows) { | |
| const data = k.querySelectorAll("td"); | |
| if (getComputedStyle(data[8]).color !== 'rgb(17, 17, 17)') { | |
| k.hidden = 'true'; | |
| } else { | |
| data[0].innerHTML = `${i}.`; | |
| i += 1; |
OlderNewer