Skip to content

Instantly share code, notes, and snippets.

@MoisesTedeschi
MoisesTedeschi / teoria-conjuntos-simples-usando-set.py
Last active April 17, 2019 00:01
Aplicando teoria dos conjuntos em listas de emails com Python.
"""
Aplicando teoria dos conjuntos em listas de emails com Python
Created: 16/04/2019
@author: Moisés Tedeschi
"""
lista1 = ["eu@mesmo", "moisestedeschi@gmail.com","moatedeschi@gmail.com", "moises.tedeschi@esporte.gov.br"]
# James, corrigi seu nome no e-mail. Não fica chateado (rsrs)
lista2 = ["eu@mesmo", "jamesperes@gmail.com", "moises.tedeschi@esporte.gov.br"]
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active July 24, 2024 08:58
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@milmazz
milmazz / imposter-handbook-links.md
Last active April 1, 2024 10:31
Useful links found in The Imposter's Handbook by Rob Conery
@luzfcb
luzfcb / configurar_pyenv.md
Last active July 14, 2024 01:25
instalar pyenv no ubuntu
@adham90
adham90 / spacemacs-keybindings
Last active April 5, 2024 14:24
spacemacs keybindings that i need to learn
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".

  • Undo - C-/
  • Redo - C-?
  • Change case: 1. Camel Case : M-c 2. Upper Case : M-u
  1. Lower Case : M-l
@PurpleBooth
PurpleBooth / README-Template.md
Last active July 22, 2024 02:29
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@JessicaSachs
JessicaSachs / screenshot_ex.py
Last active May 19, 2024 23:56
Taking Screenshots with Appium in Python
'''
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