cd <diretório> # Mudar de diretório
cd .. # Voltar um nível
cd # Ir para o diretório home
pwd # Mostrar diretório atual
ls # Listar arquivos
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
| # Telegram | |
| TELEGRAM_BOT_TOKEN= | |
| TELEGRAM_CHAT_IDS= |
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
| # Instalando Docker | |
| # Atualizar o sistema | |
| sudo apt update | |
| # Instalar dependências | |
| sudo apt install -y apt-transport-https ca-certificates curl software-properties-common | |
| # Adicionar a chave GPG oficial do Docker | |
| curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg |
gsettings set org.gnome.desktop.interface clock-show-seconds true
Desktop Options > Ação da tecla Super > Áreas de Trabalho
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
| # api.py - Exemplo genérico | |
| from http import HTTPStatus | |
| from django.shortcuts import get_object_or_404 | |
| from ninja import Router | |
| from .security import CombinedAuth, PermissionChecker | |
| from .schemas import ItemCreateSchema, ItemSchema, ItemUpdateSchema | |
| from .models import Item |
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
| for i in $(seq 1 100); | |
| do | |
| echo $i | |
| done |
NewerOlder