←back to thread

Building a Personal AI Factory

(www.john-rush.com)
260 points derek | 1 comments | | HN request time: 0.223s | source
Show context
mmarian ◴[] No.44441164[source]
And here I am struggling to get Claude to create a nice-looking search bar a la booking.com , with some adjustments for my personal use case; it does ok, but never gets to the end result and once I refreshed my Tailwind knowledge it felt much slower than hand coding. I feel like I'm living in a different world.
replies(2): >>44441308 #>>44441660 #
hamstergene ◴[] No.44441308[source]
I think coding assistants aren't great at UI/UX yet because they can't see, their understanding of left/right/lighter/darker is guessed from textual descriptions that accompanied CSS tutorials but they are never actually imagining the looks of what they are working with. I had Cursor repeatedly fix and mess up a CSS grid, over and over again, until I switched to HTML table so that browser would handle layout. Once switched from visuals ("leftmost") to semantics ("first cell in a row") the agent immediately started getting tasks done right.

I guess keep them on backend/library tasks for now. I am sure the companies are already working on getting a snapshot of a browser page and feeding it back into multimodal model so it can comprehend what "looking" means.

replies(1): >>44441405 #
1. mmarian ◴[] No.44441405[source]
Thx for sharing your experience, good to know I'm not the only one struggling ^_^ The advice makes sense as well.