Skip to content

Instantly share code, notes, and snippets.

View chriskfwoo's full-sized avatar
🇨🇦

Chris Woo chriskfwoo

🇨🇦
View GitHub Profile
@chriskfwoo
chriskfwoo / Chris - Nerdle
Last active February 12, 2022 16:54
Chris - Nerdle
https://nerdlegame.com/
nerdlegame 14 5/6
🟩🟪⬛️⬛️⬛️🟪⬛️⬛️
🟩⬛️🟩🟪🟪🟪⬛️⬛️
🟩🟪🟩🟪⬛️⬛️🟩⬛️
🟩⬛️🟩🟩🟩🟩🟩⬛️
🟩🟩🟩🟩🟩🟩🟩🟩
https://www.powerlanguage.co.uk/wordle/
Wordle 207 4/6
⬛🟨⬛⬛⬛
⬛🟩⬛⬛🟩
🟩🟩⬛🟨⬛
🟩🟩🟩🟩🟩
Wordle 208 - X/6
/// 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" &&
@chriskfwoo
chriskfwoo / populate.mysql
Last active October 18, 2018 05:02
populate
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),