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
// @ts-check | |
import css from '@eslint/css' | |
import js from '@eslint/js' | |
import json from '@eslint/json' | |
import markdown from '@eslint/markdown' | |
import pluginVue from 'eslint-plugin-vue' | |
import globals from 'globals' | |
import tseslint from 'typescript-eslint' | |
export default tseslint.config( |
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
nuxt-app-1.git | |
nuxt-preline-app-1.git |
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
sudo rm /etc/apt/sources.list.d/opera.list | |
curl -fsSL https://deb.opera.com/archive.key | gpg --dearmor | sudo tee /usr/share/keyrings/opera.gpg > /dev/null | |
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/opera.gpg] https://deb.opera.com/opera-stable/ stable non-free" | sudo tee /etc/apt/sources.list.d/opera.list |
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
sudo rm -f /etc/apt/sources.list.d/opera-stable.list | |
sudo apt update && sudo apt upgrade -y | |
sudo apt autoremove | |
source ~/venv/bin/activate | |
pip-review --local --interactive | |
deactivate | |
sudo npm-check -g -y | |
flatpak update | |
pnpm self-update | |
uv self update |
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
<div class="wrapper"> | |
<div class="bg-blue-200 p-4"> | |
<p class="text-blue-800">a. This is a blue box.</p> | |
</div> | |
<div class="bg-green-200 p-4"> | |
<p class="text-green-800">b. This is a green box.</p> | |
</div> | |
<div class="bg-amber-200 p-4"> | |
<p class="text-amber-800">c. This is an amber box.</p> | |
</div> |
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
<div class="@container/Dash grid min-h-screen grid-cols-1 md:grid-cols-12"> | |
<aside class="col-span-1 hidden bg-gray-800 p-6 text-white transition duration-300 @3xl/Dash:col-span-3 @3xl/Dash:block"> | |
<nav> | |
<ul class="flex flex-col space-y-6"> | |
<li>Dashboard</li> | |
<li>Users</li> | |
<li>Settings</li> | |
</ul> | |
</nav> | |
</aside> |
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
@import "tailwindcss"; | |
.header { | |
grid-area: header; | |
} | |
.sidebar { | |
grid-area: sidebar; | |
} |
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
@import "tailwindcss"; | |
.header { | |
grid-area: header; | |
} | |
.sidebar { | |
grid-area: sidebar; | |
} |
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
html, | |
body { | |
height: 100%; | |
margin: 0; | |
} | |
.container { | |
font-family: sans-serif; | |
display: grid; |
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
git reset --hard a2d8fa47f34f51922c586aa82cc55c2e57e1b5d1 && git clean -f && git push origin main --force |
NewerOlder