Skip to content

Instantly share code, notes, and snippets.

@MrChocolatine
MrChocolatine / macOS – Remove metadata from PDF files.md
Last active July 4, 2025 12:02
macOS – Remove metadata from PDF files
@aluissp
aluissp / tailwind.config.js
Created February 12, 2023 20:45
Fade in animation in Tailwind CSS
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
animation: {
fade: 'fadeIn .5s ease-in-out',
},