The difference tag has no wiki summary.
1
vote
3answers
302 views
Does a programming language increase/decrease value? [closed]
Let's say you develop a software program for Windows in C#, then Joe Blow develops the same software program for Windows but instead codes it using C++. If Joe Blow were to sell that software program, ...
3
votes
3answers
208 views
Can we reduce confusion in line-based diff tools by annotating the code with some unique tokens?
Let's say I have
procedure1() {
--body of first procedure--
}
Then I rename it into procedure2 and create a procedure1 above it:
procedure1() {
--body of second procedure--
}
procedure2() ...
-2
votes
1answer
103 views
Special feautures of each of these languages that make them special [closed]
I interested about C++, C#, Java, Python, Ruby and Perl. All this languages are very popular and I believe that each one have something that make people to choose them. What is that special thing that ...
7
votes
4answers
585 views
Semi-intelligent “diff” utility
Part of the QA steps required for a project I am tangentially involved with require the person who is responsible to integrate new version of source file to first calculate how many lines have been ...
5
votes
5answers
561 views
Difference between planning a project vs. planning a product
I have read in numerous places that when developing a product you need to take a different approach to when you are developing a project (think "contract" work).
Some differences are:
1) There is no ...
1
vote
5answers
277 views
What difference with Android when iOS is not open?
My question may seem silly, but, I've read in many Android books that the better part of Android is Android is open, and iOS is closed.
But, from a programmer viewpoint, who cares about this point? ...
6
votes
4answers
2k views
What is the difference between building and compiling ?
What's the difference between Building and Compiling.
11
votes
7answers
986 views
Is it necessary to read every single byte to check if a copied file is identical to the original?
I recently learned of a program called Total Commander. It's a Windows Explorer replacement and has its own stuff to copy files. To check whether the files are identical, instead of calculation a CRC, ...
3
votes
10answers
430 views
Does it make sense to ask, “What is the difference between Design Pattern and Algorithm?”
From Wikipedia:
In mathematics and computer science, an algorithm is an effective
method expressed as a finite list of well-defined instructions for
calculating a function.
In software ...
3
votes
4answers
2k views
Migrating myself from .Net 1.1 to .Net 4.0
I have been working with .Net for 7 years. ASP Web Apps, Windows Forms, Windows Services, mostly done in C#, but some in VB.Net. And as we started to work with .Net 1.1, we stayed on .Net 1.1.
...
0
votes
2answers
2k views
Difference Between Software Development and Production?
In a typical SDLC there isn't much mention of the word production or development or the distinction between the two.These seem more of a real time , industrial driven concepts . I have come across ...
11
votes
6answers
610 views
What are the differences between a website and a web application?
How do you differentiate a web application from websites? It's language/platform agnostic.
14
votes
7answers
3k views
Difference Between Unit Testing and Test Driven Development
From reading the descriptions, I understand that in TDD tests are done prior to writing the function and in Unit Testing, its done afterwards.
Is this the main difference, or the two terms can't even ...
2
votes
5answers
119 views
Closest file match?
I am looking for a way to compare a set of files against a given file with each comparison giving me a "closeness" metric. I should then be able to order based upon the metric to find the closest ...