Kicking the tires: A trial month at 37signals
37signals.com
Kicking the tires: A trial month at 37signals
1–10 of 18 posts
Re: Kicking the tires: A trial month at 37signals
#2Re: Kicking the tires: A trial month at 37signals
#3A brand new Basecamp developer is allowed to push a change like "disable HTML support" directly into production, without anyone pointing out that it might be a bad idea? Seriously?
Let's be honest, we're all human here and make mistakes, I took responsibility for it and learned a lot in the process.
Re: Kicking the tires: A trial month at 37signals
#4A brand new Basecamp developer is allowed to push a change like "disable HTML support" directly into production, without anyone pointing out that it might be a bad idea? Seriously?
Basecamp would be a very different product if it was made that way, though.
There are non-zero costs associated with giving people the authority to do productive work. On the plus side, this enables them to do productive work.
P.S. Having worked at an organization which did development that way, I can tell you that having copious documentation does not mean requirement 1,735 will be implemented, but it guarantees requirement 1,735 will be written about somewhere, which is what that organization type ends up optimizing for.
Re: Kicking the tires: A trial month at 37signals
#5I know they aren't the only ones who do this but they are vocal about it, and when your living/working in enterprise land (MKE/Midwest) its good to remember it doesn't need to be this way.
Re: Kicking the tires: A trial month at 37signals
#6A brand new Basecamp developer is allowed to push a change like "disable HTML support" directly into production, without anyone pointing out that it might be a bad idea? Seriously?
One of the downsides is that bugs like this creep in, because there's no QA step. (and code review is not QA). So, push something that accidentally breaks the app? Oops.
The good thing about a continuous deployment strategy is that the engineer can turn around right away and push a fix. Low ceremony helps here, "Oops, forgot to add this file to the source repo" can be fixed fast.
I've been with clients where a "continuous deployment" strategy would have meant, "continuously putting out fires, throwing any idea of development process out the window". But, Nick said his job was essentially dev support of QA, where you might not want to wait for the next two week iteration to schedule a ticket to fix a bug in production.
Re: Kicking the tires: A trial month at 37signals
#7A brand new Basecamp developer is allowed to push a change like "disable HTML support" directly into production, without anyone pointing out that it might be a bad idea? Seriously?
There exist plenty of organizations where a manager would have reported in April 2012: "Hey Bob, the $PEON_1846 on the QR team in $LOCATION reported that $COMMIT breaks requirement 1,735: todos must allow embedding the following restricted subset of HTML. Refer to requirements documents /shares/documents/basecamp/specs/dashboard/subcomponents/todo/functional_spec.xls sheet Content Embeds page 3. Submitted as issue 12…
Re: Kicking the tires: A trial month at 37signals
#8A brand new Basecamp developer is allowed to push a change like "disable HTML support" directly into production, without anyone pointing out that it might be a bad idea? Seriously?
There exist plenty of organizations where a manager would have reported in April 2012: "Hey Bob, the $PEON_1846 on the QR team in $LOCATION reported that $COMMIT breaks requirement 1,735: todos must allow embedding the following restricted subset of HTML. Refer to requirements documents /shares/documents/basecamp/specs/dashboard/subcomponents/todo/functional_spec.xls sheet Content Embeds page 3. Submitted as issue 12…
Unfortunately adding issue 124,436 into the tracker puts the manager responsible for $SYSTEM over quota for exceptions. Most likely that item or one similar will be placed on a completed project just to get back under quota. Nobody needs issue 98,402 fixed if issue 124,436 prevents you from reaching it, right?
I wish this wasn't the world we lived in, but such management tactics will never really die.
Re: Kicking the tires: A trial month at 37signals
#9Earlier quoted context omitted.
There exist plenty of organizations where a manager would have reported in April 2012: "Hey Bob, the $PEON_1846 on the QR team in $LOCATION reported that $COMMIT breaks requirement 1,735: todos must allow embedding the following restricted subset of HTML. Refer to requirements documents /shares/documents/basecamp/specs/dashboard/subcomponents/todo/functional_spec.xls sheet Content Embeds page 3. Submitted as issue 12…
There's an enormous middle ground between the two extremes you're portraying, though.
This would allow you to bill, ballpark, $10,000 for "Enhancement: forgetting to close a tag in a todo no longer borks site."
But, while not being TPS Reports Inc, that is still a pretty different environment than what 37Signals operates in.
Re: Kicking the tires: A trial month at 37signals
#10A brand new Basecamp developer is allowed to push a change like "disable HTML support" directly into production, without anyone pointing out that it might be a bad idea? Seriously?
One of the cool things about continuous deployment is that rush of, "Here's a new feature, right now! You don't have to wait! It doesn't break any specs, so it must work and be a good idea!" One of the downsides is that bugs like this creep in, because there's no QA step. (and code review is not QA). So, push something that accidentally breaks the app? Oops. The good thing about a continuous deployment strategy is th…