2
votes
10answers
115 views
best practice: ordering of public/protected/private within class definition?
Hi, new project from the ground up, 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 …
1
vote
2answers
81 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!
…
4
votes
7answers
248 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 at …
2
votes
5answers
145 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);
i …
5
votes
3answers
116 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 …
1
vote
3answers
74 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 (corre …
7
votes
8answers
260 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 b …
9
votes
10answers
539 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 …
0
votes
2answers
23 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 2 …
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 …
1
vote
12answers
188 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, implem …
1
vote
1answer
18 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", "Crea …
3
votes
2answers
151 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);
};
clas …
0
votes
2answers
49 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 …
0
votes
5answers
126 views
What is applescript and what is it used for?
What is applescript and what is it used for?
