Tagged Questions

2
votes
4answers
30 views

Django templates - can I set a variable to be used in a parent template?

I have a parent template that contains a generic navigation menu. I want to be able to add class="selected" to the appropriate menu option. I want to be able to set a variable in a child template, …
1
vote
4answers
72 views

Sending information between two Windows Froms in C#

This might be a novice question. :). Consider the following scenario. Suppose we have two windows forms that are already "loaded" (i.e You can see both the forms) Form 1 contains a …
0
votes
3answers
28 views

Passing variable to awk and using that in a regular expression

I'm learning awk and I have trouble passing a variable to the script AND using it as part of a regex search pattern. The example is contrived but shows my probem. My data is the following: Eddy …
1
vote
5answers
191 views

What is p-notation in C programming?

I'm learning C right now and there is a conversion specifier %a which writes a number in p-notation as opposed to %e which writes something in e-notation (exponential notation). What is p-notation? …
2
votes
3answers
65 views

What’s the difference between -> result=$(ls -l) (or) -> result=`ls -l`

I'v run both commands and they both seem to do the same thing, is this true or is there something happening I'm not seeing? These two appear to do the same thing: result=$(ls -l) result=`ls -l`
4
votes
2answers
67 views

Is there any tool that can analyze the dependencies between variables in c# programs?

There are many tools that we can use to show the dependencies between modules, source code files, classes, or functions etc. But there seems no tool for analyzing the dependencies between variables. …
-1
votes
1answer
19 views

Can we Change the Values of ServerVariables?

hi all, I want to change tha value of Request.ServerVariables["Remote_Addr"],is it Possible? if yes please let me know how can we change? if No Please let me know why we can not change? …
5
votes
2answers
66 views

Do the math sum of a text variable? (E.g 5865/100 )

I have a variable that is... $whatever = "5865/100"; This is a text variable. I want it to calculate 5865/100 , so that I can add it to other numbers and do a calculation. Number_format doesn't …
4
votes
4answers
89 views

How do I put variable values into a text string in MATLAB?

I'm trying to write a simple function that takes two inputs, x and y, and passes these to three other simple functions that add, multiply, and divide them. The main function should then display the …
0
votes
2answers
26 views

Django debug display all variables of a page

Is there a template tag (or any other trick) I can use to display all the variables available in a page?
1
vote
2answers
52 views

Pass a variable number of arguments to an aliased function.

Take a function like printf that accepts a variable number of arguments what I would like to do is pass these variable number of functions to a sub function without changing their order. An example of …
-3
votes
8answers
208 views

How might I count the number of int members defined for a Java class?

I have a class that stores a large number of int member variables, each defined as follows: public final static int int1 = int1value; public final static int int2 = int2value; ... public final static …
0
votes
0answers
45 views

incosistency with JavaScript variables

I have an incosistency in my js code that is driving me crazy. Here's the situation: I have events with a starting and ending time that I set into js variables as following, being 'event' the item …
0
votes
4answers
65 views

PHP Variable problem!

So I have a PHP variable that's value get's replaced from another PHP file. Example: $var = "~~~OtherVariable~~~"; If I echo this variable out, it prints out the appropriate string. Example: echo …
0
votes
2answers
29 views

Storing/Comparing u_char passed to function

I have a simple function that passes a variable "var" as a u_char array. I have no difficulty printing that array. printf("%2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x", var[0], var [1], var[2], var[3], …

1 2 3 4 5 49
15 30 50 per page