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", "[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]"]
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active April 27, 2025 18:05
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 January 17, 2025 12:36
Useful links found in The Imposter's Handbook by Rob Conery
@luzfcb
luzfcb / configurar_pyenv.md
Last active January 15, 2025 15:49
instalar pyenv no ubuntu
@adham90
adham90 / spacemacs-keybindings
Last active September 12, 2024 20:41
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 |
@davoclavo
davoclavo / spacemacs-cheatsheet.md
Last active October 26, 2024 19:46 — forked from 526avijitgupta/spacemacs-cheatsheet.md
Spacemacs cheatsheet

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 April 27, 2025 06:17
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