Skip to content

Instantly share code, notes, and snippets.

View Suburbanno's full-sized avatar
📡
Focusing

Vinicius Suburbanno

📡
Focusing
View GitHub Profile
@bytexenon
bytexenon / Make Discord Server With a Tag.md
Last active October 9, 2025 10:43
Make Discord Server With a Tag

Automation Script for Getting Discord Server with a Tag

Caution

TAGS HALTED FOR NEW SERVERS & ACCOUNTS BANNED


Due to widespread abuse of automation scripts, Discord has:

  1. STOPPED granting the experimental server tags for newly created servers.
  2. Started ACTIVELY BANNING accounts (temporarily and permanently) that used such scripts.
#include "DigiKeyboard.h"
// Teclas universais (códigos HID)
#define KEY_MINUS 45
#define KEY_SLASH 56
#define KEY_SPACE 44
#define KEY_COLON 33 // Shift + ;
#define KEY_TAB 43
//#define KEY_SLASH 0x38 // Código físico para tecla '/'
#define KEY_BACKSLASH 0x31
@Nick-Gabe
Nick-Gabe / Pombify.js
Last active July 11, 2025 19:45
Transforma uma string em pombês, e traduz para a língua dos humanos.
const pombify = (phrase) => {
return phrase
.split(' ')
.map((word) => {
const wordLetters = word.split('')
return wordLetters
.map((letter, index) => {
const charCode = letter.charCodeAt(0);
const binary = charCode
.toString(2)

Roadmap de estudos de SQL

Aviso: Muitas vezes detalhes de várias operações podem variar de banco para banco. Em questões onde fiquei em dúvida, este documento segue o funcionamento do PostgreSQL, pois é o banco que conheço melhor.

Pré-requisito: Álgebra Relacional básica

Antes de começar a escrever SQL, você precisa entender o modelo de como um banco de dados relacional funciona. Não precisa se aprofundar muito, mas você precisa entender como que dados e relacionamentos entre eles são representados. (Nota importante: Relacionamento e relação não são a

@dileepadev
dileepadev / .gitignore
Last active December 7, 2024 14:51
.gitignore for Flutter projects
### ------------------------- Flutter.gitignore ------------------------ ###
# Miscellaneous
*.class
#*.lock
*.log
*.pyc
*.swp
.DS_Store
.atom/
@lykn
lykn / buttons.md
Last active October 4, 2025 00:28
A gist which shows/tells you how to make buttons using discord.py v2(version 2.0.0a)

Note: Before we go any further. Let me make this real clear that the following gist uses the OFFICIAL discord.py library and not forks like discord_components, nextcord, etc... So when your using this code but a different library and fuck up don't comment something mean or go to a help channel in the server and say "this gist is misleading" or "bad gist who wrote this" when your at fault, trust me I'm going to fuck you up😅

Just a reminder^^

Related Links:

DPY's Docs

Discord's Docs

@le-jeu
le-jeu / ingress-icons.user.js
Last active April 28, 2021 22:39
IITC Plugin: Ingress Prime icons by https://github.com/ameba64/ingress-items
// ==UserScript==
// @author jaiperdu
// @name IITC plugin: Ingress Icons
// @category Appearance
// @version 0.0.1.20210428.223004
// @description Bring ameba64/ingress-items icons into IITC
// @id ingress-icons
// @namespace https://github.com/IITC-CE/ingress-intel-total-conversion
// @match https://intel.ingress.com/*
// @grant none
@ChrisFrontDev
ChrisFrontDev / Aura.psm1
Last active April 9, 2022 20:31
Aura theme for windows powershell + Windows Terminal
#requires -Version 2 -Modules posh-git
function Write-Theme {
param(
[bool]
$lastCommandFailed,
[string]
$with
)
@otonii
otonii / oh-my-posh.md
Last active November 1, 2023 14:31
oh-my-posh

oh-my-posh

Deprecated: Use https://github.com/otonii/meu-terminal, esse carinha aqui não será mais atualizado.

Terminal Image

Obter a versão mais recente da Galeria do PowerShell

Antes de atualizar o PowerShellGet, você sempre deve instalar o provedor do NuGet mais recente. Em uma sessão do PowerShell com privilégios elevados, execute os comandos a seguir.