Val Town Code SearchReturn to Val Town

API Access

You can access search results via JSON API by adding format=json to your query:

https://codesearch.val.run/image-url.jpg%20%22Optional%20title%22?q=database&page=2&format=json

For typeahead suggestions, use the /typeahead endpoint:

https://codesearch.val.run/typeahead?q=database

Returns an array of strings in format "username" or "username/projectName"

Found 3955 results for "database"(651ms)

notionGetDatabase2 file matches

@stevekrouse•Updated 1 year ago

EEPMOnitoringApp.tsx1 match

@solomonferede•Updated 40 mins ago
273 const KEY = "MediaMonitoring";
274
275 // Database Setup (simplified for brevity, assume tables exist as defined before)
276 await sqlite.execute(`
277 CREATE TABLE IF NOT EXISTS ${KEY}_users (

stevensDemosetupTelegramChatDb.ts2 matches

@lm3m•Updated 41 mins ago
1// Script to set up the telegram_chats table in SQLite
2// Run this script manually to create the database table
3
4export default async function setupTelegramChatDb() {
25 `);
26
27 return "Telegram chat database table created successfully.";
28 } catch (error) {
29 console.error("Error setting up telegram_chats table:", error);