Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
storystarling
searching PlanetScale…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
storystarling
12d ago
I'm working on StoryStarling ( https://www.storystarling.com ). It creates custom hardcover children's books from scratch around any idea, instead of swapping names into pre-set templates. We mostly focus on things you c
2.
▲
by
storystarling
3mo ago
Yes, the illustrations are AI-generated. We generate the book, lay it out for print, and print/ship the physical copy. Fair point though - "we illustrate" could be clearer.
3.
▲
by
storystarling
3mo ago
https://www.storystarling.com - create a non-fiction children's book explaining your super-niche-geek topic to your kid. Pick any topic, your kid becomes the little explorer, we illustrate and print it. Requires registratio
4.
▲
by
storystarling
5mo ago
I'm working on StoryStarling ( https://www.storystarling.com ). You describe an idea for a children's book, optionally upload photos of your kid or pet to put inside, pick a style, preview the result, and order a printed
5.
▲
by
storystarling
7mo ago
StoryStarling. You describe a story idea and it generates a fully illustrated children's book, then we print and ship it. Not templates with names swapped in. Every story and illustration is made from scratch. You can go from "din
6.
▲
by
storystarling
7mo ago
Appreciate the honesty. On bilingual - that's actually our strongest use case already. A surprising number of our orders are from multilingual families who simply can't find children's books in their language combination. Tha
7.
▲
by
storystarling
7mo ago
This matches our experience. For a 28-page children's book there's no context collapse - the entire story fits comfortably in context. The format actually plays to LLMs' strengths: short, structured, clear emotional arc. It&#
8.
▲
by
storystarling
7mo ago
Fair perspective. But the parent isn't passive here — they're the creative director. They decide what the story is about, who the hero is, what happens. The AI does a lot of the writing, yes, but the parent is the editor: they rev
9.
▲
by
storystarling
7mo ago
Honestly, for children's books specifically - yes. A children's book is 28 pages, simple language, short sentences, clear emotional arc. That's a very different challenge than writing a novel. We've put a lot of work int
10.
▲
by
storystarling
7mo ago
That's a fair point about friction, but we're intentionally focused on physical books - the whole idea is to get away from screens. Most parents we talk to have the opposite problem: too much digital content, not enough tangible t
11.
▲
by
storystarling
7mo ago
yes - we do combine those both and you can upload photos to get your kids into the book.
12.
▲
by
storystarling
7mo ago
Thanks for the blunt feedback - genuinely appreciate it. You're right that children's books can be excellent, and for generic topics a well-reviewed book from a skilled author and illustrator will beat what we generate. No argumen
13.
▲
by
storystarling
7mo ago
Similar experience. I posted a Show HN two days ago for a children's book generator - type a story idea, get a fully illustrated printed book shipped to you. Offered a free printed book including shipping to the HN community via vouche
14.
▲
by
storystarling
7mo ago
Hi from Germany! Thanks for the feedback. You're right - the showcase sorting prioritizes "Real Books" (from customers who opted in to share theirs) over "Inspiration" (demo books we generated), which pushes the Spa
15.
▲
Show HN: Custom illustrated kids' book, generated and printed (StoryStarling)
7 points
by
storystarling
7mo ago
|
2 comments
16.
▲
by
storystarling
8mo ago
yes, i had the same experience. As good as LLMs are now at coding - it seems they are still far away from being useful in vision dominated engineering tasks like CAD/design. I guess it is a training data problem. Maybe world models &#x
17.
▲
by
storystarling
8mo ago
Nice work! We create personalized children's books - parents share their idea and photos, and AI brings their custom story to life with their child as the protagonist. We do hybrid fulfillment depending on the country. The PDF formatti
18.
▲
by
storystarling
8mo ago
The story synopsis next to the preview gives you the full narrative arc before you commit. But fair point on wanting to see more. You can edit or regenerate pages if something isn't working - it's iterative, not one-shot. Happy to
19.
▲
by
storystarling
8mo ago
Character consistency was the hardest problem, and honestly what took the longest to get right. We use reference images as style anchors, run multiple generation passes, and have an LLM "critic" that checks for visual inconsistenc
20.
▲
by
storystarling
8mo ago
RTL = Right-to-Left languages - Arabic, Hebrew, Farsi, Urdu. The text rendering and page layout needs to flip for these, and it gets especially tricky with bilingual books where one language is RTL and the other is LTR. What's the scen
21.
▲
by
storystarling
8mo ago
StoryStarling - Turn your story idea into a printed children's book https://storystarling.com Working on a platform where you describe a story concept and it becomes a real, illustrated picture book - professionally printed
22.
▲
by
storystarling
8mo ago
Not AI. Anyway, the real issue is permissiveness vs strict parsing—real-world files are messy.
23.
▲
by
storystarling
8mo ago
Raw CUDA works for the heavy lifting but I suspect it gets messy once you implement things like grammar constraints or beam search. You end up with complex state machines during inference and having standard library abstractions seems prett
24.
▲
by
storystarling
8mo ago
I suspect it is actually about maintaining permissiveness for malformed inputs rather than keeping security bugs. I ran into this building ingestion for a print-on-demand service where users upload technically broken PDFs that legacy viewer
25.
▲
by
storystarling
8mo ago
The WASM constraints make sense given the resource limits, especially for mobile. If you are moving that compute server-side though I am curious about the unit economics. LaTeX pipelines are surprisingly heavy and I wonder how you manage th
26.
▲
by
storystarling
8mo ago
I thought the RTX 6000 Ada was 48GB? If you have 96GB available that implies a dual setup, so you must be relying on tensor parallelism to shard the model weights across the pair.
27.
▲
by
storystarling
8mo ago
That sounds plausible. I've had to implement similar reputation-based limits on my own backend just to keep inference costs from exploding, so I sympathize with the fraud prevention angle. Masking that as a generic quota issue to push
28.
▲
by
storystarling
8mo ago
Fair point. I suspect it comes down to ghost reservations or stale caches. If a previous upload failed mid-flight but didn't roll back the quota reservation immediately, the backend thinks you're over the limit until a TTL expires
29.
▲
by
storystarling
8mo ago
Do you have specific t/s numbers for those dense models? I'm curious just how severe the memory bandwidth bottleneck gets in practice. I'm not sure I agree on the cost aspect though. For high-volume production workloads the A
30.
▲
by
storystarling
8mo ago
Isolated state is definitely the right call. I am curious how you implemented the shared memory primitives though. Usually that is where the complexity creeps back in if you want to avoid global locks. How do you expose that without forcing
More ›