This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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" | |
| ) |
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| 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 { |
- 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?