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");
3The key is a file path within a repository. The value is the file content.
45The val needs a GitHub token to access the GitHub API, the account name
6and the repository name.
78Also, the val needs GHDB_API_KEY variable. This value defines the exptected
9value of the GHDB_API_KEY header to allow access to the endpoints.
1011Endpoints:
design32x32bitmapmain.tsx1 match
461<meta name="viewport" content="width=device-width, initial-scale=1.0">
462<title>1-Bit Bitmap Editor</title>
463<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
464<style>${css}</style>
465</head>
23const browser = await puppeteer.connect({
4browserWSEndpoint: `wss://connect.browserbase.com?apiKey=${Deno.env.get("BROWSERBASE_API_KEY")}`,
5});
6
blob_adminREADME.md1 match
9[](https://www.val.town/v/stevekrouse/blob_admin_app/fork)
1011It uses [basic authentication](https://www.val.town/v/pomdtr/basicAuth) with your [Val Town API Token](https://www.val.town/settings/api) as the password (leave the username field blank).
1213# TODO