Uncle Bob C. Martin: Clean Agile, Back to Basics

  Рет қаралды 32,588

Wemanity

Wemanity

Күн бұрын

#SparkDevOps (Re)watch Robert C. Martin's talk on Clean Agile set during our Spark DevOps virtual conference, held on June 25.
Co-author of the Agile Manifesto, Robert C. Martin (also known as Uncle Bob) is the father of SOLID, clean code and clean architecture. He is also the instigator behind the meeting that led to the Agile Manifesto, and a thought leader in technical coding standards and practices.
Check out more at www.wemanity.com/
Follow Wemanity on Twitter: / wemanity
Follow Wemanity on Linkedin: / wemanity
Like Wemanity on Facebook: / wemanity
Subscribe to our channel: / wemanity

Пікірлер: 24
@yasminaamir3719
@yasminaamir3719 2 жыл бұрын
This is one of the most interesting and engaging videos I have watched recently!
@purplesquirrel860
@purplesquirrel860 2 жыл бұрын
“The purpose of Agile is to destroy hope… and replace it with DATA.” If only this was the message that spread…
@NikolaiZujev
@NikolaiZujev 2 жыл бұрын
One of the best talk on agile history, its idea and purpose. Clean and clear, good job Uncle Bob.
@54akhilesh
@54akhilesh 3 жыл бұрын
Thank you so much :)
@DudeWatIsThis
@DudeWatIsThis Жыл бұрын
59:02 There he goes!! That's the best part of Uncle Bob.
@JeremyNathanielAkers
@JeremyNathanielAkers 2 жыл бұрын
50:51 Agile usually delivers bad news, we want the bad news as early as we can get it
@andrewhzy7372
@andrewhzy7372 2 жыл бұрын
hope the sliedes can be downloaded
@101Bodhi
@101Bodhi 2 жыл бұрын
I have a question regarding a burndown. How do we not perform a large analysis stint before development in order to get our backlog and points together? I've run into the situation where once we have our fully fleshed out backlog with all the points and data, then a requirement changes at a foundational level and all the requirements above that point then are affected. Now we have to go and re-work/estimate all of those stories. How do you avoid that and still have a meaningful burndown?
@DarrenSchnare
@DarrenSchnare 2 жыл бұрын
As Uncle Bob says, agile is about producing data so you know how fast you're going. If you stop producing meaningful data you stop doing agile. So given that your requirements changed, so too must your estimates. Whatever the ripple effect is, re-estimating and even trashing and creating new stories ensures you continue to produce meaningful data necessary to continue to predict your completion date. If a foundational or re-specing happens frequently then that would be something to remedy for sure. Honestly this happens to all of us though, but we try to mitigate it best we can. I don't have any tips other than to confer with stakeholders frequently (i.e. the exploration is always happening from new learnings).
@fennecbesixdouze1794
@fennecbesixdouze1794 Жыл бұрын
I don't recommend doing things this way, I would suggest looking into #NoEstimates. But to answer your question as best I can the way Bob would: You should be re-estimating the story points for features regularly, as well as changing the features themselves regularly as you get more data: removing ones that aren't relevant anymore, adding new ones that will be needed, splitting features apart, re-estimating because your architecture changed, etc. You can re-estimate completed features as well: if you called something a 5 but then once you started it you realized it was really a 2, then you should go back into the spreadsheet and adjust it to a 2. You typically do this after the first few iterations by choosing "yardstick features" and comparing future features against them. "This seems like the work involved will be very similar to that feature we did in March, and that was a 3, so let's call this a 3." If you aren't re-estimating and changing your feature backlog in response to what's happening during genuine iterations, then your backlog is just a roundabout way of doing water-scrum-fall. All that being said, again, look into #NoEstimates. Contrary to what Bob said, #NoEstimates is a absolutely an agile way of working. Indeed it is much more agile than the version Bob is proposing here, and it is also better aligned to data. Estimates as Bob describes here are not data, they are proven by research to be total bullshit, whatever nice personal feelings of confirmation-bias Bob has about them. You can start moving towards #NoEstimates by changing your range of available story points to "1" and "too fucking big, split it up", and the research shows that the numbers you'll get that way in terms of burndown will be more accurate than any other pointing (Fibonacci, T-shirts, etc).
@JavierPortillo1
@JavierPortillo1 3 жыл бұрын
Yet my teachers at university keep teaching that Agile is "doing things fast!"
@DudeWatIsThis
@DudeWatIsThis Жыл бұрын
These are boomers who grew up in the "glory" days of waterfall. Fuck them. Follow Uncle Bob, he's one of us.
@KulaGGin
@KulaGGin 2 жыл бұрын
Great talk, as always, Uncle Bob. 37:40 Sad to see that demographics is even mentioned in 2020. At first I thought it was about demographics of programmers: the diversity of viewpoints, not about body properties of people like blood type, chromosome pairs, age and cell pigmentation. MFW people caring and criticizing in 2020 demographics at a programmers meeting in 2001: 🤦
@andrewsheehy2441
@andrewsheehy2441 2 жыл бұрын
Interesting perspective at kzbin.info/www/bejne/anvMmaZ4hKeVmqs where he explains that waterfall concepts are, in fact, burnt into the Agile Manifesto. Some waterfall can be good. Waterfall is not intrinsicially bad.
@xseman
@xseman Жыл бұрын
amazing talk, but 37:25 political agenda wasn't necessary...
@szeredaiakos
@szeredaiakos 3 жыл бұрын
Uncle Bob keeps pushing TDD. IMHO if you have simple, str8 to the point, components (classes, elements, etc), TDD is mostly a waste of time, however, it's just magical if it you are using it on complicated algorithms and/or systems. To contradict myself to a certain degree, for some, a simple 'if' statement warrants TDD.
@dan-kn3dm
@dan-kn3dm 3 жыл бұрын
If he's pushing it then he has a good reason. And he always says that TDD is a discipline, so not something you only use when You think the code is complicated. Because you don't write the tests only for yourself, but for the whole team and posterity. What if the originally simple class gets more complicated over time and there are no tests to cover for changes? What if the originally simple stuff is not that simple as you thought? And what if you and the whole team knows that the tests are covering only some (few) parts of the app? Then if they pass, it doesn't mean much, does it? Since your code might be broken elsewhere. Yes, some people can write clean, working code without tests, but once they leave and somebody younger replaces them, they will go through hell doing changes on that system.
@jamcphee
@jamcphee 3 жыл бұрын
I would recommend checking out one of the cleancoders case studies if you want to see what he's talking about in TDD in practice. London vs Chicago is probably the best to see 2 approaches of the discipline for the same project. Sandro Mancuso from codurance says in the first video that "there's what i teach and what i do". The principles are to give you the foundation, but experience informs your approach, without sacrificing the core idea of having a robust set of tests at the end. There is a lot of wiggle room to adjust your goals of good vs fast vs cheap vs done.
@asciidiego
@asciidiego 3 жыл бұрын
@Liviu SANDULACHE I asked him on the matter. He said that startups for example (epitome of rapid change) are the best place to adopt Clean Architecture. That includes testing!
@WouterSimonsPlus
@WouterSimonsPlus 3 жыл бұрын
There is a really fun talk from Kevlin Henney (I think it's called the error of our ways) where he shows the problem with leftpad (some js library that broke the internet). I'd suggest having a look at it and maybe consider that it's not size that matters. Perhaps how your code is used matters more!
@JamesSmith-cm7sg
@JamesSmith-cm7sg 2 жыл бұрын
If all we had to build was simple "str8" to the point components, none of us would have jobs.
@bobweiram6321
@bobweiram6321 2 жыл бұрын
Having your life taken is not something we normally deal with in computing. Horrible!
Is SAFe REALLY Safe?
20:00
Continuous Delivery
Рет қаралды 32 М.
Самый большой бутер в столовке! @krus-kos
00:42
Кушать Хочу
Рет қаралды 6 МЛН
请善待你的娃娃第二集 #naruto  #cosplay  #shorts
00:52
佐助与鸣人
Рет қаралды 24 МЛН
Uncle Bob LOVES Functional Programming | Prime Reacts
22:59
ThePrimeTime
Рет қаралды 106 М.
Why Does Scrum Make Programmers HATE Coding?
16:14
Healthy Software Developer
Рет қаралды 480 М.
The death of Agile - Allen Holub
36:18
DevWeek Events
Рет қаралды 145 М.
Clean Architecture - Robert (Uncle Bob) Martin
1:00:52
DevTernity Conference
Рет қаралды 2,8 М.
Robert C Martin - The Single Responsibility Principle
51:09
gnbitcom
Рет қаралды 102 М.
"Uncle" Bob Martin
1:23:35
Program on Entrepreneurship
Рет қаралды 167 М.
"I Hate Agile!" | Allen Holub On Why He Thinks Agile And Scrum Are Broken
8:33
The PA042 SAMSUNG S24 Ultra phone cage turns your phone into a pro camera!
0:24
Компьютер подписчику
0:40
Miracle
Рет қаралды 184 М.