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
| function 4get -a THREADURL -a OUTPUTDIR --description 'Get all the pictures in a 4chan thread' | |
| if string-empty $THREADURL | |
| echo "Must provide a thread URL" | |
| return | |
| end | |
| if string-empty $OUTPUTDIR | |
| set OUTPUTDIR "." | |
| end | |
| mkdir -p $OUTPUTDIR |
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 localFont from 'next/font/local' | |
| // path -> "src/app/" | |
| const lineSeedSans = localFont({ | |
| src: [ | |
| { | |
| path: './LINESeedSans_W_Bd.woff2', | |
| weight: '700', | |
| style: 'bold', | |
| }, |
NewerOlder