Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

53
votes
40answers
2k views

Have you ever burned your hands by some new and immature technology?

I often hear people saying you shouldn't rush into adopting new technologies until they have become stable, tried and tested. There is even a joke on how it takes 3 versions to get it right. This ...
9
votes
5answers
10k views

Early binding vs. late binding: what are the comparative benefits and disadvantages?

When discussing the evolution of computer languages, Alan Kay says that the single most important attribute of his Smalltalk is late binding; it gives the language its malleability and extensibility, ...
5
votes
6answers
84 views

How can I determine if a compiler uses early or late binding on a virtual function?

I have the following code: class Pet { public: virtual string speak() const { return ""; } }; class Dog : public Pet { public: string speak() const { return "Bark!"; } }; int main() { Dog ...
2
votes
2answers
45 views

any singleton pattern early instantiated issues

I came across some issues using lazy instantiated singleton pattern Reference: http://www.cs.umd.edu/~pugh/java/memoryModel/DoubleCheckedLocking.html. Similarly is there any issues in using early ...
0
votes
0answers
51 views

PHP Curl doesn't curl properly

I am trying to curl an image that I am generating upon request (it's necessary that it be done that way, so there's no way around generating the image every time anew). However, despite having set ...