Este guia mostra como auditar automaticamente operações de INSERT/UPDATE em uma aplicação Spring Boot com Hibernate e Lombok, usando campos em português. O destino deste documento é um Gist no GitHub.
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
| { | |
| "input": { | |
| "blocklist": [], | |
| "compressor#0": { | |
| "attack": 10.0, | |
| "boost-amount": 6.0, | |
| "boost-threshold": -72.0, | |
| "bypass": false, | |
| "dry": -100.0, | |
| "hpf-frequency": 10.0, |
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
| #!/bin/bash | |
| sudo apt update | |
| sudo apt install qt5-style-plugins qt5-style-kvantum qt5-style-kvantum-themes qt5ct -y | |
| gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark' | |
| echo "QT_QPA_PLATFORMTHEME=qt5ct" >> ~/.profile | |
| echo "================================================================" | |
| echo " CONFIGURAÇÃO QUASE CONCLUÍDA!" | |
| echo "================================================================" |
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
| // ==UserScript== | |
| // @name Deblocker Controlador (Focado no Novizer) | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.9 | |
| // @description Adiciona controle manual para fechar divs fixas no Novizer | |
| // @author Wellington (com ajuda de Grok) | |
| // @match https://novizer.com/* | |
| // @grant none | |
| // @run-at document-end | |
| // ==/UserScript== |
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
| <img | |
| src="https://mathiasbynens.be/demo/animated-webp-supported.webp" | |
| alt="Live Long And Prosper Star Trek GIF by HULU" | |
| sizes="100vw" | |
| /> |
Um guia rápido para configurar o Ubuntu (e derivados) a executar o fsck automaticamente na inicialização, corrigindo erros de disco sem pedir intervenção manual. Ideal para computadores que sofrem com quedas de energia.
A primeira coisa a fazer é abrir o terminal.
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
| 'use client'; | |
| import { usePathname, useRouter } from 'next/navigation'; | |
| import { useEffect, useState, useRef, useCallback } from 'react'; | |
| import { useToast } from '@/hooks/useToast'; | |
| import { api } from '@/services/Api/api'; | |
| // --- Tipagem para maior segurança --- | |
| interface User { |
- Princípio Fundamental:
pullAntes dopush - Ferramentas para o Dia a Dia
- Ferramentas para Qualidade e Padronização (Foco em Java)
- Fluxo de Trabalho Padrão com Branches
- Integração com IDEs (Foco em IntelliJ)
- Regras de Proteção de Branch (Server-Side)
- Anexo A: Links para Aprofundamento
- Anexo B: Solução de Problemas Comuns
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
| #!/bin/bash | |
| # Identifica o branch atual | |
| current_branch=$(git rev-parse --abbrev-ref HEAD) | |
| # Evita executar o hook no próprio branch pai (ex.: main ou develop) | |
| if [ "$current_branch" = "main" ] || [ "$current_branch" = "develop" ]; then | |
| echo "ℹ️ Hook ignorado: você está no branch $current_branch, que não é derivado." | |
| exit 0 | |
| fi |
NewerOlder