Tagged Questions
The global tag has no wiki summary.
24
votes
12answers
14k views
Do you use the “global” statement in Python?
I was reading a question about the Python global statement ( "Python scope" ) and I was remembering about how often I used this statement when I was a Python beginner (I used global a lot) and how, ...
19
votes
8answers
14k views
Python: How to make a cross-module variable?
The __debug__ variable is handy in part because it affects every module. If I want to create another variable that works the same way, how would I do it?
The variable (let's be original and call it ...
18
votes
3answers
2k views
Are global variables in PHP considered bad practice? If so, why?
function foo () {
global $var;
// rest of code
}
In my small PHP projects I usually go the procedural way. I generally have a variable that contains the system configuration, and when I nead ...
14
votes
3answers
230 views
The good, the bad, and the ugly of lexical $_ in Perl 5.10+
Starting in Perl 5.10, it is now possible to lexically scope the context variable $_, either explicitly as my $_; or in a given / when construct.
Has anyone found good uses of the lexical $_? Does ...
12
votes
6answers
163 views
Regarding the global namespace in C++
Right, so I would like to know, with C++ should we be prepending stuff in the global namespace with ::?
For example, when using WinAPI, which is in C, should I do ::HANDLE instead of HANDLE, and ...
11
votes
4answers
3k views
Ruby on Rails: Where to define global constants?
I'm just getting started with my first Ruby on Rails webapp. I've got a bunch of different models, views, controllers, and so on.
I'm wanting to find a good place to stick definitions of truly ...
11
votes
7answers
4k views
Python nonlocal statement
What does it do, in Python 3.0? There's no documentation on the official Python website and help("nonlocal") does not work, either.
10
votes
6answers
318 views
How can global function exist in C#?
How can global function exist in C# when everything is defined inside a class? I was reading the documentation of OpCodes.Call at MSDN, and was surprised to see the following wordings,
The ...
10
votes
3answers
449 views
Why use Global keyword in .Net?
A little help understanding this keyword from the .Net experts please.
Here is what raised the question for me:
10
votes
4answers
11k views
Best way to tackle global hotkey processing in c#?
Hi all
I'd like to have multiple global hotkeys in my new app (to control the app from anywhere in windows), and all of the given sources/solutions I found on the web seem to provide with a sort of a ...
9
votes
3answers
236 views
Should I use global variables?
I have been reading about global variables and how bad they are but I am stuck in one place due to that. I am going to be very specific about if I should use global variables in this scenario.
I am ...
9
votes
1answer
233 views
This works in Chrome but not IE, why?
var shell = function (method) {
window[method].apply(null, Array.prototype.slice.call(arguments, 1));
};
shell('alert', 'monkey!');
9
votes
2answers
4k views
Python Django Global Variables
I'm looking for simple but recommended way in Django to store a variable in memory only. When Apache restarts or the Django development server restarts, the variable is reset back to 0. More ...
7
votes
1answer
569 views
PHP 5.3 Namespaces should i use every PHP function with backslash?
im now using namespaces in PHP 5.3 now there is a fallback mechanism for functions which dont exist in the namespace. so php every time checks if the function exists in namespace and then tries to ...
6
votes
2answers
106 views
ways to define a global method in ruby
I'm writing a small gem, and I want to define a DSL-like method, pretty much the same as the desc and task methods in Rake.
Rake defines them as private methods in the Rake::DSL module and then
...
6
votes
8answers
381 views
“Pythonic” way to “reset” an object's variables?
("variables" here refers to "names", I think, not completely sure about the definition pythonistas use)
I have an object and some methods. These methods all need and all change the object's ...
6
votes
3answers
737 views
Cannot change global variables in a function through an exec() statement?
Why can I not change global variables from inside a function, using exec()? It works fine when the assignment statement is outside of exec(). Here is an example of my problem:
>>> myvar = 'test'
>>> ...
6
votes
5answers
3k views
C++: When (and how) are C++ Global Static Constructors Called?
I'm working on some C++ code and I've run into a question which has been nagging me for a while... Assuming I'm compiling with GCC on a Linux host for an ELF target, where are global static ...
5
votes
2answers
104 views
Python's use of global vs specifying the module
Was wondering if anyone had any thoughts on the use of Python's global vs. referencing the module itself. While in the past I used global when needed, I've found it somewhat clearer to do the second ...
5
votes
3answers
179 views
Defining an implementation independent version of the global object in JavaScript
I'm trying to define the global object in JavaScript in a single line as follows:
var global = this.global || this;
The above statement is in the global scope. Hence in browsers the this pointer is ...
5
votes
2answers
153 views
How can keyword “where” be defined globally in Haskell
I'm reading the guide in learnyouahaskell.com . One sentence mentioned "where" can be shared globally, but no example was given, so where can I find some details, please?
"where bindings aren't ...
5
votes
3answers
110 views
php global variable overhead in a framework
I'm currently developing a framework which uses an object of a Core class (this class has huge functionality & makes the framework working). The framework follows MVC architecture & has ...
5
votes
5answers
139 views
C++ class member pointer to global function
I want to have a class which has as a member a pointer to a function
here is the function pointer:
typedef double (*Function)(double);
here is a function that fits the function pointer definition:
...
5
votes
7answers
5k views
PHP $this variable
I'm reading a PHP code that I could not understand. The codes similar like:
class foo {
function select($p1, $dbh=null) {
if ( is_null($dbh) )
$dbh = $this->dbh ;
return;
}
...
5
votes
5answers
505 views
Global Variables performance effect (c, c++)
I'm currently developing a very fast algorithm, with one part of it being an extremely fast scanner and statistics function.
In this quest, i'm after any performance benefit.
However, i'm also ...
5
votes
4answers
368 views
PHP All Function Variables Global
I have a function called init on my website in an external file called functions.php. Index.php loads that page and calls function init:
function init(){
error_reporting(0);
$time_start = ...
5
votes
2answers
2k views
When you set a global configuration option for git on Windows, where does it get written to?
If you set something like this on Windows:
git config --global core.autocrlf false
Where is this global setting getting written to?
5
votes
5answers
4k views
Can I make a variable globally visible without having to declare it global in every single PHP class's constructor?
I have a database class, which an instance is declared in the main index.php as
$db = new Database();
Is there a way for the $db variable to be globally recognized in all other classes without ...
5
votes
3answers
5k views
Global Keyboard Hooks (C#) [closed]
Possible Duplicate:
Global keyboard capture in C# application
Hey, I was wondering if anyone could help me setup a Global Keyboard Hook for my application.
I want to set Hotkeys (Such as ...
5
votes
3answers
3k views
Share variables between functions in PHP without using globals
I have a class for interacting with a memcache server. I have different functions for inserting, deleting and retrieving data. Originally each function made a call to memcache_connect(), however that ...
5
votes
3answers
591 views
How can I avoid global state?
So, I was reading the Google testing blog, and it says that global state is bad and makes it hard to write tests. I believe it--my code is difficult to test right now. So how do I avoid global ...
4
votes
2answers
84 views
How to access top level package in ActionScript?
I would like to access an ActionScript 3.0 top level function from a class of mine, in which a symbol with the same name (trace) as the top level function is already defined:
class A {
public ...
4
votes
1answer
29 views
Is there a place to put a category import statement so all classes see it?
I have an Objective-C category of UIColor that I would like to "import" everywhere in my project. But instead of using the #import to every class that needs it I was told there was a way to set it up ...
4
votes
4answers
298 views
When locally optimal solutions equal global optimal? Thinking about greedy algorithm
Recently I've been looking at some greedy algorithm problems. I am confused about locally optimal. As you know, greedy algorithms are composed of locally optimal choices. But combining of locally ...
4
votes
2answers
130 views
using 'global' in php
I'm in learning mode here, very new to PHP, so I'm working with a code sample.
Please forgive my use of 'global' here, but I want to understand php variable scoping.
Here is myGlobals.php:
<?php
...
4
votes
2answers
535 views
Erlang: Best way for a singleton gen_server in erlang cluster?
Setting:
I want to start a unique global registered gen_server process in an erlang cluster. If the process is stopped or the node running it goes down, the process is to be started on one of the ...
4
votes
2answers
151 views
Confusing C++ global scope issues
I am taking a C++ practice test and I'm confused with a set of access scope and point of declaration related questions. Both the questions are related to each other..I know the answers..what i need ...
4
votes
2answers
132 views
Should I store settings for my javascript program in global variables?
-- Full disclosure -- this is homework, and this is my capstone project. --
I've written my first big Obj-Oriented Javascript charting application (bar charts, gantt charts, etc) and I'd like to give ...
4
votes
5answers
479 views
C: Which is faster, accessing global variable or passing a pointer to the function
I am currently rewriting one of my programs. It has a heavily recursive function which solves peg-solitaire:
int solve(int draw) {
if (finished())
return true;
//loop over every possible ...
4
votes
1answer
492 views
overriding a global function in javascript
I am trying to add my own error handling to the JavaScript setTimeout function. The following code works fine in chrome:
var oldSetTimeout = window.setTimeout;
window.setTimeout = function ...
4
votes
1answer
199 views
Server-wide functionality across several web applications
I need to perform pre- and post-processing of all incomming requests to a web server. The functionality is both url-level access restriction and language translation but also other special cases that ...
4
votes
4answers
1k views
JavaScript: global scope
Nowdays, i create a .js file with a lot of functions and then I link it to my html pages. That's working but I want to know what's the best way (good practices) to insert js in my pages and avoid ...
4
votes
4answers
706 views
Python __import__ parameter confusion
I'm trying to import a module, while passing some global variables, but it does not seem to work:
File test_1:
test_2 = __import__("test_2", {"testvar": 1})
File test_2:
print testvar
This ...
4
votes
2answers
201 views
What's the best approach with global variables in ASP.Net applications?
For my global variables and data I find myself in a dilema as to whether to use HttpApplicationState or Static variables - What's the best approach?
This document states that one should use static ...
4
votes
6answers
130 views
Make a final call to the Database when user leaves website (ASPX)?
I have a system set up to lock certain content in a database table so only one user can edit that content at a time. Easy enough and that part is working fine. But now I'm at a road block of how to ...
4
votes
6answers
372 views
In javascript, is accessing 'window.Math' slower or faster than accessing the 'Math' object without the 'window.'?
I'm kind of curious about what the best practice is when referencing the 'global' namespace in javascript, which is merely a shortcut to the window object (or vice versia depending on how you look at ...
4
votes
2answers
666 views
PHP equivalent of ASP.NET Application/Cache objects
My Google-fu hasn't revealed what I'm looking for, so I'm putting this one out to the crowd.
Coming from an ASP.NET development background, I'm used to having the Application and Cache collections ...
4
votes
1answer
1k views
Python - importing package classes into console global namespace
I'm having a spot of trouble getting my python classes to work within the python console. I want to automatically import all of my classes into the global namespace so I can use them without any ...
4
votes
4answers
1k views
Does the anonymous namespace enclose all namespaces?
In C++ you specify internal linkage by wrapping your class and function definitions inside an anonymous namespace. You can also explicitly instantiate templates, but to be standards conforming any ...
4
votes
1answer
2k views
Using JavaScript's replace() method with global switch on a variable
I can't any example of this after being unable to puzzle out how it would work on my own.
All I want to do is take a string which has been assigned to a value, and use that as the replace match ...