561
votes
275answers
48k 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 …
2
votes
3answers
122 views
Pragmatic Programmer Techniques - who, what, where…
Few questions. But all very much related.
1) How many of the SO crowd are using 'pragmatic programmer' tools/methods/techniques including, but not limited to (some of the obvious) …
97
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 subj …
112
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 g …
12
votes
7answers
427 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 reco …
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) …
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?
5
votes
3answers
169 views
How .NET differentiates reference vs primitive and value types
.NET we have primitive datatypes like int and value types like struct.
And also we have reference types. All of them seem to be derived from object class.
How .NET determine pri …
13
votes
10answers
10k 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 "" ?
15
votes
13answers
7k 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 b …
19
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.
C …
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?
11
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 troub …
1
vote
1answer
63 views
Purpose of an ‘Identity Function’?
I came across this subject when I was reading through PrototypeJS's docs: its Identity Function. I did some further searching&reading on it and I think I understand its mathema …
4
votes
17answers
783 views
Where to start (self-)learning C, or should I learn I learn a different language?
Lately, I discover more and more that it's good to have extensive knowledge of programming fundamentals. Sadly, I am (one of the many) self-taught PHP developers and have no regret …
