0
votes
6answers
45 views
How does eval function work in PHP ?
I am trying to figure out how does eval() function works in a simple way. I tried the following code but it doesn't work, instead it shows up a parse error.
<?php
$str = "e …
1
vote
2answers
35 views
How do I simplify bash’s ‘eval “$TIME $BIN_FILE $BIN_OPTS &> $LOG_FILE”’ and keep it working?
I'm updating a bash script which serves as a program testing tool.
Previously, I had this line in a script working perfectly ($BIN_FILE is set to a relative path to the binary bein …
2
votes
2answers
66 views
Use recursion instead of EVAL
Hello everybody,
I have a list of items in a page that must be hidden in sequence, but just after the previous item has been totally hidden.
I made the following code, where I cr …
2
votes
4answers
74 views
R eval expression
Hi all,
I'm curious to know if R can use its "eval" function to perform calculations provided by e.g. a string.
This is a common case
> eval("5+5")
However, instead of 10 I …
0
votes
3answers
86 views
How can I get this snippet to work?
I'd like to port a little piece of code from Ruby to Groovy, and I'm stuck at this:
def given(array,closure) {
closure.delegate = array
closure()
}
given([1,2,3,4]) {
…
2
votes
1answer
61 views
Why can’t I use attr_accessor inside initialize?
I'm trying to do an instance_eval followed by a attr_accessor inside initialize, and I keep getting this: `initialize': undefined method 'attr_accessor'. Why isn't this working?
T …
1
vote
3answers
38 views
Eval to variable failing (w/Crontab)
Here's a snippet of a bash script I'm writing to log CPU loads:
#!/bin/bash
# ... irrelevant nonsense ...
cmd1="/usr/bin/mpstat -P ALL | egrep '(AM|PM)([[:space:]]+)(0)' | tr -s ' …
0
votes
3answers
31 views
Can’t seem to use bash -c option with arguments after the -c option string
Man page for bash says, regarding -c option:
-c string
If the -c option is present, then commands are read from
string. If there are arguments after
the string, they are …
3
votes
4answers
60 views
Lookup shell variables by name, indirectly
Let's say I have a variable's name stored in another variable:
myvar=123
varname=myvar
now, I'd like to get 123 by just using $varname variable.
Is there a direct way for that? …
0
votes
3answers
52 views
Javascript eval multiple variables does not work
Hello,
I got an array which I iterate over and try to create a variable.
The name of the variable is variable and comes from the array. So I am using eval (this code will only be …
1
vote
7answers
183 views
User defined formulas in C#
I have an application where for each object the user can specify his own measurepoints. The values of theese measurements will then be used to classify the object as i e A - needs …
0
votes
2answers
68 views
Generating a dynamic time delta: python
Hello all.
Heres my situation:
import foo, bar, etc
frequency = ["hours","days","weeks"]
class geoProcessClass():
def __init__(self,geoTaskHandler,startDate,frequency,freq …
1
vote
6answers
67 views
Ajax: injecting code into Internet Explorer
I'm having trouble getting the follow code to work in Internet Explorer, it doesn't seem to want to execute the code sent back from the server via Ajax, it just does nothing:
var …
2
votes
2answers
53 views
Allow user-defined script in Ruby/Rails application
A predefined set of objects has to be aggregated into a new object. However I want the users to specify a custom function for that.
Now the naive approach would be
def foo; end
…
0
votes
1answer
25 views
Acessing javascript multidimensional array with linear values
How could I set a variable that I can read by using eval('productOptionTree' + '[0][1][0]')?
(the '[0][1][0]' part comes from another variable)
