π―
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
| magick "static\logo.png" -fuzz 65% -fill none -floodfill +0+0 white -floodfill +1023+0 white -floodfill +0+1023 white -floodfill +1023+1023 white -channel alpha -morphology Erode Octagon:1 +channel "static\favicon.png" |
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 ls-files -o --exclude-standard --cached | zip xxx.zip -@ |
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
| [ | |
| { | |
| "country": "Afghanistan", | |
| "currency_name": "Afghanistan Afghani", | |
| "languages": [ | |
| "Balochi", | |
| "Dari", | |
| "Pashto", | |
| "Turkmenian", | |
| "Uzbek" |
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
| { | |
| "rewrites": [ | |
| { "source": "/(.*)", "destination": "/index.html" } | |
| ], | |
| "headers": [ | |
| { | |
| "source": "/(.*).js", | |
| "headers": [ | |
| { | |
| "key": "Content-Type", |
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 | |
| for /f %%r in ('git remote') do git push %%r --all |
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
| const { chromium } = require('playwright'); | |
| console.log(chromium.executablePath()); |
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 asyncio | |
| from playwright.async_api import async_playwright | |
| from bs4 import BeautifulSoup | |
| import sys | |
| import os | |
| import re | |
| import argparse | |
| def sanitize_service_name_for_filename(service_name_str): | |
| if not isinstance(service_name_str, str): |
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
| @-moz-document url("https://fm4.orf.at/player/live") { | |
| .wrapper { | |
| margin-left: auto !important; | |
| margin-right: auto !important; | |
| display: block !important; | |
| } | |
| } |
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
| # ββββββββββββββββββββββββββββββββββββββββββββββββ | |
| # CONFIGURATION | |
| # ββββββββββββββββββββββββββββββββββββββββββββββββ | |
| $jsonSource = "https://gist.githubusercontent.com/jonasfroeller/e466eefd7e359b0b9afaae0325fa633f/raw/0d544d28d680ff20df8a492b477c152ead0be149/webfonts.json" | |
| # ββββββββββββββββββββββββββββββββββββββββββββββββ | |
| # FETCH & PARSE JSON | |
| # ββββββββββββββββββββββββββββββββββββββββββββββββ | |
| if (Test-Path $jsonSource) { | |
| # Local file |
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 { useState } from 'react'; | |
| import { Button } from '@/components/ui/button'; | |
| import { Input } from '@/components/ui/input'; | |
| import { Label } from '@/components/ui/label'; | |
| import { Switch } from '@/components/ui/switch'; | |
| import { | |
| Table, | |
| TableBody, | |
| TableCell, | |
| TableHead, |
NewerOlder