Este tutorial mostra como configurar a combinação ' + c
para produzir ç (cedilha), mesmo usando o layout US International com teclas mortas, no Ubuntu (inclusive sob Wayland), sem alterar arquivos do sistema.
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
#!/bin/bash | |
eval "$(ssh-agent -s)" | |
ORG_NAME="username-of-organization" | |
gh repo list $ORG_NAME --limit 4000 | while read -r repo _; do | |
gh repo clone "$repo" "$repo" | |
done |
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
# Definir diretório para armazenar o arquivo packages.config, logs e downloads | |
$basePath = "C:/temp/Setup-WindowsDevEnvironment" | |
$logPath = "$basePath/logs" | |
$downloadsPath = "$basePath/downloads" | |
$packagesConfigPath = "$basePath/packages.config" | |
$logFile = "$logPath/install_log.txt" | |
# Criar diretórios caso não existam | |
if (!(Test-Path -Path $basePath)) { | |
New-Item -ItemType Directory -Path $basePath |
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
{ | |
"importOrder": [ | |
"^@kubernetes?.+$", | |
"^electron?.+$", | |
"^react?.+$", | |
"^antd?.+$", | |
"^@ant-design?.+$", | |
"^@reduxjs?.+$", | |
"^@rjsf?.+$", | |
"^(?![@\\.]).+$", |
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
# Pass the env-vars to MYCOMMAND | |
eval $(egrep -v '^#' .env | xargs) MYCOMMAND | |
# … or ... | |
# Export the vars in .env into your shell: | |
export $(egrep -v '^#' .env | xargs) |
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
1. `/checkout/cart/add/?sku=0000&qty=1&seller=1&sc=1&redirect=true` |
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
$(window).on('orderFormUpdated.vtex', (event, orderForm) => console.log("orderFormUpdated.vtex")); | |
$(window).on('orderFormUpdated.vtex', (event, orderForm) => console.log("orderFormUpdated.vtex")); | |
$(window).on('checkoutRequestEnd.vtex', (event, orderForm) => console.log("checkoutRequestEnd.vtex")); | |
$(window).on('checkout.vtex.com', (event, orderForm) => console.log("checkout.vtex.com ")); | |
$(window).on('.vtexIdUI', (event, orderForm) => console.log(".vtexIdUI")); | |
$(window).on('authenticatedUser.vtexid', (event, orderForm) => console.log("authenticatedUser.vtexid")); | |
$(window).on('started.vtexid', (event, orderForm) => console.log("started.vtexid")); | |
$(window).on('rendered.vtexid', (event, orderForm) => console.log("rendered.vtexid ")); | |
$(window).on('closed.vtexid', (event, orderForm) => console.log("closed.vtexid")); | |
$(window).on('guestUser.vtexid', (event, orderForm) => console.log("guestUser.vtexid ")); |
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
$(window).on('orderFormUpdated.vtex', (event, orderForm) => console.log("orderFormUpdated.vtex")); | |
$(window).on('orderFormUpdated.vtex', (event, orderForm) => console.log("orderFormUpdated.vtex")); | |
$(window).on('checkoutRequestEnd.vtex', (event, orderForm) => console.log("checkoutRequestEnd.vtex")); | |
$(window).on('checkout.vtex.com', (event, orderForm) => console.log("checkout.vtex.com ")); | |
$(window).on('.vtexIdUI', (event, orderForm) => console.log(".vtexIdUI")); |
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
#!/bin/bash | |
VTEX_WORKSPACE="gabriel" | |
echo $VTEX_WORKSPACE |
NewerOlder