Skip to content

Instantly share code, notes, and snippets.

View thismarioperez's full-sized avatar
🤘
Headbanging

Mario Perez thismarioperez

🤘
Headbanging
View GitHub Profile
@thismarioperez
thismarioperez / ghub_discord_middle_finger.bat
Created October 12, 2025 01:57 — forked from CryptoMares/ghub_discord_middle_finger.bat
GHUB wants to see your Discord... 🖕
@echo off
setlocal
:: Go to target folder
cd /d "%localappdata%\LGHUB\integrations\applet_discord" || exit /b
:: Delete config.json if it exists
if exist "config.json" (
del /f /q "config.json"
)
@thismarioperez
thismarioperez / setup-aws-lightsail-ubuntu-lamp-stack-for-wp.md
Last active March 15, 2022 22:41
Setup AWS Lightsail Ubuntu LAMP Stack for Wordpress

Refer to this documentation page for up-to-date commands.

Upgrade OS

sudo apt update && sudo apt full-upgrade

Reboot your server and log back in

Add mariadb@latest repo

Setup Up A Raspberry Pi with Open Media Vault via Windows Machine

Start-to-finish directions for setting up a fresh Raspberry Pi with OMV.

Notes

Raspberry Pi Default username and password

user: pi
password: raspberry
@thismarioperez
thismarioperez / stagger-delay.css
Created April 25, 2018 16:02 — forked from vajkri/stagger-delay.css
CSS Stagger delay mixin (both for animation & transition)
/*
Stagger delay mixin, takes 4 parameters:
1) Nr of children, that need to stagger
2) Initial delay of animation / transition
3) Delay between each child's animation / transition
4) Type of stagger. Default is "animation", also takes "transition"
*/
@mixin stagger-delay($i, $initial-delay, $stagger-delay, $type: animation) {
@while $i > 0 {
@thismarioperez
thismarioperez / interview_questions.md
Created March 20, 2018 14:26
Front-end Dev Internship Interview Questions

Interview Questions

HTML

  • What are data attributes good for?
  • What is Flash of Unstyled Content? How do you avoid FOUC?
  • Why is it generally a good idea to position CSS s between just before ?
  • Where is it generally a good idea to position <script></script> tags in your document Do you know any exceptions?
  • Have you used different HTML templating languages before?

CSS