See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| """ | |
| Aplicando teoria dos conjuntos em listas de emails com Python | |
| Created: 16/04/2019 | |
| @author: Moisés Tedeschi | |
| """ | |
| lista1 = ["eu@mesmo", "[email protected]","[email protected]", "[email protected]"] | |
| # James, corrigi seu nome no e-mail. Não fica chateado (rsrs) | |
| lista2 = ["eu@mesmo", "[email protected]", "[email protected]"] |
This a collection of interesting links found in The Imposter's Handbook by Rob Conery.
Content:
baseado no meu outro tutorial https://gist.github.com/luzfcb/1a7f64adf5d12c2d357d0b4319fe9dcd que é mais atualizado que este. Eu não constumo atualizar esse tutorial, mas é bom para dar uma visão geral simplista das configurações.
Use o pyenv https://github.com/pyenv/pyenv para baixar, instalar e gerenciar múltiplas versões do INTERPRETADOR Python na sua maquina.
Primeiro instale as dependências:
Linux (Ubuntu):
| SPC s c remove highlight | |
| **** Files manipulations key bindings | |
| Files manipulation commands (start with ~f~): | |
| | Key Binding | Description | | |
| |-------------+----------------------------------------------------------------| | |
| | ~SPC f c~ | copy current file to a different location | | |
| | ~SPC f C d~ | convert file from unix to dos encoding | | |
| | ~SPC f C u~ | convert file from dos to unix encoding | |
emacs --daemon to run in the background.
emacsclient.emacs24 <filename/dirname> to open in terminal
NOTE: "M-m and SPC can be used interchangeably".
C-/C-?M-c
2. Upper Case : M-uM-l| ''' | |
| Taking Screenshots with Appium | |
| I'll be using Python and a sample iOS application from Apple's Developer Library | |
| This tutorial assumes you understand how to run, launch, and interact with your application. | |
| ''' | |
| from appium import webdriver | |
| import os |