User - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T11:51:43Z http://stackoverflow.com/feeds/user/10876 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/567254/can-a-coldfusion-cfc-method-determine-its-own-name/575536#575536 1 Answer by zirconx for Can a ColdFusion cfc method determine its own name? zirconx 2009-02-22T19:28:16Z 2009-02-22T19:28:16Z <p>I thought of another way that could work.</p> <p>Setup an OnMissingMethod something like this:</p> <pre><code>&lt;cffunction name="onMissingMethod"&gt; &lt;cfargument name="missingMethodName" type="string"&gt; &lt;cfargument name="missingMethodNameArguments" type="struct"&gt; &lt;cfset var tmpReturn = ""&gt; &lt;cfset var functionToCallName = "Hidden" &amp; Arguments.missingMethodName&gt; &lt;cfset arguments.missingMethodArguments.calledMethodName = Arguments.missingMethodName&gt; &lt;cfinvoke method="#functionToCallName#" argumentcollection="#Arguments.missingMethodArguments#" returnvariable="tmpReturn" /&gt; &lt;cfreturn tmpReturn&gt; &lt;/cffunction&gt; </code></pre> <p>Then name each of the regular methods with a prefix ("Hidden" in this example), and mark them as private. So my initial example would become:</p> <pre><code>&lt;cffunction name="HiddenisUsernameAvailable" access="private"&gt; &lt;cfset logAccess(request.userid,Arguments.calledMethodName)&gt; ...... &lt;/cffunction&gt; </code></pre> <p>Now all the calls will be intercepted by onMissingMethod, which will add the method name to the arguments that get passed to the real method.</p> <p>The downsides I see to this are that introspection no longer works properly, and you must be using named arguments to call all your functions. If you are not using named arguments, the args will randomly change order in the missingMethodNameArguments structure.</p> http://stackoverflow.com/questions/567254/can-a-coldfusion-cfc-method-determine-its-own-name 6 Can a ColdFusion cfc method determine its own name? zirconx 2009-02-19T21:30:07Z 2009-02-22T19:28:16Z <p>I am creating an API, and within each method I make a call to a logging method for auditing and troubleshooting. Something like:</p> <pre><code>&lt;cffunction name="isUsernameAvailable"&gt; &lt;cfset logAccess(request.userid,"isUsernameAvailable")&gt; ...... &lt;/cffunction&gt; </code></pre> <p>I'd like to avoid manually repeating the method name. Is there a way to programatically determine it?</p> <p>I've looked at GetMetaData() but it only returns info about the <em>component</em> (including all the methods) but nothing about which method is currently being called.</p> http://stackoverflow.com/questions/105613/can-xpath-return-only-nodes-that-have-a-child-of-x 1 Can XPath return only nodes that have a child of X? zirconx 2008-09-19T21:04:34Z 2009-01-11T17:20:01Z <p>Is it possible to use XPath to select only the nodes that have a particular child elements? For example, from this XML I only want the elements in pets that have a child of 'bar'. So the resulting dataset would contain the lizard and pig elements.</p> <pre><code>&lt;pets&gt; &lt;cat&gt; &lt;foo&gt;don't care about this&lt;/foo&gt; &lt;/cat&gt; &lt;dog&gt; &lt;foo&gt;not this one either&lt;/foo&gt; &lt;/dog&gt; &lt;lizard&gt; &lt;bar&gt;lizard should be returned, because it has a child of bar&lt;/bar&gt; &lt;/lizard&gt; &lt;pig&gt; &lt;bar&gt;return pig, too&lt;/bar&gt; &lt;/pig&gt; &lt;/pets&gt; </code></pre> <p>This Xpath gives me all pets: "/pets/*", but I only want the pets that have a child node of 'bar'.</p> http://stackoverflow.com/questions/285614/how-to-delete-all-but-the-latest-20-000-records-in-ms-sql-2005 3 How to delete all but the latest 20,000 records in MS SQL 2005? zirconx 2008-11-12T22:24:38Z 2008-11-17T13:47:38Z <p>Every night I need to trim back a table to only contain the latest 20,000 records. I could use a subquery:</p> <pre><code>delete from table WHERE id NOT IN (select TOP 20000 ID from table ORDER BY date_added DESC) </code></pre> <p>But that seems inefficient, especially if we later decide to keep 50,000 records. I'm using SQL 2005, and thought I could use ROW_NUMBER() OVER somehow to do it? Order them and delete all that have a ROW_NUMBER greater than 20,000? But I couldn't get it to work. Is the subquery my best bet or is there a better way?</p> http://stackoverflow.com/questions/233219/assembla-is-no-longer-free-is-there-a-good-alternative/267557#267557 0 Answer by zirconx for Assembla is no longer free, is there a good alternative?! zirconx 2008-11-06T03:25:43Z 2008-11-06T03:25:43Z <p>FogBugz is always highly recommended, and free for up to two people. I just started using it (moving from assembla) and I like it so far.</p> http://stackoverflow.com/questions/198006/need-a-distributed-key-value-lookup-system/198019#198019 -1 Answer by zirconx for Need a distributed key-value lookup system zirconx 2008-10-13T15:37:27Z 2008-10-13T15:37:27Z <p>DNS has the capability to do this, I don't know how large each one of your records is (8GB of tons of small data?), but it may work.</p> http://stackoverflow.com/questions/59083/what-is-adobe-flex-is-it-just-flash-ii/99124#99124 0 Answer by zirconx for What is Adobe Flex? Is it just Flash II? zirconx 2008-09-19T02:59:37Z 2008-09-19T02:59:37Z <p>Flex is basically a language that compiles down to a flash "movie" or "applet", that will run in the Adobe Flash player plugin.</p> http://stackoverflow.com/questions/97474/given-this-xml-is-there-an-xpath-that-will-give-me-the-test-and-name-values 0 Given this XML, is there an xpath that will give me the 'test' and 'name' values? zirconx 2008-09-18T22:03:55Z 2008-09-18T22:42:32Z <p>I need to get the value of the 'test' attribute in the xsl:when tag, and the 'name' attribute in the xsl:call-template tag. This xpath gets me pretty close: </p> <pre><code>..../xsl:template/xsl:choose/xsl:when </code></pre> <p>But that just returns the 'when' elements, not the exact attribute values I need.</p> <p>Here is a snippet of my XML:</p> <pre><code>&lt;xsl:template match="field"&gt; &lt;xsl:choose&gt; &lt;xsl:when test="@name='First Name'"&gt; &lt;xsl:call-template name="handleColumn_1" /&gt; &lt;/xsl:when&gt; &lt;/xsl:choose&gt; </code></pre> http://stackoverflow.com/questions/94948/restarting-coldfusion-mail-queue/95486#95486 12 Answer by zirconx for Restarting ColdFusion mail queue zirconx 2008-09-18T18:39:38Z 2008-09-18T18:39:38Z <p>Yes there is.</p> <pre><code>&lt;cfset sFactory = CreateObject("java","coldfusion.server.ServiceFactory")&gt; &lt;cfset MailSpoolService = sFactory.mailSpoolService&gt; &lt;cfset MailSpoolService.stop()&gt; &lt;cfset MailSpoolService.start()&gt; </code></pre> http://stackoverflow.com/questions/87904/coldfusion-template-request-count-optimization/95387#95387 0 Answer by zirconx for ColdFusion Template Request count optimization zirconx 2008-09-18T18:32:35Z 2008-09-18T18:32:35Z <p>I would say at least 8 <em>per core</em>, not per CPU. And I think 8 is a little low given modern CPU cores, I would say at least 12.</p> http://stackoverflow.com/questions/88274/in-coldfusion-8-can-you-declare-a-function-as-private-using-cfscript 1 in ColdFusion 8, can you declare a function as private using cfscript? zirconx 2008-09-17T22:19:12Z 2008-09-17T22:30:36Z <p>Normally you create a function using cfscript like:</p> <pre><code>&lt;cfscript&gt; function foo() { return "bar"; } &lt;/cfscript&gt; </code></pre> <p>Is there a way to declare this as a private function, available only to other methods inside the same cfc?</p> <p>I know you can do it with tags:</p> <pre><code>&lt;cffunction name="foo" access="private"&gt; &lt;cfreturn "bar"&gt; &lt;/cffunction&gt; </code></pre> <p>But I don't want to have to rewrite this large function thats already written in cfscript.</p> http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/83576#83576 0 Answer by zirconx for What do you use to keep notes as a developer? zirconx 2008-09-17T14:02:53Z 2008-09-17T14:02:53Z <p>I use MS One Note at work, and it works pretty well. I also write a blog and put a lot of notes on there.</p> <p>Have also looked at Evernote, but was not very impressed with it. Not very easy to organize things like in OneNote.</p> <p>One con with OneNote is that is not free. So I have it on my work machine, but not on my other computers, so I can't standardize on it.</p> http://stackoverflow.com/questions/9051/what-is-best-blogging-host-for-programmers-code-formatting/68946#68946 1 Answer by zirconx for What is best blogging host for programmers/code formatting? zirconx 2008-09-16T02:36:57Z 2008-09-16T02:36:57Z <p>I use WordPress with the "Code Markup" plugin. It has worked really well. You just surround the code in your posts with</p> <p>&lt;pre>&lt;code&gt;code here&lt;/code&gt;&lt;/pre&gt;</p> http://stackoverflow.com/questions/285614/how-to-delete-all-but-the-latest-20-000-records-in-ms-sql-2005/285914#285914 Comment by on How to delete all but the latest 20,000 records in MS SQL 2005? 2008-11-13T20:25:08Z 2008-11-13T20:25:08Z Both this one and the temp table approach are great ideas that I would have never thought of. I love this site. http://stackoverflow.com/questions/285614/how-to-delete-all-but-the-latest-20-000-records-in-ms-sql-2005/285968#285968 Comment by on How to delete all but the latest 20,000 records in MS SQL 2005? 2008-11-13T20:23:47Z 2008-11-13T20:23:47Z I was originally planning on using a date, like deleting all records older than 2 weeks. But the client specifically wanted to keep an exact number instead. His reasoning was that we can't accidentlly run out of space if something goes bezerk over a few days. http://stackoverflow.com/questions/285614/how-to-delete-all-but-the-latest-20-000-records-in-ms-sql-2005/285648#285648 Comment by on How to delete all but the latest 20,000 records in MS SQL 2005? 2008-11-12T22:41:23Z 2008-11-12T22:41:23Z I thought of doing it the way you describe in your first paragraph, but that assumes there are no gaps in the record IDs. I think this wil be the case, and that may work. http://stackoverflow.com/questions/285614/how-to-delete-all-but-the-latest-20-000-records-in-ms-sql-2005/285622#285622 Comment by on How to delete all but the latest 20,000 records in MS SQL 2005? 2008-11-12T22:37:34Z 2008-11-12T22:37:34Z You are right, its only taking 3 seconds to clear the table with around 50,000 records in it. I thought IN() clauses were very inefficient, but maybe thats just when you actually pass in a textual list of IDs. Thanks for the help. http://stackoverflow.com/questions/105613/can-xpath-return-only-nodes-that-have-a-child-of-x/105628#105628 Comment by on Can XPath return only nodes that have a child of X? 2008-09-19T21:09:55Z 2008-09-19T21:09:55Z That works great, thank you. http://stackoverflow.com/questions/85058/why-do-we-need-other-jvm-languages/85231#85231 Comment by on Why do we need other JVM languages 2008-09-19T03:05:01Z 2008-09-19T03:05:01Z &quot;Antiquated engines like ColdFusion&quot;? Adobe's latest release of ColdFusion, just one year ago, was their best selling version ever. The language has also been steadily maturing with each release. I would hardly say its antiquated. Although this is a common misconception I run into. http://stackoverflow.com/questions/97474/given-this-xml-is-there-an-xpath-that-will-give-me-the-test-and-name-values/97500#97500 Comment by on Given this XML, is there an xpath that will give me the 'test' and 'name' values? 2008-09-18T22:19:37Z 2008-09-18T22:19:37Z Actually I need to end up having the &quot;handleColumn_1&quot; value somehow associated with the &quot;@name='First Name'&quot; value... so if there is anything that will get me closer to that, that would be great. http://stackoverflow.com/questions/97474/given-this-xml-is-there-an-xpath-that-will-give-me-the-test-and-name-values/97500#97500 Comment by on Given this XML, is there an xpath that will give me the 'test' and 'name' values? 2008-09-18T22:13:43Z 2008-09-18T22:13:43Z Yes thats exactly what I'm looking for, and I know I can't parse out the @name= value, I can do that after I get the data back from my xpath operation. What about getting the name value from the call-template? thank you!