857<meta charset="UTF-8">
858<meta name="viewport" content="width=device-width, initial-scale=1.0">
859<link rel="icon" type="image/png" href="https://labspace.ai/ls2-circle.png" />
860<title>Scribe β’ Audio Recorder</title>
861<meta property="og:title" content="Scribe β’ Audio Recorder" />
862<meta property="og:description" content="A tool to record and process audio" />
863<meta property="og:image" content="https://yawnxyz-og.web.val.run/img?link=https://scribe.labspace.ai&title=Scribe&subtitle=Audio%20Recorder" />
864
865<!-- Load dependencies first -->
45<div align="center">
6<img src="https://imagedelivery.net/iHX6Ovru0O7AjmyT5yZRoA/67a1d35e-c37c-41a4-0e5a-03a9ba585d00/public" width="700px"/>
7</div>
blob_adminREADME.md1 match
3This is a lightweight Blob Admin interface to view and debug your Blob data.
45
67Versions 0-17 of this val were done with Hono and server-rendering.
blob_adminmain.tsx5 matches
440{profile && (
441<div className="flex items-center space-x-4">
442<img src={profile.profileImageUrl} alt="Profile" className="w-8 h-8 rounded-full" />
443<span>{profile.username}</span>
444<a href="/auth/logout" className="text-blue-400 hover:text-blue-300">Logout</a>
583alt="Blob content"
584className="max-w-full h-auto"
585onError={() => console.error("Error loading image")}
586/>
587</div>
635<li>Create public shareable links for blobs</li>
636<li>View and manage public folder</li>
637<li>Preview images directly in the interface</li>
638</ul>
639</div>
693const { ValTown } = await import("npm:@valtown/sdk");
694const vt = new ValTown();
695const { email: authorEmail, profileImageUrl, username } = await vt.me.profile.retrieve();
696// const authorEmail = me.email;
697761762c.set("email", email);
763c.set("profile", { profileImageUrl, username });
764await next();
765};
tidyPurpleSheepREADME.md1 match
3Monitor any news form your inbox.
45
67Fork this val then configure:
aiImageGeneratormain.tsx28 matches
3import { createRoot } from "https://esm.sh/react-dom/client";
45function ImageGenerator() {
6const [imageUrl, setImageUrl] = useState<string | null>(null);
7const [prompt, setPrompt] = useState("");
8const [isLoading, setIsLoading] = useState(false);
9const [error, setError] = useState<string | null>(null);
1011const generateImage = async (e: React.FormEvent) => {
12e.preventDefault();
13setIsLoading(true);
17// Validate prompt
18if (!prompt.trim()) {
19throw new Error('Please enter a description for the image');
20}
2122// Use a more robust image generation endpoint
23const response = await fetch(`https://maxm-imggenurl.web.val.run/${encodeURIComponent(prompt)}`, {
24method: 'GET',
25headers: {
26'Accept': 'image/*'
27}
28});
30if (!response.ok) {
31const errorText = await response.text();
32throw new Error(errorText || 'Image generation failed');
33}
3435const blob = await response.blob();
36const url = URL.createObjectURL(blob);
37setImageUrl(url);
38} catch (err) {
39console.error('Image generation error:', err);
40setError(err instanceof Error ? err.message : "An unknown error occurred");
41} finally {
4546const resetGenerator = () => {
47setImageUrl(null);
48setPrompt("");
49setError(null);
52return (
53<div style={styles.container}>
54<h1 style={styles.title}>π¨ AI Image Generator</h1>
55{!imageUrl ? (
56<form onSubmit={generateImage} style={styles.form}>
57<input
58type="text"
59value={prompt}
60onChange={(e) => setPrompt(e.target.value)}
61placeholder="Describe the image you want to generate (e.g., 'A sunset over mountains')"
62style={styles.input}
63required
68style={styles.button}
69>
70{isLoading ? "Generating..." : "Generate Image"}
71</button>
72</form>
88)}
8990{imageUrl && (
91<div style={styles.imageContainer}>
92<img
93src={imageUrl}
94alt="Generated"
95style={styles.image}
96/>
97<a
98href={imageUrl}
99download="generated_image.png"
100style={styles.downloadButton}
101>
102Download Image
103</a>
104</div>
152marginBottom: '20px',
153},
154imageContainer: {
155display: 'flex',
156flexDirection: 'column',
158gap: '10px',
159},
160image: {
161maxWidth: '100%',
162borderRadius: '10px',
181<head>
182<meta charset="UTF-8">
183<title>AI Image Generator</title>
184<meta name="viewport" content="width=device-width, initial-scale=1">
185<script src="https://esm.town/v/std/catch"></script>
206import { createRoot } from "https://esm.sh/react-dom/client";
207208function ImageGenerator() {
209${ImageGenerator.toString()}
210}
211215const rootElement = document.getElementById("root");
216if (rootElement) {
217createRoot(rootElement).render(React.createElement(ImageGenerator));
218}
219}
sqliteExplorerAppREADME.md1 match
3View and interact with your Val Town SQLite data. It's based off Steve's excellent [SQLite Admin](https://www.val.town/v/stevekrouse/sqlite_admin?v=46) val, adding the ability to run SQLite queries directly in the interface. This new version has a revised UI and that's heavily inspired by [LibSQL Studio](https://github.com/invisal/libsql-studio) by [invisal](https://github.com/invisal). This is now more an SPA, with tables, queries and results showing up on the same page.
45
67## Install
55text: "@stevekrouse.com can't tell what happened, but I was using Townie for a thing and it inverted the reasoning and code outputs for whatever reason."
56},
57embed: { "$type": "app.bsky.embed.images#view", images: [Array] },
58replyCount: 1,
59repostCount: 0,
slothdaobotREADME.md1 match
131415
1617
farcasterKeyHookREADME.md2 matches
131415
1617
18