Here is a video where i navigate into the dashboard on a clean dev instance.
This file contains 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 { Adapter, AdapterAccount } from "next-auth/adapters"; | |
import { edgedb } from "~/db/client"; | |
import e from "@edgedb"; | |
export const edgedbAdapter = { | |
createUser: async ({ id, ...data }) => { | |
const user = await e | |
.select(e.insert(e.User, { ...data }), (user) => user["*"]) | |
.run(edgedb); |
This file contains 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
/* eslint-disable @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-argument */ | |
import chalk from 'chalk' | |
interface Logger { | |
debug(message: string, ...optionalParameters: any[]): void | |
info(message: string, ...optionalParameters: any[]): void | |
warn(message: string, ...optionalParameters: any[]): void | |
error(message: string, ...optionalParameters: any[]): void | |
[x: string]: any | |
} |
This file contains 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 { generatorHandler } from "@prisma/generator-helper"; | |
import fs from "node:fs/promises"; | |
import path from "node:path"; | |
const header = `// This file was generated by a custom prisma generator, do not edit manually.\n`; | |
generatorHandler({ | |
onManifest() { | |
return { | |
defaultOutput: "./enums/index.ts", |
This file contains 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
int main() { | |
return 0; | |
} |
This file contains 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 enum | |
import math | |
import random as r | |
# Maze props | |
HEIGHT = 20 | |
WIDTH = 33 | |
OBSTACLE = 1000 | |
FLOOR = 1 |
Made a Warp theme based on the Poimandres VSCode Theme.
- Copy the base16_pmndrs.yaml file into
~/.warp/themes
wget https://gist.githubusercontent.com/juliusmarminge/ea45f0f2c627ee8d1778404f4642986d/raw/5ea3cd5bf7f18c6a3f08a29edabfca5b59bc2778/base16_pmndrs.yaml -o ~/.warp/themes