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
https://nerdlegame.com/ | |
nerdlegame 14 5/6 | |
🟩🟪⬛️⬛️⬛️🟪⬛️⬛️ | |
🟩⬛️🟩🟪🟪🟪⬛️⬛️ | |
🟩🟪🟩🟪⬛️⬛️🟩⬛️ | |
🟩⬛️🟩🟩🟩🟩🟩⬛️ | |
🟩🟩🟩🟩🟩🟩🟩🟩 |
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
https://www.powerlanguage.co.uk/wordle/ | |
Wordle 207 4/6 | |
⬛🟨⬛⬛⬛ | |
⬛🟩⬛⬛🟩 | |
🟩🟩⬛🟨⬛ | |
🟩🟩🟩🟩🟩 | |
Wordle 208 - X/6 |
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
/// twitch-videoad.js | |
const origFetch = window.fetch; | |
window.fetch = (url, init, ...args) => { | |
if (typeof url === "string") { | |
if (url.includes("/access_token")) { | |
url = url.replace("player_type=site", "player_type=thunderdome"); | |
} else if ( | |
url.includes("/gql") && | |
init && | |
typeof init.body === "string" && |
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
INSERT INTO `service` (`id`, `banking`, `investment`, `insurance`) | |
VALUES | |
(1,1,0,0), | |
(2,1,1,0), | |
(3,1,0,1), | |
(4,1,1,1); | |
INSERT INTO `interestRate` (`id`, `kindOfService`, `typeOfAccount`, `percentage`) | |
VALUES | |
(1,'banking','checking',0.0001), |