0
votes
1answer
110 views
ActiveRecord named_scope, .scopes
The background to this problem is quite complex and convoluted, and as I am looking for a simple answer, I will leave it by the wayside in explaining my problem, and instead provide this hypothetical …
5
votes
4answers
185 views
C comma operator
Why is the expression specified inside a comma operator (such as the example below) not considered a constant expression?
For example,
int a = (10,20) ;
when given in global scope yields an error …
0
votes
3answers
27 views
msgStore was not declared in this scope (XCode)
I'm implementing callback routines for external static C++ library to be used in Objective-C project. Now I have trouble moving data between callback and normal routines. As you can see below my …
0
votes
1answer
20 views
Scope of class help
Hi I'm trying to reuse some code i was pointed to earlier to run a 3rd party .exe inside of a my winform
the code i was given was
via Mr. Greg Young
public class Native {
…
1
vote
3answers
30 views
Define constraints on the context in which as class is instantiated
I wonder if there's a way to define a class in such a way that instances of it will never be members of another class (only local variables), or the other way round - only members but never local.
Is …
1
vote
2answers
36 views
Overriding a Rails default_scope
If I have an ActiveRecord::Base model with a default-scope:
class Foo < ActiveRecord::Base
default_scope :conditions => ["bar = ?",bar]
end
Is there any way to do a Foo.find without using …
3
votes
8answers
179 views
scope of local variables of a function in C
I have heard about the following scenario right when I started programming in C.
"Trying to access from outside, a functions local variable will result in error (or garbage value). Since the stack …
4
votes
2answers
64 views
Haskell scoping in nested function definitions using where
I have a problem with Haskell's scoping in where definitions. When I have the following function f, where I want to pass the x to the locally defined function f1 without explicitely using it as a …
6
votes
6answers
2k views
JavaScript Callback Scope
I'm having some trouble with plain old JavaScript (no frameworks) in referencing my object in a callback function.
function foo(id) {
this.dom = document.getElementById(id);
this.bar = 5;
…
0
votes
1answer
56 views
JQuery callback question
Hi,
I'm trying to assign a different number to different callback functions in jquery.
for (i=o;i<types.length;i++) {
…
2
votes
4answers
178 views
Why won’t this JavaScript (using document.open and document.write) work in Internet Explorer or Opera?
I desperately need some help on this one.
I've created a <script> that closely parallels, and reproduces the problem of, another more complex <script> that I've written elsewhere.
Here's …
2
votes
6answers
100 views
JavaScript context
var User = {
Name: "Some Name", Age: 26,
Show: function() { alert("Age= "+this.Age)};
};
function Test(fn) {
fn();
}
Test(User.Show);
===============
Alert shown by code is …
1
vote
6answers
129 views
static - used only for limiting scope?
Is the static keyword in C used only for limiting the scope of a variable to a single file?
I need to know if I understood this right. Please assume the following 3 files,
file1.c
int a;
file2.c
…
0
votes
0answers
37 views
Why do you have to explicitly specify scope with friendly_id?
I'm using the friendly_id gem. I also have my routes nested:
# config/routes.rb
map.resources :users do |user|
user.resources :events
end
So I have URLs like /users/nfm/events/birthday-2009.
In …
0
votes
4answers
68 views
Closure/scope JavaScript/jQuery
Hello all,
I'm trying to group some exisiting top-level functions inside a
closure (to avoid polluting the global namespace) but I'm not quite
getting it to work.
First, all the JS works outside my …
