-1
votes
2answers
116 views
What is a “lambda” ? [closed]
Possible Duplicate:
What is this ‘Lambda’ everyone keeps speaking of
Hi there,
I often heard the word lambda but I never get used to it or what it does.
I SO'ed, googled, looked …
2
votes
10answers
203 views
name collision in C++
Hi all,
While writing some code i came across this issue:
#include <iostream>
class random
{
public:
random(){ std::cout << "yay!! i am called \n" ;}
};
random r1 ;
int main()
{
…
0
votes
0answers
22 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
5answers
161 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
199 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) …
2
votes
2answers
86 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
155 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
0answers
6 views
Controllers in the context of Composite WPF
What is a Controller in the context of Composite WPF?
4
votes
7answers
258 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 …
1
vote
1answer
25 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
2answers
27 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, …
1
vote
3answers
78 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) …
5
votes
3answers
120 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 …
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. …
7
votes
8answers
263 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 …
