If it's so easy to guess a uuid, here you go
I ran crypto.randomUUID()
twice on my machine.
The first ID was 15041508-fd38-4eda-bc1d-7b74e4738cd9
The second? That's your challenge.
I encrypted a text file with the following command:
If it's so easy to guess a uuid, here you go
I ran crypto.randomUUID()
twice on my machine.
The first ID was 15041508-fd38-4eda-bc1d-7b74e4738cd9
The second? That's your challenge.
I encrypted a text file with the following command:
// Types for the result object with discriminated union | |
type Success<T> = { | |
data: T; | |
error: null; | |
}; | |
type Failure<E> = { | |
data: null; | |
error: E; | |
}; |
{ | |
"description": "Caps Lock to Hyper, Hyper + u/o to pageup/pagedown, IJKL to arrows, Hyper + A to Ctrl+A", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "caps_lock", | |
"modifiers": { "optional": ["any"] } | |
}, | |
"to": [ | |
{ |
.doc | |
.docx | |
.rtf | |
.epub | |
.odt | |
.odp | |
.pptx | |
.txt | |
.py |
Name | Input | Output | |
---|---|---|---|
Gemini 2.0 Flash-Lite | $0.075 | $0.30 | |
Mistral 3.1 Small | $0.10 | $0.30 | |
Gemini 2.0 Flash | $0.10 | $0.40 | |
ChatGPT 4.1-nano | $0.10 | $0.40 | |
DeepSeek v3 (old) | $0.14 | $0.28 | |
ChatGPT 4o-mini | $0.15 | $0.60 | |
DeepSeek v3 | $0.27 | $1.10 | |
Grok 3-mini | $0.30 | $0.50 | |
ChatGPT 4.1-mini | $0.40 | $1.60 |
import { revalidateTag, unstable_cache } from "next/cache"; | |
import { db } from "~/server/db"; | |
import { todoItems } from "~/server/db/schema"; | |
const getTodos = unstable_cache( | |
async () => { | |
return await db.query.todoItems.findMany(); | |
}, | |
["todoItems"], | |
{ |
import { useQuery } from "@tanstack/react-query"; | |
type Action<TActionInput = unknown, TActionReturn = unknown> = ( | |
input: TActionInput, | |
) => Promise<TActionReturn>; | |
export type BundledAction<TAction extends Action> = { | |
key: string[]; | |
result: Awaited<ReturnType<TAction>>; | |
action: TAction; |
const input = await Deno.readTextFile("./input.txt"); | |
const lines = input.split("\n"); | |
const dv = { | |
"2": 2, | |
"1": 1, | |
"0": 0, | |
"-": -1, // === -1 | |
"=": -2, // === -2 |
export const options: QualityOption[] = [ | |
{ | |
tag: "480p_30", | |
name: "480p 30fps", | |
configuration: { | |
width: 640, | |
height: 480, | |
frameRate: 30, | |
bitrateMin: 750, |
DATABASE_URL="mysql://[email protected]:3309/roundest-mon" | |
SHADOW_URL="mysql://[email protected]:3310/roundest-mon" |