I hereby claim:
- I am mateusfg7 on github.
- I am mateusfg7 (https://keybase.io/mateusfg7) on keybase.
- I have a public key ASAYF1crfwX0EZZ4GhBG6aS9A745T5OQt0pP8PPeQvIGhQo
To claim this, I am signing this object:
Help Ukraine by attacking Russian web sites. Good load testing training.
Tools:
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
#!/usr/bin/env ruby | |
require 'open3' | |
require 'json' | |
ffmpeg_bin = '/usr/local/bin/ffmpeg' | |
target_il = -24.0 | |
target_lra = +11.0 | |
target_tp = -2.0 | |
samplerate = '48k' |
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 sleep = (ms: number) => new Promise(resolve => setTimeout(resolve, ms)) | |
await sleep(300) // will pause program for 3 seconds |
I hereby claim:
- I am mateusfg7 on github.
- I am mateusfg7 (https://keybase.io/mateusfg7) on keybase.
- I have a public key ASDFxX9KLMm04nfXYjkhdrHQLCzy2ZGr3LBSpbQIUyy6Rwo
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
Política de Privacidade | |
Na Formatch, privacidade e segurança são prioridades e nos comprometemos com a transparência do tratamento de dados pessoais dos nossos usuários/clientes. Por isso, esta presente Política de Privacidade estabelece como é feita a coleta, uso e transferência de informações de clientes ou outras pessoas que acessam ou usam nosso aplicativo ou site. | |
Ao utilizar nossos serviços, você entende que coletaremos e usaremos suas informações pessoais nas formas descritas nesta Política, sob as normas da Constituição Federal de 1988 (art. 5º, LXXIX; e o art. 22º, XXX – incluídos pela EC 115/2022), das normas de Proteção de Dados (LGPD, Lei Federal 13.709/2018), das disposições consumeristas da Lei Federal 8078/1990 e as demais normas do ordenamento jurídico brasileiro aplicáveis. | |
Dessa forma, a Formatch, no papel de Controladora de Dados, obriga-se ao disposto na presente Política de Privacidade. | |
1. Quais dados coletamos sobre você e para qual finalidade? | |
Nosso site coleta e utiliza alguns dado |
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
2023-06-05 19:07:07,089 | INFO | ulauncher: main() | Ulauncher version 5.15.2 | |
2023-06-05 19:07:07,089 | INFO | ulauncher: main() | Extension API version 2.0.0 | |
2023-06-05 19:07:07,089 | INFO | ulauncher: main() | GTK+ 3.24.38 | |
2023-06-05 19:07:07,089 | INFO | ulauncher: main() | Is Wayland: False | |
2023-06-05 19:07:07,090 | INFO | ulauncher: main() | Wayland compatibility: off | |
2023-06-05 19:07:07,119 | DEBUG | ulauncher.ui.windows.Builder: __init__() | consider using a pythonic name instead of design name 'input-box' | |
2023-06-05 19:07:07,122 | DEBUG | ulauncher.ui.windows.Builder: do_connect() | connect builder by name 'ulauncher_window','destroy', 'on_destroy' | |
2023-06-05 19:07:07,122 | DEBUG | ulauncher.ui.windows.Builder: do_connect() | connect builder by name 'ulauncher_window','focus_in_event', 'on_focus_in_event' | |
2023-06-05 19:07:07,122 | DEBUG | ulauncher.ui.windows.Builder: do_connect() | connect builder by name 'ulauncher_window','focus_out_event', 'on_focus_out_event' | |
2023-06-05 19:07:07,123 | DEBUG | ula |
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 sleep = (timeInMs: number) => | |
new Promise(resolve => setTimeout(resolve, timeInMs)) | |
interface FadeSoundProps { | |
from: number | |
to: number | |
step?: number | |
totalFadeTimeMs: number | |
soundRef: React.RefObject<HTMLAudioElement> | |
beforeFade?: () => void | undefined |