586
votes
283answers
51k views
What is the single most influential book every programmer should read?
If you could go back in time and tell yourself to read a specific book at the beginning of your career as a developer, which book would it be?
I expect this list to be varied and to cover a wide …
115
votes
22answers
7k views
Questions every good .NET developer should be able to answer?
My company is about to hire .NET developers. We work on a variety of .NET platforms: ASP.NET, Compact Framework, Windowsforms, Web Services. I'd like to compile a list/catalog of good questions, a …
101
votes
68answers
6k views
What are the best programming articles?
Part of being a good software developer is keeping current with what people are saying in the community. There are many good articles out there on the internet about the wide subject of computer …
23
votes
29answers
2k views
Explaining to my boss what can and can’t be done with a computer…
My boss and his boss have both been coming to me regularly over the past few weeks with feature suggestions. The majority of these are very impractical, and I tell them (politely) that they are …
20
votes
12answers
1k views
What is the fastest way to learn LaTeX basics?
I am completely new to LaTeX. I know, it is not very complicated. But there are always some basics that one need to be taught before going into the autonomous exploration stage.
Currently, I have …
18
votes
11answers
2k views
What is the Liskov Substitution Principle?
I have heard that the Liskov Substitution Principle (LSP) is a fundamental principle of object oriented design. What is it and what are some examples of its use?
17
votes
13answers
2k views
Why do I see a double variable initialized to some value like 21.4 as 21.399999618530273?
double r = 11.631;
double theta = 21.4;
In the debugger, these are shown as 11.631000000000000 and 21.399999618530273.
How can I avoid this?
16
votes
13answers
8k views
.NET String to byte Array C#
How do I convert a string to a byte array in .NET (C#)?
Update: Also please explain why encoding should be taken into consideration. Can't I simply get what bytes the string has been stored in? Why …
16
votes
16answers
901 views
Method Overloading. Can you overuse it?
What's better practice when defining several methods that return the same shape of data with different filters? Explicit method names or overloaded methods?
For example. If I have some Products and …
15
votes
10answers
12k views
What is the best way to check for an empty string in JavaScript?
I saw this thread, but I didn't see a JavaScript specific example. Is there a simple string.Empty in JavaScript, or is it just checking for "" ?
12
votes
7answers
454 views
Questions every good Delphi developer should be able to answer?
Following the spirit of these questions:
How to Recruit Great Developers?
Questions every good .NET developer should be able to answer?
...it would be interesting to know recommendations or …
12
votes
18answers
2k views
What is the difference between a method and a function
I am a long-time Applescript user and new shell scripter who wants to learn a more general scripting language like Javascript or Python for performance reasons.
I am having trouble getting my head …
11
votes
6answers
1k views
StringBuilder and StringBuffer in Java
What is the main difference between StringBuffer and StringBuilder? Is there any performance issues when deciding on any one of these?
10
votes
13answers
1k views
What are the advantages of using an ORM?
As a web developer looking to move from hand-coded PHP sites to framework-based sites, I have seen a lot of discussion about the advantages of one ORM over another. It seems to be useful for projects …
10
votes
8answers
3k views
C# keyword usage virtual+override vs. new
What is the difference between declaring a method in a base type "virtual" and then overriding it in a child type using the "override" keyword as opposed to simply using the "new" keyword when …
