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 type { Product } from '@prisma/client'; | |
| import type { LoaderFunction } from '@remix-run/node'; | |
| import { Link, useLoaderData } from '@remix-run/react'; | |
| import { db } from '~/db/db.server'; | |
| interface LoaderData { | |
| products: Product[]; | |
| count: number; | |
| pageNumber: number; | |
| } |
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
| alias aigc="git --no-pager diff HEAD --raw -p | llm -m 4o-mini -s 'You have been provided with the raw output of git diff command. Generate a single line meaningful yet concise commit message' | git commit -a --file -" |
OlderNewer