Category Archives: Interview

Interviewing the creator of BLADE – CAD’s best LISP IDE – part 1

Easily the most impressive new feature of BricsCAD V18.2 is the new Visual LISP IDE, BLADE (BricsCAD LISP Advanced Development Environment). The lack of any LISP IDE has been a BricsCAD stumbling block for a while, dissuading CAD Managers from adopting BricsCAD to replace their stagnant and increasingly expensive AutoCADs.

As I will relate elsewhere, Bricsys has not just caught up with Autodesk here, but has shot so far ahead it’s unlikely to ever be caught. BricsCAD’s BLADE is so superior to AutoCAD’s VLIDE in so many ways there’s really no comparison.

Yet it remains highly compatible. I have personal experience in making large amounts of AutoCAD LISP code (literally hundreds of routines) work in BricsCAD. That experience tells me that the vast majority of code will work just fine (and much faster) in BricsCAD. A tiny proportion of LISP or DCL code may need adjustment before it will work perfectly on both platforms, and that’s one reason an IDE that works within BricsCAD was an important step that Bricsys needed to take.

I had the chance to see this IDE privately in then-unnamed pre-release form when I attended the Bricsys Conference 2017 in Paris. I was surprised and delighted at the functionality demonstrated by its creator, Torsten Moses. I recently had the chance to interview Torsten about his creation.

Steve: I understand it was difficult to create a LISP IDE for BricsCAD because of the way BricsCAD’s LISP works. Can you explain that?

Torsten: BricsCAD LISP uses the OpenLisp core system, from French developer Christian Jullien. This is the only LISP engine still under development; the others I found stopped development in the mid-90s.

OpenLisp is a very modern implementation, not comparable to the old XLisp dialect used by AutoLISP. Even object-oriented features are supported. Therefore the internal representation of LISP expressions is different from the textual representation as seen in a LISP file.

Steve: So the AutoLISP code I write isn’t the code that BricsCAD executes?

Torsten: That’s right. A number of typical AutoLISP constructions were implemented by a kind of emulation, which drives the internal versus textual representation differences even further. That makes it a major challenge to synchronize the internal OpenLisp expression execution with the related textual representation in order to provide any debugging functionality.

Besides the plain technical details, which seemed to be virtually unresolvable, there was the expected heavy effort to implement a full-blown GUI. This was not just a plain editor, but the entire IDE GUI. It would have been a disaster, a major disgrace, if we had provided a VLIDE that was just up to AutoCAD standards. That was great in its time, but it’s 20 years later now. The idea of creating a LISP IDE for BricsCAD seemed so filled with difficulties that we put it off for a long time.

Steve: How did you finally manage to overcome these difficulties?

Torsten: First, it was a pure coincidence. [laughs] By luck, I discovered a hidden detail in OpenLisp – any LISP symbol (and expressions are a kind of anonymous symbols) can hold unlimited, attached custom data, very similar to XData in DWG database objects. I even knew about that for many years, but never worked out the shortcut to ‘misuse’ this for the LISP expression execution to editor and debugger bidirectional connection. Some initial quick tests showed that this approach was very suitable.

By another coincidence, I discovered that WxWidgets (our cross-platform system, not only for GUI) already includes support for the famous Scintilla editor, an OpenSource editor engine, widely used by many editors. WxWidgets even provides two levels of wrappers – a plain, core wrapper, and a high-level wrapper class system. This fits perfectly into the WxWidgets logic.

But still, that is only plain editor support – not a GUI. Then I found a very suitable, extensible editor and GUI implementation, based on that WxWidgets Scintilla system – as Open Source under the WxWidgets license. Hence, we are allowed to use that source code in a commercial application. That editor is called wxStEdit.

I verified that this source was suitable for our LISP IDE, and put in a lot of extra work to extend it. wxStEdit development finished in around 2008, and it still was compiling and working mostly fine. Nevertheless, in the course of extending that GUI, I found and fixed a lot of defects at all related levels (Scintilla, WxWidgets Scintilla wrapper and wxStEdit).

So it was this set of coincidences that suddenly opened both wings of a big gate!

See here for part 2 of this interview.

This interview is also available in one post on the Bricsys blog.

The big Bricsys interview 11 – free viewer?

This is the final post in a series covering an extensive interview with Bricsys CEO Erik De Keyser and COO Mark Van Den Bergh. If you’ve made it through to the end of this series, congratulations! I hope you found it illuminating.

In this post, R.K. McSwain asks a question about a possible BricsCAD-based DWG viewer, which turns into a brainstorming session!


R.K.: Do you guys have a viewer? A read-only viewer? Is it something you’re looking to do?

Erik: No. BricsCAD classic costs, you know, $400.

Steve: Autodesk is giving one away anyway.

R.K.: They give it away, but you know what it is. It’s almost a 1 GB download, I was thinking as maybe a way to get people interested in BricsCAD? Here’s a viewer, I wonder what else it can do…

Mark: What? (disbelieving) The viewer is almost one gig?

Steve: It’s about 800 MB.

Erik: It’s a matter of choices and priorities.

Steve: It is a marketing opportunity. A viewer that’s easier to use, because you can download and install it within five minutes. And you could be providing them with basically BricsCAD with stuff disabled. You could even have a Buy Me button that un-disables that stuff.

Erik: Yeah, yeah!

Steve: This isn’t an interview now, it’s a product brainstorming session!

Erik/Mark: (laughs)

Mark: Let’s continue! Let’s continue! As you know, you can download our software and evaluate it for 30 days (and you can ask for an extension) but one of the options we’ve discussed is that after the 30 days it turns into a viewer.

Erik: Maybe we’ll do that.

R.K.: That gives them the 30 day window up front, even if they’re just looking for the viewer.

Erik: Yeah.


This is the complete set of links to this interview series:

The big Bricsys interview 10 – platforms

This is one of a series of posts covering an extensive interview with Bricsys CEO Erik De Keyser and COO Mark Van Den Bergh.

In this post, R.K. McSwain asks about BricsCAD running on three different platforms. Erik explains why BricsCAD for Mac (and Linux) is so much more complete than AutoCAD for Mac, which has more holes than a block of Swiss cheese.


R.K.: Do all three platforms (Windows, Linux, Mac) contain the same functionality?

Erik: Yes. Sometimes it’s a bit hard with the Mac to bring it along but so far, so good. The only problem sometimes is in the APIs.

We are using wxWidgets and not the Microsoft classes. This gives us the ability, with the same source code more or less, to serve Mac, Linux and Windows. By far Windows is the most important one. By history, all the applications are on Windows, because AutoCAD was only Windows. What we have as APIs, and the most important ones are BRX and .NET. If you want to port an application to Mac, it means our API must support that as well. BRX is doing that for 90 to 95%; there are a couple of functions that only work on Windows. For most of the applications, they can port their application to Linux or the Mac without any problems.

Steve: And you support the Visual LISP COM functions as well, right?

Mark: Yes, we cover them and they are also available on Mac and Linux.

Steve: You have a solution there that Autodesk doesn’t, which gives us the strange situation that BricsCAD for Mac is more AutoCAD-compatible than AutoCAD for Mac.

R.K.: AutoCAD for Mac leaves a lot of holes.

Erik: That’s because they rewrote the whole interface for Cocoa, and we didn’t. We are using one code base. You can be more Catholic than the Pope, yeah? If you rewrite AutoCAD completely for the Mac, the result is many holes, no applications possible, it doesn’t help anybody. We’re better off being pragmatic and doing it the way we did it.

Still, we must say that applications availability for Mac and Linux is not much. That has to do with 95% of our sales being on Windows. We expect that might change for BIM, because more architects are Mac users, partly because the first version of ArchiCAD was on Mac, Vectorworks is, so it’s really an Architect’s machine. We expect that maybe for BIM, it might change and we might sell more versions on the Mac.

Steve: Autodesk doesn’t have a competitor there, does it?

Erik: No, absolutely not.

Mark: I should mention that all of our keys are cross-platform. So when you buy a key, you can run them all. So every time you on decide to run on Mac and later on you decide to switch it to Windows, we don’t have any problem. You can switch whenever you want, from one to the other, on to Linux if you want.

Erik: Again, choice. It’s up to the users.


This is the complete set of links to this interview series:

The big Bricsys interview 9 – treading on developers

This is one of a series of posts covering an extensive interview with Bricsys CEO Erik De Keyser and COO Mark Van Den Bergh. Erik explains that Bricsys won’t trample over its application partners in Autodesk-like fashion, except…


Steve: Autodesk is known for treading on its third-party developers and replacing their market. Can you tell us about your attitude to doing that?

Erik: We have always said that we are not stepping into any application market. We will not do it.

There’s only one exception, that’s where there is no [other] possibility. There was no sheet metal. There is no viable [third-party] DWG sheet metal product in the market today for sheet metal. Then we do it, of course.

For BIM, there are. There is a German product. We have talked to those guys, but the problem is, for BIM the way we do it, it’s so deep in the core, the direct modeling engine that we have build… there’s no way that we could expect, of all the partners that are working on AEC, that one would have the strength and the force to bring the product where it is today. We have worked with maybe 30, 40 people for three, four years to do that. I don’t know of any application partner that has more than ten employees. And then those ten employees do everything.

Mark: Except for Intergraph, of course!

Erik: Except Intergraph! Except Intergraph! In the AEC space, I mean. When it comes to making an architectural modeler, there was no other possibility but to do it ourselves. Then we do it. But what we do then is provide all the APIs so the rest of the AEC community can profit off it. Otherwise, I think we would have lost the AEC space. If we didn’t do that, with what we have shown you today on BIM, we would lose the AEC space completely. That could not happen.


This is the complete set of links to this interview series:

The big Bricsys interview 8 – boundaries and BIM

This is one of a series of posts covering an extensive interview with Bricsys CEO Erik De Keyser and COO Mark Van Den Bergh.

Erik discusses where Bricsys can go in future and the place BIM has in that.


Cyrena: So what is your vision, ultimately, of what Bricsys will become in tandem with your partners? Do you have limits or boundaries of which markets you will address and which you won’t? Are you going to be bigger than… “somebody else” one day?

Erik: If it comes to the number of customers, challenging AutoCAD is difficult. 12 million registered users. If you count illegal users it might add up to, I don’t know, 20 million, 30 million? I don’t know, nobody knows.

What are the boundaries of where we can go? It’s more or less dictated by the application markets. We have application developers in GIS, we have them in AEC, we have them in mechanical. In Mechanical 3D, AutoCAD was not present. They were present with AutoCAD Mechanical, but that’s a 2D product. If for a moment I leave Inventor out, because it’s another file format, but for DWG, the market for sheet metal and the things that Solidworks and others do, you don’t see third party applications with power participating in that market, with AutoCAD. With all the other markets, there are plenty of other applications: GIS, AEC, it’s endless. We want to bring everyone who wants to work with us, we’re going to feed and help them, and that’s more or less the boundary of where we can go.

For BIM, that’s something we are driving ourselves and it’s a huge market. There’s a lot of attention being paid to Revit [by elements of the press]. We think there are a lot of DWG users that want to move to BIM, but first of all Revit is too expensive, it’s too complicated by far, and it’s another file format. These are hurdles that not everybody wants to jump at the moment. It’s fair to say that we are working to eliminate all those hurdles. An existing DWG user, AutoCAD or BricsCAD already knows 80% of our BIM product. He has to learn 20% extra and he can participate, probably in an easier and more intuitive way than he can ever do with Revit.

We didn’t talk a lot about the differences between Revit and our BIM solution. I think in six months and a year we’re going to spend more time to really explain the differences. BIM is hyped, but there are studies that show that 19% of the people who talk about BIM are actually using it. It’s a couple of hundred thousands, it’s not millions already. There’s a lot of hype around it but the real challenge is to bring five or six million people on DWG in the AEC space into BIM. That’s our goal. If they want to stay on DWG, we are their only chance. For that part only, that’s already a huge start. If you then count all the applications on top of that and around it, the addressable market for us on that is immense.


This is the complete set of links to this interview series:

The big Bricsys interview 7 – the applications ecosystem

This is one of a series of posts covering an extensive interview with Bricsys CEO Erik De Keyser and COO Mark Van Den Bergh.

In this post, Erik discusses the Bricsys efforts to work with and assist third-party developers. He does this without being prompted by a question – it’s obviously very important to him.


Erik: For our future growth it’s very important, the ecosystem of the applications we have now. We have talked a lot about what we are doing and about our own products, but we should maybe have spent more time on the importance of the ecosystem. The worst thing we could do is forget the application market for us.

We will not, and we are not able, to develop another HVAC system or a [inaudible] system. We are limited in our resources and focused too much in our development. We believe that if there are five or ten HVAC packages, one in Germany, one in France, one in the US and one in Australia, all those guys understand their local markets and it’s very difficult to take an HVAC package made in America and sell it in Germany. The last thing we want to do is destroy that diversity of the application market. On the contrary, we’re going to encourage it. Therefore we will continuously provide APIs to the application market and invite and encourage them to become more professional. This support is so important. That’s where we can make a difference with many of our colleagues, and we should bring the application market to the same level of professionalism. That’s where we are investing as well. They can use all our systems for free.

It would be a great and a wonderful world if you as a customer if you come to our website or you go to an application website and finds the same systems and buys something, and communicates… if there’s a problem, it’s our problem. He can tell us, the application partner can tell us, if it’s an application problem we will tell them or the customer will tell them. But that kind of trio between the customer, us and the application market is so important. We need that.

We need those kind of applications working with our system. And they are there! For over ten years they have wonderful applications. The point is, they lacked, for the moment, the technology to grow into IFC and the BIM market. That’s what we are developing for them now. Right now we need the apps, and we’re delivering to them. But it’s a very important thing for us, that ecosystem. And again I think that’s another difference between us and many, er, alternatives (laughs).

Steve: Not saying “the A word” there…

Erik/Mark: (laughs)

Steve: It’s something I’ve noticed for years, actually, that you guys look after the third-party developers whereas Autodesk sees them as a revenue source.

Erik: Absolutely. We are convinced we need them. They have to say they need us as well. That’s a very good symbiosis. And the top of that is Intergraph. For us, it’s an application partner, right? There’s scalability a bit more than before.  If Intergraph takes this step, let us invite every other application developer to do the same.


This is the complete set of links to this interview series:

The big Bricsys interview 6 – lean and focused

This is one of a series of posts covering an extensive interview with Bricsys CEO Erik De Keyser and COO Mark Van Den Bergh. In this post, the dynamic duo explain the mystery of how Bricsys can sell smaller numbers of a more capable product than AutoCAD for a fraction of the cost – and still make money.


Steve: It’s kind of interesting that your product is so much cheaper than AutoCAD, and more capable. They’re making a loss and you’re making increasing profits. How does that work?

Erik: I think it has to do with being lean and being focused. I mean, we’re talking about Autodesk, and we’re talking about AutoCAD and Revit and Inventor, but did you have a look at all the products they have? The managers that have to work on those products… I don’t study the detail of their annual figures, but I think it’s obvious that if you have that ton of products, not all of those products are profitable. Of course, not all of them are losing money, but you can’t call it lean.

What we are doing is… we are forced to be profitable. We force ourselves to be profitable. And then we have to be lean. We have four developers that constantly automate our systems, and that four will be extended again. That pays off big-time. It’s an investment; continuous, continuous, continuous. To invent new things where we can improve to be lean as well.

Mark: Stressing again that Autodesk has one hundred products, we basically have one product. We can see for mechanical, we can see for BIM, basically it’s one product.

Steve: It’s the same core.

Mark: It’s the same core, absolutely. So when we started to develop BIM, we used the same toolset as we used for sheet metal; exactly the same. Of course it’s tweaked to be used in BIM or sheet metal, but in the ground it’s the same.


This is the complete set of links to this interview series:

The big Bricsys interview 5 – perpetual licensing and choice

This is one of a series of posts covering an extensive interview with Bricsys CEO Erik De Keyser and COO Mark Van Den Bergh.

In this post, Erik confirms the Bricsys commitment to perpetual licensing. That’s a statement important enough to preserve, so here’s the recorded audio for posterity.

We also learn what proportion of CAD customers choose perpetual licenses over rental when given fair pricing and the choice. Hint to Autodesk: it’s not 0%.


Steve: Are you committed to the perpetual licensing model?

Erik: Yes, yes. We are committed to choice. If somebody wants another way of licensing our stuff, that’s fine as well. I mean you can hire our stuff, you can pay per month, it’s possible.

Steve: That’s not in all markets, is it?

Erik: We don’t promote it, but it’s possible if somebody contacts us, no problem. It’s choice, and we believe in choice. It’s not up to us to impose how people work with our stuff. But perpetual, it’s fair, I think. Somebody buys software, it’s always been like that, and we have to continue that. And we will continue that. Read my lips! We will continue.

All: (laughs)

Cyrena: Speaking of choice, can you talk about the type and portion of users who go for rental rather than perpetual?

Mark: Of course the vast majority go for perpetual.

Erik: 95% buyers.

Mark: When you see these clients in Russia that have these big oil projects in Siberia for six months or whatever, then it [rental] might make sense. But with the channel… 95, 97, 98% is just perpetual.

But what we see more and more is people are asking about it [rental] more and more, because of course in the Autodesk world there is no other option. So of course people just want to compare apples with apples.

Steve: So they’re just asking for the numbers?

Mark: Yes, for the numbers, “What would it be?” That’s the feeling that we have, ultimately when they make a decision they’re going to go for perpetual.

Erik: Because the price is acceptable as well, I think. It’s not that high a price for a substantial amount of software, so it’s not a problem.

Mark: Our price levels are completely different, of course. It’s affordable.


This is the complete set of links to this interview series:

The big Bricsys interview 4 – thank you, Autodesk

This is one of a series of posts covering an extensive interview with Bricsys CEO Erik De Keyser and COO Mark Van Den Bergh. In this post, we learn that Autodesk’s move to all-rental has helped drive BricsCAD sales higher and continues to do so.


Cyrena: Backing up just a step to sales, were you able to track any impact on your sales numbers with the chronology of Autodesk’s announcements of ending perpetual? Did you see an effect that you could map to that?

Erik/Mark (together): Yes.

Erik: We see that especially with large companies. I hear it from Mark always!

Mark: That’s what I wanted to explain this morning too, although we have an indirect sales channel, we have our resellers at work out there, especially with the large deals, we are involved always. So there’s always one of our guys, a business development manager together with the local sales person in touch with those larger corporations.

In the last few weeks, we have received tons of emails from large corporations; of course it’s hard to disclose them, but… [names a corporation]. It doesn’t mean they will switch right away, but we have meetings where they say that, “Our contract with Autodesk ends in July, August, whatever, that’s the time we will not extend it. We will not renew it, we will not go to subscription, and we are looking for alternatives.” These are really big, big, corporations. So yes, yes, we see an impact.

Erik: When it comes to alternatives, and with all respect to our colleagues [competitors], we are not the only alternative, but I think we are in a good position. If you see what we have to give people a perspective beyond AutoCAD, well…

If we would only be an AutoCAD clone, and AutoCAD stops further development, it would mean the clones stop further development more or less as well. And all of a sudden the market is going to 3D mechanical, 3D BIM, etc., then it’s a problem. I think that’s where we can play an important role.

The DWG market, the DWG community, if they really want to move on slowly, slowly (and everyone makes his own choices about staying on 2D AutoCAD-based, fine as well), but at least there is a growth path. And I see that BricsCAD is the only product that goes in that direction. All the other alternatives more or less stay around what Autodesk is presenting, with a few differences here and there.

But it’s not really mainstream that there is investment in R&D or really a big jump of other stuff than just being compatible with AutoCAD. It makes a difference.


This is the complete set of links to this interview series:

The big Bricsys interview 3 – looking after people

This is one of a series of posts covering an extensive interview with Bricsys CEO Erik De Keyser and COO Mark Van Den Bergh. In this post, I learn about Bricsys’ astonishingly good staff retention record and the reasons behind it.

Autodesk likes to periodically pat itself on the back for being a great employer, but history shows it’s a company that discards about 10% of its workforce every few years to keep the share market happy. I suspect another round is coming up soon, unfortunately. There’s a stark contrast between a company that disposes of its chattels in that way and one with a CEO that says, “…every time somebody leaves the company that’s really, really bad.”

You as a customer may not think that matters to you, but it does. I believe there is a direct correlation between Autodesk losing knowledgeable staff and Autodesk repeating old mistakes and breaking things. If today’s developers don’t know why some things in the software are the way they are, or why most changes should automatically come with an off switch, or why some things shouldn’t be done at all, or even how a feature can be maintained (e.g. Visual LISP), then the product suffers. AutoCAD users have to deal with the consequences of those knowledge holes with every release.

As in so many other areas, Bricsys proves to Autodesk that it doesn’t have to be like that; there is a better way.


Steve: Speaking to your people, they appear to like working here and they stick around. What’s your staff turnover like?

Mark: It’s very low, very low.

Erik: Job-hoppers, you mean? People who leave? I think in the last fifteen years… maybe five, six, something like that?

Steve: Wow.

Mark: I remember the reasons, maybe two or three times here, maybe having to leave to move to another city or another country. There as well, we try to find solutions.

We really have a good team atmosphere and if those people can work, if they’re a developer for example, people can work from remote areas. We have a guy who has been working for us for years who is now working from Turkey. That was the discussion we had, “I have to leave because I’m moving to Turkey now.” No, you don’t have to leave, just work from there.

Erik: I will add that in Novosibirsk (Bricsys Russia) it’s more difficult to keep the people. We are growing very fast there. We started when we took over the LEDAS team with 3D modelling, we started there with six or seven people. We now have thirty. Along the road for the last four or five years, maybe five or six left. In percentage, that’s way more than we have here. We are stopping the bleeding now!

Steve: That’s still fairly low!

Erik: That’s still fairly low but every time somebody leaves the company that’s really, really bad. We are investing a lot in making it comfortable for our people. To give you an idea we have a culture here of every Friday, we go to the pizzeria for lunch here. We have our own floor there in the restaurant every Friday. Sometimes we talk about software but sometimes we talk about politics and sometimes just rubbish and nonsense and a lot of fun.

Mark: Mostly!

Erik: But we give a budget to all our teams. In Novosibirsk they do that as well. So they have a budget and we force, well, encourage them very strongly to do that.

Mark: Same in Singapore, [inaudible], all our teams.

Erik: Every year, with all the families, we go to a chateau near Paris for three to four days. In Novosibirsk they have a budget to go for a trip with their families once a year, if there is a special occasion. That’s investing in your people.

If anyone has a problem, everyone knows that all doors are open, that we will try to find a solution to make you comfortable. We always say to our people here that the last thing we want is if they are stressed. It doesn’t work for developers and for a company like ours. No stress.

I was really sorry with Dieter yesterday [one of the presenters at the press event]. They only told him the day before to give a presentation! He’s not used to doing that. He was really good about it as you all saw, but he was really stressed. We will avoid putting him in that situation ever, ever again. It doesn’t work.

But for the rest, even with deadlines, we change priorities then, but we don’t want people stressed. And that has a very good result. If you see where we are coming from, what we have, in fifteen years, millions and millions of lines of code, of testing code as well, it’s a ton of development that is done, quality that we have developed. So far, so good, without stressing our guys. Why would we change that?

Mark: Also, the transparency we show to the outside world with the bug reports and so on, that’s also done internally. Everything here is open. On a quarterly basis we get everyone together, we show the numbers, it’s no secret at all internally. So everyone knows how the company is going, how things are moving, new projects that we are doing, and that feels nice with people.


This is the complete set of links to this interview series:

The big Bricsys interview 2 – making money

This is one of a series of posts covering an extensive interview with Bricsys CEO Erik De Keyser and COO Mark Van Den Bergh. In this post, I ask about Bricsys’ profitability and growth.


Steve: Do you publish your numbers?

Erik: No we don’t. We are a private company.

Steve: Can you give us an indication of what’s happening with your sales at the moment?

Erik: Last year we grew in revenue 25%. First quarter this year was up 27% over the same quarter last year. If you compare the sales in total of 2016 compared with 2015, it was 25% in growth. It means that the growth is going faster and faster and faster. That’s what we expect normally as well.

This is without any sales to Intergraph. We expect that the Intergraph deal will have an impact on our growth for sure. Mark as COO is responsible for sales and managing of that network. [To Mark] And I see you’re very occupied!

Mark: That whole Intergraph network is coming to us. It’s huge.

Erik: It’s more than doubling what we have, on sales partners.

Mark: Just to add to the numbers, we are very profitable: 24, 25%. We have very good profitability which is also significant. We’re not burning money.

Erik: Year after year.

Steve: So you’re making money every year and that’s increasing every year?

Erik: Yeah, yeah, absolutely. The percentage is always around 24-25% but as we’re increasing revenue it becomes exponential.

Mark: We started in 2002 and I think we have always been profitable.

Erik: I think the first two years are what we call a black zero. We have started with an investor, but we have always kept a majority within the company. I won’t give the total shareholders but you must know that most of the people here, if somebody works here two years they get stock options and becomes a shareholder. The goal is we always keep the majority with the employees and the management.

We have a good partner investor. He’s satisfied with the growth, of course. There’s no big deal.


This is the complete set of links to this interview series:

The big Bricsys interview 1 – why invite the press?

This is the first in a series of posts covering an extensive interview with Bricsys CEO Erik De Keyser and COO Mark Van Den Bergh.


On April 26 and 27, I attended Bricsys Insights, a press event in Ghent, Belgium. Other attendees included Cyrena Respini-Irwin (Cadalyst editor in chief), R.K. McSwain (CAD Panacea), Ralph Grabowski (upFront.eZine), Randall Newton (GraphicSpeak), Roopinder Tara (Engineering.com), Martyn Day (DEVELOP3D), Jeff Rowe (AEC Café), Anthony Frausto-Robledo (Architosh) and Paul Wilkinson (pwcom).

Although Bricsys has invited some of these people (including myself) to previous events, this was the first gathering of such a significant number of illustrious industry press, bloggers and observers. So when myself, Cyrena Respini-Irwin and R.K. McSwain had the opportunity to interview Bricsys CEO Erik De Keyser and COO Mark Van Den Bergh, the first thing that we asked was this:

Cyrena (clarifying earlier question): What was the change that led you to bring in more people for the press event?

Steve: Why are we here?

Erik/Mark: (Laughs)

Cyrena: That’s a big question!

Erik: If you look to the history of what we have done and it goes together with what we said in the beginning, that we chose to grow by organic growth, and for a long time we didn’t do any marketing, and especially for the American market, because if you do it too early… And really, if we had done that massively, five years ago we would have been categorized as just another clone of AutoCAD. Once you have that, it’s very difficult to leave that, and that’s exactly what we wanted to avoid.

And so we waited until we had really substantially different product technologies that add a lot of stuff to… if you compare it to AutoCAD, I think that’s the moment where we are now. And we decided from that moment on, probably it made sense that we tell it a little bit more to the world. And of course what do you do then? You invite influencers in the market, which is the journalists. That’s the reason we invited you all.

We’re going to repeat this more and more.

Mark: Just to add to that, just sitting here for just two days with you guys also helps us to really talk about everything. If you go to a conference (you [Steve] were also in Munich), the time is limited and so we don’t show the systems behind, the testing system, we cannot show everything.

The idea here was, OK, these are the things we’re doing, what you see of course but also what is behind, the people behind the DNA of the company. We thought that’s a good idea to do that in depth with an audience like you guys.

Erik: That’s an important element as well that we wanted to show: the DNA of the company. It’s a bit different from others. That’s who we are and it’s important to know.

Steve: You’re about 90% developers, programmers. Do you think that’s going to change as you put more effort into marketing?

Erik: I think that the awesome part of the company that has to be improved, and on the marketing side we’re going to need to improve… to give you a rough idea we think that over the next two, four years we’re probably going to grow to maybe 200-250 people.

Steve: So where are you now?

Erik: We’re at 130-140. We just hired six new developers here in the office last week so we have to recount where we are in total. Dmitri is hiring in Novosibirsk (Bricsys Russia) as well.

So for sure we are starting what I would call a second life now. There’s been a lot of development, but still the majority of people in our company will be developers. I think we’re always going to stay around 80% developers. But there’s a part of the business, and especially in the marketing, that we will have to improve.

What we have encountered now, with the new modelling techniques we have introduced for BIM, we have to teach all the resellers. We have to produce material to teach the people how to work with it. These are not developers we’re going to need. We’re going to need seasoned architects that have experience for the last six to ten years with BIM already, maybe with competitive products. But that understand the concept, have experience with it, those guys we are now attracting and we’re going to need. Those are not developers, but in that sphere we have to extend and we have to grow. And that’s what we’re doing. We are hiring.

The focus will always be… what we’re good at, is basic research and development. That’s really what we’re doing, that’s the focus, and the results are the products we make.

We have a good partnership network I think, we’re going to continue to feed that, so I expect that balance between developers and non-developers to remain always above or about 80%.

If you have a look at the system, how we sell and support our products, we are scalable, to maintain that balance of a high level of developers. There’s no need for us to change that model. But in certain aspects we’re going to have to extend.

BOA (Bricsys Online Administration) is helping us tremendously to be scalable. If we were to double our revenue we wouldn’t need that many more people to manage that. We are constantly investing in automating all the systems we have, and it pays off big-time.

Cyrena: So that very heavy R&D investment you’ve sustained thus far will be scaled back a little in order to invest in other areas such as marketing?

Erik: Yeah, but it doesn’t mean we will scale back from development. We will grow in development as well, but the balance will be a little bit different; the proportion is different. We will grow tremendously, even more still in R&D when it comes to number of developers than in any other area over any other field or kind of employee that we have.


This is the complete set of links to this interview series:


Disclosure: Bricsys covered travel and accommodation expenses and provided some meals. Oh, and beer. Mustn’t forget the Belgian beer.

Why Autodesk’s Cloud push will fail, part 1 – failure defined

It’s probably unwise to make predictions about what is going to happen in technology. If so, I’m about to be unwise. So be it; if I’m wrong you can taunt me about this post in a few years. Here’s my prediction:

Autodesk’s attempt to move CAD users onto the Cloud is doomed to failure.

This is the first of a series of posts that will examine what I mean by that and the reasons behind it. The first thing that’s important to lay out is what I mean by failure. What I mean is that reality will not match Autodesk’s expectation of what will happen with its products moving to the Cloud. What expectation is that?

I’d say two to three years from now, every one of our products will be used online. The only way to use them will be online.

Carl Bass, April 2012, TechCrunch interview

So let’s say you’re an AutoCAD user. A successful Cloud push by Autodesk will mean that you and very large numbers of people just like you be using AutoCAD or an equivalent Autodesk product on the Cloud by 2014 or 2015. If that doesn’t happen for you and all the other users of Autodesk products, then that’s failure by definition. Autodesk will have failed to meet its own publicly stated goal, and that’s exactly what I’m expecting to happen. While it might look to a Cloudophile that I’m swimming against the tide of inevitability, I’m not alone here. Let’s examine what this blog’s poll respondents think about the chances of them using CAD in the Cloud:

Cloud chances poll results

(Snapshot taken a couple of weeks ago; more votes but no percentage change since then).

The poll has been running for nearly a year and attracted a sizeable number of votes. More than half of the respondents are convinced that there is absolutely no chance – zero – that they will be using a public Cloud-based application as their primary CAD software in the next five years (by 2016 or 2017, two years beyond Carl Bass’s stated target of universal Autodesk online operation). There is a group of respondents equally convinced that they definitely will be using such an application. However, with only 10% of votes, this group is outnumbered 5:1 among those who feel certain about what is going to happen. If we split all the votes into those who think there’s a better than even chance of a Cloudy future (21%) and those who think there’s a less than even chance of that happening (79%), you can see that the doubters again have a very clear majority, nearly 4:1.

While the usual caveats about polls apply, it would be a very foolish Autodesk executive who believed this poll to be some kind of an aberration that does not reflect the broad views of the CAD community. I am convinced there is a dichotomy between the expectations of Autodesk and those of its customers, and that spells trouble. Autodesk is either going to succeed in pushing its customers into a future they are not expecting, or it is going to fail and be forced to revise its expectations. I predict that the latter will happen, and I will explain my reasoning in future posts.

Autodesk Cloud interview May 2010 – Part 3

Steve: Another issue I have with Cloud-based environments is the lack of customisation. One of the things that makes AutoCAD so efficient for people is that they can get it exactly the way they want it. With a browser-based environment, we’re pretty much stuck with what you guys decide to give us. Can you see any solution to that in the longer term?

Tal: From a pure technical point of view, there’s not a lot of difference in terms of the way you can customise an application on the desktop versus customising it on the web. I think AutoCAD, having a very mature application has a lot of functionality which has built up over the years to provide customisation capabilities to the nth degree. So I think it has less to do with the platform of your choice and more to do with the maturity of the solution and how much customisation the people who designed the product wanted to put in there.

Steve: I guess you have the issue of where does that customisation live? Does it live on the PC or on the Cloud?

Tal: A good thing about moving it to the Cloud would be that if you moved to another computer, the app would still be customised to your needs.

Guri: I was going to say the same. It’s actually an advantage to store it in the Cloud because regardless of where you are accessing it from, you can still have your customisation go with you wherever you go.

To address your previous question about customisation, I think it’s a pretty relevant request to be able customise this application. But at the same time, remember who is the target audience for that. If you are an AutoCAD user, we assume you have AutoCAD with all the advantages that come along, but if you are not an AutoCAD user, you are somebody downstream that just wants to look at a document and collaborate on it, then you’re probably less sophisticated from that perspective and you will probably require have less customisation needs. Nevertheless, I do believe that the request to add customisation to this product is completely relevant.

Steve: As well as user customisation, there are third party developers wanting to be able to add their own value to the product. Do you see that being available in the longer term, that you will provide an API for third party developers, whether they are commercial developers or in-house developers for large organisations to do their thing with it?

Guri: We are considering it.

Steve: That’s tricky, isn’t it? It’s more difficult than if you have a desktop environment. How do people provide their add-ons to customers, or to their internal users?

Tal: I’m not sure. If you look at the major web platforms of today, look at the social ones such as Facebook, third party integration, customisation of that, that can be taken to the nth degree. I think a lot of the time, for organisations to deploy customisation on the web where you don’t even have to go to the PC and configure a customisation for a user, for that to be available centrally on-line, and to know that when you move to a different computer for example, all those extensions and all that configuration, all that good stuff, goes along with you, it’s actually an advantage. You can do a lot of the things around customisation and configuration of the product on line, that would be harder to do sometimes on a desktop.

Steve: There are a limited number of DWG object types that are currently supported. I assume you’ll be adding to them over time. What about 3D objects?

Tal: Butterfly supports all AutoCAD 2D objects that are supported by horizontal or vanilla AutoCAD at this time, so you can view that, and you can have drawings from vertical versions with proxy graphics that will be displayed. So for 2D I think you have probably full and complete support for 2D data types. Before we move on to 3D, we want to make sure we nail the experience just right. You say you have a list of things you’d like to see us improve in 2D, and we’d like to be able to go and work on as many of our users’ lists for 2D before we head on over to 3D, because at the end of the day it’s all about nailing the experience just right rather than just adding a lot of the functionality to the product which is not fully mature and fully complete, and as a result of that, not add value to our customers.

Steve: I guess people may be concerned with losing data because you’re not supporting the full set of object types. Is round-tripping fully supported?

Tal: I can rest your mind at ease on that point. When you upload an AutoCAD drawing to Butterfly, that file is not converted, and resides in fully original form on the server. And when you make changes, for example on line, those changes are then injected into the drawing using authentic genuine DWG technology, so when you download that file back to your computer, you maintain full integrity of it. There’s no conversion process, no data loss, and you get a very strong experience on that front. So users should not have any concerns at all concerning that.

Steve: So round-tripping works with everything; is that true? For example, you may have a Civil 3D DWG that you modify using Butterfly. Does the drawing return fully intact, including the Civil 3D objects with all their intelligence?

Tal: That Civil 3D object is intact in the same way that if you take that Civil 3D drawing, and open it in AutoCAD LT and manipulate geometry. All your Civil 3D objects remain intact. It’s the exact same experience. That data is not modified, it’s not converted, it’s not lost. While Butterfly may not be able to edit the contents of those Civil 3D objects in the same way that AutoCAD LT or AutoCAD vanilla does not enable you to, it still maintains full data integrity and there is no data loss.

This post concludes this interview series. Links to part 1 and part 2.

Autodesk Cloud interview May 2010 – Part 2

Steve: Autodesk is currently giving away these Cloud-based services, Butterfly for example. Presumably you’re not going to keep doing that for ever. Are you going to start charging for these services eventually?

Guri: Again, you’re pushing us to talk about future. Currently, for as long as this is in a Labs environment, we’re encouraging users to use it and we’re giving it free in the Labs environment and we’re not putting any limits on it during the Labs experiment. Once we make it a commercial product we may change that.

Steve: I put a poll on my blog asking readers what they thought about CAD on the Cloud, and most of them are either concerned or frightened. Solidworks users are in revolt about what they see as being forced onto the Cloud. Why do you think there is this fear or apprehension of CAD on the Cloud?

Guri: I’m not sure. I’m curious myself about this type of reaction. Maybe it’s fear of the unknown, it’s a new environment, maybe there is some fear about security of documents while they are in the Cloud, it’s just “it’s a new thing”. We believe the approaches we are taking in providing a complementary product to the desktop environment which takes advantage of the latest and greatest web technology and enables those advantages to the user actually will make them feel more at ease. We’re not changing their normal CAD tools, we’re adding to them by enhancing them to take advantage of the capability of infinite storage and infinite CPU that the Cloud brings to them. So in a way, it’s a mixed environment. It’s probably easier to think about moving from desktop only to a mix of desktop and Cloud rather than a step-function where you move entirely to the Cloud.

Tal: Yeah, and when moving to a new platform, you probably know, even when moving to PCs say 10 or 15 years ago, there was a lot of apprehension and whenever you move to a new platform (and rightly so), you’re going to see a lot of concerns being raised by users and it’s our responsibility to provide our users with a very gradual and easy migration path which enables them to pick which components, which things, which processes they would like to do on the desktop and which make more sense to be able to do on the web.

Guri: Steve, you’ve been around CAD for many, many years. You know that CAD users usually worry about a few things. They worry about their documents and drawings. They have a lot of investment in archives of documents and drawings, they want to know that whatever changes happen in the future in the world, will enable them to keep using those drawings as usual. The other thing they worry about is their own training and experience, the way they work every day. They have a lot of habits and practices that they develop over the years and they want to know that they don’t have to retrain themselves or any other new users into new ways of doing things. And what we’re proposing is addressing both. You can use your drawings, this is still DWG, these are still AutoCAD documents, you don’t have to change, every drawing that you have that is created now or 10 years ago is still going to be useful.

So that’s one comment and the other is you can still use AutoCAD; that’s your tool of choice and whatever you do in the Cloud we purposely keep very simple so learning it and training it is really a very, very simple task.

Steve: I think you raised a valid point there about people being afraid of “what’s going to happen to my drawings”; people are concerned that if they move completely to the Cloud then they’re handing over control; they no longer have control of their documents. Do you think that’s a valid concern?

Guri: Well, I think that’s a concern, and people who have it will probably have it for a long time. What we want to do is let them choose how to deal with that. So we are not forcing anything here; we’re letting them keep their drawings on the desktop if they want, we’re letting them upload to the Cloud if they want to take advantage of it, so it’s entirely up to the user what to do. What we’re trying to do is show them that if they want to move to the Cloud, the advantages are the same advantages as photography sites such as Picasa. If you upload your family photos to the Cloud, somebody has done the backup for you; somebody has put security on it that is probably even better than you can do yourself, you can share it easily with others, provide access to your family without sending attachments and stuff like that. So there is a lot of advantages. We’re telling users it’s completely up to you; there are advantages that come along with moving stuff to the Cloud, if you’re not confident with that, that’s perfectly fine, stay on the desktop. So we’re letting the user do it at their own pace.

Steve: Can I share some of my experiences with using Butterfly? Perhaps I was using it wrong; I was trying to draw with it! As you’ve indicated, that’s maybe not what it’s really there for. I found that it wouldn’t open some drawings that I tried to upload. The display was a bit fuzzy, particularly on text, particularly when it was selected. A big issue I have with it is that I have two great big screens here in front of me and because Butterfly is confined to a browser window, it’s only using one rectangle. With AutoCAD, I can grab various bits and pieces of the interface and drag them over to the second screen, so I find Butterfly rather limiting. There also seems to be a lot of wasted space in the Butterfly environment. I can get AutoCAD to use about 91% of the screen space for drawing area; with Butterfly it was about 53%. So you’re working in a tiny little window. People pay lots of money for these big screens, and because you’re working within a browser, and because within that there’s a lot of wasted space, a lot of that investment is wasted. I’ll stop there before I confuse you all, but I have a great big list here of stuff that I found difficult to live with.

Tal: I’d love to have that list. We get a lot of requests from users, and a lot of different things bother different people. You know, we get a lot of requests that are the complete opposite, like I have a laptop with a small screen so I want to be able to optimise, I use Butterfly on the go, I need to have Butterfly optimised for that kind of resolution. But if you have a list of things we’d actually love to see it, and a lot of the times when you’re connected to a product designer on our team and have you talk to him and really go through the things that bother you, because at the end of the day it’s really our job to be able to do a good job and provide the tools which a user loves and delights users, and be able to focus on the things that are important to the majority of users and really do a good job of nailing those experiences. So if you have a list we’d love to have it and engage with you on it and see what makes sense for us to put in there and what we feel is not the highest priority for us feature-wise right now.

Steve: I’m sure you’re working on printing/plotting, because it’s pretty terrible at the moment. I’m sure I don’t need to tell you that’s a priority.

Tal: Basically it does not plot right now. It enables you to print your screen, but not plot. I wouldn’t say it’s bad plotting, it does not plot right now. If you want a quick printout of whatever you have on screen, it will do the job. Plotting is one feature that is definitely very interesting to us, it’s important to a lot of users, and we’re definitely looking into it, and providing hopefully in the future a better experience revolving around that.

Steve: And the limitation of selecting more than 30 objects; is that going to go away at some stage?

Tal: I believe you’re going to be seeing a lot of improvements in that area relatively shortly.

Links to part 1 and part 3.

Autodesk Cloud interview May 2010 – Part 1

On 26 May 2010, I had the opportunity to ask Autodesk some questions about the Cloud in general and what was then Project Butterfly (now AutoCAD WS) in particular. The Autodesk people were:

  • Guri Stark,Vice President, AutoCAD & Platform Products
  • Tal Weiss, R&D Center Manager (Israel)
  • Noah Cole, Corporate Media Relations

The interview was conducted by phone conference with no prior notice of the questions. Here is the first part of the interview, which I will be posting in three sections.

Steve: Guri, are you responsible for all of Autodesk’s Cloud-based offerings?

Guri: Tal and I are responsible for Butterfly, that’s the only Cloud-based offering that we are responsible for.

Noah: Steve, you can put the cloud-based offerings into three categories, those that are related to current products and therefore come out of the same organisations and divisions that those products come out of. So Butterfly which is related to AutoCAD so it’s coming out of the AutoCAD group. Similarly what you’d see happening with manufacturing and those projects. You also have the more emerging Cloud solutions like Dragonfly was (that’s now Homestyler) that’s coming out of Labs. So you see projects coming out of either the divisions if it’s related to product or the Labs group if it’s more forward-looking.

Steve: Can you give me a one-sentence summary of each of the Cloud-based offerings and what market it’s intended to fill?

Guri: Butterfly is one we’ll talk about in more detail in a minute. One we just launched as a product is Autodesk Homestyler (previously Project Dragonfly). It’s a SaaS-based offering done completely in a browser, targeting the home improvement market. It’s free to the end user so users who want to redecorate or remodel their kitchen or their living room can access this product, do a layout, place in it different types of furniture from libraries, and see how physical spaces fit together in this 2D and 3D type of product which is a completely SaaS-based offering.

The end user for this is not traditionally an engineer or CAD user at all, it’s more like the person at home; a typical user would be a 35-year-old lady who is interested in home decoration. The libraries in the product are either generic libraries or branded vendor-provided libraries from a variety of vendors in this space. That’s another type of product using SaaS technology that enabled us to get into a market that we’re currently not in.

There are other projects going on under the umbrella of taking existing products and trying to run them in a Cloud environment, and measuring the performance that they give us. All of them are experimental; some of them are on Labs already with some limitations of distance. So if you are in the California area you can try and use, mostly for trial and evaluation, some of our products such as AutoCAD or Inventor even, in this type of environment. You don’t need to install anything because the application runs in the Cloud; you have full access to the full application for a trial perspective.So there are different approaches to the Cloud. One approach is starting from scratch, developing something like Butterfly or Homestyler from scratch in the cloud to try and target a new market possibly. Another attempt is to take an existing application and try and run them centrally in the Cloud and see whatever performance it gets. Currently our intent is to use it for product evaluation.

Steve: The existing products running in the Cloud in the geographically restricted trial, is it just AutoCAD and Inventor?

Noah: AutoCAD, Inventor and Maya are the only ones currently running. There are also two recent technology previews happening in Manufacturing for Centaur and Cumulus which are different, but that involves Inventor and Moldflow.

Steve: With my experience with Project Butterfly, I agree that as a collaboration and review and viewing/markup tool it’s excellent, but it seems to me that it’s also being promoted as a drafting tool; that people will actually draw with it. It doesn’t seem so strong to me, for that. What is Project Butterfly now, and what is it going to end up being?

Guri: Steve, we’re not promoting this as a drafting tool, we say that the real authoring tool to create drawings is AutoCAD on the desktop. This enables you to upload a drawing that was created using AutoCAD to the Cloud, and in addition to review it and annotate it and share it; you can also make changes to it, to edit it. So what we’re providing in Butterfly is editing tools, not really drawing creation tools. I can tell you we have a free product called Autodesk Design Review, this product has only viewing and annotation capabilities. What a lot of users there are asking for is some basic editing tools where they want to make some local changes, and that’s what we are providing. The editing tools are intended for users that are not necessarily AutoCAD users, we keep them simple for that purpose.

Steve: So it’s not intended to be a drafting tool and you never intend it to actually become one in the end; is that correct?

Guri: I’d rather not comment on future direction. I can tell you right now that the positioning of the product is as a web accompaniment to AutoCAD, in a way similar to Microsoft’s Office Online in the most recent Office application is doing, in which an author on the desktop using Microsoft Word can upload it to the Cloud, view it, share it, edit it. So we are enabling editing of documents in the Cloud.

Tal: Just to add to that, we have different platforms, the desktop and the web. Each platform does certain things very well. So authoring, for example, on the desktop is something that is great, it’s mature and you can do a lot of amazing stuff there. What we want to focus on in building a tool for the web is leverage what the web can do for our users. Stuff like being able to access from anywhere, design timeline, collaboration, sharing; really hitting all those sweet spots instead of trying to imitate what’s already up there on the desktop and is working well. That’s why you see the different focus on the different platforms trying to do that thing it can do best.

Links to part 2 and part 3.

Executive summary of Deelip’s AutoCAD for Mac interview

Deelip has just published an extensive interview with several Autodesk people about AutoCAD for the Mac. Deelip had a good set of questions and I suggest you read the whole thing, but if it’s all too tl;dr for you, then here is the lazy reader’s version of what Autodesk had to say:

  • The AutoCAD code was split up into 3 sections: the core CAD engine (platform-independent), the Windows-specific (MFC) parts and the Mac-specific (Cocoa) ones.
  • AutoCAD for Mac is incomplete. Choosing which features to leave out was done with the aid of CIP (oh, dear) and Beta feedback. (Hang on a minute, I thought CIP said most people were using the Ribbon…)
  • No comment on when or if AutoCAD for Mac functionality will catch up with its Windows counterpart.
  • No comment on the stability or performance of the Mac version.
  • Buying Visual Tau wasn’t a complete waste of money.
  • If Mac users want Windows-level functionality, they should use Bootcamp.
  • The Mac version is intended to expand the AutoCAD market to those Mac users who are frustrated by Bootcamp or who find it too hard.
  • Some mind-blowing spin was attempted in a valiant but vain attempt to explain away the Ribbon = productivity, Mac <> Ribbon marketing problem. You will really have to read it for yourself, as I can’t do it justice here. But “just because 2+2=4 doesn’t mean 4-2=2” will give you some idea of what to expect.
  • The Mac version is the same price as the Windows version, despite being incomplete, because Mac users won’t know or care about the missing stuff.
  • There are no plans for a Linux port, or any other platforms.
  • Autodesk will wait and see how AutoCAD for Mac does before porting any of the vertical products. (Very sensible).
  • Autodesk closed off the AutoCAD for Mac Beta program on announcement day because it wouldn’t have been able to cope with the mass of feedback from new users.
  • Autodesk will not allow dual use (Windows + Mac) licenses. If you want to have both products available to you, you will need to buy the software twice.
  • You can cross-grade AutoCAD from Windows to Mac for a nominal fee, or for nothing extra if you upgrade at the same time. (Although at 50% of the retail price of a whole new license, such an upgrade hardly represents a bargain).
  • Autodesk really doesn’t have any idea what is going to happen in the Mac CAD marketplace. (Refreshingly honest).
  • Little comment on why AutoCAD WS is called AutoCAD, other than iOs users not expecting their apps to do much anyway, plus it’s “part of the AutoCAD family.”
  • WS doesn’t stand for anything.

Not answering the question

Here in Australia, we’re in election mode, so I have even more reasons to avoid watching TV. On those occasions when I do watch it, I am often annoyed by what I see. This is not a novel observation, but one of the things that annoys me about many politicians is their habit of sidestepping questions when interviewed. It also annoys me when interviewers fail to follow up these non-answers and let them slide. Depending on the circumstances (e.g. limited timeframe, more important questions to ask, etc.), there may be valid reasons for journalists failing to chase after legitimate answers in a live interview situation. But I would much prefer to see a non-answering interviewee tied down and not allowed to wriggle free. Squirm, baby, squirm!

For on-line journalists and bloggers, there are few excuses for letting non-answers go unchallenged. There is virtually unlimited time, opportunity and column space in which things can be chased down. With that in mind, this post is an analysis of the response Callan Carpenter gave to the four specific questions I raised, and three points of dispute raised by others and passed on by me for a response. I have marked each response (or non-response) out of 10.

Questions

Please clarify in as much detail as possible exactly how you arrive at your figures.

Answer: none given. 0/10

A percentage is derived by dividing one number by another; what exactly are you dividing by what to come up with 1.5%?

Answer: none given. 0/10

Please explain why your statements appear to contradict Autodesk’s own published figures.

Answer: Callan explained that he did not intend to suggest what it seemed he was implying, but didn’t clearly explain exactly what it was that he actually was suggesting. 5/10

How large is Autodesk’s total installed base?

Answer: none given. 0/10

Points of dispute

Because Autodesk made Subscription cheaper than upgrading, it is no surprise that upgrading became less popular. This doesn’t indicate that customers prefer doing business in that way, merely that Autodesk made it the cheapest alternative.

Response: this statement was pretty much repeated back as if it were an answer: “the majority of customers buying over the past few years have opted to leverage the Subscription program…the most cost effective way possible”. 1/10

If the idea of Subscription is such an attractive proposition, why do you need to sweeten the deal with tools that you don’t allow upgraders to have?

Response: this statement was also pretty much repeated back as if it were an answer: “…there is much more to the program than cost savings…just some of the value-added aspects of the program”. 1/10

Your assertion that the 12-month cycle is driven by the product teams is incorrect. It was chosen for business reasons and the product cycle was forced to fit the Subscription model.

Response: none given. 0/10

Overall “answering the question” mark: 7/70 or 10%.

Callan, thanks for taking some time out of your busy schedule to provide some kind of a response. If you want to have another bite at the cherry and actually answer what you’ve been asked this time, you are welcome to do so. You know where to find me.

Readers, am I being too harsh here?

Autodesk’s Callan Carpenter responds to Subscription follow-up

You may remember a month ago I raised the question What proportion of Autodesk customers really are on Subscription? Shortly after that, I sent Autodesk Subscription VP Callan Carpenter these questions following up on the interview:

I have a request for follow-up information arising from this interview. I hope you can find the time to provide some answers.

Preamble: Several people have called into doubt your assertion that the simplified upgrade policy affects only a tiny minority of your customers (you seemed to imply a figure of around 3% non-Subscription customers, with 1.5% who upgrade within a year or two). My own calculations based on Autodesk’s latest published financial results indicate that of upgrades represent 21% of the combined income from Subscription and upgrades, which is 7 times greater than the impression you gave in your answer. Please see this post for more discussion.

Questions:

  • Please clarify in as much detail as possible exactly how you arrive at your figures.
  • A percentage is derived by dividing one number by another; what exactly are you dividing by what to come up with 1.5%?
  • Please explain why your statements appear to contradict Autodesk’s own published figures.
  • How large is Autodesk’s total installed base?

Other points of dispute have been raised by various commenters, which I have paraphrased here. I invite your response.

  • Because Autodesk made Subscription cheaper than upgrading, it is no surprise that upgrading became less popular. This doesn’t indicate that customers prefer doing business in that way, merely that Autodesk made it the cheapest alternative.
  • If the idea of Subscription is such an attractive proposition, why do you need to sweeten the deal with tools that you don’t allow upgraders to have?
  • Your assertion that the 12-month cycle is driven by the product teams is incorrect. It was chosen for business reasons and the product cycle was forced to fit the Subscription model.

After a few follow-ups, I received a response yesterday. I reproduce that response here verbatim and without comment:

My sincere apologies for the delay. I have been travelling quite extensively, and this response has been sitting in my drafts email folder, and I just kept getting sidetracked with customer matters.
 
Nonetheless, I appreciate the opportunity to respond to some of the feedback you received after our discussion last month. During that first interview we discussed, among other things, the rationale behind the Simplified Upgrade Pricing program. I argued that SUP impacts only a small subset of our customers, and quoted figures to support the case. It appears those figures have been challenged by a few of your readers who feel their experience is different. Is it possible that both points of view are right? I believe it is.
 
By my prior statements I do not mean to suggest that the vast majority of all customers are on Subscription. Autodesk has a very large base of customers that has grown over the past 28 years. The subscription program as it exists today is only about 8 years old, so we had 20 years to develop a large base of customers, many of whom are not on Subscription. (Yes, there were forerunner programs like VIP, but they were structured quite differently and never generated an appreciable amount of business.) This is important because the SUP program only really impacts those customers upgrading from one and two versions back, which is a very small percentage of the already small upgrade revenue. Subscribers and customers upgrading from four or more versions back see no change to their pricing, and customers upgrading from 3 versions back see either no change or a very nominal one (up or down) depending on their specific product or country.
 
Most of the non-subscribing customer base does not purchase upgrades one or two versions back. In other words, most of these customers either haven’t bought anything from us in a long time, or when they do, they fall into the 98.5% of the revenue that includes upgrades from three or more versions back.
 
History is one thing, but the current trend line is another. For 8 years the Subscription program has coexisted with the Upgrade program. During that time our customers have been free to chose either strategy for keeping their technology current. Based on the results, their choice was clear: the majority of customers buying over the past few years have opted to leverage the Subscription program to stay on the latest technology in the most cost effective way possible. Only a few have elected to stay current through one and two version upgrades. The rest upgraded from older versions – three or more back. Of course Autodesk still offers all those choices going forward, albeit with a slimmed down price sheet.
 
There is one last point that I would like to make: While we believe Subscription is the most cost effective way to stay on the latest design technology, there is much more to the program than cost savings. Direct access to Autodesk product support specialists, Advantage Pack© bonus features, and free software for home use are just some of the value-added aspects of the program. In short, we are committed to an ongoing, continuous reevaluation of both the cost and benefit components of the Subscription value equation in order to make it an attractive option for as many customers as possible.
 
Thanks, again Steve for allowing me the time to speak with your readers.

What proportion of Autodesk customers really are on Subscription?

In my recent interview of Autodesk Subscription VP Callan Carpenter, he made these statements:

…there is a very small fraction of our revenue that comes from upgrades at this point in time.

We’re down to very low single digits of customers who upgrade, and of those only half of those upgrade 1 or 2 years back. So we’re talking about approximately 1.5% of our revenue that comes from customers upgrading 1 and 2 versions back.

…[customers who upgrade] 1 or 2 [releases] back, a very small percentage of our customer base, less than 2% of our customer base that was buying those upgrades.

Others are calling those numbers into doubt. Deelip Menezes (SYCODE, Print 3D) estimated the numbers of AutoCAD users not on Subscription at 66% (or 43%, depending on which bit of the post you read), by counting the AutoCAD releases used by his customers and making assumptions about their Subscription status from that. That’s an extremely suspect methodology, as I pointed out:

Your numbers don’t really tell us anything about Subscription v. upgrade proportions. All they tell us is that large numbers of people wait a while before installing a new release. We all knew that, surely.

However, Deelip’s post did prompt me to point out this:

…there is a fair point to be made about people on earlier releases who have hopped off the upgrade train altogether, or at least for a significant number of years. How would they be counted in Callan’s figures? They wouldn’t exist at all, as far as his income percentages are concerned.

Owen Wengerd (ManuSoft, CADLock) asked a random sample of his customers and came up with 82% of them as non-Subscription customers. He also noted that he could come up with a 3% non-Subscription figure if he cooked the books by selectively choosing a convenient time slice. Owen doesn’t state the numbers in his sample, or indicate (or know) how many of the non-Subscribers are also non-upgraders.

I’ve added my own poll (see right) just to add to the mix.

Nothing we can hang a conclusion on yet, then. But Ralph Grabowski (WorldCAD Access, upFront.eZine) uses Autodesk’s own figures to point out that upgrade revenue has increased 18% and Subscription revenue only 7% in the last year. I’m not qualified to perform an analysis of the 2011 Q1 fiscal results, but I can find the figures listed as Maintenance revenue ($195 M) and Upgrade revenue ($51 M). That looks to me like about 21% of the Subscription/upgrade income is coming from upgrades.

Also, according to the published figures, Autodesk has 2,383,000 customers on Subscription. If that represents about 97% of customers, does that really mean Autodesk has only about 2.5 M customers? If I’m looking at these figures in the wrong way, feel free to put me right.

So, what’s the truth? What proportion of Autodesk customers really are on Subscription? 3%? 21%? 43%? 66%? 82%? I’m going to ask Callan a follow-up question about this and will report back on what he has to say. In the spirit of this post, I’ll be asking him for a lot more detail. Watch this space.