Code Room
Vibe codingHard
Question
An AI wrote this Android Fragment to load a profile and update a TextView. It works in normal use, but testers who rotate the device or back out quickly during the load see occasional crashes with `IllegalStateException` / `NullPointerException`, and you suspect the binding. What's the bug and how would you catch it?
class ProfileFragment : Fragment() { private lateinit var binding: FragmentProfileBinding override fun onViewCreated(view: View, s: Bundle?) { binding = FragmentProfileBinding.bind(view) GlobalScope.launch(Dispatchers.IO) { val profile = repo.loadProfile() withContext(Dispatchers.Main) { binding.nameLabel.text = profile.name // view may be gone } } }}What a strong answer looks like
Treat the AI’s output as a draft to verify, not an answer to trust. Name the specific flaw and the input that triggers it, say how you’d catch it — tests, edge cases, reading critically — and how you’d re-prompt or decompose to get it right.
Learn the concepts
Vibe coding: describe the solution in plain language (or narrate it) and the coach grades your approach. Generating runnable code from your description is coming next.
Run or narrate your approach, then ask the coach.