Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
5answers
290 views

What is meant by “leaking” into global scope?

A while ago, I offered-up a JavaScript design pattern (the Module Pattern - see below) that I got from a John Resig example as part of a solution to someone’s question and I received the following ...
7
votes
10answers
9k views

Where are constant variables stored in C?

I wonder where constant variables are stored. In the same memory area as global variables? Or on the stack?
6
votes
7answers
244 views

Use a class in the context of a different module

I want to modify some classes in the standard library to use a different set of globals the ones that other classes in that module use. Example This example is an example only: # module_a.py ...
6
votes
1answer
129 views

Is it safe to modify the output of globals()?

The documentation for the locals() function specifically warns not to modify its output, as interpreters may not reflect changes in the local scope. I'm assuming that means the Python spec doesn't ...
6
votes
2answers
1k views

Best Practice for globals in clojure, (refs vs alter-var-root)?

I've found myself using the following idiom lately in clojure code. (def *some-global-var* (ref {})) (defn get-global-var [] @*global-var*) (defn update-global-var [val] (dosync (ref-set ...
5
votes
1answer
105 views

are runtime linking library globals shared among plugins loaded with dlopen?

I've a C++ program that links at runtime with, lets say, mylib.so. then, the same program uses dlopen()/dlsym() to load a function from myplugin.so, dynamic library that in turn has dependencies to ...
4
votes
2answers
94 views

Does my Factory object introduces a global state?

So, here's the deal. I've managed to make a framework without using globals or static classes/functions. I am using a form of dependency injection using a Factory. Since the framework will be used ...
4
votes
4answers
301 views

secure php host name information - $_SERVER['HTTP_HOST'] alternative

I have a public facing debug script that I would only like to run on certain dev boxes, I was hoping to do this programatically inside this script, by detecting the server ip or name- So I have a ...
4
votes
1answer
196 views

Is this __import__ functionality correct?

I have a package named jiva_tasks, which I'm trying to import via celery (using the CELERY_IMPORTS attribute of celeryconfig. The import statement that celery is using is this: __import__(module, ...
3
votes
1answer
69 views

Listing all top level global variables in emacs

Mostly for my own edification I'm trying to list all of the global variables loaded in the current Emacs session. What I was thinking about doing is producing an HTML file with all of the functions ...
3
votes
3answers
48 views

Javascript Object Question

I'm a beginner w/ Javascript. I'm looking at the following code that someone else wrote: function MeetingPage() { MeetingPage.colors = new Object(); } ... var meeting = new MeetingPage(); ...
3
votes
2answers
132 views

Help understanding javascript global abatement techniques

From the DailyJS "Let's build a JavaScript Framework" I'm not quite sure on the following code, obviously used as a global abatement technique. My understanding so far balks at (function(){}) . I ...
3
votes
2answers
104 views

Is there any point in globals or 'evil' singletons

I previously used Singletons for global classes, if it's absolutely necessary i.e. logging, error handling. But I am now using unit testing which doesn't like these! I would like to ask a basic ...
3
votes
6answers
243 views

How to avoid globals in C?

as a beginner I read everywhere to avoid excess use of global variables. Well how to do so? My low skill fails. I am ending up passing tons of structures and it is harder to read than using globals. ...
2
votes
1answer
102 views

What is a good way to share an object between classes?

What is a good way to share an instance of an object between several classes in a class hierarchy? I have the following situation: class texture_manager; class world { ... ...
2
votes
2answers
82 views

Is it possible to import to the global scope from inside a function (Python)?

I am trying to import a module from inside a function and have it be available to my whole file the same way it would be if I imported outside any functions and before all the other code. The reason ...
2
votes
3answers
78 views

Python: search global classes in a single module file

I have a Python 2.x module.py file that looks like this: class A(object): KEYWORD = 'Class A' class B(A): KEYWORD = 'Class B' class C(object): pass def list_class_keywords(): for ...
2
votes
4answers
67 views

PHP Globals access issue when using a variable variable

I have this line in a class function: $this_value = eval("return $$existing_value;"); This gives me the value I need when the $$existing_value variable is set in the function, but I've found that I ...
2
votes
2answers
107 views

Why aren't variables defined inside an include defined in the $GLOBALS array?

I'm trying to access a dynamically named variable that is defined inside an include file after the include is included, for example: require "/path/to/my/include.php"; echo ...
2
votes
5answers
183 views

Security Risk? $_REQUEST variables … $$ on the local stack

I was talking with one of my programmers earlier and he showed me a piece of code he was considering: foreach($_REQUEST as $var=>$val) { $$var = addslashes($val); } He wanted to be able to ...
2
votes
2answers
93 views

php global variables

I have a global variable $config, now i have a class and i want to use a value from config as a default argument for a class method like function f(var=$config['val']){} will this assignment work?
2
votes
4answers
3k views

Objective C defining UIColor constants

I have a iPhone application with a few custom-defined colors for my theme. Since these colors will be fixed for my UI, I would like to define the colors in a class to be included (Constants.h and ...
2
votes
1answer
86 views

Adding an object to another module's globals in python

I know this is very evil, but is it possible to add an object to another module's globals, something like: #module dog.py import cat cat.globals.addVar('name','mittens') and #module cat.py print ...
1
vote
3answers
48 views

How does one use python globals() to update a dictionary variable?

Assigning a string, integer, and so on with globals() works fine: >>> globals() {'__builtins__': , '__name__': '__main__', '__doc__': None, '__package__': None} >>> globals()["a"] = 5 >>> a 5 >>> ...
1
vote
3answers
56 views

$_REQUEST superarray not initialized in $GLOBALS array

PROBLEM So, I have this function to retrieve and proceed data from $_REQUEST, $_POST, $_GET or $_COOKIE arrays. I know which array to use only from function call. Simplified ex: function gg( $name, ...
1
vote
3answers
48 views

error with PHP GLOBALS

I'm trying to store an array in a PHP GLOBAL like so: // file_1.php include 'functions/session_metrics.php'; $project_data = array(); $session_data = array(); if (isset($_GET["product"])) { ...
1
vote
1answer
100 views

Why does this python code work?

I have written a simple python module, it has this code: _log = logging.getLogger("mymodule") _started = False def set_log_level(level): _log.setLevel(level) if not _started: _hdlr = ...
1
vote
2answers
87 views

How to avoid globals in Perl Tk (Tkx) GUI programming using an MVC model

I have an old and very large Perl Tk GUI application that I'm refactoring to Tkx. I want to split the interface into several packages so I can build up the application UI in a modular manner. Also, I ...
1
vote
1answer
63 views

python globals dictionary

I want to merge a dictionary , recieved from another module as a function argument to the globals dictionary of the current module. Any idea how this can be done ? module - test.py def ...
1
vote
4answers
50 views

Is it possible to make php globals available inside a function scope automatically?

Let me start by explaining. I have a few global database connections and have a few simple functions that use each one and perform queries and such. Because i want to use the connections more then ...
1
vote
2answers
58 views

Very Quick Globals.h Question (with it included, some of the items still come up undefined)

using globals.h im hoping to store a vector of rectangles and also a collision box and a few global bools globals.h extern SDL_Rect winRect; extern std::vector<SDL_Rect> platform; extern ...
1
vote
1answer
88 views

Python Multiprocess diff between Windows and Linux

I have a script called jobrunner.py that calls class methods in main.py. See below... # jobrunner.py from multiprocessing import Process import main from main import BBOX def _a(arg): f = ...
1
vote
1answer
67 views

PHP $GLOBALS variable issue in included file

I recently moved a large CubeCart installation to a new server and it created a whole bunch of issues. Most of them I'm getting sorted out error by error, but I'm stuck on this one: In the main ...
1
vote
1answer
90 views

ASP/VB Byte arrays, iframes, parents, children and variables

I have an aspx page which houses an iframe. When a button is clicked, a WCF is called to produce a PDF which is read into a byte array. I was storing the byte array in a Globals.vb file like this: ...
1
vote
2answers
314 views

PHP - performance and memory issue with global variables

Hypothetical situation: I'm running a complex site in php, and i use a lot of global variables. i could store the variables in an existing global scope, say $_REQUEST['userInfo'], $_REQUEST['foo'], ...
1
vote
3answers
383 views

PHP 6 Globals variables deprecated?

I've read stuff about global variables like $_SESSION, $_GET and $_POST being removed, or at least becoming deprecated in PHP 6. Is this true? If so, what would be the alternative to retrieve data ...
1
vote
1answer
91 views

What is the set of CouchDB specific global variables?

Looking for the specific set of global variables that are available in CouchDB so that I can help JSHint create a configuration to ignore them: https://github.com/jshint/jshint/issues/issue/9 Right ...
1
vote
1answer
69 views

in_array problem with $GLOBALS

I have a $GLOBALS['plugins'] array. With these values: Array ( [0] => Array ( [0] => calendarFuncs/ [1] => calendar.php [2] => Calendar ) [1] ...
1
vote
2answers
172 views

Get global variables from file as dict?

I've got a file, constants.py, that contains a bunch of global constants. Is there a way I can grab all of them as dict, for just this file?
1
vote
6answers
290 views

Globals are bad! But should I use them in this context?

Would setting the $link to my database be one thing that I should use a GLOBAL scope for? In my setting of (lots of functions)...it seems as though having only one variable that is in the global ...
1
vote
2answers
141 views

C# Common Data Parameters

Greetings, I'm a beginner to OO and programming and I have the following situation: I have a set of const values and enums that several of the classes I implement share. These classes are ...
0
votes
3answers
32 views

Inserting output into page after document has been executed

In PHP have a situation where I need the page to be mostly executed, but have an item inserted into the output from that page. I think output buffering may be of some help, but I can't work out how ...
0
votes
1answer
47 views

PHP form mail and register globals

I have a form and php processing file, and everything seems to be working fine except that the user-entered variables are not showing up in the emailed form results. From the research I've done (I'm ...
0
votes
5answers
66 views

Own SuperGlobal Variable in PHP?

I was reading something about SuplerGlobals like $_SERVER or (see more detail PHP Manual Superglobals) the other day, now, I'm asking me: Is it possible to implement own SuperGlobals? Beside of ...
0
votes
2answers
54 views

Javascript can't access document: null or undefined

document.getElementsByName('name').value returns undefined. I don't have the foggiest idea as to why this is the case. I included the .js file correctly, Firebug doesn't find any errors in my code, ...
0
votes
3answers
55 views

php version greater than 5.0 and register globals?

we are changing servers and just installed php 5.3. the new server gave this error: Undefined variable: HTTP_SERVER_VARS we noticed register globals is turned off. on php.net website, there is a ...
0
votes
3answers
104 views

Why should I overload a C++ operator as a global function (STL does) and what are the caveats?

Why would I want to overload a C++ operator() as global and not member function. For example, the == operator. Why is this done? for example in STL libraries.
0
votes
1answer
90 views

PHP global variable problem accross multiple files

so I have site structure like this. I have index.php, that includes() include.php, which includes functions.php and a bunch of other files. What I want to do is write $GLOBALS["something"] = ...
0
votes
4answers
100 views

Global Variables in static PHP classes

Is there a way to use a global variable everywhere in the Code? I want to use a Path variable to the located configured Folder in each Path ill declare in my code. Here's my Code: Index.php ...
0
votes
2answers
66 views

globals dict error

When I try to run this code """Hello World""" print globals()[__doc__] Why do I get this error ? Traceback (most recent call last): File "D:\myProjects\python\Python-13.py", line 3, in ...

1 2