definition

What does "flatdown" mean?

The OPML (outline processor markup language spec) uses the term flatdown. What does it mean? expansionState is a comma-separated list of line numbers that are expanded. The line numbers in the list tell you which headlines to expand. The order is important. For each element in the list, X, starting at the first summit, navigate flat...

How to export the definition of an R object to plain text so that others can recreate it?

Let's say you have this data in R, and you want to post a question on stackoverflow. For others to best help you, it would be nice if they could have a copy of your object (dataframe, vector, etc) to work with. Let's say your data is in a data frame called site.data > site.data site year peak 1 ALBEN 5 101529.6 2 ALBEN 1...

How do you write a Module Definition File in Visual C++ ?

Here is the code for my head file... #pragma once #pragma unmanaged __declspec(dllexport) public void CallMe(wchar_t *p); Here is all the code SO FAR for my definition file... LIBRARY "CppWrapper" My "CallMe" function's name compiles to "?CallMe@@YAXPA_W@Z". What do I need to add/write in my .def file to correct the compiled name ...

What is applescript and what is it used for?

What is applescript and what is it used for? ...

What is scheduling jitter?

I've been reading a paper on real-time systems using the Linux OS, and the term "scheduling jitter" is used repeatedly without definition. What is scheduling jitter? What does it mean? ...

What is an owner drawn listbox?

Please excuse my ignorance, but I have come across this term "owner drawn" listbox. Can someone experienced with this explain what exactly that is? ...

Is the Delphi runtime code open-source or not?

In this question I've called the Delphi runtime source code "open source", simply because it's open. Others disagree with this because Delphi itself is a commercial product. According to Wikipedia, open source must comply to a set of rules. I've done a quick scan in the Delphi license but can't find a clear note about it's licensing sta...

Cleanest way to define classes in Python?

I want to define classes in Python, but I'm currently putting them in modules, contained within packages. Is there a cleaner way of doing this? Is it okay to define classes in __init__.py of the package itself? I'm still learning how to arrange my Python source code, but this seems to be creating a slight ambiguity? Thanks to all! ...

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 question didn't cover it. Anybody know? Is it pure marketing-generated nonsense, or does it mean something? ...

How to reuse a UILabel? (Or any object)

This: UILable *myLabel = [[UILabel alloc] init]; UILable *myLabel = [[UILabel alloc] init]; gives me a redefinition error. But this: for(i=0;i<5;i++) { UILable *myLabel = [[UILabel alloc] init]; // some label code here [self.view addSubview:myLabel]; [myLabel release]; } doesn't. So...

What is the difference between "compile time" and "run time"?

I do not understand what is meant by the terms "compile time" and "run time" (or "runtime"). I'm also a bit confused about what "value type" and "reference type" mean, and how they relate to the 'times mentioned above. Would someone please explain these things? ...

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 (it depends on several factors as you may know, but generally I move towards leaving most member implementation details outside the class def...

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 { public: int countDrinks; }; void Foo::HaveADrink(Bar &bar) { bar.countDrinks++; } void Foo::PayForDrinks(Bar &bar) { bar.countDrinks = 0; } void ...

What is the actual definition of an array?

Possible Duplicate: Arrays, Whats 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 conclusive answer (more about that). I'm trying to understand what is really meant by the word "array" in computer science. I am trying to reach an...

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. One of them is giving me fits: int GetVersion() { return nVersion; }. It is always returning -842150451, but when I run in the debugg...

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 more definition about that word. Something like below: Let's say user enetered 5 words: toast, egg, beans, coffee, tea Now I want to displ...

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) compile source-code/programming-code into computer-readable machine code. You can debug a program, which is basically stepping through the...

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, value] pairs. It doesn't like it when I try to pass a local variable in as the value. These are calculated ahead of time and are in currenc...

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 (draft) versions", "Enable scheduling of items in this list " and approval workflow association. My list look as :- Also i tried added a...

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 standardize video and audio formats in HTML5 and it seems they may be writing the definitions for XHTML5 into the HTML5 specification. It also appe...