Skip to content

Instantly share code, notes, and snippets.

View rkd-me's full-sized avatar
🙃
myself++

Rafal Kolodziej rkd-me

🙃
myself++
  • R. K. Development
  • United Kingdom
View GitHub Profile
@rkd-me
rkd-me / .md
Last active May 10, 2020 01:06
Laravel Development Environment Boilerplate for Docker Compose
  1. Create two folders called mysql, nginx and src.
  2. Create nginx settings in nginx\default.conf.
  3. Create docker settings in dockerfile for php image build schema.
  4. Copy and Set correct values in boilerplate called docker-compose.yml
  5. Build and Run containers by typing
docker-compose up -d --build
  1. Stop containers using
@rkd-me
rkd-me / .md
Last active January 3, 2022 00:05
Override CSS for websites without installing add-ons in Firefox! 🦊 (notion:be29f352627d4784bdc7b630e7ce473e)
  1. Open Firefox and press Alt to show the top menu, then click on HelpTroubleshooting Information
  2. Click the Open Folder button beside the Profile Folder entry
  3. Create a folder named chrome in opened directory (must be lowercase)
  4. In the chrome folder, create a CSS file with the name userContent.css
  5. Copy the following code to userContent.csswith changes according to your needs
    @-moz-document domain(website.com) {
        div.premium-button { display: none !important; }
    }