Skip to content

Instantly share code, notes, and snippets.

View nightgrey's full-sized avatar
🍒

Nico nightgrey

🍒
View GitHub Profile
@nightgrey
nightgrey / LLM.md
Last active May 19, 2024 08:21
Alacritty default config

LLM

Basically, I just gave the docs to Claude 3 (Sonnet) and told it to generate a TOML out of it, with two examples on the format. The first answer didn't complete everything, so I just kept telling it to continue twice and stitched the answers together. That's it!

Settings

model_name: "claude-3-sonnet-20240229"
temperature: 0
@nightgrey
nightgrey / README.md
Last active December 19, 2023 09:10
Install ReShade with GShade presets for FFXIV (2023)
import { ApolloClient, QueryOptions, MutationOptions } from 'apollo-client';
import { DocumentNode } from 'graphql';
import { getSdk, Requester } from '.generated/schema-typedefs';
import { ApolloRequestError } from './ApolloRequestError';
export type ApolloRequesterOptions<V, R> =
| Omit<QueryOptions<V>, 'variables' | 'query'>
| Omit<MutationOptions<R, V>, 'variables' | 'mutation'>;