User THE Joe Zack - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T13:38:28Zhttp://stackoverflow.com/feeds/user/28438http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/302369/wolframs-rule-34-in-xkcd20Wolfram's Rule 34 in XKCDTHE Joe Zack2008-11-19T15:54:55Z2009-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#18846390Answer by THE Joe Zack for Select the X "closest" ids ?THE Joe Zack2009-12-10T22:46:55Z2009-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#17930351Answer by THE Joe Zack for In ColdFusion, can I rename a PDF Form Field with CFPDF?THE Joe Zack2009-11-24T21:28:05Z2009-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><!--- populate each form --->
<cfloop from="1" to="#arrayLen(files)#" index="i">
<cfset destination = "#i#.pdf" />
<!--- fill in form fields --->
<cfpdfform
action = "populate"
source = "#pdf_source_file#"
destination = "#destination#"
>
<!--- form params here --->
</cfpdfform>
<!--- flatten file --->
<cfpdf
action = "write"
source = "#destination#"
destination = "#destination#"
flatten = "yes"
/>
</cfloop>
<!--- merge flattened files --->
<cfpdf action="merge" name="output">
<cfloop from="1" to="#arrayLen(files)#" index="i">
<cfpdfparam source="#i#.pdf">
</cfloop>
</cfpdf>
<!--- return the full pdf --->
<cfcontent type="application/pdf" reset="true" variable="#toBinary(output)#">
</code></pre>
http://stackoverflow.com/questions/1307192/scriptaculous-sortable-create-cant-hook-the-dragged-element/1477813#14778130Answer by THE Joe Zack for Scriptaculous Sortable.create - Can't hook the dragged elementTHE Joe Zack2009-09-25T14:59:15Z2009-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-resultset2ColdFusion Query to java.sql.ResultSetTHE Joe Zack2009-04-23T15:18:39Z2009-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#7861872Answer by THE Joe Zack for ColdFusion Query to java.sql.ResultSetTHE Joe Zack2009-04-24T14:53:43Z2009-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-ruby1How to Dynamically Determine a Method Name in RubyTHE Joe Zack2009-04-08T04:49:12Z2009-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
#=> "example_method"
</code></pre>
http://stackoverflow.com/questions/728417/how-to-set-class-scope-constants-in-ruby/728576#7285762Answer by THE Joe Zack for How to set class-scope constants in ruby?THE Joe Zack2009-04-08T04:58:24Z2009-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 < 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-s0Best E-Commerce Payment Gateway for U.S. [closed]THE Joe Zack2009-03-27T16:00:53Z2009-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-ruby4How to dynamically call accessor methods in RubyTHE Joe Zack2009-03-07T02:24:56Z2009-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" ) )
# => 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-cfmail2Special characters in CFMailTHE Joe Zack2008-11-11T21:30:04Z2008-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><cfmail from="#x#" to="#y#" subject="test" charset="UTF-8">
™
&trade;
#Chr(153)#
</cfmail>
</code></pre>
http://stackoverflow.com/questions/277935/jseclipse-alternatives-in-ganymede0JSEclipse Alternatives in GanymedeTHE Joe Zack2008-11-10T14:07:47Z2008-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-windows3Looking for a simple HTML text editor for WindowsTHE Joe Zack2008-11-06T20:35:36Z2008-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#2609275Answer by THE Joe Zack for What's the best/easiest GUI Library for Ruby?THE Joe Zack2008-11-04T04:53:02Z2008-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#2091520Answer by THE Joe Zack for Why does a checkbox remain checked in FF3 but not in IE, Chrome or ...THE Joe Zack2008-10-16T15:52:23Z2008-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#1884639Comment by THE Joe Zack on Select the X "closest" ids ?THE Joe Zack2009-12-10T22:49:55Z2009-12-10T22:49:55ZArg! I totally misread the question.http://stackoverflow.com/questions/782212/coldfusion-query-to-java-sql-resultsetComment by THE Joe Zack on ColdFusion Query to java.sql.ResultSetTHE Joe Zack2009-04-24T14:52:44Z2009-04-24T14:52:44ZI'm trying to use some existing java code to manipulate my query, however the code takes in a java.sql.ResultSethttp://stackoverflow.com/questions/728563/how-to-dynamically-determine-a-method-name-in-ruby/728572#728572Comment by THE Joe Zack on How to Dynamically Determine a Method Name in RubyTHE Joe Zack2009-04-08T05:03:27Z2009-04-08T05:03:27Zah snap, thanks!http://stackoverflow.com/questions/621176/how-to-dynamically-call-accessor-methods-in-ruby/621193#621193Comment by THE Joe Zack on How to dynamically call accessor methods in RubyTHE Joe Zack2009-03-07T02:38:23Z2009-03-07T02:38:23ZWorks, great! I guess the equal sign is part of the method name?http://stackoverflow.com/questions/302369/wolframs-rule-34-in-xkcdComment by THE Joe Zack on Wolfram's Rule 34 in XKCDTHE Joe Zack2008-11-19T17:32:21Z2008-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-coldfusionComment by THE Joe Zack on How to run a very large query (SQL Server and ColdFusion)THE Joe Zack2008-11-15T10:22:30Z2008-11-15T10:22:30ZYou'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 "real" database since they're designed with this type of usage in mind.http://stackoverflow.com/questions/282192/special-characters-in-cfmail/282381#282381Comment by THE Joe Zack on Special characters in CFMailTHE Joe Zack2008-11-12T20:31:43Z2008-11-12T20:31:43ZWonderful, thanks!http://stackoverflow.com/questions/277935/jseclipse-alternatives-in-ganymede/278007#278007Comment by THE Joe Zack on JSEclipse Alternatives in GanymedeTHE Joe Zack2008-11-10T14:51:16Z2008-11-10T14:51:16ZOops, I should have searched better. Thanks a lot!!