Skip to content

Instantly share code, notes, and snippets.

@ismarsantos
ismarsantos / certbot.sh
Created March 28, 2025 13:55 — forked from fideloper/certbot.sh
Certbot on Ubuntu, wildcard subdomains via CloudFlare DNS challenge
# Used on Ubuntu 18.04 and 20.04
# Find instructions for other OSes here: https://certbot.eff.org/instructions
# Install Certbot via Snaps
sudo snap install core; sudo snap refresh core
sudo snap install --classic certbot
sudo ln -s /snap/bin/certbot /usr/bin/certbot
# Install DNS CloudFlare plugin
sudo snap set certbot trust-plugin-with-root=ok

Análise do Cenário de Memberships

O cenário descrito faz total sentido do ponto de vista de modelagem de dados e relações entre entidades. Vamos explicar por que:

Por que o atributo role pertence a Membership e não ao User?

O atributo role está corretamente posicionado em Membership porque:

  1. Contextualização dos papéis: Um usuário pode participar de múltiplas organizações e ter papéis diferentes em cada uma delas. Por exemplo:
  • O mesmo usuário pode ser admin na organização A
@ismarsantos
ismarsantos / kamal-production-server-setup.sh
Created March 3, 2025 18:50 — forked from rameerez/kamal-production-server-setup.sh
Set up a Ubuntu server to deploy Kamal 2.x Docker containers to, hardened security and production ready
#!/bin/bash
# Production Docker Host Hardening Script v2
# For Ubuntu Server 24.04 LTS (Noble)
# Suitable for both Kamal deployment and builder hosts
set -euo pipefail
IFS=$'\n\t'
# --- Constants ---

Aqui está a tradução do guia para português:


Passo 1: Criar o Subdomínio

  1. Via Painel de Controle do Hosting (ex: cPanel):
    • Acesse o painel do seu provedor de hospedagem.
    • Navegue até Subdomínios e crie um subdomínio (ex: en.domain.com).
    • Direcione o subdomínio para o diretório principal do WordPress (ex: public_html).
      (Isso supõe que você deseja usar a mesma instalação do WordPress. Para instalações separadas, crie um novo diretório.)
@ismarsantos
ismarsantos / ue_action.yaml
Last active February 17, 2025 21:20
UE Action JSON Format
openapi: 3.0.0
info:
title: Unreal Engine API
version: 1.0.0
paths:
/command:
post:
summary: Envia comando para UE
requestBody:
required: true
@ismarsantos
ismarsantos / ubuntu.txt
Created February 4, 2025 14:04
Ubuntu Restart Desktop Gnome
sudo systemctl restart display-manager
sudo systemctl restart gdm
@ismarsantos
ismarsantos / SyncFolders.ps1
Created April 6, 2024 02:45 — forked from lafleurh/SyncFolders.ps1
PowerShell script to do a two-way sync of Windows folders
Param (
[string]$LeftFolder,
[string]$RightFolder
)
function CreateFolderStructure([string]$Path)
{
if (-not [string]::IsNullOrWhiteSpace($Path))
{
if (-not (Test-Path $Path))
@echo off
pushd "%~dp0"
rem Command generated using the editor's project launcher. See https://docs.unrealengine.com/en-US/SharingAndReleasing/Deployment/ProjectLauncher
rem For arguments documentation see https://github.com/botman99/ue4-unreal-automation-tool.
rem Use `-nocompileeditor` for forcing the editor not to compile.
.\Engine\Build\BatchFiles\RunUAT.bat BuildCookRun -project=%~dp0<project_name>\<project_name>.uproject -nop4 -clientconfig=Development -serverconfig=Development -unrealexe=%~dp0Engine\Binaries\Win64\UnrealEditor-Cmd.exe -utf8output -platform=Win64 -targetplatform=Win64 -build -cook -map=Splash.umap+Map.umap+Forest.umap -cookdir=%~dp0\<project_name>\Content\Stage\Prints\Abilities+%~dp0\<project_name>\Content\Stage\Animations -skipcookingeditorcontent -unversionedcookedcontent -pak -distribution -compressed -stage -package -stagingdirectory="%~dp0Dist"
popd
@ismarsantos
ismarsantos / docker-compose.yaml
Created March 23, 2024 03:05 — forked from BlueHippoGithub/docker-compose.yaml
Remember to change the volumes for your own desired path
version: '3.3'
networks:
caddy:
services:
portainer:
image: portainer/portainer-ce:latest
container_name: portainer
restart: unless-stopped
security_opt:
- no-new-privileges:true
@ismarsantos
ismarsantos / gist:2cb5b147954fe3e1f4fa8a7517c8f418
Last active July 11, 2024 21:11
GRUB Linux Boot in lower resolution
vga=0x314
vga=784 nomodeset modeset=0 nouveau.modeset=0 modprobe.blacklist=nouveau,nvidia
vga=784 nomodeset modprobe.blacklist=nouveau,nvidia
GRUB VGA Modes
https://wiki.bqti.com.br/linux/grub-vga-modes/