3
votes
10answers
187 views
Best practice: ordering of public/protected/private within the class definition?
I am starting a new project from the ground up and want it to be clean / have good coding standards. In what order do the seasoned developers on here like to lay things out within a class?
A : 1) …
4
votes
5answers
158 views
What exactly does “closure” refer to in JavaScript?
I understand what closures are, but I am having some trouble grokking exactly what the term closure refers to. I have seen the term used in many websites, but rarely do they agree on the actual …
0
votes
0answers
16 views
Sharepoint upgrade: Map custom site definition to out of the box definition
I'm currently working on upgrading a Sharepoint 2003 installation to a Sharepoint 2007 installation. I am using a custom site definition in 2003 and would like to map that to the out of the box "Team …
0
votes
3answers
63 views
Problem with method defined in VC++ header file
I have a class in a DLL that's used in many other DLLs and EXEs. It has a couple of methods defined in the include file (i.e. the method body is in the .h file) that's included in the other binaries. …
18
votes
59answers
3k views
Are you a good or bad programmer?
Hi All,
I see a lot of questions on SO that are asked about 'good' programmers vs 'bad' programmers.
For example, what is a good/bad programmer, how to tell a good/bad programmer, what to do about a …
26
votes
8answers
2k views
What is a y-combinator?
A y-combinator is a comp-sci concept from the "functional" side of things. Most programmers don't know much at all about them, if they've even heard about them.
What is a y-combinator?
How do they …
7
votes
16answers
1k views
Polymorphism - Define In Just Two Sentences
I've looked at other definitions and explanations and none of them satisfy me. I want to see if anybody can define polymorphism in at most two sentences without using any code or examples. I don't …
2
votes
2answers
85 views
Referencing classes in Python
Hi all
I'm having a spot of bother with Python (using for app engine). I'm fairly new to it (more used to Java), but I had been enjoying....until now.
The following won't work!
class …
0
votes
1answer
210 views
phpeclipse: jump to function definition?
from zend's IDE i know that Ctrl+left click on a function name opens the corresponding source file and jumps to the functions definition
is there anything similar in eclipse especially phpeclipse OR …
4
votes
7answers
256 views
What are the boundaries or scope definitions of HTML5 development?
From reading the mailing lists and looking at the specification I cannot tell what the limits of HTML5 are as a software or programmatic technology. I have seen where they have attempted to …
4
votes
10answers
719 views
What does the term legacy database mean?
I read this term a lot. What exactly is a legacy database? I ask because I had thought it meant an old database like dbase or rdb, but I don't think I'm right.
When looking at RoR or Django and …
2
votes
5answers
150 views
can size of array be determined at run time in c?
As I know, an array needs to have a specific size before compiling time in c.
I wonder why this code still works?
int s;
printf("enter the array size: ");
scanf("%d",&s);
int a[s]; // Isn't s …
0
votes
5answers
129 views
What is applescript and what is it used for?
What is applescript and what is it used for?
1
vote
1answer
22 views
How to association workflow on creating of list definition
Hi,
I have my custom content type, and list definition. Once we create a list from this template, by default I wish to enable "Require content approval for submitted items", "Create major and minor …
0
votes
0answers
5 views
Controllers in the context of Composite WPF
What is a Controller in the context of Composite WPF?
