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/$%7Burl%7D?q=database&page=1&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 10169 results for "database"(841ms)

customer-database-setup2 file matches

@stevenvapiโ€ขUpdated 2 months ago

prDatabase

@pdwโ€ขUpdated 2 months ago

bookmarksDatabase

@s3thiโ€ขUpdated 7 months ago

sqLiteDatabase1 file match

@ideofunkโ€ขUpdated 10 months ago

yc_database

@stevekrouseโ€ขUpdated 10 months ago

notionGetDatabase2 file matches

@junhocaโ€ขUpdated 1 year ago

notionGetDatabase2 file matches

@ttodosiโ€ขUpdated 1 year ago

databaseRunner1 file match

@nicosuaveโ€ขUpdated 1 year ago

dateMeNotionDatabase2 file matches

@stevekrouseโ€ขUpdated 1 year ago

notionGetDatabaseEditedAfter2 file matches

@stevekrouseโ€ขUpdated 1 year ago

location-feed-generatorcheckins.ts5 matches

@tijsโ€ขUpdated 29 mins ago
4import type { Place } from "../models/place-models.ts";
5import { processCheckinEvent as _processCheckinEvent } from "../ingestion/record-processor.ts";
6import { db } from "../database/db.ts";
7import { checkinsTable } from "../database/schema.ts";
8import { eq } from "https://esm.sh/drizzle-orm";
9import type { OAuthSessionsInterface } from "jsr:@tijs/atproto-oauth-hono@^0.2.6";
429 console.log(`โœ… Created checkin record: ${checkinResult.uri}`);
430
431 // IMMEDIATELY save to local database for instant feed updates
432 try {
433 const rkey = extractRkey(checkinResult.uri);
443 },
444 });
445 console.log(`โœ… Saved checkin to local database: ${rkey}`);
446 } catch (localSaveError) {
447 console.error(
448 "Failed to save checkin to local database:",
449 localSaveError,
450 );

zoomtest.cursorrules2 matches

@yawnxyzโ€ขUpdated 34 mins ago
198```
199โ”œโ”€โ”€ backend/
200โ”‚ โ”œโ”€โ”€ database/
201โ”‚ โ”‚ โ”œโ”€โ”€ migrations.ts # Schema definitions
202โ”‚ โ”‚ โ”œโ”€โ”€ queries.ts # DB query functions
257 ```
258
259### Database Patterns
260- Run migrations on startup or comment out for performance
261- Change table names when modifying schemas rather than altering