readwise-ingesterreadwise-bot.ts6 matches
19published_date: string;
20summary: string;
21image_url: string;
22content: string;
23reading_progress: number;
50published_date TEXT,
51summary TEXT,
52image_url TEXT,
53reading_progress INTEGER,
54first_opened_at TEXT,
128INSERT INTO ${LINKS_TABLE} (
129id, url, title, author, source, category, location, tags, site_name,
130word_count, created_at, updated_at, published_date, summary, image_url,
131reading_progress, first_opened_at, last_opened_at, saved_at, last_moved_at
132) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
134doc.id, doc.url, doc.title, doc.author, doc.source, doc.category,
135doc.location, tagsJson, doc.site_name, doc.word_count, doc.created_at,
136doc.updated_at, doc.published_date, doc.summary, doc.image_url,
137doc.reading_progress, doc.first_opened_at, doc.last_opened_at,
138doc.saved_at, doc.last_moved_at
160url = ?, title = ?, author = ?, source = ?, category = ?, location = ?,
161tags = ?, site_name = ?, word_count = ?, created_at = ?, updated_at = ?,
162published_date = ?, summary = ?, image_url = ?, reading_progress = ?,
163first_opened_at = ?, last_opened_at = ?, saved_at = ?, last_moved_at = ?,
164synced_at = CURRENT_TIMESTAMP
167doc.url, doc.title, doc.author, doc.source, doc.category, doc.location,
168tagsJson, doc.site_name, doc.word_count, doc.created_at, doc.updated_at,
169doc.published_date, doc.summary, doc.image_url, doc.reading_progress,
170doc.first_opened_at, doc.last_opened_at, doc.saved_at, doc.last_moved_at,
171doc.id
readwise-ingesterreadwise-http.ts6 matches
19published_date: string;
20summary: string;
21image_url: string;
22content: string;
23reading_progress: number;
50published_date TEXT,
51summary TEXT,
52image_url TEXT,
53reading_progress INTEGER,
54first_opened_at TEXT,
128INSERT INTO ${LINKS_TABLE} (
129id, url, title, author, source, category, location, tags, site_name,
130word_count, created_at, updated_at, published_date, summary, image_url,
131reading_progress, first_opened_at, last_opened_at, saved_at, last_moved_at
132) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
134doc.id, doc.url, doc.title, doc.author, doc.source, doc.category,
135doc.location, tagsJson, doc.site_name, doc.word_count, doc.created_at,
136doc.updated_at, doc.published_date, doc.summary, doc.image_url,
137doc.reading_progress, doc.first_opened_at, doc.last_opened_at,
138doc.saved_at, doc.last_moved_at
160url = ?, title = ?, author = ?, source = ?, category = ?, location = ?,
161tags = ?, site_name = ?, word_count = ?, created_at = ?, updated_at = ?,
162published_date = ?, summary = ?, image_url = ?, reading_progress = ?,
163first_opened_at = ?, last_opened_at = ?, saved_at = ?, last_moved_at = ?,
164synced_at = CURRENT_TIMESTAMP
167doc.url, doc.title, doc.author, doc.source, doc.category, doc.location,
168tagsJson, doc.site_name, doc.word_count, doc.created_at, doc.updated_at,
169doc.published_date, doc.summary, doc.image_url, doc.reading_progress,
170doc.first_opened_at, doc.last_opened_at, doc.saved_at, doc.last_moved_at,
171doc.id
spider-solREADME.md1 match
1# Indonesian Spider Solitaire
23A beautiful Spider Solitaire card game with Indonesian cultural themes and imagery.
45## Features
spider-solstyle.css1 match
132right: 0;
133bottom: 0;
134background-image:
135radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
136radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
untitled-222shell.ts1 match
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4import "chrome-devtools-frontend/Images/Images.js";
5import "chrome-devtools-frontend/core/dom_extension/dom_extension.js";
6import "chrome-devtools-frontend/panels/sources/sources-meta.js";
test-apns-voip-notimain.tsx1 match
20id: "6Xvl74QYtnOtTK5LAj3qUcr32aB2", // A hardcoded ID for the test caller.
21fullName: "John Damon", // The name that will appear on the call screen.
22profileImageUrl:
23"https://s3.us-east-2.amazonaws.com/snag-staging-public-media/6Xvl74QYtnOtTK5LAj3qUcr32aB2/user/82df69fd-8411-459a-bfd5-3193cfc2e304.jpeg",
24};
16id: "6Xvl74QYtnOtTK5LAj3qUcr32aB2", // A hardcoded ID for the test caller.
17fullName: "John Damon", // The name that will appear on the call screen.
18profileImageUrl:
19"https://s3.us-east-2.amazonaws.com/snag-staging-public-media/6Xvl74QYtnOtTK5LAj3qUcr32aB2/user/82df69fd-8411-459a-bfd5-3193cfc2e304.jpeg",
20};
chatExampleindex.html1 match
9<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
10<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet">
11<link rel="icon" href="/public/favicon.svg" sizes="any" type="image/svg+xml">
12<style>
13.font-mono { font-family: 'JetBrains Mono', monospace; }
chatExampleREADME.md1 match
3It's common to have code and types that are needed on both the frontend and the backend. It's important that you write this code in a particularly defensive way because it's limited by what both environments support:
45
67For example, you *cannot* use the `Deno` keyword. For imports, you can't use `npm:` specifiers, so we reccomend `https://esm.sh` because it works on the server & client. You *can* use TypeScript because that is transpiled in `/backend/index.ts` for the frontend. Most code that works on the frontend tends to work in Deno, because Deno is designed to support "web-standards", but there are definitely edge cases to look out for.
chatExampleREADME.md1 match
21## `favicon.svg`
2223As of this writing Val Town only supports text files, which is why the favicon is an SVG and not an .ico or any other binary image format. If you need binary file storage, check out [Blob Storage](https://docs.val.town/std/blob/).
2425## `components/`