imagesToPDFmain.tsx1 match
6* 2. Use JavaScript to handle file selection and PDF generation
7* 3. Utilize the jsPDF library for PDF creation
8* 4. Use the FileReader API to read image files
9*
10* The application will not modify or convert the images, and each PDF page
bedtimeStoryMakermain.tsx1 match
1/** @jsxImportSource npm:hono@3/jsx */
2import { Unkey } from "npm:@unkey/api@0.26.1";
3import { Ratelimit } from "npm:@unkey/ratelimit@0.4.4";
4import type { Duration } from "npm:@unkey/ratelimit@0.4.4";
generativeFillmain.tsx1 match
34const replicate = new Replicate({
5auth: Deno.env.get("REPLICATE_API_KEY"),
6});
7//
sqliteExplorerAppREADME.md1 match
13## Authentication
1415Login to your SQLite Explorer with [password authentication](https://www.val.town/v/pomdtr/password_auth) with your [Val Town API Token](https://www.val.town/settings/api) as the password.
1617## Todos / Plans
sqliteExplorerAppmain.tsx2 matches
27<head>
28<title>SQLite Explorer</title>
29<link rel="preconnect" href="https://fonts.googleapis.com" />
3031<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
32<link
33href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap"
34rel="stylesheet"
35/>
terribleTanCatmain.tsx2 matches
30type Test<T extends string = TwoLettersString> = T;
3132type CapitalizeTwoLetterString<T extends string, U extends string = TwoLettersString> = T extends U ? Capitalize<T>
33: never;
3435type fullName = `${CapitalizeTwoLetterString<"a">} ${CapitalizeTwoLetterString<"df", TwoLettersString>}`;
3637const fn: never = "1" as undefined as never;
moderateRoseReptilemain.tsx2 matches
28type TwoLettersString = `${alfabet}${alfabet}`;
2930type CapitalizeTwoLetterString<T extends string, U extends TwoLettersString> = T extends U ? Capitalize<T> : never;
3132type fullName = `${CapitalizeTwoLetterString<"as", TwoLettersString>} ${CapitalizeTwoLetterString<
33"df",
34TwoLettersString
30type Test<T extends string = TwoLettersString> = T;
3132type CapitalizeTwoLetterString<T extends string, U extends string = TwoLettersString> = T extends U ? Capitalize<T>
33: never;
3435type fullName = `${CapitalizeTwoLetterString<"a">} ${CapitalizeTwoLetterString<"df", TwoLettersString>}`;
3637const fn: never = "1" as undefined as never;
moderateRoseReptilemain.tsx2 matches
28type TwoLettersString = `${alfabet}${alfabet}`;
2930type CapitalizeTwoLetterString<T extends string, U extends TwoLettersString> = T extends U ? Capitalize<T> : never;
3132type fullName = `${CapitalizeTwoLetterString<"as", TwoLettersString>} ${CapitalizeTwoLetterString<
33"df",
34TwoLettersString
22};
2324const GH = `https://api.github.com/repos`;
25const GH_STORAGE = "https://raw.githubusercontent.com";
2627const now = () => new Date().toISOString().replace("T", " ").replace("Z", "");
2829export class GitHubAPI {
30#token: string | undefined;
31#contents: string;
180}
181182const GHDB_API_KEY = env.GHDB_API_KEY;
183if (!GHDB_API_KEY) throw new Error("GHDB_API_KEY is not defined");
184185const gh = new GitHubAPI();
186187const application = new Hono();
190191application.get("/data/:path{.+$}", async (c) => {
192const headers = c.req.header("GHDB_API_KEY");
193if (headers !== GHDB_API_KEY) throw new HTTPException(403, { message: "forbidden" });
194195const path = c.req.param("path");
207208application.get("/raw/:path{.+$}", async (c) => {
209const headers = c.req.header("GHDB_API_KEY");
210if (headers !== GHDB_API_KEY) throw new HTTPException(403, { message: "forbidden" });
211212const path = c.req.param("path");
223224application.delete("/data/:path{.+$}", async (c) => {
225const headers = c.req.header("GHDB_API_KEY");
226if (headers !== GHDB_API_KEY) throw new HTTPException(403, { message: "forbidden" });
227228const path = c.req.param("path");
236237application.post("/data/:path{.+$}", async (c) => {
238const headers = c.req.header("GHDB_API_KEY");
239if (headers !== GHDB_API_KEY) throw new HTTPException(403, { message: "forbidden" });
240241const path = c.req.param("path");
250251application.put("/data/:path{.+$}", async (c) => {
252const headers = c.req.header("GHDB_API_KEY");
253if (headers !== GHDB_API_KEY) throw new HTTPException(403, { message: "forbidden" });
254255const path = c.req.param("path");