User THE Joe Zack - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T13:38:28Z http://stackoverflow.com/feeds/user/28438 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/302369/wolframs-rule-34-in-xkcd 20 Wolfram's Rule 34 in XKCD THE Joe Zack 2008-11-19T15:54:55Z 2009-12-11T21:53:48Z <p>The hover "joke" in #505 xkcd touts "I call rule 34 on Wolfram's Rule 34"</p> <p>I know <a href="http://www.urbandictionary.com/define.php?term=Rule%2034" rel="nofollow">what rule 34 is in internet terms</a> and I've googled up <a href="http://en.wikipedia.org/wiki/Stephen_Wolfram" rel="nofollow">who Wolfram is</a> but I'm having a hard time figuring out what Wolfram's Rule 34 is.</p> <p>So what exactly is this "Rule 34"?</p> <p>Here's the comic: <a href="http://xkcd.com/505/" rel="nofollow">http://xkcd.com/505/</a></p> http://stackoverflow.com/questions/1883507/select-the-x-closest-ids/1884639#1884639 0 Answer by THE Joe Zack for Select the X "closest" ids ? THE Joe Zack 2009-12-10T22:46:55Z 2009-12-10T22:46:55Z <p>Here's how I would do it, it's simple and it works for signed/unsigned numbers:</p> <pre><code>-- Finds the closest 5 productID's to 200 SELECT productID, abs(productID - 200) as diff FROM products WHERE productID != 200 ORDER BY diff, productID LIMIT 5 </code></pre> <p>If you're using unsigned numbers, then you'll need to cast the column first:</p> <pre><code>-- Finds the closest 5 productID's to 200 (unsigned) SELECT productID, abs(CAST(productID as SIGNED) - 200) as diff FROM products WHERE productID != 200 ORDER BY diff, productID LIMIT 5 </code></pre> http://stackoverflow.com/questions/1590007/in-coldfusion-can-i-rename-a-pdf-form-field-with-cfpdf/1793035#1793035 1 Answer by THE Joe Zack for In ColdFusion, can I rename a PDF Form Field with CFPDF? THE Joe Zack 2009-11-24T21:28:05Z 2009-11-24T21:28:05Z <p>You cannot rename the fields with cfpdf or cfpdfform. You can get around the problem by populating and flattening each form before you merge them.</p> <p>Here's a simplified example: </p> <pre><code>&lt;!--- populate each form ---&gt; &lt;cfloop from="1" to="#arrayLen(files)#" index="i"&gt; &lt;cfset destination = "#i#.pdf" /&gt; &lt;!--- fill in form fields ---&gt; &lt;cfpdfform action = "populate" source = "#pdf_source_file#" destination = "#destination#" &gt; &lt;!--- form params here ---&gt; &lt;/cfpdfform&gt; &lt;!--- flatten file ---&gt; &lt;cfpdf action = "write" source = "#destination#" destination = "#destination#" flatten = "yes" /&gt; &lt;/cfloop&gt; &lt;!--- merge flattened files ---&gt; &lt;cfpdf action="merge" name="output"&gt; &lt;cfloop from="1" to="#arrayLen(files)#" index="i"&gt; &lt;cfpdfparam source="#i#.pdf"&gt; &lt;/cfloop&gt; &lt;/cfpdf&gt; &lt;!--- return the full pdf ---&gt; &lt;cfcontent type="application/pdf" reset="true" variable="#toBinary(output)#"&gt; </code></pre> http://stackoverflow.com/questions/1307192/scriptaculous-sortable-create-cant-hook-the-dragged-element/1477813#1477813 0 Answer by THE Joe Zack for Scriptaculous Sortable.create - Can't hook the dragged element THE Joe Zack 2009-09-25T14:59:15Z 2009-09-25T14:59:15Z <p>The onChange function actually gets a handle to the element passed in.</p> <p>Sortable.create("sortArea", {scroll:window, onChange:orderLi});</p> <p>function orderLi(elementBeingDragged){ console.log(elementBeingDragged); }</p> http://stackoverflow.com/questions/782212/coldfusion-query-to-java-sql-resultset 2 ColdFusion Query to java.sql.ResultSet THE Joe Zack 2009-04-23T15:18:39Z 2009-04-24T15:13:13Z <p>I've looked in the <a href="http://www.zrinity.com/developers/mx/undocumentation/query.cfm" rel="nofollow">"undocumentation"</a>, and I can see how to create a coldfusion.sql.QueryTable from a ResultSet, but not the other way around. So, how can I extract the java.sql.ResultSet from a ColdFusion ( coldfusion.sql.QueryTable ) query object?</p> http://stackoverflow.com/questions/782212/coldfusion-query-to-java-sql-resultset/786187#786187 2 Answer by THE Joe Zack for ColdFusion Query to java.sql.ResultSet THE Joe Zack 2009-04-24T14:53:43Z 2009-04-24T14:53:43Z <p>Turns out all I had to do was pass in my coldfusion.sql.QueryTable object...don't know why it works, unless ColdFusion is doing some sort of magic casting under the hood.</p> http://stackoverflow.com/questions/728563/how-to-dynamically-determine-a-method-name-in-ruby 1 How to Dynamically Determine a Method Name in Ruby THE Joe Zack 2009-04-08T04:49:12Z 2009-04-08T04:59:55Z <p>In Ruby, is there a way to determine the name of a method, akin to how the "class" method returns an object's type?</p> <p>For example:</p> <pre><code>def example_method puts method_name end #=&gt; "example_method" </code></pre> http://stackoverflow.com/questions/728417/how-to-set-class-scope-constants-in-ruby/728576#728576 2 Answer by THE Joe Zack for How to set class-scope constants in ruby? THE Joe Zack 2009-04-08T04:58:24Z 2009-04-08T04:58:24Z <p><a href="http://railstips.org/2006/11/18/class-and-instance-variables-in-ruby" rel="nofollow">Class variables in ruby are designated by "@@"</a></p> <pre><code>class ProjectEuler_tests &lt; Test::Unit::TestCase @@solution = 123456 # Not the answer so as not to be a spoiler def test_problem_1 assert_equal(@@solution, ProjectEuler1.new.solve) end end </code></pre> <p>Edit: I missed the "constant" in the title</p> http://stackoverflow.com/questions/690351/best-e-commerce-payment-gateway-for-u-s 0 Best E-Commerce Payment Gateway for U.S. [closed] THE Joe Zack 2009-03-27T16:00:53Z 2009-03-27T16:09:38Z <p>What's your preferred e-commerce payment gateway for a site doing roughly (U.S.) $100,000. </p> <p>In order of preference, I've used Chase Paymentech, Authorize, SkipJack and PayPal but I'd like to know if there's something better out there.</p> http://stackoverflow.com/questions/621176/how-to-dynamically-call-accessor-methods-in-ruby 4 How to dynamically call accessor methods in Ruby THE Joe Zack 2009-03-07T02:24:56Z 2009-03-07T07:21:18Z <p>Regardless of whether it's good practice or not, how can I dynamically call accessor methods in Ruby?</p> <p>Here's an example class:</p> <pre><code>class Test_Class attr_accessor :a, :b end </code></pre> <p>I can use the Object.send method to read the variable...</p> <pre><code>instance.a = "value" puts( instance.send( "a" ) ) # =&gt; value </code></pre> <p>But I'm having a hard time trying to write to it. These throw "wrong number of arguments (1 for 0) (ArgumentError)"</p> <pre><code>instance.send("a", "value") </code></pre> <p>and</p> <pre><code>instance.method("a").call("value") </code></pre> <p>Please help me StackOverflow!</p> http://stackoverflow.com/questions/282192/special-characters-in-cfmail 2 Special characters in CFMail THE Joe Zack 2008-11-11T21:30:04Z 2008-11-11T23:25:08Z <p>I'm trying to auto-generate a plain text email with a trademark symbol in it. I've tried everything I can think of but it's still not going through.</p> <pre><code>&lt;cfmail from="#x#" to="#y#" subject="test" charset="UTF-8"&gt; ™ &amp;trade; #Chr(153)# &lt;/cfmail&gt; </code></pre> http://stackoverflow.com/questions/277935/jseclipse-alternatives-in-ganymede 0 JSEclipse Alternatives in Ganymede THE Joe Zack 2008-11-10T14:07:47Z 2008-11-10T14:37:22Z <p>I've been having a lot of problems with JSEclipse in Ganymede, but I haven't had much luck finding an alternative that's compatible with Ganymede (eclipse 3.4).</p> <p>All I'm really looking for is code-highlighting. Anyone have any good alternatives, or do I just need to suck it up and get on with it?</p> http://stackoverflow.com/questions/270152/looking-for-a-simple-html-text-editor-for-windows 3 Looking for a simple HTML text editor for Windows THE Joe Zack 2008-11-06T20:35:36Z 2008-11-10T04:40:27Z <p>I'm looking for a <strong>simple</strong> free/cheap Windows text editor for a family member learning HTML. Ideally it would be as simple and non-intimidating as possible. Basically Notepad with code highlighting. Any help would be much appreciated!</p> http://stackoverflow.com/questions/260905/whats-the-best-easiest-gui-library-for-ruby/260927#260927 5 Answer by THE Joe Zack for What's the best/easiest GUI Library for Ruby? THE Joe Zack 2008-11-04T04:53:02Z 2008-11-04T04:53:02Z <p>I started with <a href="http://www.fxruby.org/" rel="nofollow">FXRuby</a> because it had a <a href="http://rads.stackoverflow.com/amzn/click/1934356077" rel="nofollow">book</a>.</p> http://stackoverflow.com/questions/208682/why-does-a-checkbox-remain-checked-in-ff3-but-not-in-ie-chrome-or/209152#209152 0 Answer by THE Joe Zack for Why does a checkbox remain checked in FF3 but not in IE, Chrome or ... THE Joe Zack 2008-10-16T15:52:23Z 2008-10-16T15:52:23Z <p>This also happens to select boxes in FireFox 3, which can be a major pain if you use said box to run AJAX/update the page.</p> <p>If the user refreshes the page or does some back-button weirdness they can end up with the select box still selected, but actually have to un-select and re-select in order to re-run the AJAX.</p> <p>In this case I've found that using the body onunload event to clear any select / checkboxes "solves" the "problem".</p> http://stackoverflow.com/questions/1883507/select-the-x-closest-ids/1884639#1884639 Comment by THE Joe Zack on Select the X "closest" ids ? THE Joe Zack 2009-12-10T22:49:55Z 2009-12-10T22:49:55Z Arg! I totally misread the question. http://stackoverflow.com/questions/782212/coldfusion-query-to-java-sql-resultset Comment by THE Joe Zack on ColdFusion Query to java.sql.ResultSet THE Joe Zack 2009-04-24T14:52:44Z 2009-04-24T14:52:44Z I'm trying to use some existing java code to manipulate my query, however the code takes in a java.sql.ResultSet http://stackoverflow.com/questions/728563/how-to-dynamically-determine-a-method-name-in-ruby/728572#728572 Comment by THE Joe Zack on How to Dynamically Determine a Method Name in Ruby THE Joe Zack 2009-04-08T05:03:27Z 2009-04-08T05:03:27Z ah snap, thanks! http://stackoverflow.com/questions/621176/how-to-dynamically-call-accessor-methods-in-ruby/621193#621193 Comment by THE Joe Zack on How to dynamically call accessor methods in Ruby THE Joe Zack 2009-03-07T02:38:23Z 2009-03-07T02:38:23Z Works, great! I guess the equal sign is part of the method name? http://stackoverflow.com/questions/302369/wolframs-rule-34-in-xkcd Comment by THE Joe Zack on Wolfram's Rule 34 in XKCD THE Joe Zack 2008-11-19T17:32:21Z 2008-11-19T17:32:21Z @Gortok You're right. I updated to add a question although it's not very specific, but at the time I didn't really understand what I was asking. @Lucas Oman Awesome job, thanks! You've inspired me to play around with CA a bit tonight! http://stackoverflow.com/questions/226899/how-to-run-a-very-large-query-sql-server-and-coldfusion Comment by THE Joe Zack on How to run a very large query (SQL Server and ColdFusion) THE Joe Zack 2008-11-15T10:22:30Z 2008-11-15T10:22:30Z You're question is tagged w/ sql server, but mentions excel. If your data is actually in excel, it might be worth keeping that data in a &quot;real&quot; database since they're designed with this type of usage in mind. http://stackoverflow.com/questions/282192/special-characters-in-cfmail/282381#282381 Comment by THE Joe Zack on Special characters in CFMail THE Joe Zack 2008-11-12T20:31:43Z 2008-11-12T20:31:43Z Wonderful, thanks! http://stackoverflow.com/questions/277935/jseclipse-alternatives-in-ganymede/278007#278007 Comment by THE Joe Zack on JSEclipse Alternatives in Ganymede THE Joe Zack 2008-11-10T14:51:16Z 2008-11-10T14:51:16Z Oops, I should have searched better. Thanks a lot!!