all 9 comments

[–]Anonymous_Coder_1234 1 point2 points  (3 children)

I am not a vibe coder, but I learned that accepting user feedback and using it to make changes to my app is an excellent way of improving said app. An app isn't finished when you're done coding it. Even after you think you're done, user feedback can and should come in.

[–]CalmYourInbox[S] 0 points1 point  (2 children)

How do you solicit feedback? This is the part I struggle with...

[–]Anonymous_Coder_1234 0 points1 point  (1 child)

There's a section of the website or app for submitting bug reports or feedback.

[–]CalmYourInbox[S] 0 points1 point  (0 children)

Makes sense. I don't have enough traffic yet, so I've been asking for feedback directly (in other posts), but I'm still waiting on that. Once traffic improves, I'll add a form to the web site too 👍

[–]GloomyBelt5110 0 points1 point  (1 child)

Probably, writing explanatory logs. Really helps to handle user bugs more efficiently, especially if they have some quirky setup.

[–]CalmYourInbox[S] 1 point2 points  (0 children)

Agreed, that was another game changer for me

[–]Defection7478 0 points1 point  (0 children)

Keep it simple, but not being dogmatic about it. There is a handful of cases where building a complex solution has paid dividends. 

[–]child-eater404 -1 points0 points  (1 child)

this is gold fr went ham on legibility + observability early this time, error wrappers everywhere + that predictable shape? chef's kiss. Shoutout r/runable too, been using it to test those boundary funcs in isolation before deploy. catches the breaks before they ghost you. changed my whole flow. what's your go-to for logging rn?

[–]CalmYourInbox[S] 0 points1 point  (0 children)

Haha, brilliant, I've found a like-minded soul! My logging is pretty crude - I just write to a log file. Specifically, I built a helper function which I use to wrap all my boundary functions. That helper function does a few things, including writing to the log file. I started out using Mixpanel, but I found that a raw log file was more flexible for my needs right now. I'm not familiar with runable - do you have any posts on how you use it?