Please enable JavaScript.
Coggle requires JavaScript to display documents.
Product Tech Core (Philosophy (Clean code is good code, write code that…
Product Tech Core
Philosophy
-
-
-
unit tests are cheap, extremely useful and best part of documentation. You should write them on a daily basis (red, green, refactor)
-
if you think you need to write a script to solve something for a product, think twice
pair programming is gold, don't make it fool's gold
-
-
make it run, make it better, make if fast
-
-
-
Team
Work on your communication skills daily (spoken, written, coded)
Maintain a pleasant environment (clean, organized)
-
-
-
-
-
-
-
Process
-
Documentation
-
-
-
-
-
-
-
PRD
Ubiquitous language (should be reflected in every document or conversation related to the product)
-
-
Use-cases logics (diagrams, etc)
-
-
-
-
live prototyping (Figma, Marvel, Sketch, etc)
output: document per se, Stories, high fidelity model
Products Boards
-
-
tasks should take at least 1 hour and maximum of 8 hours (1,2,4,8)
-
-
-
when in pair programming, tasks should be duplicated
-
Issues & Bugs
Bugs with the highest priority, should be tackled immediately
-
Good written tests can help a lot to track and solve issues and bugs.
Whenever possible, write tests that proves the bug/issue was solved.
-
-