Skip to content

Instantly share code, notes, and snippets.

View Sardonyx001's full-sized avatar
🌻
reading a lot of java

jam Sardonyx001

🌻
reading a lot of java
View GitHub Profile
@Sardonyx001
Sardonyx001 / 4get.fish
Created July 13, 2024 20:49
Fish shell function to download all pictures in a 4chan thread
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
@Sardonyx001
Sardonyx001 / layout.tsx
Created January 13, 2024 17:50
Use LINE Seed font in Nextjs
import localFont from 'next/font/local'
// path -> "src/app/"
const lineSeedSans = localFont({
src: [
{
path: './LINESeedSans_W_Bd.woff2',
weight: '700',
style: 'bold',
},