Skip to content

Instantly share code, notes, and snippets.

View wellington1993's full-sized avatar
🏠
Working from home

Wellington Torrejais da Silva wellington1993

🏠
Working from home
View GitHub Profile
@wellington1993
wellington1993 / 1.md
Last active July 14, 2026 17:33
Instruções IA Julho

Sempre utilize a internet como fonte primária para validar fatos e temas técnicos, garantindo precisão e atualidade. Utilize meu Workspace (Gmail, Drive e Docs) como fonte complementar para contextualizar nossa interação à minha realidade e rotina, tratando esses dados como minha única verdade atualizada. Se faltar contexto ou se algo parecer incerto, pergunte-me diretamente para que possamos evoluir sempre sincronizados.

@ -0,0 +1,16 @@
Procedure CalcularIMC (
p_Altura IN Float,
p_Peso IN Float,
p_IMC OUT Float
);
Version '1.0.0.0';
Declare
v_AlturaQuad Float;
Begin
@wellington1993
wellington1993 / oracle-find-foreign-keys-dependencies.sql
Last active May 12, 2026 17:06
Oracle find Foreign Keys and dependencies
select *
from all_constraints
where r_constraint_name in (
select constraint_name
from all_constraints
where table_name = :TableName
)
---
https://mega.nz/folder/KBIBTZDB#9klYKhcuzmJDASa2AVhdSg
@wellington1993
wellington1993 / search-own-gists.txt
Created December 8, 2025 01:00 — forked from joe-oli/search-own-gists.txt
search for my own gists only
Go to Gist home, https://gist.github.com/
In githubs search type:
---
user:joe-oli whatever you want to search
Other searches:
------
Get all gists from the user santisbon.
NUM_THREADS.times do |i|
threads << Thread.new do
while (endpoint = (endpoint_queue.pop(true) rescue nil))
puts "--- [Thread #{i+1}] Iniciando teste para: #{endpoint} ---"
# 1) Lê token atual de forma segura
current_access_token = token_mutex.synchronize { shared_tokens[:access] }
stdout, stderr, status = Open3.capture3(
"schemathesis", "run", temp_schema_file, "--url", API_BASE_URL,
@wellington1993
wellington1993 / input.json
Last active October 18, 2025 13:48
EasyEffets Meus Ajustes
{
"input": {
"blocklist": [],
"compressor#0": {
"attack": 10.0,
"boost-amount": 6.0,
"boost-threshold": -72.0,
"bypass": false,
"dry": -100.0,
"hpf-frequency": 10.0,
@wellington1993
wellington1993 / dark-theme-kde.sh
Created October 16, 2025 14:48
Tema Escuro para aplicativos KDE
#!/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 "================================================================"