Altura do piso | Base do piso |
---|---|
15.5 | 32 |
15.5 | 32.5 |
15.5 | 33 |
16 | 31 |
16 | 31.5 |
16 | 32 |
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
// ==UserScript== | |
// @name Cola DUAM | |
// @namespace Violentmonkey Scripts | |
// @match https://www.goiania.go.gov.br/sistemas/samin/asp/samin00002f0.asp* | |
// @grant none | |
// @version 1.0 | |
// @author - | |
// @description 9/5/2025, 9:55:33 AM | |
// ==/UserScript== |
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
// ==UserScript== | |
// @name JumpCutter for tldv.io | |
// @namespace Violentmonkey Scripts | |
// @match https://tldv.io/app/meetings/* | |
// @grant none | |
// @version 1.4 | |
// @author qgustavor | |
// @description Speeds up silent parts in tldv.io meetings | |
// ==/UserScript== |
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
// ==UserScript== | |
// @name Increase WhatsApp Web Audio Volume | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Intercept audio creation and redirect to Web Audio API with increased volume using createMediaElementSource | |
// @author ChatGPT | |
// @match https://web.whatsapp.com/* | |
// @run-at document-start | |
// ==/UserScript== |
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
// ==UserScript== | |
// @name Block DuckDuckGo's AI | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @description Add kbg=-1 and kbe=0 to DuckDuckGo URLs if missing | |
// @author qgustavor | |
// @match *://duckduckgo.com/* | |
// @grant none | |
// @installUrl https://gist.github.com/qgustavor/c2dba88fdec3d2383310b1503d766065/raw/no-duck-ai.user.js | |
// @updateUrl https://gist.github.com/qgustavor/c2dba88fdec3d2383310b1503d766065/raw/no-duck-ai.user.js |
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
// ==UserScript== | |
// @name Quebra o "captcha" da Secretaria de Segurança Pública do Governo de Goiás (SSP-GO) | |
// @namespace Violentmonkey Scripts | |
// @match https://raivirtual.ssp.go.gov.br/* | |
// @grant none | |
// @version 1.0 | |
// @author qgustavor | |
// @description Quebra o "captcha" da Secretaria de Segurança Pública do Governo de Goiás (SSP-GO) | |
// ==/UserScript== |
Warning
THIS PAGE INCLUDES SPOILERS! This document is a work in progress, you can contribute by leaving a comment.
I have noticed that the Blue Prince game (at the time of writting only a demo was released), despite being really interesting, is a game where is really hard to find info about it in the internet.
Surely you can find a lot about the game by playing the demo, but that requires you to have a computer that can handle the game (and mine is having some few issues at the moment). The easiest way to get info about this game I could find so far is checking playthoughts on YouTube, but you can't just Ctrl+F a video.
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 { checkCNPJ } from './check-cnpj.js' | |
const userCNPJ = '01.005.727/0001-23' | |
const result = checkCNPJ(userCNPJ) | |
if (result.valid) { | |
console.log(`The CNPJ ${result.formattedCNPJ} is valid.`) | |
} else { | |
console.log(`The CNPJ ${result.formattedCNPJ} is invalid.`) | |
if (result.possibleCorrections.length > 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
// Function to interpolate missing rates | |
function interpolateRate(rates, age) { | |
const surroundingRates = Object.entries(rates) | |
.filter(([key]) => Number(key) <= age) | |
.sort((a, b) => Number(a[0]) - Number(b[0])) // Sort by age (ascending) | |
if (surroundingRates.length === 0) { | |
// No rates available, return 0 (adjust as needed) | |
return 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
// ==UserScript== | |
// @name Keep Cifras Awake | |
// @namespace http://tampermonkey.net/ | |
// @version 2024-03-21 | |
// @description try to take over the world! | |
// @author You | |
// @match https://www.cifraclub.com.br/* | |
// @icon https://icons.duckduckgo.com/ip2/cifraclub.com.br.ico | |
// @grant none | |
// @require https://unpkg.com/@zakj/[email protected]/dist/no-sleep.umd.cjs |
NewerOlder