User Joe Skora - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T23:08:33Z http://stackoverflow.com/feeds/user/14057 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/109213/what-development-tool-would-you-be-lost-without 1 What development tool would you be lost without? Joe Skora 2008-09-20T20:14:05Z 2009-10-19T06:54:48Z <p>Though this <a href="http://stackoverflow.com/questions/108631/what-is-your-single-favorite-development-tool">question</a> asked for your favorite tool, I wonder which one would be the most painful to have to give up in your daily work?</p> http://stackoverflow.com/questions/1197390/how-to-replicate-database-a-to-b-then-truncate-data-on-database-a-leaving-b-alo/1197499#1197499 0 Answer by Joe Skora for How to replicate database A to B, then truncate data on database A, leaving B alone? Joe Skora 2009-07-29T00:35:41Z 2009-07-29T00:35:41Z <p>It is unlikely you will want reporting running against a database capturing 1000 records per second. I'd suggest two databases, one handling the constant stream of inserts and a second reporting database that only loads records at an interval, either by querying the first for a finite set since the last load or by caching the incoming data and loading it separately.</p> <p>However, reporting in near real time against a database capturing 86 million rows per day and carrying approximately 1.2 billion rows will require significant planning and hardware demands. Further, on the backend as you reach day 14 and start to remove old data you will put more load on the database. If you can run without logging that will help the primary system, but the reporting system with indexing demands and such will require some pretty significant performance considerations.</p> http://stackoverflow.com/questions/129207/getting-spring-application-context 7 Getting Spring Application Context Joe Skora 2008-09-24T19:10:01Z 2009-07-27T20:00:04Z <p>Is there a way to statically/globally request a copy of the ApplicationContext in a Spring application?</p> <p>Assuming the main class starts up and initializes the application context, does it need to pass that down throw the call stack to any classes that need it, or is there a way for a class to ask for the previously created context? (Which I assume has to be a singleton?)</p> <p>Thanks!</p> http://stackoverflow.com/questions/908658/unit-test-connundrum/908676#908676 1 Answer by Joe Skora for Unit Test Connundrum Joe Skora 2009-05-26T02:24:31Z 2009-05-26T02:24:31Z <p>Unit testing can still provide value in a one-man show. It gives you confidence in the functionality and correctness (at some level) of the module. But some design considerations may be needed to help make testing more applicable to your code. Modularization makes a big difference, especially if combined with some kind of dependency injection, instead of tight coupling. This allows test versions of collaborators to be used for testing a module in isolation. In your case, a mock file system object could return a predictable set of data, so your filtering and criteria code can be evaluated.</p> http://stackoverflow.com/questions/124871/what-is-castle-windsor-and-why-should-i-care/124909#124909 1 Answer by Joe Skora for What is Castle Windsor, and why should I care? Joe Skora 2008-09-24T01:33:17Z 2009-05-18T01:53:57Z <p><a href="http://www.castleproject.org/" rel="nofollow">Castle Windsor</a> appears to be a set of technologies similar to Spring for Java, an <strong>inversion-of-control (IOC) container, <strike>an MVC framework, a persistence layer, and assorted other goodies</strike></strong>.</p> http://stackoverflow.com/questions/180765/whats-a-good-online-reference-for-manipulating-office-documents-via-activex 1 What's a good online reference for manipulating Office documents via ActiveX? Joe Skora 2008-10-07T22:58:54Z 2009-04-02T15:29:15Z <p>I am looking for a reference that covers using ActiveX to open and manipulate Excel (and possibly Word) documents. I'd prefer an online reference but book suggestions are helpful too.</p> http://stackoverflow.com/questions/576441/insert-all-values-of-a-table-into-another-table-in-sql/576444#576444 1 Answer by Joe Skora for Insert all values of a table into another table in SQL Joe Skora 2009-02-23T03:26:50Z 2009-02-23T03:26:50Z <p>You can use a "select into" statement. <a href="http://www.w3schools.com/Sql/sql_select_into.asp" rel="nofollow">See more at W3Schools</a>.</p> http://stackoverflow.com/questions/517527/spring-not-enforcing-method-security-annotations/567162#567162 0 Answer by Joe Skora for spring not enforcing method security annotations Joe Skora 2009-02-19T21:06:08Z 2009-02-19T21:06:08Z <p>I had this same problem. Using the information from Kent Lai's reply here, I was able to fix it.</p> <p>I put the <code>&lt;global-method-security&gt;</code> element in my <code>app-servlet.xml</code> but kept the security definitions separate in <code>security.xml</code>, where <code>web.xml</code> has <code>contextConfigLocation</code> for <code>app-servlet.xml</code> and <code>security.xml</code>.</p> <p>Works like a charm now!</p> http://stackoverflow.com/questions/302729/how-does-python-handle-classes-being-in-separate-files-or-are-they-all-supposed-t/302752#302752 0 Answer by Joe Skora for How does Python handle classes being in separate files or are they all supposed to be in one file Joe Skora 2008-11-19T17:44:41Z 2008-11-19T17:44:41Z <p>I spread functionality out into separate files as it makes sense, using a modular approach.</p> http://stackoverflow.com/questions/273985/how-to-add-average-to-the-pivot-table-in-excel/273990#273990 1 Answer by Joe Skora for How to add Average to the Pivot table in Excel? Joe Skora 2008-11-07T23:28:13Z 2008-11-07T23:28:13Z <p>Drop the orders column onto the Pivot layout again and then double click to select the summary method.</p> http://stackoverflow.com/questions/195578/is-it-possible-to-set-a-style-of-link-that-shows-only-when-the-linked-webpage-is/195579#195579 1 Answer by Joe Skora for Is it possible to set a style of link that shows only when the linked webpage is being viewed? Joe Skora 2008-10-12T14:59:02Z 2008-10-12T15:31:18Z <p>You can do this with CSS classes. For example, a <em>selected</em> class could identify the current shop, changing the color and outline. Then you can change the selection by adding/removing the class from the menu item.</p> <p>Take a look <a href="http://www.seoconsultants.com/css/menus/tutorial/" rel="nofollow">here</a>, it walks through a tutorial on building CSS menus.</p> http://stackoverflow.com/questions/192109/is-there-a-function-in-python-to-print-all-the-current-properties-and-values-of-a/192116#192116 5 Answer by Joe Skora for Is there a function in Python to print all the current properties and values of an object? Joe Skora 2008-10-10T16:20:40Z 2008-10-10T20:05:41Z <p>You can use the "dir()" function to do this.</p> <pre><code>&gt;&gt;&gt; import sys &gt;&gt;&gt; dir(sys) ['__displayhook__', '__doc__', '__excepthook__', '__name__', '__stderr__', '__stdin__', '__stdo t__', '_current_frames', '_getframe', 'api_version', 'argv', 'builtin_module_names', 'byteorder , 'call_tracing', 'callstats', 'copyright', 'displayhook', 'dllhandle', 'exc_clear', 'exc_info' 'exc_type', 'excepthook', 'exec_prefix', 'executable', 'exit', 'getcheckinterval', 'getdefault ncoding', 'getfilesystemencoding', 'getrecursionlimit', 'getrefcount', 'getwindowsversion', 'he version', 'maxint', 'maxunicode', 'meta_path', 'modules', 'path', 'path_hooks', 'path_importer_ ache', 'platform', 'prefix', 'ps1', 'ps2', 'setcheckinterval', 'setprofile', 'setrecursionlimit , 'settrace', 'stderr', 'stdin', 'stdout', 'subversion', 'version', 'version_info', 'warnoption ', 'winver'] &gt;&gt;&gt; </code></pre> <p>Another useful feature is help.</p> <pre><code>&gt;&gt;&gt; help(sys) Help on built-in module sys: NAME sys FILE (built-in) MODULE DOCS http://www.python.org/doc/current/lib/module-sys.html DESCRIPTION This module provides access to some objects used or maintained by the interpreter and to functions that interact strongly with the interpreter. Dynamic objects: argv -- command line arguments; argv[0] is the script pathname if known </code></pre> http://stackoverflow.com/questions/192261/how-do-i-log-an-exception-at-warning-or-info-level-with-trace-back-using-the-pyt/192352#192352 0 Answer by Joe Skora for How do I log an exception at warning- or info-level with trace back using the python logging framework? Joe Skora 2008-10-10T17:25:31Z 2008-10-10T17:25:31Z <p>It is fairly well explained <a href="http://www.python.org/doc/2.5.2/lib/multiple-destinations.html" rel="nofollow">here</a>. </p> <p>You are pretty close though. You have the option of just using the default with</p> <pre><code>logging.warning("something raised an exception: " + excep) </code></pre> <p>Or you can follow some of the examples on the linked page and get more sophisticated with multiple destinations and filter levels.</p> http://stackoverflow.com/questions/185389/mvc-model-structure-in-python/185480#185480 0 Answer by Joe Skora for MVC model structure in Python Joe Skora 2008-10-09T00:28:18Z 2008-10-09T00:28:18Z <p>I think you have one issue that should be straightened. Circular references often result from a failure to achieve separation of concerns. In my opinion, the database and model modules shouldn't know much about each other, working against an API instead. In this case the database shouldn't directly reference any specific model classes but instead provide the functionality the model classes will need to function. The model in turn, should get a database reference (injected or requested) that it would use to query and persist itself.</p> http://stackoverflow.com/questions/184541/how-are-people-using-google-app-engine-apps-with-their-own-domains/184567#184567 4 Answer by Joe Skora for How are people using Google App-Engine apps with their own domains? Joe Skora 2008-10-08T19:53:52Z 2008-10-08T19:53:52Z <p>To do this, I believe you need to be using <a href="http://www.google.com/apps/intl/en/business/index.html" rel="nofollow">Google Apps</a> and have a custom domain setup for Google Apps. Then, you <a href="http://code.google.com/appengine/articles/domains.html" rel="nofollow">deploy your app</a> into your Google Apps domain.</p> http://stackoverflow.com/questions/183292/classpath-including-jar-within-a-jar/183304#183304 1 Answer by Joe Skora for Classpath including JAR within a JAR Joe Skora 2008-10-08T15:10:45Z 2008-10-08T15:10:45Z <p>Not without writing your own class loader. You can add jars to the jar's classpath, but they must be co-located, not contained in the main jar.</p> http://stackoverflow.com/questions/183277/passing-copy-of-object-to-method-who-does-the-copying/183293#183293 3 Answer by Joe Skora for Passing copy of object to method -- who does the copying? Joe Skora 2008-10-08T15:09:28Z 2008-10-08T15:09:28Z <p>Generally, the <strong>caller should make the copy if it is concerned about changes</strong>. If the caller doesn't care, <strong>the method should make the copy if it needs to do something that it knows shouldn't persist</strong>.</p> http://stackoverflow.com/questions/180784/whats-the-best-easiest-way-to-manipulate-activex-objects-in-java 1 What's the best/easiest way to manipulate ActiveX objects in Java? Joe Skora 2008-10-07T23:07:39Z 2008-10-08T01:19:05Z <p>I want to open and manipulate Excel files with ActiveX. I've had success with Python's <a href="http://python.net/crew/mhammond/win32/Downloads.html" rel="nofollow">Win32 Extensions</a> and Groovy's <a href="http://groovy.codehaus.org/COM+Scripting" rel="nofollow">Scriptom</a> libraries on other projects but need to do this is pure Java this time if possible. </p> <p>I've tried the <a href="http://danadler.com/jacob/" rel="nofollow">Jacob Java COM Bridge</a> but that doesn't seem as straightforward or simple to use, and I couldn't get it to retrieve cell values (even though this is the library underlying Scriptom). Are there alternatives?</p> http://stackoverflow.com/questions/180710/doesnt-the-ability-to-cast-defeat-the-purpose-of-typed-variables/180728#180728 11 Answer by Joe Skora for Doesn't the ability to cast defeat the purpose of typed variables? Joe Skora 2008-10-07T22:43:17Z 2008-10-07T23:15:47Z <p>The bottom line is that <strong>strong typing lets the compiler check things for you</strong> and <strong>casting lets you override the strong typing when necessary.</strong></p> http://stackoverflow.com/questions/180684/map-domain-com-to-a-single-address/180735#180735 0 Answer by Joe Skora for Map *.domain.com to a single address Joe Skora 2008-10-07T22:46:09Z 2008-10-07T22:46:09Z <p>After you have the DNS entries all pointing to the same box, you can use <a href="http://httpd.apache.org/docs/2.0/vhosts/examples.html" rel="nofollow">Apache virtual hosting</a> to make them behave and appear as separate web servers, without the overhead of multiple Apache instances.</p> http://stackoverflow.com/questions/175001/is-there-a-definitive-book-on-python/175009#175009 6 Answer by Joe Skora for Is there a definitive book on Python? Joe Skora 2008-10-06T16:20:22Z 2008-10-06T16:20:22Z <p>Mark Lutz's <a href="http://rads.stackoverflow.com/amzn/click/0596009259" rel="nofollow">Programming Python</a>.</p> <p>Though I am also fond of <a href="http://rads.stackoverflow.com/amzn/click/0672328623" rel="nofollow">Python Essential Reference</a>.</p> http://stackoverflow.com/questions/168173/change-name-of-file-sent-to-client/168182#168182 8 Answer by Joe Skora for Change name of file sent to client? Joe Skora 2008-10-03T18:20:01Z 2008-10-03T18:20:01Z <p>I believe this will work for you.</p> <pre><code>Response.AddHeader("content-disposition", "attachment; filename=NewFileName.csv"); </code></pre> http://stackoverflow.com/questions/168073/how-do-i-redirect-a-file-download-using-grails/168121#168121 0 Answer by Joe Skora for How do I redirect a file download using Grails? Joe Skora 2008-10-03T18:01:28Z 2008-10-03T18:01:28Z <p>I'm not sure what you are asking here, are you trying to figure out how to redirect in the controller or are you trying to override the right-click behavior in the browser?</p> <p>To redirect in the controller you can do something like this documented <a href="http://grails.org/doc/1.0.x/" rel="nofollow">here</a>.</p> <pre><code>redirect(controller:"book",action:"list") </code></pre> <p>If you are trying to change button or link behavior that's client side and will require some Javascript most likely.</p> <p>If you clarify I might be able to help more.</p> http://stackoverflow.com/questions/162873/php-how-do-i-include-a-file-over-2-directories-back/162891#162891 1 Answer by Joe Skora for PHP - How do I include a file over 2 directories back? Joe Skora 2008-10-02T15:12:13Z 2008-10-02T15:12:13Z <pre><code>. = current directory .. = parent directory </code></pre> <p><strong>So <code>../</code> gets you <em>one directory back not two</em></strong>. </p> <p>Chain <code>../</code> as many times as necessary to go up 2 or more levels.</p> http://stackoverflow.com/questions/162651/what-is-the-difference-with-these-two-sets-of-code/162682#162682 1 Answer by Joe Skora for What is the difference with these two sets of code Joe Skora 2008-10-02T14:42:36Z 2008-10-02T14:42:36Z <p>Assuming you meant</p> <pre><code>... IInterface2 = interface(Interface1) ... </code></pre> <p>I interpret it the same as you, <strong>the second form requires a class implementing Interface2 to implement Interface1 as well</strong>, while the first form does not.</p> http://stackoverflow.com/questions/153716/verify-email-in-java/153727#153727 1 Answer by Joe Skora for verify email in Java Joe Skora 2008-09-30T16:02:19Z 2008-09-30T16:02:19Z <p>Without sending an email, it could be hard to get 100%, but if you <strong>do a DNS lookup on the host</strong> that should at least tell you that it is a viable destination system.</p> http://stackoverflow.com/questions/148568/storing-database-data-in-files/148591#148591 2 Answer by Joe Skora for Storing database data in files? Joe Skora 2008-09-29T13:12:37Z 2008-09-29T13:12:37Z <p>What you probably want is to use are <a href="http://java.sun.com/docs/books/tutorial/essential/io/rafs.html" rel="nofollow">random access files</a>. Once you have a set of fields for a record, you can write them to disk as a block. You can keep an index separately on disk on in memory and access any record directly at any time. Hopefully that gives you enough to get started.</p> http://stackoverflow.com/questions/144807/java-log-viewer/144905#144905 2 Answer by Joe Skora for Java Log Viewer Joe Skora 2008-09-28T00:57:18Z 2008-09-28T00:57:18Z <p>You didn't mention an OS, so I'll mention this though it is only on Windows.</p> <p><strong>Bare Metal Software makes a product called <a href="http://www.baremetalsoft.com/baretail/" rel="nofollow">BareTail</a></strong> that has a nice interface and works well. They have a free version with a startup nag screen, a licensed version with no nag, and a pro version with additional features. <strong>It has configurable highlighting based on matching lines against keywords.</strong></p> <p>They also have a BareGrep product too, which provides similar grep capabilities. Both are excellent and very stable and better than anything I've seen on Windows. I liked them so much I bought the bundle with both pro versions for $50.</p> http://stackoverflow.com/questions/144553/how-do-you-move-from-being-a-developer-to-team-leader/144585#144585 28 Answer by Joe Skora for How do you move from being a developer to team leader? Joe Skora 2008-09-27T22:03:47Z 2008-09-27T22:03:47Z <p>This is a tough one. I tell folks I work with that <strong>if they desire to be a team leader they should act like one in whatever position they are currently in</strong>. This does not mean to start bossing folks around (a team lead shouldn't do that anyway) but rather to <strong>demonstrate an ability to think and act like a leader and help guide other team members</strong>. Voice your design ideas and concerns. Suggest technologies and techniques that can improve your product or development process. <strong>Read, study, and learn about technology and concepts that supplement your current knowledge</strong>, rarely can team leaders succeed without at least a basic understanding of all parts of the system. Once all that is in place, make it known to your boss and to project management that you are interested in leadership opportunities.</p> http://stackoverflow.com/questions/144339/what-would-the-best-tool-to-create-a-natural-dsl-in-java/144374#144374 7 Answer by Joe Skora for What would the best tool to create a natural DSL in Java? Joe Skora 2008-09-27T20:17:09Z 2008-09-27T20:17:09Z <p>Considering the complexity of lexing and parsing, I don't know if I'd want to code all that by hand. <strong><a href="http://www.antlr.org/" rel="nofollow">ANTLR</a> isn't that hard to pickup and I think it is worthing looking into based on your problem.</strong> If you use a parse grammar to build and abstract syntax tree from the input, its pretty easy to then process that AST with a tree grammar. The tree grammar could easily handle executing the process you described.</p> <p>You'll find ANTLR in many places including Eclipse, Groovy, and Grails for a start. <a href="http://rads.stackoverflow.com/amzn/click/0978739256" rel="nofollow">The Definitive ANTLR Reference</a> even makes it fairly straightforward to get up to speed on the basic fairly quickly.</p> <p>I had a project that had to handle some user generated query text earlier this year. I started down a path to manually process it, but it quickly became overwhelming. I took a couple days to get up the speed on ANTLR and had an initial version of my grammar and processor running in a few days. Subsequent changes and adjustments to the requirements would have killed any custom version, but required relatively little effort to adjust once I had the ANTLR grammars up and running.</p> <p>Good luck!</p> http://stackoverflow.com/questions/1197390/how-to-replicate-database-a-to-b-then-truncate-data-on-database-a-leaving-b-alo/1197499#1197499 Comment by Joe Skora on How to replicate database A to B, then truncate data on database A, leaving B alone? Joe Skora 2009-08-08T18:33:21Z 2009-08-08T18:33:21Z Without all the details, I think you might need an index on date in the main database to be able to query the raw data into the reporting database and to delete old data after 14 days. Assuming you are saving the raw data (in case of failure) disabling logging on the main database will reduce its load to add rows. http://stackoverflow.com/questions/11464/what-is-the-worst-interview-question/11466#11466 Comment by Joe Skora on What is the worst interview question? Joe Skora 2008-10-13T21:06:33Z 2008-10-13T21:06:33Z Was the next question &quot;Did you inhale?&quot;? http://stackoverflow.com/questions/195520/what-is-spaghetti-code/195522#195522 Comment by Joe Skora on What is spaghetti code? Joe Skora 2008-10-12T15:01:48Z 2008-10-12T15:01:48Z Do you really mean &quot;sadly&quot;? http://stackoverflow.com/questions/184858/what-is-the-right-way-to-change-the-behavior-of-an-a-tag/184877#184877 Comment by Joe Skora on What is the right way to change the behavior of an <a> tag? Joe Skora 2008-10-08T21:08:55Z 2008-10-08T21:08:55Z Yes, returning false tells the browser not to follow the link after all. You can use this for validation too, return true if everything is ok and false if not. http://stackoverflow.com/questions/184541/how-are-people-using-google-app-engine-apps-with-their-own-domains/184567#184567 Comment by Joe Skora on How are people using Google App-Engine apps with their own domains? Joe Skora 2008-10-08T20:20:42Z 2008-10-08T20:20:42Z It doesn't appear to be optional based on the &quot;deploy your app&quot; link above. http://stackoverflow.com/questions/180784/whats-the-best-easiest-way-to-manipulate-activex-objects-in-java/181052#181052 Comment by Joe Skora on What's the best/easiest way to manipulate ActiveX objects in Java? Joe Skora 2008-10-08T03:01:16Z 2008-10-08T03:01:16Z I have used VB/VBA and yes it makes COM seem easy. Your advice is helpful, if you could add the book title when you find it, that'd be appreciated. What Java/COM library do you prefer? http://stackoverflow.com/questions/176195/should-i-sanitize-html-markup-for-a-hosted-cms/176206#176206 Comment by Joe Skora on Should I sanitize HTML markup for a hosted CMS? Joe Skora 2008-10-06T21:19:50Z 2008-10-06T21:19:50Z If he's allowing 3rd party Javascript, can anything truly be safe? http://stackoverflow.com/questions/144892/how-to-centre-a-window-in-java Comment by Joe Skora on How to centre a Window in Java? Joe Skora 2008-09-28T01:06:25Z 2008-09-28T01:06:25Z The title should be &quot;in Swing&quot; not &quot;in Java&quot;, it would be more clear that way. http://stackoverflow.com/questions/144892/how-to-centre-a-window-in-java/144893#144893 Comment by Joe Skora on How to centre a Window in Java? Joe Skora 2008-09-28T00:58:28Z 2008-09-28T00:58:28Z You learn something new every day. http://stackoverflow.com/questions/144339/what-would-the-best-tool-to-create-a-natural-dsl-in-java/144374#144374 Comment by Joe Skora on What would the best tool to create a natural DSL in Java? Joe Skora 2008-09-27T22:58:49Z 2008-09-27T22:58:49Z If you got to the Pragmatic Bookshelf site (<a href="http://pragprog.com/titles/tpantlr/the-definitive-antlr-reference" rel="nofollow">pragprog.com/titles/tpantlr/&hellip;</a>) you can get the book and a PDF copy for 45.75 + shipping. Good luck. You won't regret picking up an new tool for your skill set. http://stackoverflow.com/questions/144339/what-would-the-best-tool-to-create-a-natural-dsl-in-java/144374#144374 Comment by Joe Skora on What would the best tool to create a natural DSL in Java? Joe Skora 2008-09-27T20:48:02Z 2008-09-27T20:48:02Z It took a couple of days to get my head wrapped around ANTLR, having never taken a lexer/parser/compile course. I am very glad I did it as it will be useful again and again in the future. Parr wrote ANTLR so the book is a great resource and a well written introduction to lexing and parsing too. http://stackoverflow.com/questions/144339/what-would-the-best-tool-to-create-a-natural-dsl-in-java/144374#144374 Comment by Joe Skora on What would the best tool to create a natural DSL in Java? Joe Skora 2008-09-27T20:45:36Z 2008-09-27T20:45:36Z You can insert Java (or another, ANTLR can generate a variety of languages) directly into the grammar. I used one grammar to parse my DSL and a second to walk the AST tree, processing the nodes. Since it all this runs in your app it can easily create objects and call methods. http://stackoverflow.com/questions/140453/continuous-integration-servers/140466#140466 Comment by Joe Skora on Continuous Integration Servers Joe Skora 2008-09-27T19:38:11Z 2008-09-27T19:38:11Z The plugins were a very pleasant surprise when I set Hudson up! http://stackoverflow.com/questions/131282/would-it-make-sense-to-use-version-control-if-im-the-only-developer Comment by Joe Skora on Would it make sense to use version control if I'm the only developer? Joe Skora 2008-09-25T03:38:16Z 2008-09-25T03:38:16Z CI helps my making the process automated, repeatable, consistent, etc., plus it provides implicit instructions on how the build works so you don't have to keep rethinking it or have the chance of leaving out a step. http://stackoverflow.com/questions/131282/would-it-make-sense-to-use-version-control-if-im-the-only-developer Comment by Joe Skora on Would it make sense to use version control if I'm the only developer? Joe Skora 2008-09-25T03:18:50Z 2008-09-25T03:18:50Z It's worth noting than 3 distinct replies all started out with &quot;Absolutely!&quot;