Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×

Comment Re:It's not the government's business... (Score 1) 134

cartels often use the power of government regulation to do the work for them. A cartel is very different from a monopoly and benefit from the distinction. They have influence above a monopoly precisely because there exists a few in cooperative competition. In the US you have cartels in cars, telecom, media, and pretty much every other totally screwed up market segment. All of them use the power of government to screw consumers and restrict competition.

Comment Re:Design Patterns (Score 3, Interesting) 517

GoF --> -1 Overrated. Not because of the book, but because of most of the idiots who didn't conceptually understand the applications after reading. Half the people who try to talk in patterns don't understand the difference between Command, Visitor, Chain of Responsibility, etc. They understand Singleton, and that's it. Of the people who can talk in patterns, a good 50% don't really know how to appropriately use them together in system and software architecture. Meaning, at best, 1 in 4 of those who reference GoF patterns are actually using the work to help in communication and design.

I think it's probably an important book in the history of Software Engineering (not to be confused with CS). The book unfortunately spawned at much bad design as it did elegance.

Comment Re:Nothing New (Score 2, Funny) 186

That's why DNA has become so useful for classification. Much like this new family of birds, it had to come from someplace. If it is so genetically dissimilar to everything else, than a new family is great.

If it's just a funny-looking giant-panda-family relative then it gets a different genus and we figure out how to save it. If it's a racoon-family relative we see how quickly we can hunt the thing into extinction.

Comment Re:To Steve (Score 1) 821

I would mostly have agreed with you except that when my old Macbook Pro melted down a month ago, AppleCare replaced it with a late-2008 MacBookPro, removing that option of staying with the old. There are definitely things that I like about it compared to the old one, and some things I dislike. For the most part, none of the changes have truly bothered me after a small adjustment period. I've gotten used to the glossy screen, and except for the photoshop geeks who are now a smaller share of Apple's market, it really doesn't really affect users materially. The lack of a button to hit with my thumb took some getting used to but I like the new gestures for expose. I really enjoy the fact that I can use the laptop as a true "lap top" without 3rd degree burns now.

In the end I think it's the modern form of detente that content providers are playing with Apple, the king of digital distribution -- sometimes I have to buy my wife crap that I don't want just so that she'll continue to sleep with me. It's a balancing act. How much will you put up with to get what you want. Apple wants it because content distribution keeps people buying their hardware. That's what they really want.

In the end Apple is a hardware company that only writes software or adds features to sell more hardware and maximize shareholder value. The display port is a nuisance, but they'd rather sell you an Apple TV to play your protected content from. Or a new cinema display. They'll skip the HDMI because it's expensive to license for laptops and cuts into their profit margins. Prices of iPods haven't dropped while the price of flash has plummeted. You get the picture. Meanwhile they have more cash in the bank than just about any other tech company out there.

Comment Re:Not just women... (Score 1) 1563

H1B and green cards driving down wages have a lot to do with it. The perception that tech jobs are easy to outsource to India/China has a lot to do with it. The laziness and lack of preparation by primary and secondary educational institutions also has a lot to do with it.

There are lots of American-born CS people working in the cleared world, but that's about the only place you see them anymore.

Comment Re:Women don't want to do CS? (Score 1) 1563

Lawrence Summers once argued that 3 things kept women out of the hard sciences and engineering (from wikipediea):

1. that more men than women were willing to make the commitment in terms of time and flexibility demanded by high-powered jobs
2. that there were differences in the innate abilities of men and women (more specifically, men's higher variance in innate abilities or preferences relevant to science and engineering).
3. that the discrepancy was due to discrimination or socialization.

The feminist movement shouted him down as Harvard President, but never truly rebutted his arguments.

Comment Re:MacOSX has awful Java support (Score 1) 771

I would say most java developers work on WAS,WLS, and/or JBoss or some lesser J*EE player. IBM and WeblogicTengah/BEA/Oracle haven't supported macs officially anyway. Jboss doesn't require a 1.6 JDK even for the 5.0.0 Release candidate.
1.6/1.7 is completely a dumb argument to make, when there are far better ones.

Comment Re:That's some serious scope creep... (Score 2, Insightful) 429

Wow, I almost totally agree. I hate spring for all the stupid interfaces that usually get created and then replacing simple compile-time problems with hunting through a zillion XML files to try to find what the root cause of a cryptic runtime exception is. I'm also a big fan of EJB3 and it's implementations up the Kodo/BEA/Oracle JDO food chain.

Comment Re:Why not use both options? (Score 3, Interesting) 429

Wow, someone who actually knows what they're talking about when posting here. That's kinda like someone RTFA.

Hibernate is good by me, though I've enjoyed using Kodo/BEA/EJB3.0 in the past for OR mapping as well. Even old school JDBC in session beans is often good enough for most things.

Personally I usually hate Spring IOC because all of the simple compile-time problems with typos and capitalization on imports turn into runtime configuration problems because those typos now exist in one of 500 random XML files (and the last one that you would think to look in). That and you often have a billion stupid interfaces with one and only one implementation class. Add to that NooB's who think everything has to be a session EJB with still another Facade EJB in front of it because they think Rod Johnson said it was supposed to be that way, and you realize that frameworks aren't necessarily going to make the architecture better, they just create more places for dumb developers to screw up (not that the original poster is doing that). Spring works well for developing a system that needs to support a lot of app server specific junk on multiple app servers (like LDAP single sign on stuff and JMX voodoo), multiple implementations of the same interfaces (like a product company writing client specific stuff), as well as for transaction management beyond pure JDBC transactions while running standalone JVM's outside of an app server. Almost no one needs that, so usually Spring is more hassle than it's worth. (particularly when trying to configure in Axis2 web services and other solutions that like to roll their own classloaders).

Good software engineers know which competing frameworks to use, when each is appropriate for the assigned task, when to forego a framework and roll your own. Good architects know all of that, plus when the developer is designing a Rolls Royce when a Toyota is appropriate, which frameworks play well together, which is appropriate for the developers on the team both present and future, as well as when architectural decisions should be made, because switching frameworks or architectural refactoring midstream becomes insanely expensive and wasteful. Bottom line -- code reuse in and of itself may make the coding easier to implement and maintain, but having a sound architecture appropriate to the project is even more important. Just using Spring, hibernate, struts, axis, GWT or whatever flavor-of-the-week framework is popular and throwing together some junit and canoo tests doesn't mean that your solution doesn't flat-out suck. If anything, the richness of frameworks borne of the maturity of a language requires more wisdom and discernment, not less.

As to the actual post itself -- It appears the dev isn't very familiar with the frameworks chosen, and needs to do a little digging in the mailing lists and doc. There's very few things that aren't possible with Spring/Hibernate with a little ingenuity. If the problems are with technical limitations of Spring Web Services such as WS-ReliableMessaging or WS-StandardOfTheWeek then use contract-first with Axis2. It's easy to swap it out.

Slashdot Top Deals

Be careful when a loop exits to the same place from side and bottom.

Working...