Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Yeah. It does have it's role in development.
Important thing tho is that codereviews are more efficient when you're doing it 1 on 1.
Why? Because of the rubber duck effect.
You're explaining your code adjustments to another dev or even a qa makes you think twice and thrice about it.
How long does it take?
In average a code review takes about 30 minutes. -
C0D4681465y@heyheni I have a knack for these things.
@Mugi, code reviews help not only you identify flaws before releasing, but having a fresh set of eyes look over the code while you explain what's going on is one of the bests ways to introduce new ideas for handling things you might have overlooked or not considered. -
Hel8y3375yCode review is not only a tool to improve code quality, but a tool to improve yourself as well :) You can learn from reading other people's code. But of course this all depends on who you are working with...
-
In general a good development flow goes as follows:
analysis -> analysis review -> coding -> code review -> testing -> documentation
It takes time but it's a flow that makes sure your code is technically and functionally validated and documented. It removes a lot of bugfixing work you'd otherwise get. -
Mugi1925y@TylerDDevRant Well said! I'll try to implement this on my team. Currently, my setup is to assign my members to each feature and then we will just merge after they finish it. Later on, I'm having a difficult time configuring their feature that they made and it will be end-up fixing their own feature.
-
Mugi1925y@HisAxelency Yep. Our current flow is like
analysis -> code -> testing -> *LOTS OF BUGS*. I'll implement this on our next feature. Thank you! -
@Mugi do you use a Linter for debugging and enforcing a coding style?
https://github.com/caramelomartins/...
Related Rants
Does code review plays a big role when developing? Although it takes time? and also what's the average time when doing it?
question
codereview