Skip to content

Instantly share code, notes, and snippets.

View rochacbruno's full-sized avatar
🛠️
Working on Galaxy_ng and Dynaconf

Bruno Rocha rochacbruno

🛠️
Working on Galaxy_ng and Dynaconf
View GitHub Profile
@allisson
allisson / ubuntu-2204-remove-snap.md
Last active September 5, 2024 02:45
Ubuntu 22.04 remove snap

Remove snaps

sudo snap remove --purge firefox
sudo snap remove --purge snap-store
sudo snap remove --purge snapd-desktop-integration
sudo snap remove --purge gtk-common-themes
sudo snap remove --purge gnome-3-38-2004
sudo snap remove --purge core20
sudo snap remove --purge bare
sudo snap remove --purge snapd
{
id: 'gruvbox-dark',
name: 'Gruvbox (Dark)',
highlights: {
background: '#282828',
text: '#ebdbb2',
variable: '#83a598',
attribute: '#8ec07c',
definition: '#fabd2f',
keyword: '#fb4934',

Propostas de aulas sobre Typing

  1. Anotação de funções - PEP-3107
    • Fundamentos da anotação de tipos
    • Sintaxe
      • Parametros
      • Retornos
    • __annotations__
    • Casos de uso
  • typing
@vrslev
vrslev / main.py
Last active February 14, 2025 21:51
Automatic browser reloading in FastAPI
import os
import arel
from fastapi import FastAPI, Request
from fastapi.templating import Jinja2Templates
app = FastAPI()
templates = Jinja2Templates("templates")
if _debug := os.getenv("DEBUG"):
.DEFAULT_GOAL := help
help: ## show help message
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m\033[0m\n"} /^[$$()% a-zA-Z_-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
compile: ## Compile foobar
@echo "##### Compiling foobar"
@rochacbruno
rochacbruno / dynaconf.md
Last active May 18, 2022 12:05
O que é dynaconf

Dynaconf é uma ferramenta para gerenciar as configurações do seu programa.

Digamos que você tenha uma função assim:

def calcula_preco_com_desconto(valor):
    aliquota = 10  # 10% de desconto
    return valor - (valor * aliquota / 100)
@adamchainz
adamchainz / typed_property.py
Created October 18, 2021 10:30 — forked from willmcgugan/typed_property.py
A descriptor that permits a different type in the setter
from __future__ import annotations
from typing import NamedTuple, cast, overload
class ConsoleDimensions(NamedTuple):
width: int
height: int
@rochacbruno
rochacbruno / main.py
Created October 12, 2021 17:37
better main for python
import atexit
import sys
def main(f):
if f.__module__ == "__main__":
atexit.register(f)
sys.modules['main'] = main # noqa
@ramalho
ramalho / timeslice.py
Last active September 25, 2021 11:22
Abusing Python's T[4:20] syntax to make Time objects
"""
Could this be valid Python?
if now >= T[4:20:PM]: sextou()
>>> t = T[4:20]
>>> t
T[4:20]
@hugoprudente
hugoprudente / Makefile
Created February 25, 2021 21:43
Makefile with help
define PRINT_HELP_PYSCRIPT
import re, sys
for line in sys.stdin:
match = re.match(r'^([a-zA-Z_-]+):.*?## (.*)$$', line)
if match:
target, help = match.groups()
print("%-30s %s" % (target, help))
endef
export PRINT_HELP_PYSCRIPT