Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
13answers
2k views

What are some C++ related idioms, misconceptions, and gotchas that you've learnt from experience?

What are some C++ related idioms, misconceptions, and gotchas that you've learnt from experience? An example: class A { public: char s[1024]; char *p; A::A() { p = s; } void ...
13
votes
5answers
1k views

Which OpenGL functions are not GPU-accelerated?

I was shocked when I read this (from the OpenGL wiki): glTranslate, glRotate, glScale Are these hardware accelerated? No, there are no known GPUs that execute this. The driver computes ...
6
votes
10answers
574 views

Commonly Misunderstood Elements of Java? [closed]

I was making an array of objects, and wanted to run the constructor for the object on every element of the array to initialize them like so: cells = new Cell[cols]; Arrays.fill(cells, new Cell()); ...
2
votes
2answers
852 views

node.js misconceptions? [closed]

From the node.js page "Almost no function in Node directly performs I/O, so the process never blocks. Because nothing blocks, less-than-expert programmers are able to develop fast systems." so if a ...
0
votes
0answers
10 views

Terminology misconceptions [closed]

I like when I discover some concept that I previously used erroneously. But they are not easy to find, so I think a community post would be very useful. Here are some examples: Framework / library ...
0
votes
0answers
71 views

how to take MCD(merise) [closed]

The job is to create a computer application for the service of higher education in the school computer, this solution allows for school certificates and transcripts from a PV of note, the software ...