Search Results

0
votes

What advantages does jQuery have over other JavaScript libraries?

It has a good set of plugins and the coding style is unobtrusive which means it's not too hard to replace. There is also a nice drop in replacement for Ruby on Rails helpers called jRails. …
3
votes

How important is having BSCS as minimum requirement for new programmer hires?

It is important if you are running a consulting company that has to send people out on jobs. It is also important if you are getting into areas that require a background knowledge in the areas cove …
3
votes

Why all the Active Record hate?

I think there is a likely a very different set of reasons between why people are "hating" on ActiveRecord and what is "wrong" with it. On the hating issue, there is a lot of venom towards a …
0
votes

Service Oriented Architecture: How would you define it

I agree with all of the people that point you to Fowler on this. Basically it runs like this: service oriented architecture got a reputation as being good, so anything that people want to be associ …
0
votes

What are the pros and cons to keeping SQL in Stored Procs versus Code

Stored procedures are the worst when they are used to stand in-between applications and the database. Many of the reasons for their use stated above are better handled by views. The securi …
2
votes

Pitfalls of Object oriented programming

Yes. The basic concept of an object, or perhaps more precisely a class, is a unit of code that encapsulates data and behavior. In cases where you have only data or only behavior, object orientation …
4
votes

What’s a programming answer you hate to hear the most, yet give out yourself on many occasions?

"That should be easy" spoken within earshot of a customer upon hearing a new feature request and prior to analysis. …