User Owen - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T19:11:27Z http://stackoverflow.com/feeds/user/2109 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/22676/how-do-i-download-a-file-over-http-using-python 13 How do I download a file over HTTP using Python? Owen 2008-08-22T15:34:13Z 2009-11-24T07:48:01Z <p>I have a small utility that I use to download an MP3 from a website on a schedule and then builds/updates a podcast XML file which I've obviously added to iTunes.</p> <p>The text processing that creates/updates the XML file is written in Python. I use wget inside a Windows .bat file to download the actual MP3 however. I would prefer to have the entire utility written in Python though. (It was the project I used to begin learning Python.)</p> <p>I struggled though to find a way to actually down load the file in Python, thus why I resorted to wget.</p> <p>So, how do I download the file using Python?</p> http://stackoverflow.com/questions/1074701/will-ruby-on-rails-grails-ever-catch-on-in-the-enterprise 1 Will Ruby on Rails/Grails ever catch on in the enterprise? Owen 2009-07-02T14:24:22Z 2009-11-05T13:09:42Z <p>My question is related to <a href="http://stackoverflow.com/questions/14823/is-ruby-on-rails-ready-for-the-enterprise">"Is Ruby on Rails ready for the Enterprise?"</a> My question is not about IF Ruby on Rails/Grails is ready for the enterprise - my question is will they ever catch on in the enterprise?</p> <p>J2EE applications have such a strong foothold right now and a lot of investment from the giants (IBM, Oracle, etc) and those giants make a lot of money from building and selling J2EE applications. It's hard to imagine a world where that cash cow would get overshadowed by something else. If RoR/Grails isn't going to catch on - what will? Or will we just see a continual evolution of J2EE?</p> <p>Is it worth it to learn these technologies from a career/working perspective or is it solely an academic pursuit?</p> http://stackoverflow.com/questions/148838/how-do-i-configure-apache-2-2-for-ruby-on-rails-in-windows 4 How do I configure Apache 2.2 for Ruby on Rails in Windows? Owen 2008-09-29T14:13:48Z 2009-11-04T17:48:34Z <p>I'm trying to get started writing some Ruby on Rails apps and have been successful with Mongrel but, I'd like to deploy my apps to my Apache 2.2 instance on Windows? All the tutorials I've found seem out of date and are for older versions of Apache/Rails.</p> <p>Does anyone know of a good, current tutorial for configuring Apache 2.2 for Ruby on Rails apps?</p> http://stackoverflow.com/questions/778439/what-is-the-proper-way-to-configure-smtpappender-in-log4j 0 What is the proper way to configure SMTPAppender in log4j? Owen 2009-04-22T17:57:25Z 2009-11-02T08:07:16Z <p>I'm trying to configure log4j to use the <code>SMTPAppender</code> but I keep getting relay access denied errors. I get this error when executing my code on my laptop AND straight from my shared hosting environment.</p> <p>Here's the relevant config:</p> <pre><code>#CONFIGURE SMTP log4j.appender.email=org.apache.log4j.net.SMTPAppender log4j.appender.email.SMTPHost=mydomain.com log4j.appender.email.SMTPUsername=myuser log4j.appender.email.SMTPPassword=mypw log4j.appender.email.From=myuser@mydomain.com log4j.appender.email.BufferSize=1 log4j.appender.email.EvaluatorClass=TriggerLogEvent log4j.appender.email.layout=org.apache.log4j.PatternLayout log4j.appender.email.layout.ConversionPattern=%m </code></pre> <p>If I switch to <code>log4j.appender.email.SMTPHost=mail.mydomain.com</code> instead then I get authentication errors. My hosting is on DreamHost so bonus points if anyone has set up log4j <code>SMTPAppender</code> using a DreamHost email account.</p> http://stackoverflow.com/questions/318144/what-is-the-difference-between-include-and-require-in-ruby 8 What is the difference between include and require in Ruby? Owen 2008-11-25T17:12:31Z 2009-10-07T09:24:39Z <p>My question is similar to <a href="http://stackoverflow.com/questions/156362/what-is-the-difference-between-include-and-extend-in-ruby">this one over here</a> about include and extend.</p> <p>What's the difference between <code>require</code> and <code>include</code> in Ruby? If I just want to use the methods from a module in my class, should I <code>require</code> it or <code>include</code> it?</p> http://stackoverflow.com/questions/1001538/how-do-i-concatenate-files-in-python 3 How do I concatenate files in Python? Owen 2009-06-16T13:38:56Z 2009-10-05T07:40:10Z <p>I have multiple (between 40 and 50) MP3 files that I'd like to concatenate into one file. What's the best way to do this in Python?</p> <p>Use <a href="http://docs.python.org/library/fileinput.html" rel="nofollow"><code>fileinput</code></a> module to loop through each line of each file and write it to an output file? Outsource to windows <a href="http://www.computerhope.com/copyhlp.htm" rel="nofollow"><code>copy</code></a> command?</p> http://stackoverflow.com/questions/22232/whats-the-best-way-to-contribute-to-stack-overflow-if-you-dont-have-a-ton-of-te 16 What's the best way to contribute to Stack Overflow if you don't have a ton of technical knowledge? [closed] Owen 2008-08-22T12:47:06Z 2009-08-24T18:05:02Z <p>So far I love what I see from Stack Overflow and I find myself visiting quite often during my work day. I'm starting to get a little frustrated however because most of the questions are in categories where I don't have much expertise. (My areas of expertise are J2EE and Spring Framework.) There just aren't many questions in those categories to answer.</p> <p>I'm also not in role at work right now where I'm writing any code and haven't had much time outside of work to take on personal coding projects. So, I'm finding I don't have a lot of questions to ask either.</p> <p>I can't upvote any answers to questions because I don't have any reputation points. (I do have a sweet Autobiographer badge though.)</p> <p>So, what's the best way for me to contribute to the community?</p> <p>I'll just keep monitoring the J2EE and Spring tags and hope some more of those questions come along that I can answer. Otherwise I'll just keep browsing and answer/contribute where I can. I love the community here though.</p> http://stackoverflow.com/questions/1098117/can-one-do-a-for-each-loop-in-java-in-reverse-order/1098135#1098135 1 Answer by Owen for Can one do a for each loop in java in reverse order? Owen 2009-07-08T13:39:13Z 2009-07-08T13:39:13Z <p>You'd need to reverse your collection if you want to use the for each syntax out of the box and go in reverse order.</p> http://stackoverflow.com/questions/1093477/optimal-way-to-sort-a-txt-file-in-java/1094058#1094058 0 Answer by Owen for Optimal way to sort a txt file in Java Owen 2009-07-07T18:40:56Z 2009-07-07T18:40:56Z <p><a href="http://flatpack.sourceforge.net/" rel="nofollow">FlatPack</a> is great for reading in files like that and sorting them. It also has options for exporting a data set to a file.</p> http://stackoverflow.com/questions/1093217/why-do-i-get-no-transports-initialized-error-when-starting-jboss-with-remote-de 0 Why do I get "No transports initialized" error when starting JBoss with remote debugging? Owen 2009-07-07T15:59:08Z 2009-07-07T16:28:53Z <p>I've modified my run.sh file and added <code>JAVA_OPTS="$JAVA_OPTS -Xdebug -Xrunjdwp:transport=dt_socket,address=1044,server=y,suspend=n"</code> but when I start JBoss I get <code>FATAL ERROR in native method: No transports initialized</code>.</p> <p>Looking around the internet it seems like it may having something to do with missing jars or my version of Java? I'm on J2SDK JRE 1.4.2.</p> <p>Thoughts anyone?</p> http://stackoverflow.com/questions/1093217/why-do-i-get-no-transports-initialized-error-when-starting-jboss-with-remote-de/1093373#1093373 0 Answer by Owen for Why do I get "No transports initialized" error when starting JBoss with remote debugging? Owen 2009-07-07T16:28:53Z 2009-07-07T16:28:53Z <p>This error can mean many things but for me, this error meant there was already a process listening on port 1044. All I had to do was change my port address to 1045 and problem was solved.</p> <pre><code>JAVA_OPTS="$JAVA_OPTS -Xdebug -Xrunjdwp:transport=dt_socket,address=1045,server=y,suspend=n" </code></pre> http://stackoverflow.com/questions/1040269/how-do-i-debug-jsps-on-remote-jboss-server 0 How do I debug JSPs on remote JBoss server? Owen 2009-06-24T19:00:06Z 2009-06-25T17:00:31Z <p>I'm debugging an application on a remote server running JBoss using Eclipse. My particular problem is a <code>NullPointerException</code> in a JSP. The JSP has too much Java code inside scriptlets but, unfortunately refactoring is not going to be an option. Finding the line that throws the <code>NullPointerException</code> has been incredibly challenging and I'm getting stuck.</p> <p>How can I debug this JSP remotely to find the line of the scriplet throwing the <code>NullPointerException</code>?</p> <p>I ended up finding the problem by commenting out lines of the JSP until I isolated the issue. Tedious but, it worked.</p> http://stackoverflow.com/questions/1039375/i-need-a-useful-source-for-learning-more-about-command-line-parameters/1039394#1039394 0 Answer by Owen for I need a useful source for learning more about command-line parameters. Owen 2009-06-24T16:17:24Z 2009-06-24T16:17:24Z <p>Maybe start with <a href="http://commons.apache.org/cli/" rel="nofollow">Apache Commons CLI</a>.</p> http://stackoverflow.com/questions/162144/what-is-a-good-ruby-on-rails-hosting-service 5 What is a good Ruby on Rails hosting service? Owen 2008-10-02T13:05:40Z 2009-06-23T23:54:51Z <p>I'm looking to deploy a new Ruby on Rails project I'm working on but need hosting. A managed server is overkill for me. I just need shared space. I'd like to go with a service that specializes in Ruby on Rails.</p> <p>I've looked at <a href="http://www.speedyrails.com/" rel="nofollow">SpeedyRails</a> and <a href="http://www.railsplayground.com/" rel="nofollow">RailsPlayground</a> and they both seem to have pros and cons. Does anyone have experience with either? Does anyone have a different recommendation?</p> http://stackoverflow.com/questions/1012987/genering-ipod-and-zune-compatible-rss-feeds-for-mp3s-hosted-on-amazon-s3-server/1013026#1013026 1 Answer by Owen for Genering IPod and Zune Compatible RSS Feeds for MP3's hosted on Amazon S3 Server Owen 2009-06-18T14:39:51Z 2009-06-18T14:39:51Z <p>It's basically just a matter of building the RSS file and hosting it on an HTTP server. Then you just give users the URL to that feed and they can subsribe in iTunes. Here is a link to the iTunes RSS technical spec: <a href="http://www.apple.com/itunes/whatson/podcasts/specs.html#rss" rel="nofollow">iTunes Podcast RSS Technical Spec</a> There's also an example feed on that page to get you started.</p> <p>The element that stores the actual location of the files is the <code>enclosure</code> element. It has a URL attribute which needs to be set to the URL of the MP3.</p> <p>Example: <code>&lt;enclosure url="http://example.com/podcasts/everything AllAboutEverythingEpisode2.mp3" length="5650889" type="audio/mpeg"/&gt;</code></p> <p>All your enclosure elements will just need to point to the proper place in Amazon S3.</p> http://stackoverflow.com/questions/409949/how-do-you-embed-album-art-into-an-mp3-using-python/1002814#1002814 1 Answer by Owen for How do you embed album art into an MP3 using Python? Owen 2009-06-16T17:13:44Z 2009-06-16T17:13:44Z <p>I've used the <a href="http://eyed3.nicfit.net/" rel="nofollow">eyeD3</a> module to do this exact thing.</p> <pre><code>def update_id3(mp3_file_name, artwork_file_name, artist, item_title): #edit the ID3 tag to add the title, artist, artwork, date, and genre tag = eyeD3.Tag() tag.link(mp3_file_name) tag.setVersion([2,3,0]) tag.addImage(0x08, artwork_file_name) tag.setArtist(artist) tag.setDate(localtime().tm_year) tag.setTitle(item_title) tag.setGenre("Trance") tag.update() </code></pre> http://stackoverflow.com/questions/944610/how-do-i-access-a-config-file-inside-the-jar 0 How do I access a config file inside the jar? Owen 2009-06-03T13:01:27Z 2009-06-03T17:27:45Z <p>I'm using <a href="http://flatpack.sourceforge.net/" rel="nofollow">FlatPack</a> to parse and load data from flat files. This requires loading a config file that stores mappings of the columns of the flat file.</p> <p>I have a constant to define the location of the mapping file:</p> <pre><code>private static final String MAPPING_FILE = "src/com/company/config/Maping.pzmap.xml"; </code></pre> <p>I have a parse(File dataFile) method that actually does the parsing:</p> <pre><code>private void parse(File dataFile) throws FileNotFoundException, SQLException { Parser parser; log.info("Parsing " + dataFile.getName()); FileReader mappingFileReader = new FileReader(MAPPING_FILE); FileReader dataFileReader = new FileReader(dataFile); parser = DefaultParserFactory.getInstance().newFixedLengthParser(mappingFileReader, dataFileReader); parser.setHandlingShortLines(true); DataSet dataSet = parser.parse(); //process the data } </code></pre> <p>When I jar up everything and run it as a jar - it bombs out on <code>FileReader mappingFileReader = new FileReader(MAPPING_FILE);</code> with a <code>FileNotFoundException</code>. That file is inside the jar though.</p> <p>How do I get to it?</p> <p>I've looked at <a href="http://stackoverflow.com/questions/600146/run-exe-which-is-packaged-inside-jar">this question</a> and <a href="http://stackoverflow.com/questions/463972/creating-a-new-file-using-an-existing-file-within-a-jar">this question</a> about accessing files inside jars and they both recommend temporarily extracting the file. I don't want to do that though.</p> http://stackoverflow.com/questions/925672/what-are-the-cool-and-interesting-things-that-you-do-during-build-automation/925846#925846 0 Answer by Owen for What are the cool and interesting things that you do during build-automation? Owen 2009-05-29T13:03:52Z 2009-05-29T13:03:52Z <p>We had a build script that automatically tagged the build and SVN and deployed the application to WebSphere application server. </p> http://stackoverflow.com/questions/898795/version-of-svn-server/898890#898890 2 Answer by Owen for version of SVN server Owen 2009-05-22T17:00:07Z 2009-05-22T17:19:20Z <p>There's a python script hosted <a href="http://svn.collab.net/repos/svn/trunk/tools/client-side/server-version.py" rel="nofollow">here</a> that does exactly what you want.</p> <p>Also, check out <a href="http://stackoverflow.com/questions/141146/how-to-find-my-subversion-server-version-number">this question</a>.</p> <p>I always find <a href="http://svnbook.red-bean.com/" rel="nofollow">this</a> is a helpful SVN resource too.</p> http://stackoverflow.com/questions/251345/activerecord-find-starts-with/251556#251556 6 Answer by Owen for ActiveRecord find starts with Owen 2008-10-30T20:03:02Z 2009-05-21T15:41:54Z <p>I would highly recommend the <a href="http://searchlogic.rubyforge.org/" rel="nofollow">Searchlogic</a> plugin.</p> <p>Then it's as easy as:</p> <pre><code>@search = Model.new_search(params[:search]) @search.condition.field_starts_with = "prefix" @models = @search.all </code></pre> <p>Searchlogic is smart enough, like ActiveRecord, to pick up on the field name in the <code>starts_with</code> condition. It will also handle all pagination.</p> <p>This method will help prevent SQL injection and also will be database agnostic. Searchlogic ends up handling the search differently depending on the database adapter you're using. You also don't have to write any SQL!</p> <p>Searchlogic has great documentation and is easy to use (I'm new to Ruby and Rails myself). When I got stuck, the author of the plugin even answered a direct email within a few hours helping me fix my problem. I can't recommend Searchlogic enough...as you can tell.</p> http://stackoverflow.com/questions/893371/ant-script-example/893464#893464 3 Answer by Owen for Ant Script Example Owen 2009-05-21T15:11:53Z 2009-05-21T15:25:42Z <p>Here's an ANT script generated by using the Eclipse Runnable JAR Export Wizard. This is a project that updates stats on a Google Spreadsheet for a small fantasy baseball league with some friends. It gets the stats by scraping ESPN.com player pages. </p> <p>Class-Path attribute inside the <code>manifest</code> element is used to set the classpath used by the jar. This defaulted "." but I had to add my src path explicitly so that log4j would pick up log4j.properties.</p> <p><code>zipfileset</code> elements are external jars used by my source that I wanted to be included with my jar. I suspect this might be what you're looking for.</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8" standalone="no"?&gt; &lt;project default="create_run_jar" name="Create Runnable Jar for Project cob_fantasy_baseball"&gt; &lt;!--this file was created by Eclipse Runnable JAR Export Wizard--&gt; &lt;!--ANT 1.7 is required --&gt; &lt;target name="create_run_jar"&gt; &lt;jar destfile="C:/workspace/cob_fantasy_baseball/cob_fantasy_baseball.jar" filesetmanifest="mergewithoutmain"&gt; &lt;manifest&gt; &lt;attribute name="Built-By" value="${user.name}"/&gt; &lt;attribute name="Main-Class" value="com.me.cob_fantasy_baseball.UpdateCobStats"/&gt; &lt;attribute name="Class-Path" value=".;src/com/me/cob_fantasy_baseball"/&gt; &lt;/manifest&gt; &lt;fileset dir="C:/workspace/cob_fantasy_baseball/classes"/&gt; &lt;zipfileset excludes="META-INF/*.SF" src="C:/workspace/gdata/java/lib/gdata-core-1.0.jar"/&gt; &lt;zipfileset excludes="META-INF/*.SF" src="C:/workspace/gdata/java/lib/gdata-spreadsheet-2.0.jar"/&gt; &lt;zipfileset excludes="META-INF/*.SF" src="C:/workspace/jericho-html-2.6/lib/jericho-html-2.6.jar"/&gt; &lt;zipfileset excludes="META-INF/*.SF" src="C:/workspace/apache-log4j-1.2.15/log4j-1.2.15.jar"/&gt; &lt;zipfileset excludes="META-INF/*.SF" src="C:/workspace/jaf-1.1.1/activation.jar"/&gt; &lt;zipfileset excludes="META-INF/*.SF" src="C:/workspace/javamail-1.4.2/mail.jar"/&gt; &lt;zipfileset excludes="META-INF/*.SF" src="C:/workspace/javamail-1.4.2/lib/smtp.jar"/&gt; &lt;fileset dir="C:/workspace/cob_fantasy_baseball/src/com/me/cob_fantasy_baseball"/&gt; &lt;/jar&gt; &lt;/target&gt; &lt;/project&gt; </code></pre> <p>Also, here's a link to the Ant documentation for the jar task: <a href="http://ant.apache.org/manual/CoreTasks/jar.html" rel="nofollow">http://ant.apache.org/manual/CoreTasks/jar.html</a></p> http://stackoverflow.com/questions/859793/federal-government-coding-style-guide/859881#859881 0 Answer by Owen for Federal Government Coding Style Guide Owen 2009-05-13T19:21:32Z 2009-05-13T19:21:32Z <p>This is would depend on the contractor delivering a solution. If you're actually an employee of the government, there may exist something specific for your agency or department. You'd then have to check the in-house IT folks.</p> http://stackoverflow.com/questions/858746/how-do-you-select-every-n-th-row-from-mysql/858772#858772 3 Answer by Owen for How do you select every n-th row from mysql Owen 2009-05-13T15:54:11Z 2009-05-13T15:54:11Z <p>You could try <a href="http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html#function%5Fmod" rel="nofollow">mod</a> 5 to get rows where the ID is multiple of 5. (Assuming you have some sort of ID column that's sequential.)</p> <pre><code>select * from table where table.id mod 5 = 0; </code></pre> http://stackoverflow.com/questions/858034/functionality-scripts/858092#858092 0 Answer by Owen for Functionality Scripts Owen 2009-05-13T13:55:11Z 2009-05-13T13:55:11Z <p>Maybe check out <a href="http://www.autohotkey.com/" rel="nofollow">AutoHotkey</a>.</p> http://stackoverflow.com/questions/848645/sending-email-in-java/848650#848650 10 Answer by Owen for Sending email in Java? Owen 2009-05-11T15:29:56Z 2009-05-11T15:29:56Z <p><a href="http://java.sun.com/products/javamail/" rel="nofollow">JavaMail API</a></p> http://stackoverflow.com/questions/847505/check-and-insert-alt-attribute-for-images-which-miss-it/848222#848222 0 Answer by Owen for Check and insert alt attribute for images which miss it Owen 2009-05-11T13:54:17Z 2009-05-11T13:54:17Z <p>I've used the <a href="http://jerichohtml.sourceforge.net/docs/index.html" rel="nofollow">Jericho HTML Parser library</a> in the past with success for parsing HTML. It's supposed to work well with poorly formed HTML. This would alter the original HTML though.</p> http://stackoverflow.com/questions/802276/automated-accessibility-testing-screenreader-emulators/803017#803017 0 Answer by Owen for Automated Accessibility Testing / Screenreader Emulators Owen 2009-04-29T15:50:46Z 2009-04-29T15:50:46Z <p>There's a Firefox plug-in screenreader emulator called <a href="http://www.standards-schmandards.com/projects/fangs/" rel="nofollow">Fangs</a>. It doesn't actually read the text and provide audio like JAWS but, it does show the text of how a screenreader would read it.</p> <p><img src="http://www.standards-schmandards.com/exhibits/fangs/fangs-sample.gif" alt="alt text" title="Fangs Sample Screenshot" /></p> http://stackoverflow.com/questions/778439/what-is-the-proper-way-to-configure-smtpappender-in-log4j/778743#778743 0 Answer by Owen for What is the proper way to configure SMTPAppender in log4j? Owen 2009-04-22T19:17:27Z 2009-04-22T19:17:27Z <p>Turns out I just had the properties all wrong. Should be:</p> <pre><code>#CONFIGURE SMTP log4j.appender.email=org.apache.log4j.net.SMTPAppender log4j.appender.email.SMTPHost=mail.mydomain.com log4j.appender.email.SMTPUsername=myuser@mydomain.com log4j.appender.email.SMTPPassword=mypw log4j.appender.email.From=myuser@mydomain.com log4j.appender.email.BufferSize=1 log4j.appender.email.EvaluatorClass=TriggerLogEvent log4j.appender.email.layout=org.apache.log4j.PatternLayout log4j.appender.email.layout.ConversionPattern=%m </code></pre> http://stackoverflow.com/questions/705575/what-is-an-open-source-java-project-i-could-contribute-to 2 What is an open source Java project I could contribute to? Owen 2009-04-01T13:50:37Z 2009-04-03T09:42:07Z <p>I'm looking for an open source project written in Java with a relatively low barrier to entry, ie. not hugely complex, friendly, etc.</p> <p>My background is mostly in web apps so, that'd be the best place for me to start. Mostly, I'm just looking for some place I can do some stuff in free time and keep my chops polished.</p> <p>I plan on browsing through various public listings but thought I'd see if the Stack Overflow community had any suggestions. Maybe someone even has a pet project...</p> http://stackoverflow.com/questions/711048/what-is-sqlite-used-for/711091#711091 1 Answer by Owen for What is Sqlite used for? Owen 2009-04-02T18:47:32Z 2009-04-02T18:47:32Z <p>I also find that using SQLite is good for getting a prototype application together pretty quickly without the overhead of having a seperate DB server or bogging a development environment with an instance of MySQL/Oracle/Whatever.</p> <p>Also easy to pick up and move the database to a different machine if you need to.</p> http://stackoverflow.com/questions/1092515/java-util-logger-behaves-differently-when-packed-in-different-os/1092587#1092587 Comment by Owen on java.util.Logger behaves differently when packed in different OS Owen 2009-07-07T14:22:29Z 2009-07-07T14:22:29Z Eclipse gives an option to create an Ant build.xml that you can use after the initial jar creation. http://stackoverflow.com/questions/1001538/how-do-i-concatenate-files-in-python/1001587#1001587 Comment by Owen on How do I concatenate files in Python? Owen 2009-07-06T14:19:59Z 2009-07-06T14:19:59Z This solution does impact continuous play - in that it doesn't happen. There's some skipping in the spots where MP3s were joined. This is fine for my application though. http://stackoverflow.com/questions/1040269/how-do-i-debug-jsps-on-remote-jboss-server/1040383#1040383 Comment by Owen on How do I debug JSPs on remote JBoss server? Owen 2009-06-25T16:59:47Z 2009-06-25T16:59:47Z accepted because that's the correct command for starting JBoss to connect a remote debug session. http://stackoverflow.com/questions/1040269/how-do-i-debug-jsps-on-remote-jboss-server/1040314#1040314 Comment by Owen on How do I debug JSPs on remote JBoss server? Owen 2009-06-24T19:12:13Z 2009-06-24T19:12:13Z Last line of the server log is: NullPointerException at org.apache.jsp.myjsp._jspService(Unknown Source) I can narrow down it's Java code in the jsp throwing the exception but can narrow down the line. http://stackoverflow.com/questions/1001538/how-do-i-concatenate-files-in-python/1001587#1001587 Comment by Owen on How do I concatenate files in Python? Owen 2009-06-16T15:14:33Z 2009-06-16T15:14:33Z I have no clue if it will cause continuous play or not - guess I'll find out - and maybe ask another question about it...haha. http://stackoverflow.com/questions/903814/icon-resources/903850#903850 Comment by Owen on Icon resources? Owen 2009-05-24T14:26:39Z 2009-05-24T14:26:39Z I love the famfamfam icons! http://stackoverflow.com/questions/874558/how-where-to-deploy-my-webapp Comment by Owen on How/where to deploy my webapp Owen 2009-05-17T13:25:53Z 2009-05-17T13:25:53Z maybe ask this over on serverfault.com too? Seems like more of a hardware audience over there. http://stackoverflow.com/questions/869390/copying-data-between-oracle-schemas-using-sql/869424#869424 Comment by Owen on Copying data between Oracle schemas using SQL Owen 2009-05-15T15:46:57Z 2009-05-15T15:46:57Z Also need to make sure your user has select grants on CORE_DATE.table_name. I assume your user has the proper grants on MY_DATE.table_name http://stackoverflow.com/questions/139055/subversive-connectors-not-working-with-newest-ganymede-update/143379#143379 Comment by Owen on Subversive connectors not working with newest Ganymede update Owen 2009-05-12T16:52:44Z 2009-05-12T16:52:44Z Saved my life. Seriously, could Subversive be any more complicated to install? http://stackoverflow.com/questions/848734/encrypting-sensitive-information-in-jboss-configuration Comment by Owen on Encrypting sensitive information in JBoss configuration Owen 2009-05-11T15:53:33Z 2009-05-11T15:53:33Z I've always had this same problem and never found a good solution. http://stackoverflow.com/questions/829727/highlight-tab-in-menu/830096#830096 Comment by Owen on Highlight tab in menu Owen 2009-05-06T15:17:55Z 2009-05-06T15:17:55Z This is exactly how I've done it before. http://stackoverflow.com/questions/802276/automated-accessibility-testing-screenreader-emulators/802928#802928 Comment by Owen on Automated Accessibility Testing / Screenreader Emulators Owen 2009-04-29T18:20:55Z 2009-04-29T18:20:55Z Oh, it's absolutely a poor substitute but, it can give you a good idea of what a screenreader will do once a JAWS trial runs out and you can't spend $900 on it. http://stackoverflow.com/questions/802276/automated-accessibility-testing-screenreader-emulators/802928#802928 Comment by Owen on Automated Accessibility Testing / Screenreader Emulators Owen 2009-04-29T15:51:33Z 2009-04-29T15:51:33Z There are just emulators (see my answer) that don't provide the actual audio - just text of how a screenreader would read it. http://stackoverflow.com/questions/627507/what-is-scalable-fast-application-server-to-use-for-developing-services-written/627515#627515 Comment by Owen on What is scalable, fast, application server to use for developing services written in java Owen 2009-03-09T19:09:41Z 2009-03-09T19:09:41Z Agree - Tomcat has always been great to me for developing. http://stackoverflow.com/questions/556730/python-list-serialization-fastest-method/556867#556867 Comment by Owen on Python list serialization - fastest method Owen 2009-02-17T13:56:38Z 2009-02-17T13:56:38Z <a href="http://docs.python.org/library/timeit.html" rel="nofollow">docs.python.org/library/timeit.html</a>