Tagged Questions

0
votes
2answers
18 views

How to merge project differences using visual source safe?

We have two different projects on our source safe database (one of them is a copy of another one for some reasons there was a problem with our branching operation that didn't pin our branched files …
0
votes
3answers
34 views

Directory contents diff

I'm looking for existing ideas / solutions to the problem of finding differences between two directories. Specifically how to identify files that might have been changed, renamed and moved. A short …
0
votes
1answer
26 views

Document Object Model - Differences between browsers

What are the primary differences between DOM in different browsers(Mozilla FireFox, IE, Opera, other)? If You can, please, give me some examples.
0
votes
2answers
32 views

What happens when I click “Blame Differences” in TortoiseSVN log?

Hi, when I was checking the latest difference in code in SVN Log, accidently I clicked blame differences insted of show differences. Now, when I check the log again I do not see anything visible …
1
vote
3answers
370 views

Difference between DTO, VO, POJO, JavaBeans?

Have seen some similar questions here and here. Can you also please tell me the contexts in which they are used?? Or the purpose of them?
2
votes
5answers
184 views

Major difference between Foreach and Using

This could even be a simple question even a school boy can answer. What is the similarities and differences between "ForEach" and "Using" (asked in an interview). My assumption was 1)Both are …
2
votes
2answers
104 views

wpf to silverlight xaml issue

Ok, I have a ResourceDictionary definition that I used for a WPF app below: <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" …
0
votes
1answer
92 views

How to count differences between two files on linux?

Hi all, I need to work with large files and must find differences between two. And I don't need the different bits, but the number of differences. For the differ rows I come up with diff …
1
vote
5answers
292 views

Compare Two Arrays Of Different Lengths and Show Differences

Problem: I have two arrays that can possibly be different lengths. I need to iterate through both arrays and find similarities, additions, and deletions. What's the fastest and most efficient way …
4
votes
6answers
364 views

subtle differences between javascript and Lua

i simply love javascript ... it's so elegant (imagine the quiet sound of lovestruck fanboy sighing in the background). so, recently i have played with Lua via the löve2d framework (nice!) - and i …
16
votes
4answers
996 views

WPF vs Silverlight.

What are the exact differences between WPF and Silverlight?
6
votes
4answers
1k views

C# vs VB.NET - Handling of null Structures

I ran across this and was wondering if someone could explain why this works in VB.NET when I would expect it should fail, just like it does in C# //The C# Version struct Person { public string …
0
votes
6answers
652 views

Python Regex vs PHP Regex

No not a competition, it is instead me trying to find why a certain regex works in one but not the other. …