Slashdot Mirror


The Economist Tackles Complexity in IT

yfnET writes "In recent weeks, The Economist has run a number of articles addressing the ever-increasing complexity of software systems. The magazine, with typical Economist wisdom, casts an eye towards past human endeavors for lessons on how today's IT industry can succeed in dealing with complexity. As part of last month's extensive survey of information technology (see Related Items sidebar), the magazine offers insight on the limits of real-world metaphors, the perils of managing a rat's nest of obsolescent systems, and the need for 'disappearing' technology. And hitting newsstands just today is an overview of development models for increasingly large and unwieldy software projects. Among other things, this article compares the open source model to Microsoft's efforts using a quasi-open license. It also describes the 'agile' programming movement and its potential to keep even the most gigantic of projects under control."

69 of 270 comments (clear)

  1. Lisp, Smalltalk and complexity. by Anonymous Coward · · Score: 3, Insightful

    Powerful Languages Like Smalltalk, and Lisp help one handle complexity.

    1. Re:Lisp, Smalltalk and complexity. by RealProgrammer · · Score: 2, Insightful

      They help, but they don't have a monopoly on handling complexity. Any programming language that allows you to subdivide a program into chunks of some kind with good hiding of the innards of the chunks can be used to write complex programs. To really beat complexity, try shell scripts. Since you can't (really) do simple stuff like adding numbers, it forces you to hide the details, which reduces the feel of the complexity. And stuff.

      --
      sigs, as if you care.
    2. Re:Lisp, Smalltalk and complexity. by Billly+Gates · · Score: 2, Insightful

      Using a strange langauge that is not standard is what causes the problems in the first place. Did you read the articles at all?

      Its about a multitude of systems from many vendors running middleware from many vendors which run custom applications written from many different languages from different vendors that somehow all must communicate together. Not just which editor do you use or which language do you think is cool.

      Why is Microsoft still gaining marketshare ahead of the supperior Unix? Its because they want one platform and guess which one runs on everyone's desktops? See the picture?

      The 90's brought outrageous IT spending with bosses wanting all the coolest new in things. Now they have to support them.

    3. Re:Lisp, Smalltalk and complexity. by Anonymous Coward · · Score: 2, Insightful

      We need to stop developing applications and start to think about platforms. Every class library is a quasi-language in which to describe a solution. Let them be full languages.

      We need to design very high level domain specific languages and write our applications in that. We can reuse the language (kind of like a high level virtual machine) as a platform for future versions of the application and could even let the user redefine the upper layers.

      We can hide a lot of control assembly in the structure and syntax of high level languages, which made us a lot more productive and helps us take on bigger projects. The same trick we can do by defining new domain specific languages and hide a lot of obvious repetitive control and command patterns in their syntax and structure.

      SmallTalk and Lisp have always had this ability already, I think it's time te rest of the programmers get with it, and start using Language Oriented Programming.

      (And yes this means that they have to learn a new level op abstraction, and yes, they will see that C and familie aren't really suited for this. But they will not care then anymore because they can do more without them. Only to bad for the programmers who can not get their heads around this higher level of abstraction: they loose out and need to find another job.)

    4. Re:Lisp, Smalltalk and complexity. by Anonymous Coward · · Score: 4, Insightful

      the advantage Lisp and Smalltalk have that other languages lack is that their syntax is so simple that extensions meld in as if they were part of the language.

    5. Re:Lisp, Smalltalk and complexity. by MagikSlinger · · Score: 2, Informative
      SmallTalk and Lisp have always had this ability already, I think it's time te rest of the programmers get with it, and start using Language Oriented Programming.

      I used to think like you do, but now I'm better. Work in a palimpset environment on a project that had 20 different coders on it, and you'll sing a different tune. The only examples of successful Smalltalk/Lisp projects I could find were 1-2 people working on the entire project for its entire lifetime. Um, that's not where the rest of us live.

      Only to bad for the programmers who can not get their heads around this higher level of abstraction: they loose out and need to find another job.

      Let's see... For those of us working in commercial development, how many of us are using Smalltalk and Lisp for new projects? Don't see many hands there. .Net, Java, PHP and Perl? Oooh, a lot of hands. I call "bollocks" on your claim.

      --
      The bitter lessons of a veteran coder: http://bitterprogrammer.blogspot.com
    6. Re:Lisp, Smalltalk and complexity. by John+Courtland · · Score: 4, Funny
      Strong typing should be a damn requirement. Every language I use that doesn't allow strong typing seriously chaps my ass in a major way. The last time was when I was simply trying to implement a dumb calculator for RPM MPH for a car given gearing info and tire size. Simple function:
      function get_tire_circumference_in_inches(tire_width, tire_profile, rim_diameter)
      {
      return (3.1415926535 * (rim_diameter + 2 * (tire_width * 0.01 * tire_profile)/25.4));
      }
      But javascript, when provided 16 as rim_diameter, returned some huge number (~5,000+), instead of what I expected (~84). Turns out JavaScript interpreted all the other numbers fine, but somehow wanted to make the 16 a literal, and added the damn thing right onto the end of the equation. That took me about an hour to figure out. I finally ended up getting Venkman and watched it fuck up. Then I tried implementing (and did get it to work, eventually with some code pinching) MD5 in JavaScript. Yeah, it's not worth it. Imagine if this were production work... VB (especially VB...) has done similar shit to me. To me, languages that do that are not languages, they're toys.
      --
      Slashdot is proof that Sturgeon's Law applies to mankind.
    7. Re:Lisp, Smalltalk and complexity. by lawpoop · · Score: 3, Insightful
      A language is not 'strange' just because few people use it. Here's what you should take away from the parent:

      Some languages are better than others. The parent argues that lisp and smalltalk are some of the best languages to use. With other languages, you get to a point where you can't do it with that language alone, and you start building a meta-language out of that language, and there is your complexity creep. Avalon, etc. are an attempt to address the cruft and complexity that have grown up around the Windows platform.

      As far as Microsoft gaining on "supperior [sic]" unix, keep in mind that Unix is not Lisp (TM). So your comment is irrelevant. Parent is arguing that if you don't want complexity creep, start out with something that you know can see you to the end. Parent claims this is smalltalk/lisp.

      --
      Computers are useless. They can only give you answers.
      -- Pablo Picasso
    8. Re:Lisp, Smalltalk and complexity. by MourningBlade · · Score: 2, Insightful

      Most of the (IMHO) well-designed either weakly or dynamically typed languages that I've used don't use the same operator for concatenation as addition.

      • Perl: . versus +
      • Common Lisp: concatenate versus +

      It is very frustrating to have both automagical type and have operators that do radically different things depending upon type.

    9. Re:Lisp, Smalltalk and complexity. by jilles · · Score: 2, Insightful

      It's not a technical problem. Most programmers don't understand this because they are trained to provide technical solutions for problems.

      The problem with the software industry is that it doesn't seem to learn much from its past. People were talking about complexity and the growing scale of things in the sixties already. Many of the technical solutions (e.g. components, object orientation) suggested then have been more or less adopted now. This has allowed us to scale development up to the point where we have constantly been pushing the technical limitations of the technology we use for the past forty years. The non technical problems have remained the same throughout those decades. No matter what the technology is, there is only so much code a single individual can manage. As soon as you cross that boundary, there are multiple programmers working together. A few intelligent individuals can work together very efficiently but as soon as this group of individuals grows, communication problems and not technical problems become the main issue.

      Many companies start out as a handfull of smart individuals doing cool stuff. Then they grow and before you know it they are a a lot of people walking in each others way (i.e. a large software company).

      Delivering software on time, within budget and implementing the specified requirements is an art that surprisingly few programmers have mastered. The OSS community doesn't solve this problem either, it merely makes it a not so important problem. Most OSS projects don't have real deadlines. For example Firefox and Mozilla have a history of constantly shifting roadmaps. Every few months they say like hey this milestone (e.g. a 1.0 release) is not going to be ready next month like we said last year so let's push it ahead six months. Companies don't have this luxury and either deliver late (costs money) or deliver crap on time (also costs money). Very few companies actually ship high quality software on time.

      Last year one of the firefox developers pushed for some strong deadlines to beat Microsoft to the market with a firefox release before IE 7. Microsoft kicked their ass despite being late on their own schedule for six months or so and released service pack 2 with IE 7 months before the actual firefox 1.0 release. The original schedule of firefox just wasn't realistic and people knew it wasn't realistic. Originally the 1.0 was going to be released early spring. By early spring it was mid summer and by mid summer it was definately before the end of the year. November proved to be more realistic then April and all is well know (I love firefox).

      On the other hand Microsoft also has a long history of very unrealistic deadlines. It seems all their products are delivered late. Despite all this, Microsoft is actually quite impressive from a software engineering perspective. They have one of the largest development teams in the world (with thousands of engineers) and their software is very profitable.

      --

      Jilles
    10. Re:Lisp, Smalltalk and complexity. by MagikSlinger · · Score: 2, Interesting
      You know, most trolls attribute goatse.cx to the appropriate URL, because they know plagiarism is bad. Give credit where credit is due.

      You wish I was a troll. I was some one who spent 2 years learning Lisp, getting really good at it then discovering that I was 2x to 5x more productive in Perl & C and 20x more productive in PROLOG (which the Lisp zealots sniffed at as an "inferior" by-product of Lisp).

      The paper you site is laughable:

      It might be because the subjects were self-selected. It might be because the benchmark task involved search and managing a complex linked data structure, two jobs for which Lisp happens to be specifically designed and particularly well suited. Or it might be because Lisp programmers tend to be good programmers. This in turn might be because good programmers tend to gravitate toward Lisp, or it might be because programming in Lisp tends to make one a good programmer.

      To be fair, I left the last line in even though it's completely unsubstantiated. To be further fair, I cannot prove or disprove it. But let's continue with the meat of it: compilation time. Before posting my comments, I looked for a productivity report and all I could find were anecdotes and self-serving quotes on Lisp pages. The productivity is due to interactive debugging & compilation time!?!? I saw no mention of meta-programming as a productivity boost (a Faustian bargain one at that), and just a lot of crap about how Lisp is the only language that can do incremental compilation. Oh geez, give me a fucking break!

      The reason I am so anti-Lisp is because I was a Lisp zealot until I took comparitive programming languages. I am probably one of the few Lisp detractors who have written Lisp programs that can verify the correctness of Lisp programs! I have written "self-modifying" Lisp code. Dude, I know Lisp better than some of its adherents. I've written my own Lisp interpreter from scratch using K&R C.

      I have never found Lisp to be that productive. It forces me to think in unnatural ways to express my solutions. To be productive, I usually end up doing ugly things like writing procedural code. For power, I prefer PROLOG. For raw speed, I prefer C. For OO, well, I'm still looking. But the point here is what does Lisp offer anymore? List handling and garbage collection is now a standard part of all modern languages. Meta languages is a Faustian bargain where if everyone is on the same page, great, but if someone has to pick it up from scratch, one had to depend on the previous programmer organizing their code in an easily comprehensible manner (which they usually don't). Switching projects becomes a headache because now you have to learn that local dialect. In short, you got a Tower of Babel of language extensions.

      I feel like Diogeneyse looking for a wise man in the city of Lisp zealots.

      --
      The bitter lessons of a veteran coder: http://bitterprogrammer.blogspot.com
  2. Why should we believe what they say? by Marxist+Hacker+42 · · Score: 2, Interesting

    Aren't these the same people who tried to tell us that "comparative advantage" meant we should give up our manufacturing and all get degrees in high tech? Why should we believe ANYTHING they have to say after they've lied to us for so long?

    Economics is a religion- and a failed mythology at that. Economists need to learn to examine and reconfigure their basic axioms before ANYBODY should ever listen to them again.

    --
    SJW: a person who perceives an injustice, and while correcting it, commits a greater injustice.
    1. Re:Why should we believe what they say? by fiannaFailMan · · Score: 4, Insightful
      Aren't these the same people who tried to tell us that "comparative advantage" meant we should give up our manufacturing and all get degrees in high tech? Why should we believe ANYTHING they have to say after they've lied to us for so long?
      Actually, I don't seem to remember that paper ever advocating any such thing. Nevertheless, a great many people fell for that one. A great many people still cling to it. And to say that they "lied" implies that they knew different but told us this anyway. Perhaps you can tell us what they hoped to gain from this grand deception. Or perhaps you'll just admit that you had an aversion to their endorsement of John Kerry.
      Economics is a religion- and a failed mythology at that.
      Nonsense. Economists, and the Economist newspaper, seldom have a problem admitting mistakes. Show me a religion that is willing to change its belief in a supernatural being after centuries of mounting evidence to explain away the mysteries that underpinned such superstition.
      --
      Drill baby drill - on Mars
    2. Re:Why should we believe what they say? by Marxist+Hacker+42 · · Score: 2, Funny

      Je Suis Marxiste, Tendance Groucho (Not worth actually looking up the french spelling for a joke).

      --
      SJW: a person who perceives an injustice, and while correcting it, commits a greater injustice.
    3. Re:Why should we believe what they say? by Prof.Phreak · · Score: 3, Insightful

      Aren't these the same people who tried to tell us that "comparative advantage" meant we should give up our manufacturing and all get degrees in high tech?

      Many manufacturing jobs are cheaper overseas. Your point being? (ie: economist's point of view)

      If you got your degree in `high tech' because of what you heard an economist say... well, you deserve what you get then.

      If you're trully interested in computers and their capabilities (ie: a `computer scientist'), then your job cannot be outsourced.

      The coding jobs will go away---but that doesn't mean there aren't plenty of non-coding things to do (like design, research, etc., until we have computers walking and talking around the world there are still plenty of opportunities it IT---most of which pay off big time no matter where you do them).

      It's about time people with computer science degrees realized that they weren't training to become a code monkey.

      --

      "If anything can go wrong, it will." - Murphy

    4. Re:Why should we believe what they say? by hibiki_r · · Score: 3, Insightful

      I must have read Groucho as opposed to the real thing: Marx's theory of value is if anything, too moral. Marx criticizes 1800's religion because it told people that suffering on this earth would be repaid 10 times over in heaven. When you consider the society that Marx saw, England during the industrial revolution, it's really hard not to consider that kind of religious thought evil and manipulative.

      Marx saw, just like we can see in today's US in a smaller scale, how religious beliefs can be twisted to make people act in a way that goes against their, and most people's, best interest. Marx belived that morality and religion are not synonymous. In many cases, religious beliefs can be completely immoral. Thus, he favored a society where morality was rational, as opposed of just be dictated by a book.

      If you don't belive that morality can exist without religion, you should get out of the house more.

    5. Re:Why should we believe what they say? by fiannaFailMan · · Score: 2, Insightful
      Advocating free trade leads to this automatically.
      Huh? Advocating free trade leads to us "giving up our manufacturing and all of us getting degrees in high tech?"
      They should have known different- the end result of 50 years of subsidized education in one of the two most populous countries on earth is obvious in hindsight- and that information was never shown in foresight.
      Huh? I'm sure you have an interesting point to make here. Please make it.
      Cheap labor and the destruction of the middle class- a maserful stroke from those who believe that society should only have two classes.
      Garbage. The Economist has always argued for measures which it believes will lead to a better distribution of wealth.
      Kerry, Bush, makes no difference, they're both free traitors.
      I'm not familiar with your personal jargon. If you mean that Bush and Kerry are both in favour of free trade, then maybe you'd care to explain Kerry's call for protectionist measures to prevent outsourcing, and Bush's tarriffs on steel imports.
      hen explain why they still support the WTO, when free trade has proven to be disasterous to both developing and developed nations.
      Proven by whom? The Economist has spelled out many times how free trade has been a relative success for developing and developed nations. When I say 'relative,' I mean compared to any alternative system that has ever been devised. The system endorsed by your namesake was hardly a roaring success for all concerned.
      --
      Drill baby drill - on Mars
    6. Re:Why should we believe what they say? by Marxist+Hacker+42 · · Score: 2, Interesting

      I trained to be a software ENGINEER- that includes coding far better than what any given code monkey can do. But since the code monkeys are doing it, my talents went to waste for over two years as I scrambled to find some way to make a living.

      Science is about theory- ENGINEERING is about application of that theory. I'd much rather be doing the application of the theory than inventing the theory- but that's all been ripped away now.

      Plus, if you haven't noticed- Honda has a computer that walks, and Microsoft has a computer that talks. It won't be long now.

      --
      SJW: a person who perceives an injustice, and while correcting it, commits a greater injustice.
    7. Re:Why should we believe what they say? by Marxist+Hacker+42 · · Score: 2, Insightful

      In fact, getting better skills is just a trap- it means that you'll be far more valuable as an employee than as a manager. Only the skilless can become managers.

      --
      SJW: a person who perceives an injustice, and while correcting it, commits a greater injustice.
    8. Re:Why should we believe what they say? by timeOday · · Score: 2, Funny
      A) Space tourism.
      B) Biotechnology.
      C) Marketing.
      D) Robotics.
      Unfortunately only one of those options is realistic, and I'm not a good liar.
  3. "Agile" works when you're located together... by Not_Wiggins · · Score: 4, Insightful

    There's a serious problem with agile methodology and outsourcing (I didn't see any articles on Economist.com related to outsourcing, but may have missed it as I gave it only a cursory look).

    Large and unwieldy projects benefiting from agile methodologies? Yeah... when you have easy communication between the "customers" (business partners) and your IT staff.

    How does that happen when your developers are thousands of miles away, in a different timezone, with a totally different culture, and don't speak your native language?

    --
    Diplomacy is the art of saying, "Nice doggie!" until you can find a rock.
    1. Re:"Agile" works when you're located together... by Blind+Joe+Death · · Score: 2, Informative

      Two weeks ago, the Economist published a survey on outsourcing. Their "surveys" are extensive reports, consisting of about 14-16 printed pages, and 10-12 separate articles. It covers the topic from several different angles, and its helpful to see outsourcing in all its complexity, rather than the "Indians took my job, outsourcing is evil," perspective that dominates here.

  4. Telecom failures in France by jeanluc.bonnafoux · · Score: 2, Informative

    Translated from a a french newpaper:
    "The historical operator, his Orange subsidiary company and Bouygues Telecom have all three known, in the last seven months, of the significant breakdowns, depriving their customers of telephone service for durations varying from a few hours at almost two days.The succession of these events clarifies the increasing complexity of the systems of telecommunications and the difficulties raised by the needs, news, of interconnection of many heteroclite networks". A minister in the french government as asked for a study about all these failures :-) I'm not sur it will help...

    --
    le souvenir d'une certaine image n'est que le regret d'un certain instant (M.Proust)
  5. Homogenous Standards by qualico · · Score: 2, Insightful

    Hardware complexity can be reduced with homogenous environments.

    Good planning, documentation and standards reduce complexity in software.

    How much more do they have to complicate the issue?

  6. Do simple things by barcodez · · Score: 4, Insightful

    People tend to make things over complex if you let them. Bosses want that technology they read about in whatever PHB read these days. Such and such wants some TLA to do some other TLA.

    I know it's hard but you have to tell them that these things don't add any value in and of themselves. You want the simplest possible system that will solve the problem at hand. Really, nothing more, don't implement something because you may want/need it tomorrow 'cos when tommorrow comes it won't be right (and if it is, hey, you can implement it then).

    --

    ----
  7. Agile Programming Isn't a Silver Bullet Either by Greyfox · · Score: 3, Interesting
    I've seen it work well and I've seen it work poorly. If all you have programming or managing on your project are chimpanzees, telling them to use scrum (or whatever) will not help you.

    I'd say just hire good people and keep the managers focussed on just a few projects, but this seems to be beyond the capabilities of most companies. So you end up with programmers who write Java like it was fortran and managers who juggle so many projects that they barely know your name much less what you do for the company. There doesn't seem to be a fix for this which companies will be willing to accept.

    --

    I'm trying to teach myself to set people on fire with my mind... Is it hot in here?

    1. Re:Agile Programming Isn't a Silver Bullet Either by Qui-Gon · · Score: 2, Interesting

      Right on. Execution is everything (in any business). Fred Brooks tried informing the software community of this ~20 years ago.

      People are everything on a software project. You can't put 1000 monkeys on 1000 type writters (pay them bananas) and expect the next great novel (or great piece of software). You can try but, it just ain't gonna happen. The reason IMHO is drive. Your typical "code-monkey" (or whatever derogatory slang term is used now a days) is only there for the "bananas". An engineer on the other hand, has two drivers - pride and fame. Every person who calls themself an engineer always wants to look like the smartest guy in the room. Don't get me wrong... engineers want money as well... but they know that the path to real fortune starts with credibility and acknoledgment.

      Some might say outsourcing is an exception to this... That you can come up with great software without the need of strong enigneers (and people who really have an attachment to thier work). To me, outsourcing is the equivalent of fast food -- Its great for a quick meal. Its cheap. Its solves your immediate problem (aka hunger). But it isn't going to be good for you in the long run. Outsourcing companies are about one thing -- Cashing in on the slumming american economy that is still tech hungry.

      --

      We are blind to the Worlds within us
      waiting to be born...
  8. MAGIC, COMPLEXITY ARE INCOMPRESSIBLE by museumpeace · · Score: 4, Insightful
    fascinating read that, but facile too.
    All the management of complexity now takes place within the network, so that consumers no longer even know when their electricity or water company upgrades its technology. Thus, from the user's point of view, says Mr Benioff, "technology goes through a gradual disappearance process."
    [from the article]
    This push to make [for the user] simple what is after all increasingly complex, can only hide, not eliminate the role of the nerd class, a role the article disparages because nerds are presumed, as the inventors, to have foisted off complexity on the unwitting public. Was it Heinlein who said that "any sufficiently advanced [or was his word complex] technology is indistinguishable from magic"? The wish, on the part of typical users and marketers, that all the wonders of our age and those ages coming next should all just work like magic will in fact only ADD the complexity of UI technologies that are good at hiding the guts of the systems we depend upon. The the engineers and technicians will be as needed as ever and get even less sympathy from a public that never sees directly what it is that the "nerds" are doing for them.
    --
    SLASHDOT: news for people who can't concentrate on work or have no life at all and got tired of yelling back at the TV.
    1. Re:MAGIC, COMPLEXITY ARE INCOMPRESSIBLE by Anonymous Coward · · Score: 2, Informative
      Was it Heinlein who said that "any sufficiently advanced [or was his word complex] technology is indistinguishable from magic"?

      Was Arthur C. Clark, I believe. And the corollary to that is something like:

      Any technology that IS distinguishable from magic is not sufficiently advanced.
    2. Re:MAGIC, COMPLEXITY ARE INCOMPRESSIBLE by Headw1nd · · Score: 3, Interesting
      This push to make [for the user] simple what is after all increasingly complex, can only hide, not eliminate the role of the nerd class, a role the article disparages because nerds are presumed, as the inventors, to have foisted off complexity on the unwitting public.
      I think the consideration you should take in that article is distiguishing what we will call the "common nerd" and the "ubernerd".

      When a technology is in an underdeveloped state, the use of that technology is very complex. It requires a certain level of knowlege to do anything, thus the employment of large numbers of people whose primary asset is the knowlege of technology X. As these are the gatekeepers of the technology, the interface is designed with their needs and knowlege in mind. As the technology develops, the interface to that technology simplifies. The gatekeepers obsolesce, even though the technology has grown more complex. Certainly, very talented individuals are at work behind the scences developing and maintaining the technology- but they are behind the scenes. You don't need to deal with them to use the technology.

      I don't think the intent is to blame complexity on nerds, but to point out that most new technology is designed for consumption by nerds. The nerds are still gatekeepers, and access to technology in nerd-mediated. Today we see a huge demand for the "common nerd" in a very public role: maintaining IT systems. In the future, the gatekeepers will, like in technologies before, obsolesce. The "ubernerds" of the future will still be at work, but far from the public that uses their services.

  9. Complexities aren't going anywhere by GreenCrackBaby · · Score: 4, Interesting
    For an outsider looking in, perhaps it's easy to look at something like Google's 23-word front page and say "why can't they all be like that!" Too bad most systems need more than one form element to allow the user to interact with the system. Can you imagine someone telling Adobe to reduce their Photoshop interface down to one or two buttons? It would make no sense simply because editing a digital image is far more complex a process than 'search the web for these terms' to a user (though both may have similarly huge code bases behind them).


    Complexity in IT isn't going to go away. In fact, I'd argue it is a necessity. There are some tasks that simply require complex systems and those complex systems require complex data and/or complex user interfaces.

    --

    "The market alone cannot provide sufficient constraints on corporation's penchant to cause harm." -- Joel Bakan
    1. Re:Complexities aren't going anywhere by Billly+Gates · · Score: 4, Interesting

      But here is the problem. All the complex systems don't talk to each other.

      The IT manager who quit from JP Morgan was a perfect example. You have 450 applications talking to each other and a user calls the helpdesk and demands an answer right away. What caused the problem? Which layer? Which application was doing what to the data?

      Microsoft was hot for awhile with the IT managers in corporations because all the dcom/com/ole applications can interact with each and become one. This can help the problem tremendously.

      However there is no standard protocal between all the vendors. That needs to change before vendors start with their own proprietary versions that only work with their products.

      If an application uses several layers and it screws up there has to be a way to trace and find out what happened.

      Perhaps a new opensource protocal could help? I like that idea.

    2. Re:Complexities aren't going anywhere by GreenCrackBaby · · Score: 4, Interesting
      All the complex systems don't talk to each other.


      I'd argue that is a near-impossible task. My background is in billing systems, so I'll give an example from that realm...

      Our company makes billing systems that end up producing your telephone bill. Sounds simple, but the billing system alone clocked in at over 6 million lines of code. Then you have the other two big necessary systems: a CSR application (such as Siebel) and a provisioning system. Not to mention hundreds of smaller apps that feed/collect data from each application. You have no idea how complex the infrastructure can get!

      But it's not just that complexity. In our billing system, a customer's account was important because we needed to know who to charge for each transaction. In a CSR application, they care about who to contact. In a provisioning app, they care about where the account is physically. This leads to a different approach to designing something as simple as the account structure in the database. It's not something that could be standardized because each application needs to look at the data differently.

      There was some hope of standardization with middleware applications like Vitria, but what we found is that we'd spend insane amounts of time building code that translated our account between our billing system and some common model held by the middleware. The complexity didn't go away -- it got worse!

      You won't ever see a standard vendor protocol. Not for lack of wanting one, but simply because it's impossible.

      --

      "The market alone cannot provide sufficient constraints on corporation's penchant to cause harm." -- Joel Bakan
    3. Re:Complexities aren't going anywhere by aoteoroa · · Score: 3, Insightful
      From the article:

      Can you imagine someone telling Adobe to reduce their Photoshop interface down to one or two buttons? It would make no sense simply because editing a digital image is far more complex a process than 'search the web for these terms' to a user (though both may have similarly huge code bases behind them).

      You hit the nail on the head. Software is complex when used to solve complex problems and easier for simple tasks.

      A simple accounting package such as QuickBooks can seem tough to use for a user who doesn't have a basic understanding of bookkeeping. OTOH some software is so easy to use that people take it for granted. My girlfriend needed an office suite on her computer so I installed OpenOffice. Because one word processor is very much like every other wordprocessor she started using OpenOffice right away and had no problems even though the only other word processor she used is WordPerfect.

    4. Re:Complexities aren't going anywhere by wastingtape · · Score: 2, Insightful

      Yes, Google is an extreme example, but it still illustrates an important point (which you alluded to):

      You have a another good example, Photoshop. Photoshop is actually rather well orgnaized (well, version CS that is, 7.0 still feels awkward). Not every button is displayed on the interface. When a tool is selected from the tool pallette additional options appear at the top in a context sensative tool option toolbar.

      Contrast that to Word. In Word you open it up and to create a new document (i know it does it by default, this is only an example). You can choose File > New or click the button on the toolbar or click "Blank Document" in the taskpane on the right. Three visual ways to do the same task, but they all end up being different. The buton on the toolbar will create a New "Blank Document" (but of course, the only way you would know that is by testing. Clicking File > New only reveales the task pan giving you the option of what kind of new File you'd like to create. Of course, the problem here is if the taskpane is already open then choosing File > New appears to do nothing. But it gets better. Once the user notices the taskpan they are then barraged by a selection of options which include a list of thier most recently acceesed documents, a list of templates, links to microsoft, and of course "Blank Document" (though most beginning Word users never choose Blank Document as thier first choice from my observations).

      You see the difference I'm referring to though? A system can contain many buttons but still be layed out in a logocal work flow, presenting users with the options they expect. The same system can also be strewn about a confusing maze of dialog windows or different ways to do things with no visual distinguishing between them. (i don't know how many users i've had click the Print button on the toolbar then complain to me that it didn't let them choose the network printer they wanted to send thier document to.)

      I've had a similar discussion with my previous CTO about this topic. He argued that software needed to be designed to in such a way that it did not require training. My opposing point was that software is already designed that way and has proven to not work as easy as it should (think MS Word). Instead consider a bicycle. It's a simple but efficient design that requires a minimal amount of training, yet, once the training is received, a very large amount of utility can be drawn from it. Software like Photoshop requires a minimal amount of training (as compared to Word) but yet can yield very high results within that small amount of training. (Even though it's easy to drive a car we'd never let individuals w/o training out on the road!)

  10. A Lot of Silliness, and Two Spectacular Points by Onimaru · · Score: 5, Interesting

    So a lot of this space was spent explaining to Joseph P. Siquespack, Esq. what a "protocol" was and the like, but there were two points in here that I'm really glad my great-grandboss might be reading:

    1. A system should be designed to fail in a predictable way. Much like a car body, it should crumple to protect its most valuable assets, and repairs should have obvious beginnings, middles, and ends.
    2. Obsolete systems will cause you more downtime in the end than incremental upgrades. And, what's worse, it will be all at once instead of at 4am twice a month on Saturday morning.

    Neither of the above are impossible goals! They can be done with a little thought and elbow grease. And the great part is, they're probably already being done! Next time you're reading over your IT department head's recommendations for a project, call them up and ask WHY. You might be amazed at how awesome the answer is, and it might even persuade you to put away the "my way or the highway" stamp.

    --
    adam b.
    1. Re:A Lot of Silliness, and Two Spectacular Points by stratjakt · · Score: 2, Insightful

      Obsolete systems will cause you more downtime in the end than incremental upgrades. And, what's worse, it will be all at once instead of at 4am twice a month on Saturday morning.

      The problem is, that's at odds with the "if it ain't broke don't fix it" wisdom.

      Also, there are no incremental upgrades if you're running custom software under MPE on an HP mainframe. There's only (usually very expensive) migration to something else.

      --
      I don't need no instructions to know how to rock!!!!
    2. Re:A Lot of Silliness, and Two Spectacular Points by johnjaydk · · Score: 2, Interesting
      The problem is, that's at odds with the "if it ain't broke don't fix it" wisdom.

      That guy is my boss: We don't do patches, they only break stuff. Build a stable system and never touch it again until we throw it out (years later).

      Just today we had a box owned: Red Hat 7.3 (unpatched) and Tomcat 3.3. It took two years of neglegence with that box. We have other box'es that's older than that ..

      Right now we are (i shit you not) migrating our self-service system to .not, including access to all your phone records. Combine loads of personal sensitive material (who calls who) with MS servers and anti-patching strategy. Of course the ISP section of the company is moving in exactly the opposite direction MS to Linux.

      --
      TCAP-Abort
  11. Great opportunities for companies that get "IT" by Boss,+Pointy+Haired · · Score: 3, Insightful

    Sure, information technology is becoming ever increasingly complex; but it is also a great opportunity for companies that have the management able to deal with that complexity to excel and outperform their competition.

  12. Chinese Slave Labor by Anonymous Coward · · Score: 2, Interesting
    The problem is that American politicians want to integrate the Chinese economy and our economy. In this combined economy, whenever Beijing intervenes in the Chinese economy, that intervention also affects the American economy. Yet, American politicians continue lying, "The USA has a free market because Washington does not intervene."

    What we should do is to terminate all trade (including goods and services -- which includes labor) with mainland China. Ditto for India and Mexico. Until the Chinese, the Indians, and the Mexicans commit to free trade and Westernization, we do not trade with them.

    Further, we deport all the H-1B workers.

    1. Re:Chinese Slave Labor by Anonymous Coward · · Score: 2, Interesting

      Further, we deport all the H-1B workers.

      Tell you what, at this point, there's no point in doing this. Instead, I say we let these people come over and enjoy our crappy healthcare, crappy retirement fate, crappy work environment, and crappy housing situations, while India accepts the same number of people to take their American money and live like kings (or at least moderately wealthy princes) over there. Or maybe I'll go move to Spain. Work all morning, work in the evening, sleep all afternoon. Sounds like the good life to me. Or Austraila, being "down under" sounds like fun, and the accent is pleasing to me.

      The balance would instantly snap back to normal if people were allowed to be as global as companies Until then, the companies will simply move from population to population leaving a mess of people who are no longer trained to do anything but the jobs that the company took with it as it goes. Countries make loud noises about people "stealing the jobs of locals" but when IBM packs up a call center and moves it, a few million dollars to the local politicos' campaign funds and suddenly they're not stealing jobs, they're simply doing that thing corporations do.

    2. Re:Chinese Slave Labor by tarunthegreat2 · · Score: 5, Interesting

      Of course, I'm feeding a troll here, but India has been on a path to "westernization" for about 200 years now, ever since the British East India Company first set foot on the shores of Calcutta. India alreasy has a "western-style" political and economic system, so STFU. Our laws are based on British Common Law - newsflash - so are American laws. We VOTE our leaders in to power. When two companies have a dispute ove a contract they go to court. When we want to make laws, they have to passed by two houses of parliament. Parliament happens to be this big place where elected representatives gather - to pass laws. Oh, and the unofficial offical language of India is ENGLISH. Imposing this system on a culture which has been transforming and transitioning for the past 1900 years going from Hindu - to Buddhist- To Muslim - to British is going to produce results which will be very different from what a pitifully young country like America isn't used to seeing. So just get the fuck over it. Finally this commitment to free trade that you talk about - The developing countries are ready & waiting for it. It is America that can't handle freeing trade in agriculture and industries like steel. It is USA which puts quotas on garments. Look up any textbook: quota != Free Trade. If you think an Indian software engineer is cheap, wait'll you discover the price of an Indian orange, or an Indian T-shirt. But you won't know about those because trade in those items is not "FREE". And it's not free because the EU and America want it that way. Because Billy Bob with-mouth-in-straw living in a redneck county of a red state just voted the current monkey into the white house. Now go back guarding the bridge, trolly-wolly.

  13. Just Engineering Taken to its Logical Conclusion by smug_lisp_weenie · · Score: 5, Insightful

    Engineers love to break things into smaller parts, each part serving one and only one function, like pulleys, shafts, rotors, etc.

    For really effective design each part has to serve multiple functions, like evolution is able to do: The human mouth can be used to eat, breathe, talk, etc etc.

    That's why a robot can't compete with an animal- In a robot each part usually severs only one function, making the machine inefficient as a whole.

    This problem is just magnified in computer software and will only get worse unless engineers start changing their tune. I think the worst offender of this philosophy is object oriented programming: It's the ultimate embodyment of this philosophy- Most big object-oriented software have only about 2-3% of code that performs any real work, with the rest only is window dressing to fulfill the engineer's urge to "modularize".

    The best software I see seems to be written either in more pragmatic procedural styles, or uses better mathematical underpinnings for its structure, like you'll find in functional programming languages (Haskell, Lisp, etc.)

    My apologies for living up to my user name!

    Conrad Barski

  14. Near Max Complexity of Industry by Teancum · · Score: 4, Insightful

    The problem with trying to compare the software industry to other endeavors of human experience is that in the realm of the computer/electronics industry that most software developers are dealing with, you are near the pinacle of dealing with abstraction of complex systems. While there may be other very complex systems that on a large scale can compare to some computer networks or CPU designs, computer science is the practice of dealing with abstractions on many levels, sometimes simultaneously.

    Indeed, electronic state machine digitial computing devices (also called computers) have proven so successful, with the software abstraction dealing with the various levels of abstraction, that they are used in the controlling of other complex systems, from air traffic management, urban water system management, freeway traffic monitoring, and law enforcement dispatching. You've seen them, and they are out there.

    Some very talented engineers have done a surprisingly good job of simplifying the tasks and reducing the abstractions to the point that all you need to do for the most part is plug it in and watch the gizmo do its thing. What this article in the Economist seems to be doing is complaining that the job isn't finished, and that complexities in setting up a computer system for some project is more difficult than it should be. That is primarily due to the fact that the author is using products that don't comply with standards (a real problem if standards don't exist yet for a certain concept or technology) or they are using the wrong tool for the job, like using a hammer to put in a few screws. Sure, it will work, but it is aggrivating and sometimes takes quite a bit longer to get the job done, and can damage things around it as a side effect. How many software/electronic gizmos out there do you know get used like that?

    While I'm willing to acknowledge that I don't know everything there is to know about the management and organization of complex systems, I would be more inclined to get the opinion on such a subject from a computer programmer than from a plumber.

    1. Re:Near Max Complexity of Industry by Fulcrum+of+Evil · · Score: 2, Insightful

      What this article in the Economist seems to be doing is complaining that the job isn't finished, and that complexities in setting up a computer system for some project is more difficult than it should be.

      Did you notice that the author seems to be complaining that enterprise datacenters are composed of products from multiple vendors? I can't see a datacenter turning into something simple and easy - that's like expecting an assembly line to come in a consumer version.

      --
      "We returned the General to El Salvador, or maybe Guatemala, it's difficult to tell from 10,000 feet"
  15. Re:The comments here underline the problem by SlashHoe · · Score: 2, Funny

    All my programs would have a great interfaces if they only had 1 boolean variable in it. A light switch is very simple. But try connecting it to the internet, email a friend and do your accounting with a light switch.

  16. Using Firefox or Mozilla? - BugMeNot by Poulpy · · Score: 2, Informative

    Ever heard of BugMeNot?

  17. Re:Just Engineering Taken to its Logical Conclusio by TheLastUser · · Score: 3, Insightful

    To paraphrase oo doesn't make messy code, messy people who mis-use oo make messy code.

    I think the main problem with what, aparently all of us, have seen with oo code, is the universities. The coding style that is taught in universities makes for really ugly, unmaintainable code.

    If you cram 100 abstractions and modularization into a project in university, you get an A and every one says how clever you are to have used all of these features in your project. Do the same in the real world and you are left with unmaintainable blech.

    People have to learn that the various oo features are there to help them simplify their code, not to make it more complex. If using a particular modularization technique, say an interface, doesn't remove complexity then don't add it.

    Another really bad thing that people do is add code for some unspecified future purpose. Maybe they are creating a class that does some math, they need an add method and a subtract method, so they think, what the hell, I'll add a multiply and divide too. Why? All this does is make the code less readable. Never implement anything that you don't need right now.

  18. I cry bullshit... by Linegod · · Score: 4, Insightful

    I hear this every damn day. 'We need to make it simple', 'It is a simple service' or 'It is a low option service'. This may work fine for the sales and marketing drones that make their commission off selling unnecessary services to uninformed customers, but as long as there is _choice_ out there, the backend is going to be complicated, and somebody, somewhere is going to have to known how all of it (or at least a major part of it) works.

    Try all you want, but unless the entire IT industry decides to switch to one massive global device that we all plug _directly_ into, you can't make video conferencing/VOIP/disaster recovery/etc through 2 LANS, 3 Service Providers and 10 different security layers a 'green/red' push button operation.

    I've gotta go get drunk now....

    --
    -- I care not for your foolish signatures.
    1. Re:I cry bullshit... by mankey+wanker · · Score: 3, Insightful

      I think I can amplify on this point. We keep hearing about "killer apps" like cell phones and so forth, and why can't computer technology be as simple as a cell phone? Etc, etc, etc...

      Hell, I can barely work my cell phone! Why? Because I am too busy keeping up with computer technologies to worry about much more than what it takes to make the cell phone place a simple call, or to return one. My point is this: the cell phone is not so simple unless you REALLY want to know how to use all of it's features and spend some time with the manual and get it all down to rote.

      If people felt that way about ANY computer technology beyond email clients and browsers they'd then have the exact same enthusiasm for the computer as they do for the cell phone.

      That's the bullshit part, that most other technologies are any more simple. Remind your parents/clients how they can't program the VCR either. Confirm for them that it's mostly a matter of the will to achieve a thing.

  19. Re:That last link by skids · · Score: 2, Insightful

    Yes it was fascinating reading. I was so looking forward to that last article (Maybe I will try bugmenot, been meaning to.) I even for a split second thought about giving up my information and registering. But then, I thought... you know, if I was having trouble getting people to register to my website, wouldn't a trail of breadcrumbs in a ./ article do the trick?

    Sorry, no nibbles from this fishy.

  20. Re:Just Engineering Taken to its Logical Conclusio by smug_lisp_weenie · · Score: 2, Insightful

    > That doesn't mean that all layers are actual code,but can be just proxies for a possibility.

    If you look at a button control in the latest iteration of .NET, it has 18 levels of inheritance above it, all designed for these kinds of hooks. Are you able to break the concept of a button into 18 separate levels? I can't. Do you think this is a good design? I don't.

    > an engineer makes things as modular as they need to be and no more. But they design so that they can replace with better technology later.

    If that was really the case, I think that line of reasoning would be justifiable. Personally, though, I find a lot of the complex software written that I have to deal with is filled with good modularization intentions that would have been a lot less problematic if people had thought to themselves "Don't write what I don't need right now, today."

    > You don't know what you are talking about

    You make some good points. Why follow them with attacks?

  21. The Economist by __aavljf5849 · · Score: 2, Insightful

    I like how this post instntly soawned a flmewar pn economy, mostly fueled by people that either don't understand
    1. that The Economist is a magazine, not the people referred to in the sentence "economists say".
    2. anything about economics.
    3. both.

    The Economist is a very good news magazine full of reasonable articles and opinions, in all senses of the word "reasonable". There is not enough praise on Slashdot to make it justice. You should all subscribe, assuming that you are interested of knowing what happens in the world from a political, economical and yes, technical standpoint.

  22. Complexity needed for Simplicity by LucidBeast · · Score: 3, Insightful
    First article paradoxically claimed that software complexities are making things difficult, but ofcourse as anybody who has written code knows, if you want to make things easy for user you need to write more code. Lets say you want to delete a file:
    rm foo
    vs. today
    point a mouse to a file open a menu select delete or alternatively press del or alternatively drag file to the trash can.

    Code for rm could be implemented in C with handfull of lines. Todays alternatives take thousands of lines of code, but to an end user the second alternative is simple. User doesn't have to know what the commands are, just toss the file away, as you would with solid objects.

    So there we have it, simple problem becomes complex from implementation point of view. I once had a customer who joked when I delivered them a new system that calculated the price and basic layout of the systems they were manufacturing, that inspite the fact that now it took less than tenth of the time to do the calculations, that we could still improve it so it would do the calculations when he pressed a button while thinking of something else.

    It should also be noted that what was impossible few years ago is now possible, because of improvement to hardware. This adds to the layers of complexity, because implementers can actually use modular approach instead of optimizing at lowest possible level.

  23. forest through the trees ... by wobblie · · Score: 3, Interesting

    Main problems in IT in the US:

    1. Companies have gotten to big
    2. Companies try to centralize everything, instead of delegating duties to competent people (this practice also encourages hiring incompetent people). Competent IT workers are also very unhappy when they hands are tied by bureaucratic BS
    3. relating to (2), companies don't give raises or benefits anymore, which causes competent / motivated workers to hop jobs to get increases in pay
    4. People doing all the "centralizing" are ignorant of standards

  24. How aerospace does it by Animats · · Score: 4, Interesting
    Aerospace has dealt with high complexity for decades, rather more successfully than the IT industry. Here's how.
    • Interface specifications dominate If it doesn't work the way the spec says it does, fix the box, not the spec. If A won't talk to B, run the tests to check compliance with the spec. If you can't tell who's at fault, the spec is broken. This is why you can swap a Pratt and Whitney engine for a Rolls Royce engine.
    • The buyer, not the vendor, decides what is a "defect". One of the fundamental problems in IT is that vendors have sole discretion to decide what is a defect and what isn't. That doesn't fly in aerospace.
    • Fix blame. In aerospace, people get blamed for screwing up. You do not want your name or the name of your company to appear in an NTSB crash report. If you screw up big time, it will. Mistakes in aerospace are publicized. There's an NTSB database of 140,000 crashes. If it was a hardware failure, the vendor is named.
    • Warranties have real meaning Airplanes come with good warranties, and so do all the parts that go into them. Commercial software doesn't.
    This runs engineering costs way up, and the life cycles are longer, but in IT, most of the commercial products are sold in large numbers, so you get to spread that engineering cost over a large number of items.

    It's time for computing to grow up and accept this kind of discipline. The automotive industry had to accept it in the 1960s, and cars got much better within a decade.

  25. Re:Just Engineering Taken to its Logical Conclusio by version5 · · Score: 2, Insightful

    Eh... unconvincing. Organic systems are great if you don't mind a little fudging of the numbers. For example, human memory is notoriously unreliable. Combining features tends to create single points of failure and organic systems have a very narrow optimal operating environment. Try dropping the temperature by a hundred degrees or so and see how you fare. The lack of validation, if you will, on inputs, creates a significant susceptibility to viruses, bacteria, food poisoning and the like.

    There are plenty of successful organic systems, but there's a whole lot more failures, which you don't see, because they are all dead. And failure is pretty expensive.

    Also, you aren't taking into account the fact that complex computer systems perform sophisticated analysis on other complex information systems that organic systems are ill-equipped to handle. They are really best at operating on other organic systems. So if you were to design organic financial software, it would work best on an organic financial system. When you want near-instant, reliable, repeatable and accurate information, an organic system won't work for you at all.

    Its like the difference between designing a bridge over a river, and waiting for a rockslide to fill in the river.

    --

    "It's Dot Com!"

  26. Re:That last link by Akki · · Score: 3, Informative

    The premium article, naturally, is the worst of the bunch. It reads like the introduction to a Software Engineering textbook, padded with endless definitions of "regression testing", "open source", et al and contains almost no actual content. It may be interesting to the Economist's readers, but I doubt it is to very many people on Slashdot.

  27. Re:Just Engineering Taken to its Logical Conclusio by 10am-bedtime · · Score: 2

    you can't slam modularity w/o being self-inconsistent.

    why? because to slam something means to put yourself outside of it in the first place (and pour invective on it in the second). putting yourself outside of something (drawing a boundary around it) is the essence of encapsulation, which is one of the techniques of modularity.

    so, let's be charitable and assume you don't want to slam modularity full-force, but rather some of the other techniques for modularity that often find themselves badly understood and/or badly implemented.

    btw, lisp is modular, object-oriented, etc etc, too.

    as for the invective you poured, not bad. just don't waste it in the gutter the next time 'round.

  28. No, that's economists, not "The Economist"... by israfil_kamana · · Score: 2, Informative

    ... which is a magazine, and not to be confused with the profession. In fact, I know of a few newspapers with that sort of name: The Economist and Sun, the Economist-Tribune.

    Newspaper and magazine names are usually historical, and the words they contain have often changed meaning. For example, there is a local newspaper north of Toronto called "The Liberal". This newspaper has, for example, no ties to the Liberal Party, is not particularly philosophically Liberal (whatever that means), and is basically a local community newspaper that was named almost a century ago {more or less). What's in a name? Often, when it comes to media titles and tag-lines... nothing.

    Just rememeber, "fair and balanced" is the tagline of Fox News.

    --
    i - This sig provided by /dev/random and an infinite number of monkeys at keyboards.
  29. Re:Lisp,Smalltalk and complexity-Operator Overload by Anonymous+Brave+Guy · · Score: 3, Insightful

    I think the problem is usually implicit type conversions rather than operator overloading. In particular, allowing almost-random conversions between a concrete type such as a number and a string form is just asking for trouble: it's great for quick 'n' dirty scripts, but a child's toy in a grown-up world for serious projects.

    --
    If you disagree, post your argument. (-1, Overrated) isn't your personal censorship tool for views you don't like.
  30. Convenient complexity by Mydron · · Score: 2, Insightful

    Complexity may be inevitable, but for a moment lets put on our economist hat and look at what motivates companies to tolerate complexity. While some complexity in inherent, I believe that a lot of this complexity is often accidental, sometimes born out of naivete and occasionally deliberate. However, at the end of the day companies are not in a big hurry because the added cost of complexity often doesn't cost them anything, it is merely added to the cost of doing business and paid for by the consumer.

    Furthermore, in some cases complexity can be quite convenient. For example, in my city the gas company outsources its billing so that one company provides gas and the other bills for it. Sounds great, but when ever there is a discrepancy between the bill and the amount of gas you've used, good luck trying to get something resolved. In my case the gas had long been cut off but the billing continued. After fighting through automated telephone systems to speak to real live people they quite happily point the finger at the other guy and leave it at that. In effect the complexity that they have engineered into their business model provides them with a very handy excuse for inaction.

    Perhaps you expect capitalism and free markets to address this problem? I think that the much of our technical infrastructure is so monstrous and well entrenched that, just like your local utilities, there no room for upstart firms to enter the market. For the consumer (end consumer or other business entities) there are very few legitimate choices. More often than not I think that complexity is often just another excuse to maintain the status quo and an excuse that is held up to 'educate' consumers not to expect any better.

  31. Religious awe by TapeCutter · · Score: 2, Interesting

    The feeling of religious awe when looking at something with the beauty and complexity of DNA is the same regadless of your belief in God or lack thereof. Assigning "miricale status" to DNA gets logically messy since if DNA is so "special" that God must have developed it, then who developed the "special" God. The usual answer is that God's simply states "I am", but if God "just is" then why can't the Universe "just be"? Scientific dogma says nothing about the existence of God. It's just that as far as explaining how the Universe works, God is considered irrelevant.

    --
    And did you exchange a walk on part in the war for a lead role in a cage? - Pink Floyd.
  32. Middleware... by TapeCutter · · Score: 2, Interesting

    I have worked in a Telco on a large job dispatch system and what the parent says is spot on. I found that the middleware was indespensible since various changes would impact the transaction formats. The middleware was used to translate transactions into various versions so that upgrading the whole system could be managed one app/sub-system at a time. I don't know of any simpler way that gives you the flexiblity to "evolve" a system regardless of project deadlines being met or not. However the "evolution" by default gets more complex since you can easily add a field to the end of a transaction but it is difficult to remove them. Instead people tend to recycle old fields, ignore them or do something "clever" like variable length field with sub fields, all sorts of arcane rules and band-aids some going back 20 years! A Telco system keeps it's history in its transaction formats (kinda like DNA). Even though the original app may have died 3 generations ago the ability to "talk" to the system is dependent on the original transaction formats. This is because replacement systems are required to "fit in" with the existing formats either directly or by using middleware. In effect a new app (or the middleware) inherits the DNA from the app's it replaces or talks to. It then starts adding some of it's own mutations.

    --
    And did you exchange a walk on part in the war for a lead role in a cage? - Pink Floyd.
  33. Re:you should have prototyped the argument types by MagikSlinger · · Score: 2, Interesting

    I didn't have time to read the whole Pike manual, but from what I can tell, it's C++'s run-time type system implemented in a scripting language setting. But the thing I notice was that you can (and usually do) declare types, even if it's just the most general type that is accepted.

    I remember in Comparative Programming Languages playing with an ML variant called Miranda. All the joys of LISP's data structure manipulation but the power of types. In fact, I remember Miranda could do some seriously cool stuff with the type signatures for functions to implement polymorphism more akin to Prolog than a functional language.

    Declaring types is good. Making promises between modules and objects is good. LISP and SmallTalk don't believe in this. They say "the programmer can do all that discipline themselves". Yeah, and they can also do their own memory management too.

    I sometimes think the advancement of the LISP concepts has been held back by the zealot LISP purists. "You must use brackets, Infidel!! ALALALALALALALA!!!"

    --
    The bitter lessons of a veteran coder: http://bitterprogrammer.blogspot.com
  34. Short term memory space by TheLink · · Score: 2, Informative

    Most people can only keep/visualize/instantiate about 7 distinct objects in short term memory at any one time. You might want to stick to a max of 5 to cater the slightly below average. (Maybe someone might want to be a hero and try increase the population average to 10 items or something ;) ).

    There are workarounds if you can easily get people to group a bunch of items as one object.

    If people have to remember 7 or more important things during the learning period where short term memory is used then the thing is hard.

    Given the amount of choices and options possible with software, it's going to be hard.

    So the workaround is to split the learning phases to small absorbable chunks and give time between these phases for people to commit them to long term memory.

    If you use common/defacto UI standards, many of the users would be familiar them and so the effective number of learning phases required drops.

    --
  35. Never say never :-) by Anonymous+Brave+Guy · · Score: 2, Insightful
    Never implement anything that you don't need right now.

    I'd prefer something like: "Don't bother implementing things you don't know you'll ever need." That still rules out the time-wasting feature creep, while acknowledging that it's often far more efficient to plan for likely future developments from the start rather than constantly evolving a system without any sort of "grand plan".

    All evolutionary development causes overhead, most of which is unnecessary if you can anticipate major future developments with reasonable accuracy. Despite all the nay-sayers, I have never yet worked on a real project where this was not the case.

    --
    If you disagree, post your argument. (-1, Overrated) isn't your personal censorship tool for views you don't like.
  36. Complex IT acronyms by Linuxathome · · Score: 2, Funny

    On the lighter side of things, I find it funny that IT departments often "re-invent" themselves by changing their name and acronyms--a complexity in themselves. You find acronyms such as MIS, CLC, ITC, CIT, CITS, etc. But in essence they all stand for the same thing.

    My university's acronym is CITS (Computer and Information Technology Systems), and before that they were just the CLC (Computer Learning Center). Imagine if they kept the name "Learning" in the acronym somewhere, it could've been: Computer Learning and Information Technology Systems (CLITS). But somehow I don't see that happening.

  37. Re:India: High Rate of Abortions Killing Female Fe by mattrumpus · · Score: 2, Insightful


    This has to be a wind up!! East Timor! The Australian Government of Gough Whitlam stood by in 1974 whilst the Indonesian Government invaded East Timor then condoned Indonesia's control of the country. Until 1999 the Australian governments from both parties were happy to keep diplomatic ties with Jarkarta and sell weapons, and military training to the TNI (indonesian miliary). Weapons and training they had been made plainly aware was being used to suppress civilan dissent in East Timor, including torture and murder.

    The brief intervention in East Timor was aberrant, rather than standard behaviour for Australia and was a tiny step back towards reasonable and respectable treatment of a loyal wartime (WWII) ally, East Timor.

    Perhaps while you take the time to "condemn India, China and Mexico" you might read an international news paper... this is all in the public record.

    --
    Who's with me?! I SAID... WHO'S WITH ME!!??