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
<?php | |
$keyspace = '123456789abcdefghjkmnpqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ'; | |
$keyspaceLength = mb_strlen($keyspace, 'utf-8') - 1; | |
$numberOfPasswords = 8; | |
$numberOfChars = 16; | |
$passwords = []; |
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
:root { | |
--columns: 2; | |
} | |
* { | |
box-sizing: border-box; | |
padding: 0; | |
margin: 0; | |
} |
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
{ | |
"text": "This bleet to @shinyakato.dev can be found on this Gist. 👍", | |
"facets": [ | |
{ | |
"index": { "byteStart": 14, "byteEnd": 29 }, | |
"features": [ | |
{ | |
"$type": "app.bsky.richtext.facet#mention", | |
"did": "did:plc:iijrtk7ocored6zuziwmqq3c" | |
} |
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
import Undici from "undici"; | |
// Polyfill fetch() in the Node.js environment | |
// Simplified from https://github.com/vercel/next.js/blob/canary/packages/next/src/server/node-polyfill-fetch.ts | |
if (!global.fetch) { | |
function getFetchImpl() { | |
return Undici; | |
} |
OlderNewer