Book Review: “The Art of Lean Software Development”, 1st Edition
The Art of Lean Software Development, 1st Edition
by Curt Hibbs; Steve Jewett; Mike SullivanFrom O’Reilly Media, Inc.
Published February 2, 2009
ISBN-13: 978-0-596-51731-1
Pages: 144
The Art of Lean Software Development, 1st Edition
by Curt Hibbs; Steve Jewett; Mike SullivanFrom O’Reilly Media, Inc.
Published February 2, 2009
ISBN-13: 978-0-596-51731-1
Pages: 144
Looks like I’ve been doing a lot more Twittering (see http://twitter.com/jitterted) than blogging the last couple of months. One thing I like about Twitter is it allows me to write down short (<=140 chars!) thoughts or ideas that don’t warrant a full blog posting. Now that I’ve "saved up" a bunch of thoughts, I can go and write more about them.
Note that my twitterings (tweets) are 95+% about software, development, agile, etc., and very little "ooh, I just saw a cute puppy" or "I’m hungry" — that’s just not the way I want to use Twitter.
I’ve been reading lots about Kanban ever since David Anderson talked about his experience at the Nov 3rd (2008) BayAPLN meeting. On the Kanban developer email list, a new book on the topic was announced, "Scrumban", so I immediately went over to Lulu.com and purchased it. I’ll probably start reading it next week as it’ll be pretty quiet in the office.
In the meantime, if you’re at all interested in (or practicing) Agile, I highly recommend also reading about how Kanban is being applied to software development. The email list is a good place to start, as is David Anderson’s blog and articles.
The presentation "slides" are here: http://www.tedmyoung.com/EasingIntoAgile.pdf.
Note that the content is licensed under the Creative Commons Attribution-Noncommercial-Share Alike 3.0 United States License.
Question, comments, criticism, etc., are always welcome.
I don’t know about you, but I’ve got code in my code base that still uses arrays and we need to move them to Lists. Sounds like fun, huh? Well, a new refactoring in IDEA 8.0, Type Migration, is going to help a lot in this task. The other feature that blew me away during the EAP was the Data Flow To This… command, which lets you see how the variable you’re looking at got its value all the way back through the method chains. This is really useful when you’re trying to figure out, say, why the value is null and where it got set that way.
Examples and screenshots on these coming soon.
Yeah, IDEA 8.0 has been out almost a week, but I’ve been so busy with the Code Camp preparations, I didn’t have time to focus on it.
I’ve been using 8.0 since the first Early Access builds, and it’s been a very solid product all the way through. There were some regressions in the way things were "painted" (causing background colors to not work properly in some cases) that I’m betting has to do with the fact that IDEA 8.0 ships with the 1.6u10 release of the Sun Java VM. Those bugs are fixed and I’m happily using 8.0 on its 30-day trial until I get my 7.0 license upgraded. I’m bummed that I didn’t win the JetBrains raffle at the Code Camp, but oh well.
I’ll be posting thoughts and information about the new 8.0 features over the next few weeks.
If you attended my "Easing Into Agile" or "Building Better Tests in Java" sessions at the Silicon Valley Code Camp 2008, I’d love to hear any feedback, compliments, constructive criticism, and any questions that you might have thought of. The code camp eval for the Agile session is here: http://tr.im/yqi and the eval for the Builders session is here: http://tr.im/yqm. I also encourage you to leave a comment here if that’s more convenient.
This morning at Code Camp, Shaun Abram (http://www.shaunabram.com/) asked me about my "Building Better Tests in Java" presentation where I talked about using Test Data Builders instead of Factory classes (what we at Guidewire call DataGen classes). He said that he liked Builders, but wasn’t sure what the compelling benefits were. I’m glad he asked because besides giving me an idea for a blog entry, it’ll make me go back and make it more clear.
If you were at the presentation, here’s the reasons that I had hoped to get across:
Activity myActivity = DataGen.activity( true, true, false, true, true, Status.NEW, Priority.MEDIUM, false );
Activity myActivity = new ActivityBuilder()
.autoGenerated()
.notEscalated()
.ownedExternally()
.mandatory()
.recurring()
.statusNew()
.priorityMedium()
.shared()
.create();
If you said the first one, you’re far too familiar with our Activity entity and probably work at Guidewire.
Shaun also mentioned a problem where someone comes along and changes one of the defaults (i.e., the value of a property that wasn’t specified) in a factory method to fit the test they’re writing, only to break a bunch of other tests that relied on different defaults. They probably did that because they didn’t want to create yet another factory method that took the property as a parameter so they could choose a different value.
Chained Methods and the Fluent Interface
Also, Jeff Brown (http://blog.bits-in-motion.com/) at the BBQ last night mentioned that he was surprised I didn’t use the phrase "fluent interface" and he’s right! OMG! There goes my credibility. Seems like a need to rework my Builders presentation, but I think I knew that.
If you attended (or missed) either of my Silicon Valley Code Camp talks, I’d be happy to do them again as 5 minute lightning talks.
Saturday’s sessions are over, but there’s still Sunday! See http://www.siliconvalley-codecamp.com/Sessions.aspx
If you’re looking for slides and other information from my Silicon Valley Code Camp 2008 talks (either Easing Into Agile or Building Better Tests in Java), stay tuned! I’ll be uploading them very soon!
Thanks for coming!
Get free blog up and running in minutes with Blogsome
Theme designed by Jay of onefinejay.com