Skip to content

Instantly share code, notes, and snippets.

View AndreXime's full-sized avatar

André Ximenes AndreXime

View GitHub Profile
@AndreXime
AndreXime / setup.md
Last active February 3, 2026 17:14
Firefox Autohide Toolbar Custom CSS

How to Use Custom CSS in Firefox

Enable CSS Customization

  • Go to about:config in the address bar.

  • Search for toolkit.legacyUserProfileCustomizations.stylesheets and set it to True

Setting Up Custom CSS

@AndreXime
AndreXime / docker-compose.yml
Created May 1, 2025 22:46
Docker Compose setup for Directus, an open-source headless CMS that provides an API with an admin panel.
services:
postgres:
image: postgres:latest
environment:
POSTGRES_DB: directus
POSTGRES_USER: directus
POSTGRES_PASSWORD: directus
volumes:
- postgres_data:/var/lib/postgresql/data
networks: