Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

54
votes
9answers
20k views

What are the benefits of using C# vs F# or F# vs c#?

I work for a tech company that does more prototyping than product shipment. I just got asked what's the difference between C# and F#, why did MS create F# and what scenarios would it be better than ...
19
votes
7answers
840 views

Delphi 64 bits?

Delphi 64 bits is on its way as everybody knows (every delphi programmer at least) . Apart from what codegear says about the benefits of a 64 bits Delphi app (and codegear does not say much about), ...
8
votes
15answers
472 views

Goals of refactoring?

What are the goals of refactoring code? Is it only to enhance the code structure? Is it to pave the way for future changes?
6
votes
2answers
103 views

What are the advantages of splitting a string to initiliase a javascript array?

This pattern is quite common; I've seen it in a few places including the jQuery source code: var arr = "word1 word2 word3".split(" "); as an alternative to the 'normal' methods of array ...
5
votes
6answers
345 views

Has using an acknowledged anti-pattern ever been proven to actually solve a problem, or be beneficial in any other way?

Has using an acknowledged anti-pattern ever been proven to actually work in a certain specific case? Did you ever solve a problem or gain any kind of benefit in one of your projects by using an ...
5
votes
4answers
2k views

What is the benefit to limiting throws allowed by a C++ function?

What is the benefit of declaring the possible exception-throws from a C++ function? In other words, what does adding the keyword throw() actually do? I've read that a function declaration such as ...
3
votes
1answer
154 views

What are the benefits of building HTML markup with HTML helpers in web2py?

I would like to learn the benefits of using HTML helpers in web2py instead of plain HTML markup elements. As an example, I read the following HTML markup builder code in a web2py application ...
3
votes
6answers
448 views

Benefits the Win32 API has over .NET

This is a rephrase of an earlier question, which got chopped down badly by the community. Fair enough, it might have been too argumentative. Since I'm really interested in what people here think ...
3
votes
3answers
480 views

FxCop is it as valuable on VB.NET as it is on C#

I have been looking at a few of our VB.NET dll's using FxCop and all of the errors relate to DLL setup (i.e. Strong Names, Culture Info) and the case of Variables methods. Looking at a few examples ...
3
votes
8answers
329 views

Best case to move to an agile development methodology?

If you had to make a case to a business about adopting or moving to an agile development methodology (like SCRUM or XP etc) what case would you make (how do you sell the concept)? e.g. How would ...
2
votes
0answers
93 views

The Implementation and Benefits of Harris Corner Detection

Can someone tell me, the benefits of using Harris Operator as Corner Detector than the other detectors? and software or system that using this corner detection.. please include links for reference.. ...
2
votes
2answers
377 views

Benefits of using static variables and methods in Java

What are all the benefits of using static variables and methods in Java?
1
vote
5answers
847 views

What's the benefit of Scala (singleton) object vs. typical class level artifacts

I understand one of the main benefits from using object is, they are real objects instead of system wide functionality. But finally those objects are also system wide accessible. Beside of being ...
1
vote
8answers
634 views

Why use a “do while” loop?

I've never understood why using a do while loops is necessary. I understand what they do, Which is to execute the code that the while loop contains without checking if the condition is true first. ...
1
vote
5answers
1k views

SQL Server Foreign Key constraint benefits

We're designing a database in which I need to consider some FK(foreign key) constraints. But it is not limited to formal structuring and normalization. We go for it only if it provides any performance ...
1
vote
9answers
670 views

Benefits to using a database table instead of just hard coding a simple list of data if the data is consumed by 1 app

For a while, I've been told by a number of people that a listing of U.S. States (and territories) should be stored in a database table and cached for applications that use the information. The only ...
1
vote
2answers
521 views

Does using the Specification Pattern truly reduce complexity in your code?

From my reading, it appears that the Specification Pattern can greatly reduce the reduce the number of methods needed to filter data. What benefits have you seen using the Specification Pattern? ...
0
votes
1answer
149 views

Can I use Silverlight MVVM Pattern to build Online School Management system?

Can I use Silverlight MVVM Patern to build an Online School Management system? Are there any benefits to building that kind of application in the MVVM pattern ? I am new to Silverlight and MVVM. What ...
0
votes
2answers
595 views

Load balancing web servers: Benefits, disadvantages, mainstream?

The questions I have regarding load balancing are: Why exactly would you want to load balance web servers instead of upgrading to a new server? Is it common practice to have a load balanced setup ...
0
votes
5answers
959 views

Typical Internship Relocation Package

As someone who was recently offered an internship at a large international company, I'm wondering what the typical benefits package for a relocating intern is? Are relocation packages typically even ...