User Joe Skora - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T23:08:33Zhttp://stackoverflow.com/feeds/user/14057http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/109213/what-development-tool-would-you-be-lost-without1What development tool would you be lost without?Joe Skora2008-09-20T20:14:05Z2009-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#11974990Answer by Joe Skora for How to replicate database A to B, then truncate data on database A, leaving B alone?Joe Skora2009-07-29T00:35:41Z2009-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-context7Getting Spring Application ContextJoe Skora2008-09-24T19:10:01Z2009-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#9086761Answer by Joe Skora for Unit Test ConnundrumJoe Skora2009-05-26T02:24:31Z2009-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#1249091Answer by Joe Skora for What is Castle Windsor, and why should I care?Joe Skora2008-09-24T01:33:17Z2009-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-activex1What's a good online reference for manipulating Office documents via ActiveX?Joe Skora2008-10-07T22:58:54Z2009-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#5764441Answer by Joe Skora for Insert all values of a table into another table in SQLJoe Skora2009-02-23T03:26:50Z2009-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#5671620Answer by Joe Skora for spring not enforcing method security annotationsJoe Skora2009-02-19T21:06:08Z2009-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><global-method-security></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#3027520Answer by Joe Skora for How does Python handle classes being in separate files or are they all supposed to be in one fileJoe Skora2008-11-19T17:44:41Z2008-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#2739901Answer by Joe Skora for How to add Average to the Pivot table in Excel?Joe Skora2008-11-07T23:28:13Z2008-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#1955791Answer by Joe Skora for Is it possible to set a style of link that shows only when the linked webpage is being viewed?Joe Skora2008-10-12T14:59:02Z2008-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#1921165Answer by Joe Skora for Is there a function in Python to print all the current properties and values of an object?Joe Skora2008-10-10T16:20:40Z2008-10-10T20:05:41Z<p>You can use the "dir()" function to do this.</p>
<pre><code>>>> import sys
>>> 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']
>>>
</code></pre>
<p>Another useful feature is help.</p>
<pre><code>>>> 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#1923520Answer by Joe Skora for How do I log an exception at warning- or info-level with trace back using the python logging framework?Joe Skora2008-10-10T17:25:31Z2008-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#1854800Answer by Joe Skora for MVC model structure in PythonJoe Skora2008-10-09T00:28:18Z2008-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#1845674Answer by Joe Skora for How are people using Google App-Engine apps with their own domains?Joe Skora2008-10-08T19:53:52Z2008-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#1833041Answer by Joe Skora for Classpath including JAR within a JARJoe Skora2008-10-08T15:10:45Z2008-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#1832933Answer by Joe Skora for Passing copy of object to method -- who does the copying?Joe Skora2008-10-08T15:09:28Z2008-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-java1What's the best/easiest way to manipulate ActiveX objects in Java?Joe Skora2008-10-07T23:07:39Z2008-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#18072811Answer by Joe Skora for Doesn't the ability to cast defeat the purpose of typed variables?Joe Skora2008-10-07T22:43:17Z2008-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#1807350Answer by Joe Skora for Map *.domain.com to a single addressJoe Skora2008-10-07T22:46:09Z2008-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#1750096Answer by Joe Skora for Is there a definitive book on Python?Joe Skora2008-10-06T16:20:22Z2008-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#1681828Answer by Joe Skora for Change name of file sent to client?Joe Skora2008-10-03T18:20:01Z2008-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#1681210Answer by Joe Skora for How do I redirect a file download using Grails?Joe Skora2008-10-03T18:01:28Z2008-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#1628911Answer by Joe Skora for PHP - How do I include a file over 2 directories back?Joe Skora2008-10-02T15:12:13Z2008-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#1626821Answer by Joe Skora for What is the difference with these two sets of codeJoe Skora2008-10-02T14:42:36Z2008-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#1537271Answer by Joe Skora for verify email in JavaJoe Skora2008-09-30T16:02:19Z2008-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#1485912Answer by Joe Skora for Storing database data in files?Joe Skora2008-09-29T13:12:37Z2008-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#1449052Answer by Joe Skora for Java Log ViewerJoe Skora2008-09-28T00:57:18Z2008-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#14458528Answer by Joe Skora for How do you move from being a developer to team leader?Joe Skora2008-09-27T22:03:47Z2008-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#1443747Answer by Joe Skora for What would the best tool to create a natural DSL in Java?Joe Skora2008-09-27T20:17:09Z2008-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#1197499Comment by Joe Skora on How to replicate database A to B, then truncate data on database A, leaving B alone?Joe Skora2009-08-08T18:33:21Z2009-08-08T18:33:21ZWithout 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#11466Comment by Joe Skora on What is the worst interview question?Joe Skora2008-10-13T21:06:33Z2008-10-13T21:06:33ZWas the next question "Did you inhale?"?http://stackoverflow.com/questions/195520/what-is-spaghetti-code/195522#195522Comment by Joe Skora on What is spaghetti code?Joe Skora2008-10-12T15:01:48Z2008-10-12T15:01:48ZDo you really mean "sadly"?http://stackoverflow.com/questions/184858/what-is-the-right-way-to-change-the-behavior-of-an-a-tag/184877#184877Comment by Joe Skora on What is the right way to change the behavior of an <a> tag?Joe Skora2008-10-08T21:08:55Z2008-10-08T21:08:55ZYes, 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#184567Comment by Joe Skora on How are people using Google App-Engine apps with their own domains?Joe Skora2008-10-08T20:20:42Z2008-10-08T20:20:42ZIt doesn't appear to be optional based on the "deploy your app" link above.http://stackoverflow.com/questions/180784/whats-the-best-easiest-way-to-manipulate-activex-objects-in-java/181052#181052Comment by Joe Skora on What's the best/easiest way to manipulate ActiveX objects in Java?Joe Skora2008-10-08T03:01:16Z2008-10-08T03:01:16ZI 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#176206Comment by Joe Skora on Should I sanitize HTML markup for a hosted CMS?Joe Skora2008-10-06T21:19:50Z2008-10-06T21:19:50ZIf he's allowing 3rd party Javascript, can anything truly be safe?http://stackoverflow.com/questions/144892/how-to-centre-a-window-in-javaComment by Joe Skora on How to centre a Window in Java?Joe Skora2008-09-28T01:06:25Z2008-09-28T01:06:25ZThe title should be "in Swing" not "in Java", it would be more clear that way.http://stackoverflow.com/questions/144892/how-to-centre-a-window-in-java/144893#144893Comment by Joe Skora on How to centre a Window in Java?Joe Skora2008-09-28T00:58:28Z2008-09-28T00:58:28ZYou learn something new every day.http://stackoverflow.com/questions/144339/what-would-the-best-tool-to-create-a-natural-dsl-in-java/144374#144374Comment by Joe Skora on What would the best tool to create a natural DSL in Java?Joe Skora2008-09-27T22:58:49Z2008-09-27T22:58:49ZIf you got to the Pragmatic Bookshelf site (<a href="http://pragprog.com/titles/tpantlr/the-definitive-antlr-reference" rel="nofollow">pragprog.com/titles/tpantlr/…</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#144374Comment by Joe Skora on What would the best tool to create a natural DSL in Java?Joe Skora2008-09-27T20:48:02Z2008-09-27T20:48:02ZIt 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#144374Comment by Joe Skora on What would the best tool to create a natural DSL in Java?Joe Skora2008-09-27T20:45:36Z2008-09-27T20:45:36ZYou 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#140466Comment by Joe Skora on Continuous Integration ServersJoe Skora2008-09-27T19:38:11Z2008-09-27T19:38:11ZThe 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-developerComment by Joe Skora on Would it make sense to use version control if I'm the only developer?Joe Skora2008-09-25T03:38:16Z2008-09-25T03:38:16ZCI 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-developerComment by Joe Skora on Would it make sense to use version control if I'm the only developer?Joe Skora2008-09-25T03:18:50Z2008-09-25T03:18:50ZIt's worth noting than 3 distinct replies all started out with "Absolutely!"