Action | Shortcut |
---|---|
switch fullscreen mode | Ctrl +f |
resize window to 1:1 (pixel-perfect) | Ctrl +g |
resize window to remove black borders | Ctrl +x | Double-click¹ |
click on HOME |
Ctrl +h | Middle-click |
click on BACK |
Ctrl +b | Right-click² |
click on APP_SWITCH |
Ctrl +m |
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
def gerar_itau(fatura, bank, encargos=0): | |
invoice = BoletoItau() | |
invoice.data_vencimento = fatura.dtvencto.date() | |
invoice.data_documento = fatura.dtemissao | |
invoice.nosso_numero = fatura.nosso_numero | |
invoice.numero_documento = fatura.fatura | |
invoice.valor_documento = fatura.valor | |
empresa = Empresa.objects.get(pk=settings.STUR_EMPRESA) |
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
{ | |
"linebreak-style": [ | |
"warn", | |
"unix" | |
], | |
"no-multiple-empty-lines": [ | |
"warn", | |
{ | |
"max": 2, | |
"maxEOF": 1 |
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 | |
# Adicione um novo remote; pode chamá-lo de "upstream": | |
git remote add upstream https://github.com/usuario/projeto.git | |
# Obtenha todos os branches deste novo remote, | |
# como o upstream/master por exemplo: | |
git fetch upstream |
NewerOlder