User rjohnston - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T05:17:30Z http://stackoverflow.com/feeds/user/246 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1754996/how-to-parse-pdf-file-without-using-any-lib-or-software-in-c/1755033#1755033 1 Answer by rjohnston for How to parse pdf file without using any lib or software in C# rjohnston 2009-11-18T10:25:23Z 2009-11-18T10:25:23Z <p>If you don't want to use 3rd party libraries, you'll have to implement the exact same thing yourself. I can't think of any rational reason you'd want to do that, unless it's purely a learning exercise...</p> <p><a href="http://www.pdf-tools.com/asp/pdf-specifications.asp" rel="nofollow">http://www.pdf-tools.com/asp/pdf-specifications.asp</a></p> <p>Good luck :)</p> http://stackoverflow.com/questions/399204/xslt-distinct-elements-and-grouping 3 XSLT distinct elements and grouping rjohnston 2008-12-30T00:23:57Z 2009-10-23T09:23:41Z <p>Given the following xml fragment:</p> <pre><code>&lt;Problems&gt; &lt;Problem&gt; &lt;File&gt;file1&lt;/File&gt; &lt;Description&gt;desc1&lt;/Description&gt; &lt;/Problem&gt; &lt;Problem&gt; &lt;File&gt;file1&lt;/File&gt; &lt;Description&gt;desc2&lt;/Description&gt; &lt;/Problem&gt; &lt;Problem&gt; &lt;File&gt;file2&lt;/File&gt; &lt;Description&gt;desc1&lt;/Description&gt; &lt;/Problem&gt; &lt;/Problems&gt; </code></pre> <p>I need to produce something like</p> <pre><code>&lt;html&gt; &lt;body&gt; &lt;h1&gt;file1&lt;/h1&gt; &lt;p&gt;des1&lt;/p&gt; &lt;p&gt;desc2&lt;/p&gt; &lt;h1&gt;file2&lt;/h1&gt; &lt;p&gt;des1&lt;/p&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>I tried using a key, like </p> <pre><code>&lt;xsl:key name="files" match="Problem" use="File"/&gt; </code></pre> <p>but I don't really understand how to take it to the next step, or if that's even the right approach. </p> http://stackoverflow.com/questions/1435783/how-to-apply-group-by-to-this-sql-query/1435824#1435824 1 Answer by rjohnston for how to apply Group By to this SQL Query rjohnston 2009-09-16T22:22:59Z 2009-09-16T22:22:59Z <p>I don't know about Pervasive SQL, but normally you have to group by all the columns you want grouped, in this case that's all the columns (except "SALES_HISTORY_HEADER"."IN_DATE", which isn't in your desired output)</p> <pre><code>SELECT "INVENTORY"."CODE", "INVENTORY"."INV_DESCRIPTION", "INVENTORY"."BVSTKUOM", "INVENTORY"."INV_COMMITTED", "INVENTORY"."ONHAND" FROM "INVENTORY" INNER JOIN "SALES_HISTORY_DETAIL" ON "SALES_HISTORY_DETAIL"."CODE" = "INVENTORY"."CODE" INNER JOIN "SALES_HISTORY_HEADER" ON "SALES_HISTORY_HEADER"."NUMBER" = "SALES_HISTORY_DETAIL"."NUMBER" where "INVENTORY"."PROD" like 'A6O%' AND "SALES_HISTORY_HEADER"."IN_DATE" &gt; '20090731' group by "INVENTORY"."CODE", "INVENTORY"."INV_DESCRIPTION", "INVENTORY"."BVSTKUOM", "INVENTORY"."INV_COMMITTED", "INVENTORY"."ONHAND" </code></pre> http://stackoverflow.com/questions/1391687/java-create-dom-element-from-element-not-document/1391716#1391716 5 Answer by rjohnston for Java: Create DOM Element from Element, not Document rjohnston 2009-09-08T02:43:15Z 2009-09-08T02:43:15Z <p>Element extends Node, and Node defines getOwnerDocument, so you could do something like this:</p> <pre><code>e2 = e.getOwnerDocument().createElement("tag"); </code></pre> <p><a href="http://java.sun.com/j2se/1.5.0/docs/api/org/w3c/dom/Node.html#getOwnerDocument%28%29" rel="nofollow">http://java.sun.com/j2se/1.5.0/docs/api/org/w3c/dom/Node.html#getOwnerDocument%28%29</a></p> http://stackoverflow.com/questions/1388609/jquery-password-strength-checker/1388696#1388696 1 Answer by rjohnston for jQuery password strength checker rjohnston 2009-09-07T10:39:46Z 2009-09-07T10:39:46Z <p>On top of gs' answer, you should check the password against common dictionary words (using a hash, probably). Otherwise a weak password like 'Yellow1' will be evaluated as strong by your logic.</p> http://stackoverflow.com/questions/1386888/jbuttons-need-to-modify-8-jtextfields-using-an-array-listen-to-buttons-or-text/1386906#1386906 1 Answer by rjohnston for JButtons need to modify 8 JTextFields using an Array. Listen to Buttons or Text? rjohnston 2009-09-06T22:36:51Z 2009-09-06T22:42:45Z <p>Register an ActionListener for each button. In the body of that ActionListener's actionPerformed method, get the item to display and pass it to a method that will be responsible for setting the values to the text fields.</p> <p>Something like:</p> <pre><code>JButton button = new JButton("Next"); button.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { DVDObject obj = getNextDVD(); populateFields(obj); } }); ... private DVDObject getNextDVD() { // gets the next object to display // you could call this method for each of the buttons, // passing in an argument that determines which Object // to return (first, last, next, previous, whatever) } private void populateFields(DVDObject dvd) { // write out the values from the object passed in to the // fields } </code></pre> <p>I'm guessing you've got some kind of collection of objects that contain all the information about DVDs, I've taken a stab in the dark and called it "DVDObject" here.</p> http://stackoverflow.com/questions/1376934/java-for-each-loop-sort-order/1376951#1376951 4 Answer by rjohnston for Java For-Each Loop : Sort order rjohnston 2009-09-04T02:29:31Z 2009-09-04T02:34:43Z <p>The foreach loop will use the iterator built into the Collection, so the order you get results in will depend whether or not the Collection maintains some kind of order to the elements. </p> <p>So, if you're looping over an ArrayList, you'll get items in the order they were inserted (assuming you didn't go on to sort the ArrayList). If you're looping over a HashSet, all bets are off, since HashSets don't maintain any ordering.</p> <p>If you need to guarantee an order to the elements in the Collection, define a Comparator that establishes that order and use Collections.sort(Collection&lt;T&gt;, Comparator&lt;? super T&gt;)</p> http://stackoverflow.com/questions/137972/hudson-job-hangs-at-runtime-exec 2 Hudson job hangs at Runtime.exec rjohnston 2008-09-26T05:58:48Z 2009-09-03T20:45:40Z <p>I'm running Hudson as a windows service through Tomcat, with no slaves involved. The last build step in the job is a batch file that invokes some Java code. The code uses PostgreSQL's command line tool psql (via Runtime.exec()) to create a database on the local machine and eventually run some tests against it.</p> <p>The job will progress to this point, then hang indefinitely without starting to create the database. If I run the batch file from the command line, it works perfectly. I don't think <a href="http://hudson.gotdns.com/wiki/display/HUDSON/Spawning+processes+from+build" rel="nofollow">http://hudson.gotdns.com/wiki/display/HUDSON/Spawning+processes+from+build</a> applies, since the process spawned doesn't even seem to begin executing, but I'm new to this so please let me know if I'm wrong.</p> <p>Edit @<a href="#137989" rel="nofollow">anjanb</a>: The batch file's only purpose is to invoke the Java code, and the only user input is being passed in as command line arguments, which I can see are going in directly via the build's console output.</p> <p>Process Explorer is showing that psql is being started, but it's obviously not being executed, since the first command psql is given is to create a new database, but that's not happening.</p> <p>Edit 2: I've gotten some tips from the Hudson users mailing list, I'll try them out on Monday and report back.</p> <p>Edit 3: The Java code was already consuming the output streams, I used that article when developing the code. I can't figure out what's going on, so I'm redeveloping the code to use JDBC to create the database, instead of relying on psql and Runtime.exec()</p> http://stackoverflow.com/questions/1359623/ant-svntask-retrieving-revision-message/1359773#1359773 1 Answer by rjohnston for ant svntask retrieving revision message rjohnston 2009-08-31T22:55:00Z 2009-08-31T23:01:26Z <p>I don't think there's a built in way to get the commit message, but you can pull it manually out of svn with a command like this:</p> <pre><code>svnlook log -r X /path/to/repo </code></pre> <p>This will return the log message for the revision X for the repository at /path/to/repo. You could wrap this up in ant's exec task to preform it from ant...</p> <p>+1 for Hudson - very simple to deploy and set up</p> http://stackoverflow.com/questions/1299528/help-me-in-solving-this-postgresql-query/1299587#1299587 0 Answer by rjohnston for Help me in solving this Postgresql query rjohnston 2009-08-19T12:24:30Z 2009-08-19T12:24:30Z <p>To convert the input date to a varchar, try this:</p> <pre><code>CREATE FUNCTION TimePart(fDate date) RETURNS varchar AS $$ BEGIN return fDate::varchar; END; $$ LANGUAGE 'plpgsql'; </code></pre> http://stackoverflow.com/questions/510341/force-subclasses-of-an-interface-to-implement-tostring-c 1 Force subclasses of an interface to implement ToString [C#] rjohnston 2009-02-04T07:01:56Z 2009-06-06T00:58:04Z <p>Say I have an interface IFoo, and I want all subclasses of IFoo to override Object's ToString method. Is this possible? </p> <p>Simply adding the method signature to IFoo as such doesn't work:</p> <pre><code>interface IFoo { String ToString(); } </code></pre> <p>...since all the subclasses extend Object and provide an implementation that way, so the compiler doesn't complain about it. Any suggestions?</p> <p>Edit: fixed title</p> http://stackoverflow.com/questions/942481/refactoring-advice-for-big-switches-in-c/942531#942531 4 Answer by rjohnston for Refactoring advice for big switches in C# rjohnston 2009-06-03T00:16:56Z 2009-06-03T00:16:56Z <p>Sounds like a good place to use the Strategy Pattern: <a href="http://www.google.com/search?q=c%23+strategy+pattern" rel="nofollow">http://www.google.com/search?q=c%23+strategy+pattern</a></p> http://stackoverflow.com/questions/683842/how-can-i-perform-an-and-on-an-unknown-number-of-booleans-in-postgresql 4 How can I perform an AND on an unknown number of booleans in postgresql? rjohnston 2009-03-25T22:53:45Z 2009-05-31T14:20:03Z <p>I have a table with a foreign key and a boolean value (and a bunch of other columns that aren't relevant here), as such:</p> <pre><code>CREATE TABLE myTable ( someKey integer, someBool boolean ); insert into myTable values (1, 't'),(1, 't'),(2, 'f'),(2, 't'); </code></pre> <p>Each someKey could have 0 or more entries. For any given someKey, I need to know if a) all the entries are true, or b) any of the entries are false (basically an AND).</p> <p>I've come up with the following function:</p> <pre><code>CREATE FUNCTION do_and(int4) RETURNS boolean AS $func$ declare rec record; retVal boolean = 't'; -- necessary, or true is returned as null (it's weird) begin if not exists (select someKey from myTable where someKey = $1) then return null; -- and because we had to initialise retVal, if no rows are found true would be returned end if; for rec in select someBool from myTable where someKey = $1 loop retVal := rec.someBool AND retVal; end loop; return retVal; end; $func$ LANGUAGE 'plpgsql' VOLATILE; </code></pre> <p>... which gives the correct results:</p> <pre><code>select do_and(1) =&gt; t select do_and(2) =&gt; f select do_and(3) =&gt; null </code></pre> <p>I'm wondering if there's a nicer way to do this. It doesn't look too bad in this simple scenario, but once you include all the supporting code it gets lengthier than I'd like. I had a look at casting the someBool column to an array and using the ALL construct, but I couldn't get it working... any ideas?</p> http://stackoverflow.com/questions/125333/how-to-implement-simple-threading-in-java/125370#125370 -1 Answer by rjohnston for How to implement simple threading in Java rjohnston 2008-09-24T04:05:55Z 2009-03-27T04:55:01Z <p>If you want to roll your own:</p> <pre><code>private static final int MAX_WORKERS = n; private List&lt;Worker&gt; workers = new ArrayList&lt;Worker&gt;(MAX_WORKERS); private boolean roomLeft() { synchronized (workers) { return (workers.size() &lt; MAX_WORKERS); } } private void addWorker() { synchronized (workers) { workers.add(new Worker(this)); } } public void removeWorker(Worker worker) { synchronized (workers) { workers.remove(worker); } } public Example() { while (true) { if (roomLeft()) { addWorker(); } } } </code></pre> <p>Where Worker is your class that extends Thread. Each worker will call this class's removeWorker method, passing itself in as a parameter, when it's finished doing it's thing.</p> <p>With that said, the Executor framework looks a lot better.</p> <p>Edit: Anyone care to explain why this is so bad, instead of just downmodding it?</p> http://stackoverflow.com/questions/593689/sort-algorithm-to-use-for-this-specific-scenario 0 Sort algorithm to use for this specific scenario rjohnston 2009-02-27T06:11:29Z 2009-02-27T06:22:00Z <p>I have two lists - let's call them <em>details</em> and <em>totals</em>. </p> <p>The items in <em>details</em> have multiple elements for each key that the list is sorted on, as such:</p> <p>KEY1<br /> KEY1<br /> KEY2<br /> KEY2<br /> KEY3<br /> KEY3<br /> KEY3<br /> etc</p> <p>The items in <em>totals</em> will only have each key once, as such:</p> <p>KEY1<br /> KEY2<br /> KEY3<br /> etc</p> <p>Both lists are sorted by key already. The lists need to be combined so that the new list has the <em>details</em> elements followed by it's corresponding element from <em>totals</em>, as such:</p> <p>KEY1 (this is from <em>details</em>)<br /> KEY1 (this is from <em>details</em>)<br /> KEY1 (this is from <em>totals</em>) etc</p> <p>Which sorting algorithm will result in the best performance in this scenario? </p> <p>(in all honesty, I'm just going to change the code so that the row from <em>totals</em> is created-and-inserted as the <em>details</em> list is being built, this is more of an academic question)</p> http://stackoverflow.com/questions/14293/are-there-any-unhappy-users-of-fogbugz/589258#589258 1 Answer by rjohnston for Are there any unhappy users of FogBugz? rjohnston 2009-02-26T05:48:36Z 2009-02-26T05:48:36Z <p>We've been using FogBugz for over a year now, and by and large I like it. My only real problem with it is that comments on cases all go in as plain text - you can't do lists, can't emphasise points, and code pasted in is impossible to read.</p> <p>It just seems strange to me that such a fundamental feature is missing, especially since the exact same thing has already been developed for the wiki feature...</p> http://stackoverflow.com/questions/463911/using-java-desktop-codebase-in-a-webapp 0 Using java (desktop) codebase in a webapp rjohnston 2009-01-21T02:18:55Z 2009-01-21T05:28:50Z <p>I have a rather large (80k loc) java desktop app that talks to a database. We're now looking at exposing some parts of the database via a web application, using the existing codebase and preferably not having to modify it.</p> <p>I have good separation between the data access, business logic and presentation layers, but we haven't used enterprise java beans or anything like that (if that's important).</p> <p>What's the best way forward? Which of the java web frameworks will be best suited to the problem? Learning curve isn't terribly important, since I haven't done any java development on the web...</p> http://stackoverflow.com/questions/463746/is-it-possible-to-migrate-a-single-component-from-one-svn-repository-to-another-w/463865#463865 2 Answer by rjohnston for is it possible to migrate a single component from one svn repository to another while preserving history? rjohnston 2009-01-21T01:47:01Z 2009-01-21T02:27:45Z <p>Check out 'svnadmin dump', 'svnadmin load' and 'svndumpfilter'</p> <p><a href="http://svnbook.red-bean.com/nightly/en/svn.reposadmin.maint.html#svn.reposadmin.maint.migrate" rel="nofollow">http://svnbook.red-bean.com/nightly/en/svn.reposadmin.maint.html#svn.reposadmin.maint.migrate</a></p> <p>Dump the repository with the file you want to move, use svndumpfilter to filter out only the paths for that file, then load the filtered dump into the shared repository.</p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/199967#199967 0 Answer by rjohnston for Most Influential CS Class You've Taken rjohnston 2008-10-14T03:53:26Z 2008-10-14T03:53:26Z <p>The most influential class I took as part of my degree would have been Project Management. It taught me that it's one thing to have smart people hacking out 1000s of lines of quality code day after day, but it's something completely different to ship a working product that people can actually use, and that having the former doesn't guarantee the latter.</p> http://stackoverflow.com/questions/157044/how-do-i-resolve-the-error-expression-must-evaluate-to-a-node-set-when-checking/157085#157085 -1 Answer by rjohnston for How do I resolve the error "Expression must evaluate to a node-set" when checking for the existence of a node? rjohnston 2008-10-01T10:52:19Z 2008-10-01T11:02:17Z <p>Try:</p> <pre><code>Node node = xmlDocument.SelectSingleNode(String.Format("//ErrorTable/ProjectName = '{0}'", projectName)); if (node != null) { // and so on } </code></pre> <p>Edit: silly error</p> http://stackoverflow.com/questions/156975/how-to-add-a-horizontal-gap-with-a-jlabel/157017#157017 2 Answer by rjohnston for How to add a horizontal gap with a JLabel rjohnston 2008-10-01T10:29:12Z 2008-10-01T10:29:12Z <p>If you're trying to push the label to one side of it's container, you can add a glue. Something like this:</p> <pre><code>JPanel panel = new JPanel(); panel.setLayoutManager(new BoxLayout(panel, BoxLayout.LINE_AXIS); panel.add(new JLabel("this is your label with it's image and text")); panel.add(Box.createHorizontalGlue()); </code></pre> <p>Though your question isn't very clear.</p> http://stackoverflow.com/questions/935/string-literals-and-escape-characters-in-postgresql 3 String literals and escape characters in postgresql rjohnston 2008-08-04T01:00:24Z 2008-09-27T16:04:29Z <p>Attempting to insert an escape character into a table results in a warning and the string being truncated at the escape character. For example:</p> <pre><code>create table EscapeTest (text varchar(50));<br><br>insert into EscapeTest (text) values ('This will be inserted \n This will not be');<br></code></pre> <p>Produces the warning:</p> <pre><code>WARNING: nonstandard use of escape in a string literal<br></code></pre> <p>(Using PSQL 8.2)</p> <p>Anyone know how to get around this?</p> http://stackoverflow.com/questions/137243/code-run-by-hudson-cant-find-executable-on-the-command-line 2 Code run by Hudson can't find executable on the command line rjohnston 2008-09-26T01:22:45Z 2008-09-26T21:26:39Z <p>I'm setting up my first job in Hudson, and I'm running into some problems. The job monitors two repositories, one containing our DB setup files, the other a bit of code that validates and tests the DB setup files.</p> <p>Part of the code that runs will throw the validated setup files at PostgreSQL, using the psql command line tool, using Runtime.exec(). This code works perfectly on my machine, but when Hudson executes it (different machine) I get the following error:</p> <pre>java.io.IOException: Cannot run program "psql": CreateProcess error=2, The system cannot find the file specified</pre> <p>psql.exe is on the path, and I can execute it by typing the whole thing at the command line, from the same place Hudson is executing the code. The file that's meant to be passed into psql exists.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/124667/learning-how-to-use-subversion/124711#124711 9 Answer by rjohnston for Learning how to use Subversion rjohnston 2008-09-24T00:23:10Z 2008-09-24T00:23:10Z <p>The recommended directory structure for a subversion repo contains three folders: "branches", "tags" and "trunk". So, create these folders somewhere convenient, in a new folder.</p> <p>Right click in the parent folder of these folders, go to TortoiseSVN and select Import. Enter the url to the repository you created here (ie_ https://JUNK:8443/svn/Test/ is one I just made, on my local machine). Hit the ok button and the folders will be imported.</p> <p>Now browse to where you want the repo to live on your local machine (I've gone to C:\workspace\test). Right-click and go to SVN Checkout.</p> <p>Now, you want to check out from the trunk of your repo, so change the repository URL to reflect this (https://JUNK:8443/svn/Test/trunk/). Hit the ok button.</p> <p>Create a new file in this directory. Right click on it and go to TortoiseSVN, then Add. Hit ok, and the file is now marked as a new file for the repo. Right click in the parent folder of the file and you should see SVN Update and SVN Commit. SVN Update will refresh the local files with files from the repository. SVN Commit will send local files that have been changed back into the repository.</p> <p>Have fun :)</p> http://stackoverflow.com/questions/118633/whats-so-wrong-about-using-gc-collect/118663#118663 0 Answer by rjohnston for What's so wrong about using GC.Collect()? rjohnston 2008-09-23T01:39:49Z 2008-09-23T01:39:49Z <p>There are situations where it's useful, but in general it should be avoided. You could compare it to GOTO, or riding a moped: you do it when you need to, but you don't tell your friends about it.</p> http://stackoverflow.com/questions/1625/xml-editing-viewing-software/3243#3243 0 Answer by rjohnston for XML Editing/Viewing Software rjohnston 2008-08-06T10:04:35Z 2008-08-06T10:15:05Z <p>+1 for XML Spy, I've used both the stand alone product and the visual studio plugin, and I've been impressed.</p> <p>In terms of FOSS, I use <a href="http://notepad-plus.sourceforge.net/uk/site.htm" rel="nofollow">Notepad++</a></p> http://stackoverflow.com/questions/177/how-do-i-programmatically-create-a-pdf-in-my-net-application/2972#2972 4 Answer by rjohnston for How do I programmatically create a PDF in my .NET application? rjohnston 2008-08-05T23:58:28Z 2008-08-05T23:58:28Z <p>Just for completeness - if you represent your data in xml, you can apply an xslt to it and run it through nFOP, and generate a PDF that way.</p> http://stackoverflow.com/questions/2158/creating-a-custom-button-in-java/2210#2210 1 Answer by rjohnston for Creating a custom button in Java rjohnston 2008-08-05T12:47:17Z 2008-08-05T12:51:38Z <p>You could always try the Synth look &amp; feel. You provide an xml file that acts as a sort of stylesheet, along with any images you want to use. The code might look like this:</p> <pre><code>try {<br> SynthLookAndFeel synth = new SynthLookAndFeel();<br> Class aClass = MainFrame.class;<br> InputStream stream = aClass.getResourceAsStream("\\default.xml");<br><br> if (stream == null) {<br> System.err.println("Missing configuration file");<br> System.exit(-1); <br> }<br><br> synth.load(stream, aClass);<br><br> UIManager.setLookAndFeel(synth);<br>} catch (ParseException pe) {<br> System.err.println("Bad configuration file");<br> pe.printStackTrace();<br> System.exit(-2);<br>} catch (UnsupportedLookAndFeelException ulfe) {<br> System.err.println("Old JRE in use. Get a new one");<br> System.exit(-3);<br>}<br></code></pre> <p>From there, go on and add your JButton like you normally would. The only change is that you use the setName(string) method to identify what the button should map to in the xml file.</p> <p>The xml file might look like this:</p> <pre><code>&lt;synth&gt;<br> &lt;style id="button"&gt;<br> &lt;font name="DIALOG" size="12" style="BOLD"/&gt;<br> &lt;state value="MOUSE_OVER"&gt;<br> &lt;imagePainter method="buttonBackground" path="dirt.png" sourceInsets="2 2 2 2"/&gt;<br> &lt;insets top="2" botton="2" right="2" left="2"/&gt;<br> &lt;/state&gt;<br> &lt;state value="ENABLED"&gt;<br> &lt;imagePainter method="buttonBackground" path="dirt.png" sourceInsets="2 2 2 2"/&gt;<br> &lt;insets top="2" botton="2" right="2" left="2"/&gt;<br> &lt;/state&gt;<br> &lt;/style&gt;<br> &lt;bind style="button" type="name" key="dirt"/&gt;<br>&lt;/synth&gt;<br></code></pre> <p>The bind element there specifies what to map to (in this example, it will apply that styling to any buttons whose name property has been set to "dirt").</p> <p>And a couple of useful links:</p> <p><a href="http://javadesktop.org/articles/synth/" rel="nofollow">http://javadesktop.org/articles/synth/</a></p> <p><a href="http://java.sun.com/docs/books/tutorial/uiswing/lookandfeel/synth.html" rel="nofollow">http://java.sun.com/docs/books/tutorial/uiswing/lookandfeel/synth.html</a></p> http://stackoverflow.com/questions/935/string-literals-and-escape-characters-in-postgresql/938#938 2 Answer by rjohnston for String literals and escape characters in postgresql rjohnston 2008-08-04T01:07:03Z 2008-08-04T01:07:03Z <p>Partially. The text is inserted, but the warning is still generated.</p> <p>I found a discussion that indicated the text needed to be preceded with 'E', as such:</p> <pre><code>insert into EscapeTest (text) values (E'This will be inserted \n This will not be');<br></code></pre> <p>This suppressed the warning, but still didn't insert the text. When I added the additional slash as Michael suggested, it worked.</p> <p>As such:</p> <pre><code>insert into EscapeTest (text) values (E'This will be inserted \\n This will not be');<br></code></pre> http://stackoverflow.com/questions/1529059/tomcat-6-the-requested-resource-is-not-available Comment by rjohnston on Tomcat 6 - The requested resource ... is not available. rjohnston 2009-10-07T01:53:57Z 2009-10-07T01:53:57Z <a href="http://forums.sun.com/thread.jspa?threadID=5144147" rel="nofollow">forums.sun.com/thread.jspa?threadID=5144147/&hellip;</a> http://stackoverflow.com/questions/1479061/simple-jquery-works-in-html-not-asp-net Comment by rjohnston on Simple jQuery works in HTML, not ASP.NET rjohnston 2009-10-07T01:41:53Z 2009-10-07T01:41:53Z I removed the &quot;stripes&quot; tag, since that refers to the Stripes framework http://stackoverflow.com/questions/1414525/how-should-we-tackle-a-big-change-in-our-application/1414528#1414528 Comment by rjohnston on How should we tackle a big change in our application ? rjohnston 2009-09-15T01:47:56Z 2009-09-15T01:47:56Z @AMissico - actually, I was trying to say they should move &quot;the car&quot; to a different SCM http://stackoverflow.com/questions/1414525/how-should-we-tackle-a-big-change-in-our-application/1414528#1414528 Comment by rjohnston on How should we tackle a big change in our application ? rjohnston 2009-09-12T08:17:45Z 2009-09-12T08:17:45Z @AMissico - I have a mechanic working on my engine, but they sometimes get in the way of the person changing the tire. The answer is for them to move the car to somewhere they can both work on it at the same time and not get in each other's way. http://stackoverflow.com/questions/683842/how-can-i-perform-an-and-on-an-unknown-number-of-booleans-in-postgresql/684028#684028 Comment by rjohnston on How can I perform an AND on an unknown number of booleans in postgresql? rjohnston 2009-03-26T03:42:41Z 2009-03-26T03:42:41Z Changed my mind - I like this solution better. Cleaned up version at <a href="http://paste.pocoo.org/show/109656/" rel="nofollow">paste.pocoo.org/show/109656</a> http://stackoverflow.com/questions/683842/how-can-i-perform-an-and-on-an-unknown-number-of-booleans-in-postgresql/683903#683903 Comment by rjohnston on How can I perform an AND on an unknown number of booleans in postgresql? rjohnston 2009-03-25T23:30:38Z 2009-03-25T23:30:38Z Thanks... removing someKey from the select list gives the correct result http://stackoverflow.com/questions/683842/how-can-i-perform-an-and-on-an-unknown-number-of-booleans-in-postgresql/683892#683892 Comment by rjohnston on How can I perform an AND on an unknown number of booleans in postgresql? rjohnston 2009-03-25T23:19:37Z 2009-03-25T23:19:37Z It's a start, but this doesn't deal with the case where the id doesn't exist (true is returned, since 0 = 0) http://stackoverflow.com/questions/593689/sort-algorithm-to-use-for-this-specific-scenario/593704#593704 Comment by rjohnston on Sort algorithm to use for this specific scenario rjohnston 2009-02-27T14:46:17Z 2009-02-27T14:46:17Z I guess when I said &quot;sorting&quot; I meant &quot;putting elements in order&quot;. The existing code does a sort because the lists aren't in order, I've just updated the DB to return them sorted correctly. http://stackoverflow.com/questions/23886/sql-pronunciation/350563#350563 Comment by rjohnston on SQL Pronunciation rjohnston 2009-02-16T12:54:07Z 2009-02-16T12:54:07Z That's what I thought as well http://stackoverflow.com/questions/510341/force-subclasses-of-an-interface-to-implement-tostring-c/510358#510358 Comment by rjohnston on Force subclasses of an interface to implement ToString [C#] rjohnston 2009-02-04T10:14:30Z 2009-02-04T10:14:30Z I was hoping stick with interfaces since I've already gotten them written, guess I'll have to bite the bullet and switch abstract classes. Thanks. http://stackoverflow.com/questions/510341/force-subclasses-of-an-interface-to-implement-tostring-c/510359#510359 Comment by rjohnston on Force subclasses of an interface to implement ToString [C#] rjohnston 2009-02-04T10:13:33Z 2009-02-04T10:13:33Z Question was &quot;can I do this with an interface?&quot;, not &quot;how do I do this?&quot;, but thanks anyway. http://stackoverflow.com/questions/463911/using-java-desktop-codebase-in-a-webapp/463939#463939 Comment by rjohnston on Using java (desktop) codebase in a webapp rjohnston 2009-01-21T05:11:02Z 2009-01-21T05:11:02Z Thanks for the pointer to Stripes - looks like the most straight-forward option at the moment. As I said, the code is very well separated, I expect to be able to reuse all of the access code, and the majority of the logic code (all of it with a little refactoring)... http://stackoverflow.com/questions/935/string-literals-and-escape-characters-in-postgresql/104780#104780 Comment by rjohnston on String literals and escape characters in postgresql rjohnston 2009-01-18T23:59:27Z 2009-01-18T23:59:27Z Interesting, looks like the problem was in the JDBC driver then, because the text coming out of the database was very definitely being truncated... http://stackoverflow.com/questions/399204/xslt-distinct-elements-and-grouping/399262#399262 Comment by rjohnston on XSLT distinct elements and grouping rjohnston 2008-12-30T02:01:58Z 2008-12-30T02:01:58Z Perfect, thanks! And cheers for the muenchean tip... http://stackoverflow.com/questions/137972/hudson-job-hangs-at-runtime-exec/142271#142271 Comment by rjohnston on Hudson job hangs at Runtime.exec rjohnston 2008-09-27T01:22:44Z 2008-09-27T01:22:44Z That's a great resource, I used it when writing the code itself. It was hanging, but it at least started creating the DB, unlike now.