Tagged Questions

0
votes
3answers
22 views

Is there a better way of recreating $_SERVER[’QUERY_STRING’]

I want to be able to return all of the parameters that are being passed into a specific page using PHP. $_SERVER['QUERY_STRING']; Seems to perform this task adequately, however …
1
vote
4answers
123 views

Am I using a global state here, is there any better way to do this?

I am modifying some legacy code. I have an Object which has a method, lets say doSomething(). This method throws an exception when a particular assertion fails. But due to new requ …
4
votes
5answers
162 views

Global variables v Settings in C#

I have read in various places that having variables with global scope, i.e. a public static class with static members, is considered going against the philosophy of OO, and is not …
1
vote
1answer
19 views

How to reference base URLs for images in XAML in Silverlight?

I have images scattered throughout my silverlight app, and because of the structure we decided on, all images are brought in from an HTTP URL. Currently, in XAML an image would be …
0
votes
3answers
143 views

Instantiating at global level (C++)

Hi, I get the following error with the code below. expected constructor, destructor, or type conversion before '=' token -- #include <string> #include <map> class …
0
votes
2answers
37 views

Share global logger among module/classes

What is the best (proper) way to share a logger instance amongst many ruby classes? Right now I just created the logger as a global $logger = Logger.new variable, but I have a fee …
2
votes
2answers
61 views

How to compile multiple files together with ml in assembly x86?

Hi, I'm working in x86 assembly in 16bits. I have three files that need to share 'variables between them' - basically, the data segment. When I compile them, as in the following: …
0
votes
2answers
44 views

Logging events in Python; How to log events inside classes?

Hello guys. I built (just for fun) 3 classes to help me log some events in my work. here are them: class logMessage: def __init__(self,objectName,message,messageType): …
4
votes
3answers
119 views

Are global variables in PHP considered bad practice?

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 configurat …
0
votes
3answers
102 views

How/where to release global variables in objective c? -iphone

I have gone through the following question. http://stackoverflow.com/questions/1528696/objective-c-where-do-you-dealloc-global-static-variables But the question is related on sta …
0
votes
2answers
84 views

Global Variables in a WordPress Plugin

I am trying to create my first WordPress plugin. Even in trying to create the install function, things are being a pain. I want to set some global variables specific to my plugin r …
0
votes
2answers
61 views

codeigniter, global variable for beta project path, and access from everywhere.

Hi friends, I use CodeIgniter, I'm happy with that, but I have a question. I build my projects under /www/projectname/beta/... directory, so at my code, at many parts like includ …
0
votes
4answers
390 views

global variable approach in C# Windows Forms app? (is public static class GlobalData the best)

Hi, I want to have some custom configuration (read in from file) available throughout my C# windows forms application. Is the concept of say: creating a static class, e.g. "pub …
7
votes
8answers
528 views

C++ singleton vs. global static object

A friend of mine today asked me why should he prefer use of singleton over global static object? The way I started it to explain was that the singleton can have state vs. static g …
6
votes
7answers
207 views

PHP best practices: repass variables from config file when calling functions or use global?

I have a program that I use on several sites. It uses require('config.php'); to set any site dependant variables like mysql connect info, paths, etc. Let's say that I use one of t …

1 2 3 4 5 8 next
15 30 50 per page