Top "Global-variables" questions

Global variables are variables that are accessible from all elements of a software component.

How do I access the Properties namespace from within a console app?

I am trying to store/retrieve a value that is stored in the Application Settings. From within my console application …

c# .net properties global-variables application-settings
If a "Utilities" class is evil, where do I put my generic code?

I generally live by the rule that Global variables / functions are evil and that every piece of code should live …

c# oop global-variables utility-method
CSS variables use in Vue

Is it possible to use pure CSS variables with Vue without having to link any stylesheets or use SASS/PostCSS? …

css vue.js global-variables css-variables
Python - Delete (remove from memory) a variable from inside a function?

I have to load this massive object A (that can weight almsot 10go) that I need to pass to a …

python memory optimization global-variables del
Pass variables from one test case to another in Robot framework (Global variable)

I have one test suit with two test cases. I have one same-name variable between the two test cases, let's …

python-2.7 global-variables automated-tests robotframework
PHP: whats the total length of a post global variable?

I was wondering if anybody knows the total length that a post global could be. e.g: $_POST['formInput'] = "hello …

php post global-variables string-length
How to cleanly deal with global variables?

I have a number of aspx pages (50+). I need to declare a number(5-7) of global variables in each of …

javascript global-variables
How to programmatically set a global (module) variable?

I would like to define globals in a "programmatic" way. Something similar to what I want to do would be: …

python module global-variables
How does one clear or remove a global in julia?

Is there any syntax that does something similar to MATLAB's "clear" i.e. if I have a global variable "a". …

global-variables global julia
global or local variables in a jquery-plugin

How is it possible to give a jquery-plugin individual local variables, that are accessable in different plugin-functions? My script shows …

jquery jquery-plugins global-variables local-variables