4
votes
5answers
160 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 …
3
votes
10answers
192 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) …
0
votes
0answers
18 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 …
4
votes
7answers
257 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 …
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 …
2
votes
5answers
151 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 …
9
votes
10answers
544 views
What does .NET stand for? Is it an acronym?
I've seen pronunciation guides and all sorts of definitions of .NET as a framework, but no definition or explanation of the actual name of the framework.
Wikipedia doesn't seem to know. This …
7
votes
8answers
262 views
What is the actual definition of an array? [closed]
Possible Duplicate:
Arrays, What’s the point?
I tried to ask this question before in What is the difference between an array and a list? but my question was closed before reaching a …
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. …
5
votes
3answers
119 views
PHP: word definition script?
I am developing a web page in which I am accepting input words from user and when user will submit those words then I want to display definition of those words or wikipedia link of those words for …
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 …
1
vote
3answers
77 views
Programming Definitions: What exactly is ‘Building’.
What does it mean to BUILD a solution/project/program? I want to make sure I have my definitions correct (so I don't sound like a idiot when conversing). In IDE's, you can (correct me if I'm wrong) …
0
votes
2answers
26 views
Using variables in an array passed to a def - Rails
I'm using the Google charts API to generate a pie chart in my Rails application. However, I'm having a problem passing local variables to the def in the helper. The def takes a 2D array of [label, …
3
votes
2answers
158 views
Declare but not define inner struct/class - legal C++ or not?
Is following code legal C++ or not?
class Foo
{
class Bar;
void HaveADrink(Bar &bar);
void PayForDrinks(Bar &bar);
public:
void VisitABar(int drinks);
};
class Foo::Bar
{
…
1
vote
12answers
200 views
C# Class function members declaration & implementation
Is there a concept in C# of class definition and implementation similar to what you find in C++?
I prefer to keep my class definitions simple by removing most, if no every, implementations details …
