cerebras_codermain.tsx1 match
182183try {
184const response = await fetch("/", {
185method: "POST",
186body: JSON.stringify({
cerebras_codermain.tsx1 match
182183try {
184const response = await fetch("/", {
185method: "POST",
186body: JSON.stringify({
cerebras_codermain.tsx1 match
182183try {
184const response = await fetch("/", {
185method: "POST",
186body: JSON.stringify({
LetMeIntoLinearmain.tsx1 match
9];
1011const response = await fetch("https://cab.brown.edu/api/?page=fose&route=details", {
12method: "POST",
13body: JSON.stringify({
sqliteExplorerAppmain.tsx4 matches
1/** @jsxImportSource https://esm.sh/hono@latest/jsx **/
23import { modifyFetchHandler } from "https://esm.town/v/andreterron/codeOnValTown?v=50";
4import { iframeHandler } from "https://esm.town/v/nbbaier/iframeHandler";
5import { resetStyle } from "https://esm.town/v/nbbaier/resetStyle";
16import { verifyToken } from "https://esm.town/v/pomdtr/verifyToken";
17import { ResultSet, sqlite } from "https://esm.town/v/std/sqlite";
18import { reloadOnSaveFetchMiddleware } from "https://esm.town/v/stevekrouse/reloadOnSave";
19import { Hono } from "npm:hono";
20import type { FC } from "npm:hono/jsx";
175});
176177export const handler = app.fetch;
178export default iframeHandler(modifyFetchHandler(passwordAuth(handler, { verifyPassword: verifyToken })));
notion2wallabagmain.tsx2 matches
8182async function getWallabagToken(config: any) {
83const response = await fetch(`${config.WALLABAG_URL}/oauth/v2/token`, {
84method: "POST",
85headers: {
100101async function saveToWallabag(url: string, token: string, config: any) {
102const response = await fetch(`${config.WALLABAG_URL}/api/entries.json`, {
103method: "POST",
104headers: {
scheduleFormmain.tsx1 match
12
1314export default app.fetch;
groq_codermain.tsx1 match
182183try {
184const response = await fetch("/", {
185method: "POST",
186body: JSON.stringify({
3536async function execute(statement: InStatement, args?: InArgs): Promise<ResultSet> {
37const res = await fetch(`${API_URL}/v1/sqlite/execute`, {
38method: "POST",
39headers: {
53throw new Error("Invalid transaction mode provided to sqlite.batch. Must be 'write', 'read', or 'deferred.");
54}
55const res = await fetch(`${API_URL}/v1/sqlite/batch`, {
56method: "POST",
57headers: {
compactBlushGrasshoppermain.tsx10 matches
5556async function PRORCPhandler(prorcp: string): Promise<string | null> {
57const prorcpFetch = await fetch(`${BASEDOM}/prorcp/${prorcp}`);
58const prorcpResponse = await prorcpFetch.text();
5960const scripts = prorcpResponse.match(/<script\s+src="\/([^"]*\.js)\?\_=([^"]*)"><\/script>/gm);
62? scripts?.[scripts.length - 2].replace(/.*src="\/([^"]*\.js)\?\_=([^"]*)".*/, "$1?_=$2")
63: scripts?.[scripts.length - 1].replace(/.*src="\/([^"]*\.js)\?\_=([^"]*)".*/, "$1?_=$2");
64const jsFileReq = await fetch(
65`${BASEDOM}/${script}`,
66{
72"sec-ch-ua-mobile": "?0",
73"sec-ch-ua-platform": "\"Windows\"",
74"sec-fetch-dest": "script",
75"sec-fetch-mode": "no-cors",
76"sec-fetch-site": "same-origin",
77"Referer": `${BASEDOM}/`,
78"Referrer-Policy": "origin",
112? `https://vidsrc.net/embed/${type}?tmdb=${tmdbId}`
113: `https://vidsrc.net/embed/${type}?tmdb=${tmdbId}&season=${season}&episode=${episode}`;
114const embed = await fetch(url);
115const embedResp = await embed.text();
116122const { servers, title } = await serversLoad(embedResp);
123124const rcpFetchPromises = servers.map(element => {
125return fetch(`${BASEDOM}/rcp/${element.dataHash}`);
126});
127const rcpResponses = await Promise.all(rcpFetchPromises);
128console.log(rcpResponses);
129const prosrcrcp = await Promise.all(rcpResponses.map(async (response) => {