aspe:keyoxide.org:HLPMZEVMMCLIDWVGNDMB4LIB2M
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
As a concise and helpful summarizer, create a glanceable "answer card" containing the most important information from the webpage. | |
Capture the tone, perspective and POV of the writer. | |
Provide a response using JSON, according to the `Response` schema: | |
``` | |
interface Response { | |
blocked: boolean // Does this page ask the user to enable Javascript or complete a security check before accessing the content? | |
userQuestion: string? // 1-word question to focus the rest of the answer card upon; based on user's search query: 'google' | |
quickSummary: string? // 3-8 words the user is most likely to want to know, beyond the page's title. Provide a fact or opinion, not just a title. | |
details: Detail[] // 2-4 key points, solutions or items. | |
} |
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
const canvas = document.createElement('canvas'); | |
canvas.width = 1000; | |
canvas.height = 1000; | |
document.body.appendChild(canvas); | |
const ctx = canvas.getContext('2d'); | |
let currentIndex = 0; | |
const totalDigits = 1000000; | |
const digitsPerRequest = 1000; |
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
script-src | |
'self' | |
'wasm-unsafe-eval' | |
https://cdn.jsdelivr.net | |
https://apis.google.com | |
https://cdnjs.cloudflare.com | |
https://*.woopra.com | |
https://www.googletagmanager.com | |
'sha256-aROmP5KBVON8dHdF7kTobxNwhI67hJuBpk+jNh/jbM4=' | |
'sha256-lIXJkTrfgeKmujhwsIkqzNbMkplZdPFm1ERXsf46uOw=' |
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
/* tiagorangel.com * If you use this, please credit me somewhere | |
* Make sure to set the following variables: | |
--foreground: r, g, b | |
--background: r, g, b | |
Example: | |
--foreground: 13, 13, 14; | |
--background: 255, 255, 255; | |
*/ |
aspe:keyoxide.org:CV3KDZMFHPQ2THPQJT2657RBHY
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
setTimeout(async function () { | |
let o = await (await fetch(location.href)).text(); | |
var i = setInterval(async function () { | |
var n = await (await fetch(location.href)).text(); | |
if (!(o == n)) { location.reload(); clearInterval(i) } | |
}, 500) | |
}, 1) |
I hereby claim:
- I am tiagorangel2011 on github.
- I am tr11 (https://keybase.io/tr11) on keybase.
- I have a public key whose fingerprint is 083A DAEA B2D0 D2B5 AB34 128F 37C5 0ED7 02C7 C04C
To claim this, I am signing this object:
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
// 💡 Tip: need to decode with node.js? Use the @authflow-js/verify npm module | |
function decryptJWT(e) { | |
return JSON.parse((typeof Buffer !== "undefined" ? Buffer.from(token.split('.')[1], 'base64') : atob(token.split('.')[1])).toString()); | |
} |
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
<!-- Default, logs are injected on the page --> | |
<script src="https://jscdn.glitch.me/cdn/[email protected]" crossorigin="anonymous"></script> | |
<!-- Logs are only on the console --> | |
<script src="https://jscdn.glitch.me/cdn/[email protected]" crossorigin="anonymous"></script> |
NewerOlder