User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T11:51:43Zhttp://stackoverflow.com/feeds/user/10876http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/567254/can-a-coldfusion-cfc-method-determine-its-own-name/575536#5755361Answer by zirconx for Can a ColdFusion cfc method determine its own name?zirconx2009-02-22T19:28:16Z2009-02-22T19:28:16Z<p>I thought of another way that could work.</p>
<p>Setup an OnMissingMethod something like this:</p>
<pre><code><cffunction name="onMissingMethod">
<cfargument name="missingMethodName" type="string">
<cfargument name="missingMethodNameArguments" type="struct">
<cfset var tmpReturn = "">
<cfset var functionToCallName = "Hidden" & Arguments.missingMethodName>
<cfset arguments.missingMethodArguments.calledMethodName = Arguments.missingMethodName>
<cfinvoke method="#functionToCallName#" argumentcollection="#Arguments.missingMethodArguments#" returnvariable="tmpReturn" />
<cfreturn tmpReturn>
</cffunction>
</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><cffunction name="HiddenisUsernameAvailable" access="private">
<cfset logAccess(request.userid,Arguments.calledMethodName)>
......
</cffunction>
</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-name6Can a ColdFusion cfc method determine its own name?zirconx2009-02-19T21:30:07Z2009-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><cffunction name="isUsernameAvailable">
<cfset logAccess(request.userid,"isUsernameAvailable")>
......
</cffunction>
</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-x1Can XPath return only nodes that have a child of X?zirconx2008-09-19T21:04:34Z2009-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><pets>
<cat>
<foo>don't care about this</foo>
</cat>
<dog>
<foo>not this one either</foo>
</dog>
<lizard>
<bar>lizard should be returned, because it has a child of bar</bar>
</lizard>
<pig>
<bar>return pig, too</bar>
</pig>
</pets>
</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-20053How to delete all but the latest 20,000 records in MS SQL 2005?zirconx2008-11-12T22:24:38Z2008-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#2675570Answer by zirconx for Assembla is no longer free, is there a good alternative?!zirconx2008-11-06T03:25:43Z2008-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-1Answer by zirconx for Need a distributed key-value lookup systemzirconx2008-10-13T15:37:27Z2008-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#991240Answer by zirconx for What is Adobe Flex? Is it just Flash II?zirconx2008-09-19T02:59:37Z2008-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-values0Given this XML, is there an xpath that will give me the 'test' and 'name' values?zirconx2008-09-18T22:03:55Z2008-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><xsl:template match="field">
<xsl:choose>
<xsl:when test="@name='First Name'">
<xsl:call-template name="handleColumn_1" />
</xsl:when>
</xsl:choose>
</code></pre>
http://stackoverflow.com/questions/94948/restarting-coldfusion-mail-queue/95486#9548612Answer by zirconx for Restarting ColdFusion mail queuezirconx2008-09-18T18:39:38Z2008-09-18T18:39:38Z<p>Yes there is.</p>
<pre><code><cfset sFactory = CreateObject("java","coldfusion.server.ServiceFactory")>
<cfset MailSpoolService = sFactory.mailSpoolService>
<cfset MailSpoolService.stop()>
<cfset MailSpoolService.start()>
</code></pre>
http://stackoverflow.com/questions/87904/coldfusion-template-request-count-optimization/95387#953870Answer by zirconx for ColdFusion Template Request count optimizationzirconx2008-09-18T18:32:35Z2008-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-cfscript1in ColdFusion 8, can you declare a function as private using cfscript?zirconx2008-09-17T22:19:12Z2008-09-17T22:30:36Z
<p>Normally you create a function using cfscript like:</p>
<pre><code><cfscript>
function foo() { return "bar"; }
</cfscript>
</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><cffunction name="foo" access="private">
<cfreturn "bar">
</cffunction>
</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#835760Answer by zirconx for What do you use to keep notes as a developer?zirconx2008-09-17T14:02:53Z2008-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#689461Answer by zirconx for What is best blogging host for programmers/code formatting? zirconx2008-09-16T02:36:57Z2008-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><pre><code>code here</code></pre></p>
http://stackoverflow.com/questions/285614/how-to-delete-all-but-the-latest-20-000-records-in-ms-sql-2005/285914#285914Comment by on How to delete all but the latest 20,000 records in MS SQL 2005?2008-11-13T20:25:08Z2008-11-13T20:25:08ZBoth 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#285968Comment by on How to delete all but the latest 20,000 records in MS SQL 2005?2008-11-13T20:23:47Z2008-11-13T20:23:47ZI 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#285648Comment by on How to delete all but the latest 20,000 records in MS SQL 2005?2008-11-12T22:41:23Z2008-11-12T22:41:23ZI 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#285622Comment by on How to delete all but the latest 20,000 records in MS SQL 2005?2008-11-12T22:37:34Z2008-11-12T22:37:34ZYou 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#105628Comment by on Can XPath return only nodes that have a child of X?2008-09-19T21:09:55Z2008-09-19T21:09:55ZThat works great, thank you.http://stackoverflow.com/questions/85058/why-do-we-need-other-jvm-languages/85231#85231Comment by on Why do we need other JVM languages2008-09-19T03:05:01Z2008-09-19T03:05:01Z"Antiquated engines like ColdFusion"? 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#97500Comment by on Given this XML, is there an xpath that will give me the 'test' and 'name' values?2008-09-18T22:19:37Z2008-09-18T22:19:37ZActually I need to end up having the "handleColumn_1" value somehow associated with the "@name='First Name'" 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#97500Comment by on Given this XML, is there an xpath that will give me the 'test' and 'name' values?2008-09-18T22:13:43Z2008-09-18T22:13:43ZYes 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!