Search Results

1
vote

How to best implement swear words handler (.NET preferred)?

This is why REAL programming languages have a request.getUserIntent() method. if(request.getUserIntent() == Intent.INSULTING) { rejectInput(); } …
0
votes

Should I choose to learn Java or .NET?

Look at job postings in your area. Learn whichever one seems to be more popular. It really doesn't matter. I'm a Java programmer, but I've looked at a fair bit of C# code and it seems very similar; …
1
vote

Which ORM is the best when using Stored Procedures

Since you've got a DBA writing the sprocs, I would think the best thing to do would be to work closely with him to figure out how to map the tables to objects, and how to structure the database so …
-2
votes

advantages of .net over java in Intranet

The question isn't about the technical benefits of one architecture over another; that question is what you ask when you're trying to decide on a platform for a new project. The question is about h …
5
votes

Switching from .NET to Java?

Start here: http://java.sun.com/javase/6/docs/ Sun's documentation is pretty good. See also: …
0
votes

Could managed code (specifically .NET) ever become ‘unmanaged’?

It certainly could, but the real question is why? I mean, sure, it can be slow(er), but most of the time any major differences in performance come down to design problems (wrong algorithms, thread …
5
votes

How to refactor tightly coupled classes?

This is a big question, and one could write an entire book in answer to it. Fortunately, someone already has. Grab yourself a copy of Working Effectively with Legacy Code by Michae …
1
vote

Things to consider when writing our own Continuous Integration server?

Things I would consider: What kind of experience do we have on the team in this domain? Is the timeline such that the people on the team can put in the time to learn about th …