0
votes
3answers
72 views
Find answer to string equation without using eval()
I need a way of taking an equation given as a string and finding it's mathematical answer, the big caveat is that I can't use eval().
I know the equation will only ever contain nu …
0
votes
5answers
55 views
Count calls to eval
Hi
I would like to count the number of calls made to eval in our javascript application.
I came up with the following, but it generates errors. These errors are hard to track, an …
0
votes
0answers
23 views
localy execute actionscript bytecode
i want to execute a piece of bytecode so that it will run in a specific scope ?
for example
i want to be able to run this code
label.x = 100+label.width
and have it react to a …
2
votes
8answers
5k views
JQuery getJSON - ajax parseerror
I've tried to parse the following json response with both the JQuery getJSON and ajax:
[{"iId":"1","heading":"Management Services","body":"<h1>Program Overview</h1>< …
0
votes
3answers
179 views
Binding Eval with an ImageURL in ASP.NET
I'm trying to bind an image using Eval() with VB.NET and ASP.NET, but am running into issues:
Code snippet
<bri:ThumbViewer Id="Th1" runat="server"
ImageUrl='<%# Eval( …
2
votes
2answers
63 views
Executing Methods with ItemTemplate Parameters in ASP.NET
I need to execute a method within an ItemTemplate in my DataList. How do I format the method in the page to work correctly with an Eval?
The method takes an int as a parameter.
…
0
votes
5answers
38 views
HyperLink with NavigateUrl with Eval(). Where is a mistake?
First I was changing HyperLink.NavigateUrl in code-behind on Page_Load().
But after I decided to do it in design using Eval() method.
<asp:HyperLink runat="server"
Naviga …
0
votes
1answer
44 views
Understanding asp.net Eval() and Bind()
Can anyone show me some absolutely minimal asp.net code to understand Eval() and Bind()?
It is best if you provide me with two separate code-snippets or may be web-links.
0
votes
6answers
51 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 …
2
votes
2answers
47 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
68 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
81 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
87 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
62 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
39 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 ' …
