Skip to content

Instantly share code, notes, and snippets.

Bank‑Based Anonymous Age Verification (BAV)

A zero‑storage, privacy‑preserving age check that leverages banks’ existing KYC — with the user as the transport layer.


TL;DR

  • Banks sign an age claim, not an identity. They never learn which site you’re visiting.
  • Merchants verify a short‑lived token against their own nonce and a one‑time WebAuthn key. No database required.
You are ChatGPT, a large language model based on the GPT-5 model and trained by OpenAI.
Knowledge cutoff: 2024-06
Current date: 2025-08-08
Image input capabilities: Enabled
Personality: v2
Do not reproduce song lyrics or any other copyrighted material, even if asked.
You're an insightful, encouraging assistant who combines meticulous clarity with genuine enthusiasm and gentle humor.
Supportive thoroughness: Patiently explain complex topics clearly and comprehensively.
Lighthearted interactions: Maintain friendly tone with subtle humor and warmth.
@paladini
paladini / guia-de-estudos-poscomp-provas-e-gabaritos.md
Created July 19, 2025 18:02
O guia de estudos definitivo e gratuito para a POSCOMP. Encontre todas as provas e gabaritos de 2002 a 2024, conteúdo programático e links úteis para o Exame Nacional de Pós-Graduação em Computação.

🚀 Guia Definitivo para a POSCOMP: Todas as Provas e Gabaritos em um só lugar!

Você está se preparando para o Exame Nacional para Ingresso na Pós-Graduação em Computação (POSCOMP) e se sente perdido com tantos materiais espalhados pela internet?

Seus problemas acabaram! O repositório Awesome POSCOMP é um projeto de código aberto que reúne tudo o que você precisa para ser aprovado, de forma organizada e totalmente gratuita.

Chega de procurar por provas antigas em links quebrados. Foque no que realmente importa: os seus estudos!


@paladini
paladini / como-instalar-removedor-de-vocal-e-separador-de-instrumentos-ia.md
Created July 19, 2025 17:59
Guia para instalar um separador de música com IA gratuito e de código aberto que roda no seu próprio computador. Separe vocais, bateria, baixo e instrumentos de músicas (MP3, WAV) ou links do YouTube para criar faixas de karaokê/instrumentais. Não precisa de APIs ou assinaturas. Instalação simples com Docker ou Python.

Início Rápido: Removedor de Vocal e Separador de Instrumentos com IA

Uma ferramenta gratuita e de código aberto que transforma seu computador em um estúdio de separação de áudio com IA. Ela roda inteiramente na sua máquina local, o que significa sem APIs externas, sem assinaturas e sem custos. Separe vocais, bateria, baixo e outros instrumentos de qualquer arquivo de música ou link do YouTube usando o poderoso modelo de IA Demucs da Meta.

Documentação completa e código-fonte: https://github.com/paladini/voice-separator-demucs


🚀 Instalação Mais Fácil (Docker)

@paladini
paladini / how-to-install-ai-vocal-remover-and-instrument-separator.md
Created July 19, 2025 17:49
Guide to installing a free, open-source AI music separator that runs on your own computer. Separate vocals, drums, bass, and instruments from songs (MP3, WAV) or YouTube links to create karaoke/instrumental tracks. No APIs or subscriptions needed. Simple setup with Docker or Python.

Quick Start: AI Vocal Remover & Instrument Separator

A free and open-source tool that turns your computer into an AI-powered audio separation studio. It runs entirely on your local machine, meaning no external APIs, no subscriptions, and no costs. Separate vocals, drums, bass, and other instruments from any song file or YouTube link using Meta's powerful Demucs AI model.

Full documentation and source code: https://github.com/paladini/voice-separator-demucs


🚀 Easiest Installation (Docker)

@turicas
turicas / brasil_io.py
Last active October 25, 2025 17:22
Exemplo de código para acessar dados do Brasil.IO
import csv
import gzip
import io
import json
from urllib.parse import urlencode, urljoin
from urllib.request import Request, urlopen
class BrasilIO:
@filipelenfers
filipelenfers / installJdkTarGzUbuntu.sh
Last active September 19, 2025 06:18
Install JDK from tar.gz Ubuntu
#Login as root
sudo su
#create jdk directory
mkdir /opt/jdk
#uncompress, change to your file name
tar -zxf jdk-8u5-linux-x64.tar.gz -C /opt/jdk
#check if files are there
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active November 7, 2025 04:26
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@onjin
onjin / docker-compose.yml
Created September 5, 2016 09:17
example docker compose for postgresql with db init script
postgres:
image: postgres:9.4
volumes:
- ./init.sql:/docker-entrypoint-initdb.d/init.sql
@singhabhinav
singhabhinav / gist:132b8196abac026b43fa
Last active November 4, 2024 18:20
Install SSL certificate in Nginx (Using .crt & .ca-bundle certificate files)
Step 1 - Create .crt file
cat domainname.crt domainname.ca-bundle > domainname-ssl-bundle.crt
Step 2-
Add lines for ssl_certificate in nginx configuration
server {
listen 80 default_server;