active questions tagged eval - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T18:20:58Z http://stackoverflow.com/feeds/tag/eval http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1810109/parsing-a-string-which-represents-a-list-of-tuples 4 Parsing a string which represents a list of tuples tosh 2009-11-27T18:25:46Z 2009-11-27T23:21:31Z <p>I have strings which look like this one:</p> <pre><code>"(8, 12.25), (13, 15), (16.75, 18.5)" </code></pre> <p>and I would like to convert each of them into a python data structure. Preferably a list (or tuple) of tuples containing a pair of float values.</p> <p>I could do that with <code>eval("(8, 12.25), (13, 15), (16.75, 18.5)")</code> which gives me a tuple of tuples, but I don't think naively evaluating external information would be a wise decision.</p> <p>So I wondered what an elegant pythonic solution might look like.</p> http://stackoverflow.com/questions/1804249/find-answer-to-string-equation-without-using-eval 0 Find answer to string equation without using eval() RMcLeod 2009-11-26T15:16:26Z 2009-11-27T13:43:43Z <p>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().</p> <p>I know the equation will only ever contain numbers, the four mathematical operators (i.e. * / + -) and parentheses, it may or may not have spaces in the string. Here's a couple of examples.</p> <pre><code>4 * 4 4+6/3 (3 / 2)*(4+8) (4+8) * 2 </code></pre> <p>I'm guessing that it's going to have to be done with some kind of regex?</p> http://stackoverflow.com/questions/1797419/count-calls-to-eval 0 Count calls to eval Olivvv 2009-11-25T14:49:45Z 2009-11-25T17:14:56Z <p>Hi</p> <p>I would like to count the number of calls made to eval in our javascript application.</p> <p>I came up with the following, but it generates errors. These errors are hard to track, and my knowledge of the app is limited. </p> <p>Can you tell what is wrong with my code ?</p> <pre><code>increment = function (){ var me = arguments.callee; if (!me.count) me.count = 0; return ++me.count; } var oldEval = eval; eval = function eval(string){ console.log('eval number ', increment()); return oldEval(string); } </code></pre> <p>Or to you know an alternative way to count the use of eval ?</p> <p>thanks</p> <p>Olivier</p> http://stackoverflow.com/questions/1792573/localy-execute-actionscript-bytecode 0 localy execute actionscript bytecode Aaike 2009-11-24T20:03:32Z 2009-11-25T05:06:25Z <p>i want to execute a piece of bytecode so that it will run in a specific scope ?</p> <p>for example i want to be able to run this code</p> <pre><code>label.x = 100+label.width </code></pre> <p>and have it react to a label instance that is somewhere inside the compiled swf. i want the code have the 'this' keyword of my abc code to point to the parent of the label instance.</p> <p>as i understand the eval library at eval.hurlant.com will convert AS3 code to abc, which has to be loaded in as if it were an external swf. so the this keyword would always point to "global"</p> <p>in the examples at hurlant the only way to access anything in the loading swf is to create a top-level class without packages</p> <p>i also found this page <a href="http://danielmclaren.net/2008/09/21/eval-in-as3-tips-for-executing-dynamic-actionscript" rel="nofollow">http://danielmclaren.net/2008/09/21/eval-in-as3-tips-for-executing-dynamic-actionscript</a> to be usefull. it has a class that allows you to pass data from the scope of the evaluation.</p> <p>that is something, but what i really wanted is to actually execute it 'directly at' the scope of evaluation</p> <p>anybody know if this is possible ?</p> <p>i just want to create a command line from where i can execute code and also trace properties of the running swf. for example i want trace(label.x) to work, and set properties by doing label.text = "bla" etc...</p> http://stackoverflow.com/questions/631418/jquery-getjson-ajax-parseerror 2 JQuery getJSON - ajax parseerror JW 2009-03-10T17:25:09Z 2009-11-24T20:49:45Z <p>I've tried to parse the following json response with both the JQuery getJSON and ajax:</p> <pre><code>[{"iId":"1","heading":"Management Services","body":"&lt;h1&gt;Program Overview&lt;/h1&gt;&lt;h1&gt;January 29, 2009&lt;/h1&gt;"}] </code></pre> <p>I've also tried it escaping the "/" characters like this:</p> <pre><code>[{"iId":"1","heading":"Management Services","body":"&lt;h1&gt;Program Overview &lt;\/h1&gt;&lt;h1&gt;January 29, 2009&lt;\/h1&gt;"}] </code></pre> <p>When I use the getJSON it dose not execute the callback. So, I tried it with JQuery ajax as follows:</p> <pre><code>$.ajax({ url: jURL, contentType: "application/json; charset=utf-8", dataType: "json", beforeSend: function(x) { if(x &amp;&amp; x.overrideMimeType) { x.overrideMimeType("application/j-son;charset=UTF-8"); } }, success: function(data){ wId = data.iId; $("#txtHeading").val(data.heading); $("#txtBody").val(data.body); $("#add").slideUp("slow"); $("#edit").slideDown("slow"); },//success error: function (XMLHttpRequest, textStatus, errorThrown) { alert("XMLHttpRequest="+XMLHttpRequest.responseText+"\ntextStatus="+textStatus+"\nerrorThrown="+errorThrown); } }); </code></pre> <p>The ajax hits the error ans alerts the following:</p> <pre><code>XMLHttpRequest=[{"iId":"1","heading":"Management Services","body":"&lt;h1&gt;Program Overview &lt;/h1&gt;&lt;h1&gt;January 29, 2009&lt;/h1&gt;"}] textStatus=parseerror errorThrown=undefined </code></pre> <p>Then I tried a simple JQuery get call to return the JSON using the following code:</p> <pre><code>$.get(jURL,function(data){ var json = eval("("+data+");"); wId = json.iId; $("#txtHeading").val(json.heading); $("#txtBody").val(json.body); $("#add").slideUp("slow"); $("#edit").slideDown("slow"); }) </code></pre> <p>The .get returns the JSON, but the eval comes up with errors no matter how I've modified the JSON (content-type header, other variations of the format, etc.)</p> <p>What I've come up with is that there seem to be an issue returning the HTML in the JSON and getting it parsed. However, I have hope that I may have missed something that would allow me to get this data via JSON. Does anyone have any ideas?</p> http://stackoverflow.com/questions/1135562/binding-eval-with-an-imageurl-in-asp-net 0 Binding Eval with an ImageURL in ASP.NET ramyatk06 2009-07-16T05:34:16Z 2009-11-24T15:18:30Z <p>I'm trying to bind an image using <code>Eval()</code> with VB.NET and ASP.NET, but am running into issues:</p> <h3>Code snippet</h3> <pre><code>&lt;bri:ThumbViewer Id="Th1" runat="server" ImageUrl='&lt;%# Eval("Name", "~/SiteImages/ram/3/{0}") %&gt;' Height="100px" Width="100px" /&gt; </code></pre> <p>I set <code>strImagePath</code> in the code-behind as:</p> <pre><code>strImagePath ="~/SiteImages/ram/3/" </code></pre> <p>How can I replace: </p> <pre><code>~/SiteImages/ram/3/{0} </code></pre> <p>with the variable <code>strImagePath</code>?</p> http://stackoverflow.com/questions/723981/executing-methods-with-itemtemplate-parameters-in-asp-net 2 Executing Methods with ItemTemplate Parameters in ASP.NET Nick 2009-04-07T02:35:40Z 2009-11-24T12:49:09Z <p>I need to execute a method within an <code>ItemTemplate</code> in my <code>DataList</code>. How do I format the method in the page to work correctly with an <code>Eval</code>?</p> <p>The method takes an <code>int</code> as a parameter. </p> <pre><code>&lt;%# NumberOfEmplyeeOrders(Int32.Parse("EmployeeID"))%&gt; </code></pre> http://stackoverflow.com/questions/1779481/hyperlink-with-navigateurl-with-eval-where-is-a-mistake 0 HyperLink with NavigateUrl with Eval(). Where is a mistake? abatishchev 2009-11-22T18:16:59Z 2009-11-22T19:22:39Z <p>First I was changing <code>HyperLink.NavigateUrl</code> in code-behind on <code>Page_Load()</code>.</p> <p>But after I decided to do it in design using <code>Eval()</code> method.</p> <pre><code>&lt;asp:HyperLink runat="server" NavigateUrl='&lt;%# String.Format("~/Refuse.aspx?type={0}&amp;id={1}", Eval("type"), Eval("id")) %&gt;' Text="Refuse" /&gt; </code></pre> <p>or</p> <pre><code>&lt;asp:HyperLink ID="urlRefuse" runat="server" NavigateUrl='&lt;%# String.Format("~/Refuse.aspx?type={0}&amp;id={1}", Request["type"], Request["id"]) %&gt;' Text="Refuse" /&gt; </code></pre> <p>where <code>id</code> and <code>type</code> - are variables from <code>Request</code>.</p> <p>But it doesn't work. Only raw text 'Refuse' is shown. Where is my mistake? Thanks in advance.</p> http://stackoverflow.com/questions/1778221/understanding-asp-net-eval-and-bind 0 Understanding asp.net Eval() and Bind() JMSA 2009-11-22T08:57:12Z 2009-11-22T10:15:42Z <p>Can anyone show me some absolutely minimal asp.net code to understand Eval() and Bind()?</p> <p>It is best if you provide me with two separate code-snippets or may be web-links.</p> http://stackoverflow.com/questions/1767774/how-does-eval-function-work-in-php 0 How does eval function work in PHP ? ta.abouzeid 2009-11-20T01:29:27Z 2009-11-20T01:43:55Z <p>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.</p> <pre><code>&lt;?php $str = "exit()"; eval($str); ?&gt; </code></pre> <p>What's wrong with my code ?</p> http://stackoverflow.com/questions/1767329/how-do-i-simplify-bashs-eval-time-binfile-binopts-logfile-and-keep 2 How do I simplify bash's 'eval "$TIME $BIN_FILE $BIN_OPTS &> $LOG_FILE"' and keep it working? chronos 2009-11-19T23:29:13Z 2009-11-20T00:55:38Z <p>I'm updating a bash script which serves as a program testing tool. Previously, I had this line in a script working perfectly (<code>$BIN_FILE</code> is set to a relative path to the binary being tested):</p> <pre><code>$BIN_FILE $BIN_OPTS &amp;&gt; $LOG_FILE </code></pre> <p>Then I've decided to add some "performance measurements":</p> <pre><code>time $BIN_FILE $BIN_OPTS &amp;&gt; $LOG_FILE" </code></pre> <p>This worked perfectly as well, but when running many tests at once, script's output was too crowded with all those "real, user, system". Now I'm passing a second parameter to the script, which causes $TIME variable to have value 'time' assigned to it. However,</p> <pre><code>$TIME $BIN_FILE $BIN_OPTS &amp;&gt; $LOG_FILE </code></pre> <p>just doesn't work. The only working option seems to be</p> <pre><code>eval "$TIME $BIN_FILE $BIN_OPTS &amp;&gt; $LOG_FILE" </code></pre> <p>but it's ugly.</p> <p>Why doesn't</p> <pre><code>$TIME $BIN_FILE $BIN_OPTS &amp;&gt; $LOG_FILE </code></pre> <p>work? Is there a nicer-looking solution, then the one with <em>eval</em>?</p> <p>Also, regarding portability - should I use bash's internal 'time', or call GNU /usr/bin/time?</p> http://stackoverflow.com/questions/1750168/use-recursion-instead-of-eval 2 Use recursion instead of EVAL n33x 2009-11-17T16:43:52Z 2009-11-17T17:16:33Z <p>Hello everybody,</p> <p>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.</p> <p>I made the following code, where I create a big string inserting the callbacks inside the previous callbacks and later use eval to execute the effects, but despite the code is working fine as expected, I'm totally sure that's not the best way to do this.</p> <pre><code>// get items to hide var itemsToHide = jQuery(".hide"); // function responsible to hide the item var hideItem = function (item, callback) { jQuery(item).hide(100, callback) }; // declare an empty function, to be the first to be called var buff = function(){}; for (var i = 0; i &lt; itemsToHide.length; i++) { // put the previous value of buff in the callback and assign this to buff buff = "function(){hideItem(itemsToHide[" + i + "], " + buff + ");}"; } // execute the effects eval("(" + buff + ")()"); </code></pre> <p>Any suggestion on how to accomplish this effect using recursion, without the "evil" eval?</p> http://stackoverflow.com/questions/1743698/r-eval-expression 2 R eval expression Thrawn 2009-11-16T17:39:31Z 2009-11-16T21:03:04Z <p>Hi all,</p> <p>I'm curious to know if R can use its "eval" function to perform calculations provided by e.g. a string.</p> <p>This is a common case</p> <pre><code>&gt; eval("5+5") </code></pre> <p>However, instead of 10 I get</p> <pre><code>[1] "5+5" </code></pre> <p>Any solution? :-)</p> http://stackoverflow.com/questions/1738279/how-can-i-get-this-snippet-to-work 0 How can I get this snippet to work? Geo 2009-11-15T18:04:15Z 2009-11-16T19:57:08Z <p>I'd like to port a little piece of code from Ruby to Groovy, and I'm stuck at this:</p> <pre><code>def given(array,closure) { closure.delegate = array closure() } given([1,2,3,4]) { findAll { it &gt; 4} } </code></pre> <p>Right now it dies with this message:</p> <p><code>Exception thrown: Cannot compare ConsoleScript0$_run_closure1 with value 'ConsoleScript0$_run_closure1@1e6743e' and java.lang.Integer with value '4'</code>.</p> <p>I tried to set the closure's delegate to be the array, but it seems that in the <code>findAll</code> method, it represents a closure, instead of an actual item from the array. I also tried to run the closure like this:</p> <pre><code>array.with { closure(array) } </code></pre> <p>but I still wasn't able to make it work. Any thoughts on what could work? Ruby's equivalent would be to <code>instance_eval</code> the closure in the array's context.</p> <p>EDIT: Running Mykola's code produced this output:</p> <pre><code>given [1, 2, 3, 4] class Demo$_main_closure1 2 Exception thrown: Cannot compare Demo$_main_closure1 with value 'Demo$_main_closure1@fe53cf' and java.lang.Integer with value '2' groovy.lang.GroovyRuntimeException: Cannot compare Demo$_main_closure1 with value 'Demo$_main_closure1@fe53cf' and java.lang.Integer with value '2' at Demo$_main_closure1_closure2.doCall(ConsoleScript3:15) at Demo$_main_closure1.doCall(ConsoleScript3:15) at Demo$_main_closure1.doCall(ConsoleScript3) at Demo.given(ConsoleScript3:28) at Demo$given.callStatic(Unknown Source) at Demo.main(ConsoleScript3:12) </code></pre> <p>I'm running Groovy 1.6.5.</p> http://stackoverflow.com/questions/1734984/why-cant-i-use-attraccessor-inside-initialize 2 Why can't I use attr_accessor inside initialize? Geo 2009-11-14T17:43:00Z 2009-11-14T17:47:56Z <p>I'm trying to do an <code>instance_eval</code> followed by a <code>attr_accessor</code> inside <code>initialize</code>, and I keep getting this: <code>`initialize': undefined method 'attr_accessor'</code>. Why isn't this working?</p> <p>The code looks kind of like this:</p> <pre><code>class MyClass def initialize(*args) instance_eval "attr_accessor :#{sym}" end end </code></pre> http://stackoverflow.com/questions/1714875/eval-to-variable-failing-w-crontab 1 Eval to variable failing (w/Crontab) brianreavis 2009-11-11T12:26:18Z 2009-11-11T14:24:59Z <p>Here's a snippet of a bash script I'm writing to log CPU loads:</p> <pre><code>#!/bin/bash # ... irrelevant nonsense ... cmd1="/usr/bin/mpstat -P ALL | egrep '(AM|PM)([[:space:]]+)(0)' | tr -s ' ' | cut -d' ' -f4" ldsys="$(echo $cmd1 | /bin/sh)" # ... irrelevant nonsense ... </code></pre> <p><code>$ldsys</code> is set properly when the script is executed conventionally from the console. It's golden. <strong>Here's the issue:</strong> when executed with crontab, <code>$ldsys</code> is empty.</p> <p>I've been trying millions of things for the last three hours to try to get this thing work... but I can't find <em>anything</em>. Does anyone have any ideas?</p> <p><hr></p> <h2>Notes:</h2> <ul> <li><p><code>/usr/bin/mpstat</code> <em>can</em> be executed by cron. I tested by adding a bogus task to fire every minute: <code>/usr/bin/mpstat -P ALL &gt;&gt; somefile</code> and checking the output. It works.</p></li> <li><p><code>egrep</code>, <code>tr</code>, and <code>cut</code> all function fine under cron. </p></li> <li><del>I'm thinking it really has to do with the eval assignment convention... but I don't know why that would be an issue considering it's a relatively-fundamental construct...</del> After trying Adam's suggestion, I now have no idea what to think...</li> </ul> <p><strong>Edit:</strong> stripped out <code>eval</code> usage... still no dice.</p> http://stackoverflow.com/questions/1711970/cant-seem-to-use-bash-c-option-with-arguments-after-the-c-option-string 0 Can't seem to use bash -c option with arguments after the -c option string Chris Markle 2009-11-10T23:25:29Z 2009-11-10T23:30:08Z <p>Man page for bash says, regarding -c option:</p> <blockquote> <p>-c string<br> If the -c option is present, then commands are read from string. If there are arguments after the string, they are assigned to the positional parameters, starting with $0.</p> </blockquote> <p>So given that description, I would think something like this ought to work:</p> <pre><code>bash -c "echo arg 0: $0, arg 1: $1" arg1 </code></pre> <p>but the output just shows the following so it looks like the arguments after the -c string are not being assigned to the positional parameters.</p> <pre><code>arg 0: -bash, arg 1: </code></pre> <p>I am running a fairly ancient bash (on Fedora 4):</p> <blockquote> <p>[root@dd42 trunk]# bash --version<br> GNU bash, version 3.00.16(1)-release (i386-redhat-linux-gnu)<br> Copyright (C) 2004 Free Software Foundation, Inc.</p> </blockquote> <p>What I am really trying to do here is to execute a bit of shell script with arguments. I thought -c looked very promising, hence the issue above. I wondered about using eval but I don't think I can pass args to the stuff that follows eval. I'm open to other suggestions as well.</p> http://stackoverflow.com/questions/1694196/lookup-shell-variables-by-name-indirectly 3 Lookup shell variables by name, indirectly inger 2009-11-07T19:49:00Z 2009-11-07T20:12:57Z <p>Let's say I have a variable's name stored in another variable:</p> <pre><code>myvar=123 varname=myvar </code></pre> <p>now, I'd like to get 123 by just using $varname variable. Is there a direct way for that? I found no such bash builtin for lookup by name, so came up with this:</p> <pre><code>function var { v="\$$1"; eval "echo "$v; } </code></pre> <p>so </p> <pre><code>var $varname # gives 123 </code></pre> <p>Which doesn't look too bad in the end, but I'm wondering if I missed something more obvious. Thanks in advance!</p> http://stackoverflow.com/questions/1692897/javascript-eval-multiple-variables-does-not-work 0 Javascript eval multiple variables does not work richard 2009-11-07T12:34:43Z 2009-11-07T12:53:03Z <p>Hello,</p> <p>I got an array which I iterate over and try to create a variable.</p> <p>The name of the variable is variable and comes from the array. So I am using eval (this code will only be used on my local computer) to create the variables. Weird enough I can create a variable and add plain text to the contents of it. But whenever I try to set a variable variable I get nothing.</p> <p>I'm also using Prototype to easily walk the DOM.</p> <pre><code>var arr_entries = some_DOM_element; arr_entries_array = new Array(); arr_entries_array[0] = new Array(); arr_entries_array[0][0] = 'name_dd'; arr_entries_array[0][1] = arr_entries.next(13).down().next(1).innerHTML; arr_entries_array[1] = new Array(); arr_entries_array[1][0] = 'name_pl'; arr_entries_array[1][1] = arr_entries.next(14).down().next().innerHTML; arr_entries_array[2] = new Array(); arr_entries_array[2][0] = 'name_pm'; arr_entries_array[2][1] = arr_entries.next(15).down().next().innerHTML; arr_entries_array[3] = new Array(); arr_entries_array[3][0] = 'name_hd'; arr_entries_array[3][1] = arr_entries.next(17).down().next().innerHTML; arr_entries_array[4] = new Array(); arr_entries_array[4][0] = 'name_sr'; arr_entries_array[4][1] = arr_entries.next(16).down().next().innerHTML; for(e = 0; e &lt; arr_entries_array.length; e++) { eval('var arr_entry_' + arr_entries_array[e][0] + ';'); eval('arr_entry_' + arr_entries_array[e][0] + ' = \'' + arr_entries_array[e][1] + '\';'); } </code></pre> <p>I can alert(<code>arr_entries_array[e][1]</code>) just fine. I can also replace it with plain text, alert the variable afterwards and it will work.</p> <p>The second eval line is where it goes wrong, any comments?</p> http://stackoverflow.com/questions/1530704/how-to-use-evalx-value-in-listview 1 How to use Eval("x") value in ListView Zan2 2009-10-07T10:15:45Z 2009-11-04T20:49:01Z <p>Hey,</p> <p>I'm wondering how I can use the Eval values in a ListView? I mean displaying it as text is simple enough, even sending it to the codebehind via some parameters in a button click event for example. But how do I actually use that information as is on the aspx page without using any triggered events?</p> <p>Basically I get an Eval("Storage") that contains the number of products in storage. Now based on that number I will either show a dynamic "Add to cart" linkbutton or not. But I simply cannot find a way to touch that storage information. This is undoubtedly a newbie question but I can't find an answer to this anywhere.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1649753/generating-a-dynamic-time-delta-python 0 Generating a dynamic time delta: python George 2009-10-30T13:12:30Z 2009-10-30T14:06:40Z <p>Hello all.</p> <p>Heres my situation:</p> <pre><code>import foo, bar, etc frequency = ["hours","days","weeks"] class geoProcessClass(): def __init__(self,geoTaskHandler,startDate,frequency,frequencyMultiple=1,*args): self.interval = self.__determineTimeDelta(frequency,frequencyMultiple) def __determineTimeDelta(self,frequency,frequencyMultiple): if frequency in frequency: interval = datetime.timedelta(print eval(frequency + "=" + str(frequencyMultiple))) return interval else: interval = datetime.timedelta("days=1") return interval </code></pre> <p>I want to dinamically define a time interval with timedelta, but this does not seem to work.</p> <p>Is there any specific way to make this work? I'm getting invalid syntax here.</p> <p>Any better ways to do it?</p> http://stackoverflow.com/questions/1644146/user-defined-formulas-in-c 1 User defined formulas in C# Freddy 2009-10-29T14:31:18Z 2009-10-29T16:39:38Z <p>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 service, B - service should be scheduled within X days, C - no service needed ATM</p> <p>However theese objects can be almost anything and there is no way we can hard code how the measured values should be aggregated to a classification, we need to leave that to the user.</p> <p>Have you any suggestions on how we can provide a way for the user to enter his own formulas for this? It does not have to be idiot-proof, we dont have that many customers so we can assist them as long as they can explain it to us.</p> http://stackoverflow.com/questions/1611842/eval-json-out-of-memory-error 0 eval json out of memory error Nathan 2009-10-23T07:19:39Z 2009-10-23T07:37:05Z <p>Hi,</p> <p>I'm using <code>JSON.parse</code> function to load info about a cellset. I'm testing how much data is possible to fetch in one call.</p> <p>The eval function starts throwing "out of memory" between 1.3-1.4 million characters (65,000-70,000 cells) in the JSON string. Does anybody know of a workaround for this - perhaps a pure JSON parser, rather than eval?</p> <p>Thanks, Nathan</p> http://stackoverflow.com/questions/1609575/acessing-javascript-multidimensional-array-with-linear-values 0 Acessing javascript multidimensional array with linear values djspark 2009-10-22T19:53:37Z 2009-10-22T20:10:04Z <p>How could I <strong>set</strong> a variable that I can read by using <code>eval('productOptionTree' + '[0][1][0]')</code>?</p> <p>(the '[0][1][0]' part comes from another variable)</p> http://stackoverflow.com/questions/1584807/allow-user-defined-script-in-ruby-rails-application 2 Allow user-defined script in Ruby/Rails application Marcel J. 2009-10-18T12:49:59Z 2009-10-18T17:55:51Z <p>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.</p> <p>Now the naive approach would be</p> <pre><code>def foo; end objects = [1,2,3] # result = eval(user_script) result = eval("objects.inject {|sum, n| sum + n }") </code></pre> <p>What I <strong>obviously</strong> do not want to do! I read about <code>$SAFE = 4</code> (see <a href="http://www.rubycentral.com/pickaxe/taint.html" rel="nofollow">here</a>), but I'm not sure that this is enough. Especially because the user-defined script will still be able to call other functions like <code>foo</code>. I only want to allow access to basic non-dangerous Ruby core-functions.</p> <p>Are there any facilities for Ruby to allow safe execution of user-defined scripts? I doesn't need to be Ruby syntax. It would be nice, though.</p> http://stackoverflow.com/questions/1577678/ajax-injecting-code-into-internet-explorer 1 Ajax: injecting code into Internet Explorer Gary Green 2009-10-16T12:08:23Z 2009-10-16T12:42:00Z <p>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:</p> <pre><code>var ajax = new ActiveXObject('Microsoft.XMLHTTP'); ajax.open('GET','http://fromsitewebsite.com/javascript.js',true); ajax.setRequestHeader('Connection','close'); ajax.onreadystatechange = function() { if ( ajax.readyState == 4 ) { document.body.innerHTML += '&lt;script type="text/javascript"&gt;'+ajax.responseText+'&lt;/script&gt;'; } }; ajax.send(''); </code></pre> <p>I've tried doing this with still no luck;</p> <pre><code> document.body.innerHTML += '&lt;script type="text/javascript"&gt;('+ajax.responseText+')()&lt;/script&gt;') </code></pre> <p>Cheers</p> http://stackoverflow.com/questions/1560174/do-languages-with-meta-linguistic-abstraction-perform-better-than-those-that-just 1 Do languages with meta-linguistic abstraction perform better than those that just use reflection API for that? Bubba88 2009-10-13T13:13:58Z 2009-10-13T18:34:53Z <p>Say, if I have a Lisp program, which uses <code>(eval 'sym)</code> and looks it up in its symbol-table does it actually perform better than something like <code>aClass.getField("sym", anInstance)</code> in "static" languages?</p> http://stackoverflow.com/questions/1553797/compilation-of-expressions 0 Compilation of <%# %> expressions devio 2009-10-12T10:25:19Z 2009-10-12T11:28:50Z <p>Is there a way to force VS2008 to compile &lt;%# %> databinding expressions to avoid runtime errors?</p> http://stackoverflow.com/questions/1501913/bind-list-of-object-array-to-listview-in-asp-net 0 Bind List of object array to ListView in ASP.NET unknown (google) 2009-10-01T04:42:30Z 2009-10-01T05:37:55Z <p>Hi All,</p> <p>I am breaking my head to fix an issue. I have a method that returns a <code>List&lt;object[]&gt;</code>.</p> <p>Each <code>object[]</code> in the List contains the following:</p> <pre><code>object[0]=Id; object[1]=Name; </code></pre> <p>Now I am looking for a way to bind this List to a ListView in a custom ItemTemplate which would look as follows:</p> <pre><code>&lt;asp:Label runat="server" ID="lblId" Text=Here want to do an Eval/Bind for object[0]"&gt;&lt;/asp:Label&gt; &lt;asp:Label runat="server" ID="lblName" Text=Here want to do an Eval/Bind for object[1]"&gt;&lt;/asp:Label&gt; </code></pre> <p>Any suggestions will be deeply appreciated.</p> http://stackoverflow.com/questions/429039/php-and-macroslisp-style 0 Php and macros(lisp style)? DFectuoso 2009-01-09T17:54:55Z 2009-10-01T05:22:38Z <p>Hi im learning LISP and well, all day i program php for a living, so i was messing around with php.net and found the eval function... so i started playing around!</p> <p>I would love to know more about how to use eval to do crazy stuff, i know you can make functions with this and everything... but i wanted to ask why the next code wont work:</p> <pre><code>$var = "echo \"FOZZ\";"; for($i = 0; $i &lt; 100; $i++) $var = "eval(\"".$var."\");"; print $var; eval($var); </code></pre> <p>Also what other stuff is interesting with eval!</p>