// .prettierrc.mjs
const config = {
"tabWidth": 4,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"endOfLine": "lf",
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 currencyFormat(value, currency = 'USD', locale = 'en-US') { | |
return new Intl.NumberFormat( | |
locale, { style: 'currency', currency }).format(value); | |
} | |
currencyFormat(15); // $15.00 | |
currencyFormat(15, 'USD', 'en-US'); // $15.00 | |
currencyFormat(15, 'BRL', 'en-US'); // R$15.00 | |
currencyFormat(15, 'USD', 'pt-BR'); // US$ 15,00 | |
currencyFormat(15, 'BRL', 'pt-BR'); // R$ 15,00 |
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
// Se quiser diminuir o tempo de espera, abra o console do navegador (pressionando F12) e cole isso: | |
triggerFreeDownload = function() { | |
if(started === true) { | |
return; | |
} | |
started = true; | |
display(); | |
countdownTimer = setInterval('display()', 1); |
Para unir 2 vídeos com o FFmpeg, você pode seguir os seguintes passos:
-
Criar um arquivo de texto: Crie um arquivo de texto (por exemplo,
lista.txt
) e liste os vídeos que deseja unir, um por linha, por exemplo:file 'video1.mp4' file 'video2.mp4'
-
Executar o comando FFmpeg: Abra um terminal, navegue até a pasta onde está o arquivo de texto e execute o seguinte comando:
use TiagoF2\F2ArrayCache\F2ArrayCache;
if (!$cache->isValid('abc')) {
echo 'Invalid. Do some here...' . PHP_EOL;
}
var_export([
'abc' => $cache->get('abc', 'PADRAO'),
'put_abc' => $cache->put('abc', 50, 'valor enviado primeiro'),
NewerOlder