openpgp4fpr:AA9B0130E794BF62C0FA240CE9469FAA8B44BB16
I hereby claim:
- I am therealbenpai on github.
- I am therealbenpai (https://keybase.io/therealbenpai) on keybase.
- I have a public key ASAKK3q5b3LcCytHXBdeDShDrik5taw_M4-9JBUGGYPa6wo
To claim this, I am signing this object:
aspe:keyoxide.org:JI3O6H2RNBQYQGJCSZRZYMF7NU
This file contains 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
class TextFormatter { | |
static bold = (text) => `**${text}**`; | |
static italic = (text) => `*${text}*`; | |
static strikethrough = (text) => `~~${text}~~`; | |
static spoiler = (text) => `>!${text}!<`; | |
static code = (text) => `\`${text}\``; | |
static codeBlock = (text) => text.split('\n').unshift('').push('').map(line => ` ${line}`).join('\n'); | |
static quote = (text) => `> ${text}`; | |
static quoteBlock = (text) => `>>> ${text}`; | |
static link = (text, url) => `[${text}](${url})`; |
This file contains 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
class CustomMath { | |
static devideWithRemainder = (a, b) => [Math.floor(a / b), a % b]; | |
static collatz = (sn = 5, mi = 100) => { | |
if (sn <= 0) throw new SyntaxError('Starting Number must be greater than 0'); | |
let i = 0, f = false, mn = sn, cn = sn | |
while (i < mi) { | |
cn = (cn % 2 == 1) ? (cn * 3) + 1 : cn / 2; | |
++i; | |
mn = Math.max(mn, cn); | |
if (cn == 4) { f = true; break } |
This file contains 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
function x() { | |
const letter = String.fromCharCode(Math.floor(Math.random() * 26) + 65); | |
const element = document.createElement('p'); | |
element.style.left = `${Math.random() * 100}%`; | |
element.style.top = `${Math.random() * 100}%`; | |
element.innerText = letter; | |
document.body.insertAdjacentElement('beforeend', element); | |
} | |
function meta() { |
This file contains 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
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="google" content="notranslate"> | |
<meta http-equiv="Content-Language" content="en"> | |
<title>Minesweeper Offline - Play Free Offline Minesweeper that can be played on any PC</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=3.0, user-scalable=yes"> | |
<meta name="description" | |
content="Free Offline Minesweeper in JavaScript. Play the classic game in Beginner, Intermediate, and Expert modes."> |
Note: You require to be on a PC for this to work
- Go to the Wordle Game
- Press Ctrl+Shift+I
- Go to the tab labeled "Console"
- Copy the code from here and paste it, then press enter
- A popup will appear confirming if you want to run the code. If so, accept it. Otherwise, cancel it. Directions will be provided afterwords
This project is completely open source and this bug may be patched when you try to use it.