ls -lh
tree
Resposta https://corporate.canaltech.com.br/tutorial/linux/entendendo-a-estrutura-de-diretorios-do-linux/
| # -*- coding: utf-8 -*- | |
| """Módulo da Calculadora.""" | |
| class Calculadora: | |
| """Classe da Calculadora.""" | |
| def soma(self, n1, n2): | |
| """Metodo que soma dois números.""" | |
| return n1 + n2 |
| # *-* coding: utf-8 *-* | |
| '''Arquivo settings.py''' | |
| import sys | |
| import os | |
| from django.conf import settings | |
| DEBUG = os.environ.get('DEBUG', 'on') == 'on' | |
| SECRET_KEY = os.environ.get('SECRET_KEY', '{{ secret_key}}') |
| """Modulo para Criptografar Arquivo.""" | |
| # -*- coding:utf-8 -*- | |
| import base64 | |
| import zlib | |
| from Crypto.PublicKey import RSA | |
| from Crypto.Cipher import PKCS1_OAEP | |
| def gerar_chaves(bits=2048): |
| import tkinter as tk | |
| from PIL import Image, ImageDraw, ImageTk | |
| im = Image.new('RGB', (256, 256)) | |
| draw = ImageDraw.Draw(im) | |
| width = 256 | |
| height = 256 | |
| cor1 = (255, 0, 0) |
| schedule |
git submodule add --branch master [URL] [PATH_TO_SUBMODULE] git submodule add --branch master https://github.com/nenodias/chateadeiro.git chateadeiro
git submodule foreach git pull