Slashdot Mirror


Software Fashion

fedor writes "Software fashions come and go, but they always claim a few victims on the way. Where there's fashion, you'll find that rather weak willed person who is the Stupid Fashion Victim (or the SFV for short). This great article from Software Reality is all about fashion in software. Do you all remember WAP? In a couple of years some of the current 'technologies' will be gone too. The article mentions VB.NET, struts and XP as current fashion..."

37 of 477 comments (clear)

  1. LOL, Struts is right on target. by Anonymous Coward · · Score: 3, Insightful

    It's good for a lot of situations, but it's the most overused framework I've ever seen.

    Rick

    1. Re:LOL, Struts is right on target. by Mr.+Slippery · · Score: 4, Insightful
      Using modular design leads to more complex code, its a fact of life.

      If modularization begets complexity, you ain't doin' it right.

      Modularization should simplify, in that each module encapsulates and abstracts a well-definined function. It may add volume to your code, but should render it easier to work with.

      --
      Tom Swiss | the infamous tms | my blog
      You cannot wash away blood with blood
    2. Re:LOL, Struts is right on target. by Moraelin · · Score: 2, Insightful

      Actually, that's the whole thing that's wrong. When one of these "silver bullet" technologies creates more complexity and a steeper learning curves, that's my criterion that it's hype, buzzword and/or mis-used.

      The whole _problem_ is that software projects are becoming more and more complex each year, and thus more likely to fail if tackled in the wrong fashion. (Even if they don't fail the first time around, they fail when someone has to maintain them. Whenever a whole enterprise system gets scrapped and rewritten from scratch, that's a failure.)

      The whole goal is to reduce and manage this complexity, not to increase it even more. The driving force between inventing methodologies and patterns was precisely to manage and/or reduce complexity.

      E.g., OO design was not invented just for the sake of writing extra code, it was suppose to make complex projects simpler and/or more manageable. The MVC idea itself was suppose to make complex GUIs (web based or not) simpler and more maintainable. Etc.

      If you use framework which actually _increases_ complexity, makes you write 6 (SIX!) files for each button, and gives the developpers a steeper learning curve, you're doing it wrong. Worse yet, you're wasting your employers money. It's that simple. You're just wasting time and effort and money, to achieve something even harder to maintain than even the maligned monolythic JSP.

      And I sure hope that one day the employers will wake up and start asking extra questions when they see purely buzzword technologies on a resume. Because someone in that team effectively cheated their employer of money and development time, just to get an extra buzzword on the resume. They spent extra time and maybe even caused a project to fail, just to make their own resume look better.

      And it is about time that someone started kicking these leeches out of this industry. Well, I can only dream...

      --
      A polar bear is a cartesian bear after a coordinate transform.
  2. Linux fashion. by Anonymous Coward · · Score: 2, Insightful

    In the pro community of linux, I've seen the fashion of linux distributions.

    First it was Slackware, then Debian and now Gentoo. Now that Debian has lost around 90% of its market share it is being left out to dry with its anceint packages and deprecated .deb format. Rpms and Ebuilds are the new fashion!

    Whats next? Ive recently seen a rise in Mandrake cooker users, as they provide the ultimate in ease of use combined with the power.

    1. Re:Linux fashion. by Zocalo · · Score: 2, Insightful
      Redhat must be the anti-fashion.

      I'd liken Red Hat to a business suit; not really practical for rolling your sleeves up and getting dirty, but still required by staid corporate types everywhere. Odd how that tallies with its prime marketplace... ;)

      --
      UNIX? They're not even circumcised! Savages!
  3. The one i hate most by smartin · · Score: 4, Insightful

    Hungarian Notation., the fashion of obfuscating your code.

    --
    The difference between Canada and the USA is that in Canada healthcare is a right and gun ownership is a privilege.
    1. Re:The one i hate most by WatertonMan · · Score: 2, Insightful
      Damn yes. Microsoft had some of the stupidest variable names because of that. What was so bad with just looking up the damn variable's definition! (Rather easy with most modern IDEs) Some of the naming schemes for variables are just ridiculous.

      Most movements like this or XP have their points. It's just that the good is almost overwhelmed by the "let's do it just because." People get caught up in the title rather than the content. This is exactly what leads to the dreaded "checklist bloat" of most products. They have to deal with "buzzwords" regardless of function or use.

    2. Re:The one i hate most by grungeKid · · Score: 2, Insightful

      What was so bad with just looking up the damn variable's definition! (Rather easy with most modern IDEs)

      I have not seen an IDE which makes it as painless to deduce a variables type quickly as hungarian notation (once you learn what "sz" "lp", "pI" and so on stands for). When scanning through new code this helps a lot, even if it's not done 100% consistently. Not even tooltips (as VS.NET and several other IDEs has) are quick enough.

      I do think such an IDE (or editor, really) could be constructed, perhaps using different coloring, permanent tooltips or icons to indicate types, scope, access levels etc, and when I start using one I shall drop the usage of hungarian notation.

      Does anyone know of such an IDE or editor? I would really like to know.

    3. Re:The one i hate most by Anonymous Coward · · Score: 1, Insightful

      You shouldn't need to deduce a variable's type from its name. If you don't
      know its type already, what the fuck were you going to do with it? If it
      has a name like numpoints, it's an int; if it is called filename, it's a
      char *, etc. duh.

    4. Re:The one i hate most by wrmrxxx · · Score: 3, Insightful

      Even Charles Simonyi, who started the whole Hungarian Notation thing, didn't propose that it should be used everywhere, for every variable name. This is, as the parent post suggests, a classic case of a valid idea being used in inappropriate contexts just for the sake of fashion. Unfortunately it (or worse still bastardised versions of it) has become so entrenched it is followed more like it is religion than fashion. Some developers can't be talked out of it with any reasoning - they just tell me it has to be that way, because it's programming. Like religion, logic seems to have no place.

      In the days when you wrote complicated code in older forms of C that required casting all sorts of things to pointers (through char * before void existed), greater programmer care with the scope and type of variables was important. There were all sorts of things that a compiler wouldn't catch, so sometimes it was worth sacrificing code readability. Now, of course, it mostly just doesn't make sense to make the sacrifice. Compilers handle data types just fine, and you don't have to cast through some totally unrelated type in modern languages. OO languages keep a lid on scope: you don't have masses of global variables. OO languages also introduce polymorphism, in which H.N. or type based naming can be very misleading. Code clarity is very valuable, and more natural language is one tool to achieve this (see Knuth's Literate Programming for some interesting ideas). It frustrates me no end when people want me to read a series of codes (with no vowels!) as if I were a computer. Give me language instead: I've been handling that since before I could walk.

      I think this particular fashion persists so strongly despite common sense for a number of reasons:

      • Momentum: there's so much of it about (e.g. Microsoft API docs) that programmers who don't think about why they should do things just copy the pattern blindly. Self perpetuating fashion.
      • Programmers not only undervalue code readability, they get some elitist kick out of making it undreadable. As if making it unreadable somehow makes code look more technical. I've seen programmers write code with vowels stripped out of every single variable name, even though they can touch type and have no absolutely no reason to abbreviate.
      • Maybe HN is useful in a training environment (so markers can see validity without using a compiler?) and it just carries into a professional career.
    5. Re:The one i hate most by nosferatu-man · · Score: 2, Insightful

      And that works really well when someone changes the 'siRfse' to a 'siRfce' but doesn't update the name, doesn't it?

      Hungarian Notation is just file extensions in source code -- it will surprise nobody that both terrible creations were midwifed at the same place. It's a bad idea who's time never came. Now that we've moved out of the '70s and have development tools more sophisticated than vi and grep, it's not merely archaic but rather positively prehistoric. Don't fish Hungarian Notation out of history's dustbin, where it peacefully resides with ritual anthropophagy, the jus primae noctis, and preprocessor macros.

      'jfb

      --
      To spur "enterprise Linux," Big Bang, the distributed two-phase commit.
    6. Re:The one i hate most by Anonymous Coward · · Score: 1, Insightful

      You are one stupid sucker. If your functions are so long you cannot f_cking do one or two quick page up/down to find the variable declaration, you are one sorry ass coder!

  4. .NET = Fashion by bersl2 · · Score: 3, Insightful

    .NET will disappear once Microsoft starts pushing their next initiative and forces upgrades and rewrites. It's all about the $$$, never about the product. The product is just a conduit for money.

    This is why OSS is so great. Most of the time, it's not about the money; it's about the product. Therefore, it's not about getting sales, it's about getting users.

    1. Re:.NET = Fashion by bersl2 · · Score: 2, Insightful

      Certainly when C# was introduced I was like, "yeah, whatever" who's going to swap from Java to this?

      I believe that in a year or two, when the next "new thing" is introduced, you'll be going, "Yeah, whatever. Who's going to swap from C# to this?"

    2. Re:.NET = Fashion by Doomdark · · Score: 2, Insightful
      I thought the same thing when Java was introduced. The alternatives I considered at the time were Python and Smalltalk, each having much more to offer than Java, and better implemented.

      Sounds like you don't really know what you are talking about. If you are implying Smalltalk and Python are supersets of Java (as it exists currently), you are just ignorant. Each of 3 languages (or platform, if you wish), has their specific strengths, but claiming Java is inferior of 3 is ridiculous. It may be that when first commonly used JVMs arrived (1.0.2?) Java was mostly inferior, but lot has happened since then.

      Further, claiming that Java is very close to C is patently absurd. Superficially there are more similarities (syntax) than semantically. Python and Java, for example, are much more similar than C and Java.

      As to C# (I assume you mean C# when referring to .NET) I actually do agree. It's similar enough to Java to be useful as is, although not markedly superior (with sole exception of being easier to integrate with native code). But it will probably gain momentum, and improve due to enough resources being put into developing C# as well as standard libraries.

      --
      I like paying taxes. With them I buy civilization -- Oliver Wendell Holmes
  5. What about CORBA? by DrInequality · · Score: 5, Insightful
    He hit all of my favourites: XML, Visual Fred, etc...

    But missed CORBA! Surely it belongs in the Technology X != Silver Bullet category. As far as I'm concerned, CORBA best solves the "this project has too many resources" problem.

    But then again, I'm probably just another SFV :-)

  6. Re:Interesting? by Doomrat · · Score: 4, Insightful

    Don't you see? Moderating it as Interesting is a master stroke of comedy. It's the only thing which has made me laugh on Slashdot all day. Most of the other attempts to be funny here result in my wishing cancer upon the poster.

  7. More ignorant flamebait... by M.C.+Hampster · · Score: 5, Insightful

    From the article:

    VB.Net is really just syntactic sugar on top of C#. C# offers more and better libraries.

    That alone should tell you that the author has no clue as to what they are talking about. I am most definately not a VB.NET fan, but that statement is just false and shows a huge lack of understanding of the .NET Framework.

    --
    Forget the whales - save the babies.
    1. Re:More ignorant flamebait... by Keith+Russell · · Score: 4, Insightful

      They're talking out their asses on the libraries. CLS-compliant is CLS-compliant. But they're dead-on right about VB.NET. I'm pretty sure that Microsoft "upgraded" VB by starting with C#, changing the syntax to match Basic, then dumbing it down with over-verbose keywords for new language features and a lack of "intrinsic" keywords for unsigned integer types. All this for a language so different from previous versions of VB, it needs a non-trivial conversion anyway.

      Hmm, instead of making the language easier to use, they just made it different. Syntactic aspartame?

      --
      This sig intentionally left blank.
  8. What about Linux itself? by flyingrobots · · Score: 1, Insightful

    I don't mean this to be flaimbait...so please hold off getting angry at me for just a moment.

    But the article did describe (unwittingly) the OSS movement and Linux. There is a lot of hype out there(there is also a lot of substance too). There are a lot of people fueled by the desire to kill MS and others that happen to charge for their OS's. These will eventually burn out.

    A business has a lot to consider when using Linux in their projects. Maintenance is one of them. I'm of the opinion that Linux is very Maintenance intensive when it comes to installing new things onto it. Once an installation has been stabilized...sure it works well for the long term. But it takes a fair amount of effort to get it there...at least now it does.

    There is going to be competition. Vendors are going to work hard to improve their products to compete with Linux. Pricing structures will be affected. Linux isn't out of the woods yet.

    1. Re:What about Linux itself? by vadim_t · · Score: 2, Insightful

      Of course, just like everything, I'm pretty sure that Linux will eventually die, morph into something completely different from what it was, or be replaced by a better implementation.

      I think that Linux is going to last for a long time though. Given its open nature it can adapt much better to changing requirements than say, Windows. It looks like Windows is going to have to break the API soon, and become incompatible with older versions.

      Meanwhile, Linux, not having such a closed and monolithic design will almost surely remain compatible with old versions for a long time. I wouldn't be surprised if 4.0 was still able to run programs written to run under 2.0.

  9. Re:UML by mcdrewski42 · · Score: 2, Insightful

    Trolling a bit there - are they biting?

    I think their point on patterns is equally valid for UML, or TechnologyX in fact...

    UML usage is often seen as an end in itself. Robin (intrepid co-author of this article) was once asked during a job interview: "What's your favourite UML Diagram?" What's the correct response to that? "Oh, Use Case Diagrams every time! Yeah, I use it for everything!"

    However I think "Robin" should have read Joel On Software's Guerrilla Guide to Interviewing for the 'correct' response to that. If it was a smart interviewer, it wasn't a question designed to get an answer, but to elicit discussion about patterns and see if Robin really knew what they were and how to apply them. If they weren't a smart interviewer, and were really looking for an answer, then he/she is probably glad that the interview didn't go so well. :)

    --
    /* affect != effect */ void affect(int *thing,int effect) { *thing += effect; }
  10. Missing the biggest stupid software fashion by 0WaitState · · Score: 5, Insightful

    The biggest stupid software fashion is IT outsourcing--it has reached the point where every corporate middle manager feels they have to have a story on how they're outsourcing, long before (if ever) outsourcing has proven any reliable ROI.

    Unfortunately, unlike other stupid fads applied to software such as TQM, ISO9000, RUP, etc., outsourcing does real economic damage to the victims, (as opposed to just the psychological damage represented by trying to work around the others).

    --

    Remain calm! All is well!
  11. Everything, including tools, in moderation! by RevMike · · Score: 4, Insightful
    What? No mention of UML?? Together with Design Patterns, these two are making my fellow software engineers less intelligible by the minute!
    RevMike's first law of development methodologies- "The only thing worse than not following a methodology is rigidly following the wrong methodology."

    If UML and Patterns is making your engineers less intelligible, then they are doing something wrong. It is possible that those tools are not appropriate for your problem space. It is also possible that they need to drop the elements of the model that aren't working for them.

    Design Patterns is an incredibly useful tool, especially in the OO world. But as was noted in the article, there is a danger of designing everything as a pattern. Being able to say "I use a Service Locator to look up the remote resources" or "I use this Abstract Factory to get the proper xml parser" is incredibly useful. But it has a tendancy to be overdone.

    Everything, including tools, in moderation!

  12. Re:Let's vote for the greatest forgotten... by __aagmrb7289 · · Score: 2, Insightful

    Ah, and then there is the other fad - point to Microsoft and say - "That's crap. Never used it, never will, won't even look, but it's crap. It's a fad! Watch it disappear."

    I suggest you get off the bandwagon and do a little of your own thinking...

    p.s. Stop making me defend Microsoft, you insensative clods!

  13. I nominate XML by tjstork · · Score: 3, Insightful


    XML is a fad because the whole concept of universal interchange of data is getting locked down by the big vendors. Theoretically, yes, data in XML is portable, but, so are well documented binary structures and CSV.

    To have real interoperability, you have to know how the software uses the data. To get that, you must have open source. Microsoft knows this, and that's why they are pushing XML as the "nirvana" of interoperability.

    I'd invite anyone who argues against the above to look at an XMLized Word document...

    --
    This is my sig.
    1. Re:I nominate XML by Anonymous Coward · · Score: 3, Insightful

      I don't care about XMLized Word documents. I care that 10 years from now I'll know exactly what

      <record id="35">
      <name>Joe Blo</name>
      <shoe-size>12</shoe-size>
      <favorite-number>10</favorite-number>
      </record>

      means, while the following:

      35,"Joe Blo",12,10

      is just a blob of useless data.

      I.e. XML helps ME in MY PROGRAMS today. It's not the nirvana of anything, but I sure as hell don't want to switch to CSV.

  14. your job is a fashion trend by juicy_lizard · · Score: 2, Insightful

    UML, EJBs, SOAP, XML, all fashion trends, you say? This may be true, but take a look at job advertisements in the software development field... a lot of them require that you know wonderful things like UML, EJBs, SOAP, XML, etc. This is why I quit my very well paying software development job and went back to school to pursue graduate studies. I realized my job was based on nothing more than fashion trends. It was just the same old stuff being rehashed and remarketed in a different way. In grad school, on the other hand, I get to explore problems from the perspective of real research and development, instead of being constrained by a bunch of marketing drones insisting that we include every latest piece of technology possible to make our product seem "cutting edge."

  15. Favorite quote by El · · Score: 2, Insightful
    Marketing budgets are huge and are often larger than the budget to develop the software in the first place.

    Well, that sentance pretty much sums up what wrong with the computer industry, doesn't it?

    --

    "Freedom means freedom for everybody" -- Dick Cheney

  16. Fashion isn't really the correct term, IMO by King_TJ · · Score: 2, Insightful

    Is it just me, or does this strike you as sort of a fluff-piece? It seems like the author had little to say other than a vague concept that "Gee, a lot of once-popular software ends up not really having any staying power." and realized he could put together something somewhat eye-catching by relating it to the fashion industry.

    To me, fashion is a term reserved for defining the look of a thing. If people stopped wearing shorts because the weather got cold, it wouldn't be correct to blame the lack of sales of shorts as due to their being "unashionable anymore". Maybe everyone WANTED to wear their shorts but just couldn't stand to do so anymore because they weren't practical for the conditions.

    This is how I view most software. Things get hyped up initially, simply because they're new and different. (I.T. folks generally like variety. We get bored if we use the same old tools every day, for years on end, and no new challenges arise.) Then, as enough people put the new tools to use, they start coming to conclusions. "This product is far more efficient than the last one." or "This thing is bloatware!" The products that are too buggy, insecure, too slow, or just not as practical as they sounded on paper get tossed aside.

    The only element of "fashion" I can see in software development is in user interface design. Even this tends to stay within a single product line though. (EG. Apple went through their whole "Aqua" stage - where everything had shades of blue. Now Jobs is fascinated by chrome, and even his new G5 towers have metal cases, to match the chrome look to most of the new Apple apps.)

  17. author is full of poop by Anonymous Coward · · Score: 2, Insightful

    A lot of these "fads" are natural progressions of computer science.

    You do realize that computer science is pretty young still, right? Stuff like design patterns are breakthroughs, and they are *discoveries*, not "methodologies".

    Design patterns: "[programmers] shoehorn as many design patterns as possible into their design". Well, the author misunderstands patterns just as much as the people he is criticizing. Patterns are not "cookbooks". Patterns are simply names we use to describe stuff that our programs do over and over. You can't say you're not using patterns, because you are. The purpose of patterns is to think about your code at this higher abstract level, so you can recognize what's "the same" between every loop you ever wrote (and no "loop" is not in the GoF book, but it's still a pattern, because each loop is different but there are still similarities. learning to recognize those similarities is what patterns are about. Some people who've never read GoF have this ability).

    Struts: in the old days (a couple years ago), I'd agree with the author: Struts makes code too slow and complex. But these days with big complex projects and super-fast computers, Struts makes a lot of sense. In my own programs, as they become complex, I tend to abstract stuff out over and over until it ends up looking basically like Struts anyway. Why not just start abstract? My Struts code is completely factored into simple testable objects and is much more reliable. If I had to hire a wizard JSP/Beans programmer and a mediocre Struts programmer, I'd think hard about the Struts programmer because his code will probably be easier to refactor (this an untested theory :-). Again, it's not Struts itself, but "Struts-like systems" which are highly abstracted.

    Web service: Sure there's a lot of hype but I can throw together a remote procedure call interface in Perl that calls Java in about 5 minutes. Computers are fast, I don't care if they are burning extra cycles building SOAP envelopes (or XML-RPC which I prefer at the moment, easier to debug, SOAP is not stable and universal yet).

    XML: say, why does he "flinch" at XSLT? XSLT is a great solution to a whole class of problems. I think of XML as the ASCII of this century.. not the most perfect representation for all data, but probably pretty close. How many times have I needed a format and just started using XML and not have to worry about 1) how to escape weird characters; 2) how to handle different character sets; 3) how to write and debug yet ANOTHER parser for MyLittleDataFormat23425, etc., etc. XML just makes life easier.

    VB.NET: haven't had much experience with this but people seem to like it....

    XP: XP is definitely faddish, but beneath the fad is solid basic computer science best practices. For instance testing: is there any idiot out there who DOESN'T think testing is important? Unit testing catches so many stupid errors it's not even funny. And test-first development means the tests actually get written. Psychologically, it's a lot more "satisfying" to write the test, and then the code that passes it, then the other way around. etc. etc. etc... the author is right, XP stuff will be integrating into other "traditional" methodologies. But that means XP is not a fad, doesn't it! XP is basically the only methodology that I've seen that works, even if you don't do it right, and it makes programming FUN. I can't say that for anything else I've tried or seen.

    So in summary, the author seems like an old-timer who doesn't like this new-fangled stuff, and doesn't realize that yes, after the fads die down, we'll be left with the best parts of each "fad", and we'll be the better for it!

  18. Models by yerricde · · Score: 2, Insightful

    This is XML as well, but is it any easier to pick apart once you've deserialized it into a tree?

    <j:u sno="35">
    <j:clin>Joe Blo</clin>
    <j:m dim="len" obj="foot" unit="USShoeSize">10</m>
    <j:phint>
    <j:q>What is your favorite number?</q>
    <j:a>10</a>
    </phint>
    </u>

    Just having XML syntax just gives you a tree. You need some way to process Microsoft's model of something into a model your program can understand.

    --
    Will I retire or break 10K?
  19. Re:The very worst fashion... by wrmrxxx · · Score: 3, Insightful
    EJBs complicate development.

    Misuse of EJBs complicate development. When they're used just for the sake of fashion (as often seems to be the case), a perfectly good solution (for something) can be applied to entirely the wrong problem, resulting in a mess. The parent post makes two good points about the danger of fashion (another way of saying following blindly without thinking?); one of these points is perhaps made inadvertantly. Firstly, the results are bad. Secondly, it can make it look as if the subject of the fashion always produces bad results and has no merit.

    Just because EJBs can be (and sometimes are) misapplied does not mean they have no value. Sometimes the situation is not 'EJBs complicate development', but rather problems get complicated all by themselves, and EJBs can provide a solution. For example, container managed entity beans can make object-relational mapping happen (along with transaction management) with hardly any code. It may seem complicated when you look at the multiple interfaces and deployment descriptors needed, but really this is a very simple solution relative to the complexity of the actual task to be performed. If I had to write my own code to handle these tasks so easily, it would take me forever.

  20. Shrink-wrap apps by Latent+Heat · · Score: 2, Insightful
    I know of two people I know doing "shrink-wrap" apps. My friend is doing this medical testing freeware/shareware deal. My sister-in-law is doing some kind of automating of chemical lab tests that she is selling through some lab equipment company. These are small markets that are unlikely to be absorbed or assimilated by MS any time soon. Both are using VB 6.0 and don't have any hurry to change any time soon.

    .NET might make sense in "the enterprise" where your IT dept makes everyone run XP Professional and goes around and loads the .NET runtime. Other than that, no one has the .NET runtime because Windows does not come with it. Until the .NET runtime becomes more ubiquitous, I don't why these people should switch from VB 6.

  21. Reading UML by Latent+Heat · · Score: 2, Insightful
    At least I could read flow charts. The problem with flow charts is also the problem that Structured Programming (an loop invariant analysis and all that jive) tried to solve. If the flow chart fits on one page it is good, but any useful system has a flow chart that could cover walls and walls.

    I would like very much to have a tool like UML to explain my designs -- I am a very visual/graphical type person. The trouble is that UML has so many kinds of lines, arrow heads, and connector icons that I can't make heads or tails of it. Even if I could learn the UML iconography and calligraphy, the representation is so busy that it seems to be useless.

  22. Re:"Required" email by WNight · · Score: 3, Insightful

    A method that proposes comments that don't live in the code is broken. It requires programmers to have a second file open, and to update two things every time they make a change. A system that requires an extra annoying step for absolutely no gain is defective.

    For absolutely no gain? Yes. There are better ways, such as putting any needed documentation into the source code itself. That way not only are they more accessible when reading the code but they're easier to change and harder to forget about.

    Check out doxygen (at sourceforge) for a pretty cool system.

  23. Fashion? Yeah sure. by jotaeleemeese · · Score: 2, Insightful

    This is your fashion: it is cheaper to outsource, at least in the short term. This is here to stay (is not even a fashion, it has been common sense since the early 90s). If your company makes doughnouts why should it devote resources to accounting, IT or cleaning? All this can be done by specialists in the respective fields. And if those highly skilled specialists happen to live in Gujarat and charge you substantially less for the outsourcing, you, as the person responsible for increasing shareholders value (and you own stock options) would be mad not to take the oportunity.

    End of the history. In an economic system where quarterly reports are king you did not expect long term vision, or did you?

    --
    IANAL but write like a drunk one.