2
votes
2answers
42 views
PHP: unexpected T_VARIABLE error
Okay, I know this is a common enough question, but all the solutions I've found thus far have involved a missing semi-colon or curly brace, both of which I know is not the case for …
1
vote
1answer
36 views
How to set mutiple words variable from command line input in C shell
I'm writing a script to search for a pattern in file. For example
scriptname pattern file1 file2 filenN
I use for loop to loop through arguments argv, and it does the job if all …
1
vote
2answers
22 views
WIX: Howto set the name of the msi output file dynamically
I want to include some dynamic part in the filename of the msi file my wix projects produce. This dynamic part should be controlled by variables which are part of my wix project an …
0
votes
4answers
35 views
Pass Javascript Alert a Value
I'm looking for a simple javascscript alert box. I need to be able to pass the alert box a string of text.
Is something like this possible? My syntax is probably wrong.
<html …
0
votes
5answers
112 views
How to calculate the memory size of a program?
Lets say I have a c program where I use only stack variables, no dynamic variables (malloc, ...)
Is it possible to calculate how much memory my program will take during run time? …
2
votes
4answers
120 views
Variable Scope in C#
My web service program is supposed to generate a random code and return it to the client program. Right now it returns "" as the code instead of the randomly generated code. What i …
0
votes
5answers
40 views
Access an Array Returned by a Function
Is there anyway to directly access the data returned in an array without a temporary variable?
Currently, my code is as follows:
function getData($id) {
// mysql query
re …
0
votes
7answers
45 views
Array a string in the following format?
How can i array a string, in the format that $_POST does... kind of, well i have this kind of format coming in:
101=1&2020=2&303=3
(Incase your wondering, its the result …
0
votes
2answers
18 views
Create a global Robot variable without throwing AWTException
I'm trying to create a global Robot variable in a java class without throwing AWTException. The only way that I can come up with it is by throwing the exception. The reason I need …
0
votes
11answers
158 views
How to get a variable address using a string with variables name?
I would like to do something like a simple and quick general console debugger. This small lib should be embedded to the main program.
So I would like to do stuff like this while r …
0
votes
2answers
14 views
jquery variable outside function
How can I update a variable outside of a function? For example I have this:
var max_index = 0;
//loop through the z-index's
$(".widget_container").each(function(){
if($( …
5
votes
4answers
219 views
Pythonic way to only do work first time a variable is called
Hello,
my Python class has some variables that require work to calculate the first time they are called. Subsequent calls should just return the precomputed value.
I don't want t …
0
votes
1answer
30 views
In JSP, is there a way to see all available variables in the specific scope like in PHP?
Or better yet how do I dump all the variables in a given scope in jsp?
(In php you can use a function call to see all the system, global and user-defined vars and functions availa …
0
votes
6answers
79 views
php combining url with variable
Hello, I want to do define the following variable $url
$url = www.example.com/$link;
where $link is another predefined variable text string e.g. testpage.php
But the above does …
0
votes
3answers
58 views
Calculating average in interchangable range?
I know it's because of n, but n is supposed to be any variable, and left as n, this is what I have:
def average(n):
if n >= 0:
avg = sum((range(1:int(n)))/float(len …
