User Peter Hilton - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T01:12:04Zhttp://stackoverflow.com/feeds/user/2670http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1597086/any-experience-with-play-java-web-development-framework/1661451#16614512Answer by Peter Hilton for any experience with "Play" java web development framework?Peter Hilton2009-11-02T13:52:44Z2009-11-02T13:52:44Z<p>I've tried Play and I'm impressed: it does a great job of delivering a useful development model that is far simpler than most frameworks'. More than anything else, the runtime's ability in 'development mode' to parse .java files directly is worth a lot: just reloading the web page in the browser without running a build script or waiting for a redeployment is worth a lot of development speed. The error messages shown in the browser are really good too.</p>
<p>Another thing that impressed me was the overall aesthetic: it is perhaps a small thing that the tutorial application actually looks good (both the code and the web page design), but this extends to the whole framework, the API as well as the documentation.</p>
http://stackoverflow.com/questions/438259/advice-for-first-year-college-student12Advice for first-year college student?Peter Hilton2009-01-13T07:59:49Z2009-10-08T10:13:44Z
<p>As an experienced software developer, what advice would you give to a first-year college/university student for things to do during a software engineering course?</p>
<p>I was asked this yesterday by a local college student who had to interview an IT professional for an assignment. I suggested three things:</p>
<ol>
<li><strong>Write lots of code</strong> - you get good by doing. Preferably start a personal/hobby project so you get to build something real (and hopefully new) that you can work on for longer than the average college assignment.</li>
<li><strong>Write (not just code) and publish</strong> - so you learn to write, because written communication skills matter. These days, the obvious thing to write is a personal blog, although there are other options.</li>
<li><strong>Learn to touch-type</strong> - so 1 and 2 do not take up all of your spare time. This is not a hard thing to do.</li>
</ol>
<p>Obviously, these are not original, and I think there is at least one Coding Horror article on each one. What I am looking for are more creative or original suggestions, either for what do (e.g. learn to write) or how (e.g. write a blog).</p>
<p>Note: the <a href="http://stackoverflow.com/questions/3553/one-piece-of-advice">One piece of advice</a> question is related, but not specifically about things to do while at college.</p>
http://stackoverflow.com/questions/1426234/exceptions-in-jsp/1426284#14262841Answer by Peter Hilton for "exceptions in JSP"Peter Hilton2009-09-15T10:10:00Z2009-09-15T10:10:00Z<p>This may be Internet Explorer's 'friendly error page'. See <a href="http://malektips.com/internet-explorer-8-disable-friendly-error-messages.html" rel="nofollow">http://malektips.com/internet-explorer-8-disable-friendly-error-messages.html</a> and <a href="http://support.microsoft.com/kb/294807" rel="nofollow">http://support.microsoft.com/kb/294807</a> </p>
http://stackoverflow.com/questions/497423/how-to-undelete-a-file-with-subversive/1363001#13630011Answer by Peter Hilton for How to undelete a file with Subversive?Peter Hilton2009-09-01T15:10:11Z2009-09-01T15:10:11Z<ol>
<li>Select the folder in the project that contained the deleted files.</li>
<li>Right click, select <em>Team > Merge...</em></li>
<li>On the <em>URL</em> tab, set the <em>URL</em> to the server URL for the same folder.</li>
<li>In <em>Revisions</em>, select <em>Revisions</em> and enter a range that includes the deletion, e.g. 1000-1001, or use the <em>Browse</em> button to select them.</li>
<li>In <em>Revisions</em>, enable <em>Reversed merge</em></li>
<li>Click <em>Preview</em> and check that it shows an <em>Added</em> entry for the files you plan to restore.</li>
<li>Click <em>OK</em> - Eclipse switches to <em>SVN Merge</em> in the <em>Synchronize</em> view.</li>
<li>In the <em>Synchronize</em> view, right click the files you want and select <em>Accept</em></li>
<li>In the <em>Synchronize</em> view, use the <em>Synchronize SVN</em> icon to switch from <em>SVN Merge</em> to <em>SVN</em>, where you can see the restored file as an outgoing change.</li>
</ol>
http://stackoverflow.com/questions/481808/how-can-i-provide-a-custom-log4j-xml-for-different-ant-tasks/1257048#12570481Answer by Peter Hilton for How can I provide a custom log4j.xml for different ant tasks?Peter Hilton2009-08-10T20:32:50Z2009-08-10T20:32:50Z<p>I am able to specify an configuration file using a relative file URL with <code>sysproperty</code> like this:</p>
<pre><code><java classname="com.lunatech.MainClass">
<sysproperty key="log4j.configuration" value="file:src/log4j-debug.properties"/>
<classpath refid="runtime.classpath"/>
</java>
</code></pre>
http://stackoverflow.com/questions/1231071/drools-how-to-insert-a-fact-after-checking-if-it-is-not-already-present-in-worki/1233209#1233209-1Answer by Peter Hilton for Drools: How to insert a fact after checking if it is not already present in working memoryPeter Hilton2009-08-05T13:18:16Z2009-08-05T13:18:16Z<p>You could try adding this line to the <code>when</code> condition, although I suspect that this is not the 'right' idiom:</p>
<pre><code>not( Child(this == $ch) )
</code></pre>
http://stackoverflow.com/questions/976295/porting-jboss-seam-app-to-newer-versions/1000766#10007660Answer by Peter Hilton for Porting Jboss/Seam App to newer versionsPeter Hilton2009-06-16T10:54:43Z2009-06-16T10:54:43Z<p>Start with <code>jboss-seam-2.1.2/seam21migration.txt</code> for Seam. I don't know about JBoss 5.</p>
http://stackoverflow.com/questions/496732/what-is-the-code-snippet-you-are-most-proud-of/497559#4975593Answer by Peter Hilton for What is the code snippet you are most proud of?Peter Hilton2009-01-30T22:36:55Z2009-06-12T11:22:21Z<pre><code>10 X = 0
20 X = X^2 - 1.6
30 PRINT X
40 GOTO 20
</code></pre>
<p>This was on a programmable calculator in a maths lesson at school. At first I figured something funny was going on, but then it got really interesting when I plotted the output.</p>
http://stackoverflow.com/questions/828973/how-to-include-a-file-outside-the-application-war-using-jsp-include/829807#8298072Answer by Peter Hilton for How to Include a file outside the application (war) using jsp include Peter Hilton2009-05-06T14:14:37Z2009-05-06T14:14:37Z<p>You can only use <code>jsp:include</code> for resources inside your web application context. You will need to either use <code>java.io.File</code> or similar to load from a file system path, or <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/ClassLoader.html#getResource%28java.lang.String%29" rel="nofollow">ClassLoader.getResource</a> to load a resource from the classpath.</p>
http://stackoverflow.com/questions/822959/is-it-possible-to-get-an-activity-page-like-those-in-redmine-from-jira/827269#8272693Answer by Peter Hilton for is it possible to get an 'activity page' (like those in redmine) from JIRA?Peter Hilton2009-05-05T22:49:14Z2009-05-05T22:49:14Z<p>Yes, you need the <a href="http://confluence.atlassian.com/display/JIRAEXT/Using%2Bthe%2BAtlassian%2BActivity%2BStream%2BPlugin" rel="nofollow">Atlassian Activity Stream Plugin</a>. Details for how to get it installed are on <a href="http://confluence.atlassian.com/display/JIRAEXT/Atlassian%2BActivity%2BStream%2BPlugin" rel="nofollow">its plugin page</a>.</p>
http://stackoverflow.com/questions/824985/jsf-messages-adding-link/827246#8272462Answer by Peter Hilton for jsf messages: adding linkPeter Hilton2009-05-05T22:44:12Z2009-05-05T22:44:12Z<p>It sounds like you need to create your own version of <code>rich:messages</code> that has an <code>escape</code> attribute, like <code>h:outputText</code>, so you can disable HTML escaping.</p>
http://stackoverflow.com/questions/825247/what-are-some-techniques-for-generating-powerpoint-presentations-without-using-of/827222#8272220Answer by Peter Hilton for What are some techniques for generating PowerPoint presentations without using Office Automation?Peter Hilton2009-05-05T22:37:43Z2009-05-05T22:37:43Z<p>You could write some server-side code that uses a library that can generate PowerPoint format documents. For example, in Java you can use <a href="http://poi.apache.org/slideshow/index.html" rel="nofollow">Apache POI-HSLF</a> to generating PPT files programmatically.</p>
<p>Depending on what you need to do, it may be less work to start with a 'template' PPT file, and modify it programmatically to insert or edit content.</p>
http://stackoverflow.com/questions/822117/ant-xmltask-update-an-attribute-value-using-wildcards/822609#8226091Answer by Peter Hilton for [ANT] [xmltask] update an attribute value using wildcardsPeter Hilton2009-05-04T23:27:07Z2009-05-04T23:27:07Z<p>Instead of specifying a single output file with <code>dest</code>, specify an output directory with <code>todir</code>:</p>
<pre><code><xmltask source="**\plugin.xml" todir="output">
<attr path="plugin" attr="version" value="12345" />
</xmltask>
</code></pre>
http://stackoverflow.com/questions/772386/how-do-i-view-ant-scripts-that-eclipse-uses/772397#7723972Answer by Peter Hilton for How do I view Ant scripts that eclipse uses?Peter Hilton2009-04-21T12:46:30Z2009-04-21T12:46:30Z<p>Select <em>Project » Properties » Builders</em> to see what runs when Eclipse builds your project.</p>
http://stackoverflow.com/questions/758473/are-java-web-frameworks-really-worth-the-hassle/758485#7584859Answer by Peter Hilton for Are Java web frameworks really worth the hassle?Peter Hilton2009-04-16T23:47:24Z2009-04-16T23:47:24Z<p>JSF can be tricky to get started with, and is harder to learn than many Java web frameworks. You might find it easier to use JSF with Seam, which simplifies much of how you work with JSF, and replaces JSP with Facelets, which is a great improvement.</p>
<p>Alternatively, you could try SpringMVC, which lots of people find easier to use.</p>
http://stackoverflow.com/questions/739170/how-can-i-check-if-a-resource-bundle-key-does-not-exist-using-jstl-tags/758468#7584680Answer by Peter Hilton for How can I check if a resource bundle key does not exist using JSTL tags?Peter Hilton2009-04-16T23:41:59Z2009-04-16T23:41:59Z<p>You could write your own JSP tag that does this, so you can then just do:</p>
<pre><code><my:message var="title" key="${form}.title" default="default.title"/>
</code></pre>
<p>The tag implementation could either be your current JSP syntax, or a Java class.</p>
http://stackoverflow.com/questions/154705/how-to-reduce-time-spent-in-meetings-as-a-developer30How to reduce time spent in meetings as a developer?Peter Hilton2008-09-30T19:58:12Z2009-04-15T11:37:45Z
<p>What is the single best tactic a developer can use to avoid spending time in meetings?</p>
<p>I'm mainly thinking of the seemingly-pointless meetings that (project) managers often schedule, that can be a real barrier to getting real work done.</p>
<p>So far, I have had some success with the following techniques, which seem to remove some of the need for meetings.</p>
<ul>
<li>Be able to answer all status questions with <em>'It's in JIRA'</em> (we use JIRA for task-management).</li>
<li>Be able to answer most planning questions with <em>'It's in JIRA'</em>.</li>
<li>Be able to answer most other questions with <em>'It's on the wiki'</em>.</li>
<li>Use the beer in the office fridge (or the coffee machine) to enable brief ad-hoc 'stand-up meetings' at the end of the day, so that everyone already knows what's going on.</li>
<li>Use an internal IRC channel or chat room so that everyone already knows what's going on.</li>
</ul>
http://stackoverflow.com/questions/86202/internationalised-labels-in-jsf-facelets2Internationalised labels in JSF/FaceletsPeter Hilton2008-09-17T18:35:33Z2009-04-07T12:10:33Z
<p>Does <a href="https://facelets.dev.java.net/" rel="nofollow">Facelets</a> have any features for neater or more readable internationalised user interface text labels that what you can otherwise do using JSF?</p>
<p>For example, with plain JSF, using h:outputFormat is a very verbose way to interpolate variables in messages.</p>
<p><em>Clarification:</em> I know that I can add a message file entry that looks like:</p>
<pre><code>label.widget.count = You have a total of {0} widgets.
</code></pre>
<p>and display this (if I'm using Seam) with:</p>
<pre><code><h:outputFormat value="#{messages['label.widget.count']}">
<f:param value="#{widgetCount}"/>
</h:outputFormat>
</code></pre>
<p>but that's a lot of clutter to output one sentence - just the sort of thing that gives JSF a bad name.</p>
http://stackoverflow.com/questions/495776/should-i-use-java-text-messageformat-for-localised-messages-without-placeholders4Should I use java.text.MessageFormat for localised messages without placeholders?Peter Hilton2009-01-30T14:56:41Z2009-04-03T10:11:04Z
<p>We are localising the user-interface text for a web application that runs on Java 5, and have a dilemma about how we output messages that are defined in properties files - the kind used by <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Properties.html" rel="nofollow">java.util.Properties</a>.</p>
<p>Some messages include a placeholder that will be filled using <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/text/MessageFormat.html" rel="nofollow">java.text.MessageFormat</a>. For example:</p>
<pre><code>search.summary = Your search for {0} found {1} items.
</code></pre>
<p>MessageFormat is annoying, because a single quote is a special character, despite being common in English text. You have to type two for a literal single quote:</p>
<pre><code>warning.item = This item''s {0} is not valid.
</code></pre>
<p>However, three-quarters of the application's 1000 or so messages do not include a placeholder. This means that we can output them directly, avoiding MessageFormat, and leave the single quotes alone:</p>
<pre><code>help.url = The web page's URL
</code></pre>
<p><strong>Question:</strong> should we use MessageFormat for all messages, for consistent syntax, or avoid MessageFormat where we can, so most messages do not need escaping?</p>
<p>There are clearly pros and cons either way.</p>
<p>Note that the API documentation for MessageFormat acknowledges the problem and suggests a non-solution:</p>
<blockquote>
<p>The rules for using quotes within
message format patterns unfortunately
have shown to be somewhat confusing.
In particular, it isn't always obvious
to localizers whether single quotes
need to be doubled or not. Make sure
to inform localizers about the rules,
and tell them (for example, by using
comments in resource bundle source
files) which strings will be processed
by MessageFormat.</p>
</blockquote>
http://stackoverflow.com/questions/495776/should-i-use-java-text-messageformat-for-localised-messages-without-placeholders/713345#7133451Answer by Peter Hilton for Should I use java.text.MessageFormat for localised messages without placeholders?Peter Hilton2009-04-03T10:11:04Z2009-04-03T10:11:04Z<p>In the end we decided to side-step the single quote problem by always using ‘curly’ quotes:</p>
<pre><code>warning.item = This item\u2019s {0} is not valid.
</code></pre>
http://stackoverflow.com/questions/712716/get-some-stack-trace-info-into-a-custom-tomcat-error-500-page/713317#7133172Answer by Peter Hilton for get some stack trace info into a custom tomcat error 500 pagePeter Hilton2009-04-03T10:03:18Z2009-04-03T10:03:18Z<p>Here's the JSP syntax, which I have used with Struts. You can probably get this or similar working with JSf.</p>
<pre><code><!-- Get the exception object -->
<c:set var="exception" value="${requestScope[&quot;javax.servlet.error.exception&quot;]}"/>
<!-- Exception message(s) -->
<p>${exception.message}</p>
<p><c:if test="${not empty exception.cause.message}">${exception.cause.message}</c:if></p>
<!-- Stack trace -->
<jsp:scriptlet>
exception.printStackTrace(new java.io.PrintWriter(out));
</jsp:scriptlet>
</code></pre>
http://stackoverflow.com/questions/705561/how-to-update-openldap-directory-attribute/706563#7065631Answer by Peter Hilton for how to update OpenLDAP directory attribute?Peter Hilton2009-04-01T17:22:25Z2009-04-01T17:22:25Z<p>You can do this using Novell's <a href="http://developer.novell.com/wiki/index.php/LDAP%5FClasses%5Ffor%5FJava" rel="nofollow">LDAP Classes for Java</a>, which do the job just fine for us.</p>
http://stackoverflow.com/questions/658171/tricks-to-speed-up-jboss-seam-debug-cycle/700926#7009261Answer by Peter Hilton for Tricks to speed up Jboss Seam debug cyclePeter Hilton2009-03-31T13:24:00Z2009-03-31T13:24:00Z<p>When you say 'reboot' it sounds like you mean 'shut-down and re-start JBoss'.</p>
<p>You only have to force JBoss to reload the application, by touching the file (for an EAR or WAR archive) or the deployment descriptor (<code>app.ear/META-INF/application.xml</code> or <code>app.war/WEB-INF/web.xml</code>) for an exploded archive.</p>
<p>Reloading the Seam application EAR takes about 15 seconds on my machine, while starting JBoss takes about 30 seconds excluding shut-down but including starting the Seam application.</p>
<p>If you do want to restart JBoss, you can probably make it start faster by removing components you do not need in your development environment, such as JBossHA (high availability and clustering).</p>
http://stackoverflow.com/questions/651350/scrum-where-do-you-do-all-the-other-stuff/651372#6513723Answer by Peter Hilton for Scrum - where do you do all the 'other' stuff?Peter Hilton2009-03-16T17:30:18Z2009-03-16T17:30:18Z<p>Basically, it happens within each feature, which is easier said than done but is perhaps the whole point of agile incremental software development.</p>
<p>For example, instead of building lots of 'underlying stuff that doesn't necessarily manifest itself as a feature', you should suspect that you Ain't Gonna Need It, and only build as much as you need for the feature in question.</p>
http://stackoverflow.com/questions/650647/jboss-seam-tutorials/651349#6513491Answer by Peter Hilton for JBoss Seam tutorialsPeter Hilton2009-03-16T17:23:30Z2009-03-16T17:23:30Z<p>See the Seam manual, <a href="http://docs.jboss.com/seam/latest/reference/en-US/html/tutorial.html" rel="nofollow">Chapter 1. Seam Tutorial</a>.</p>
http://stackoverflow.com/questions/553749/spring-mvc-webapp-where-to-store-paths-to-common-images/553806#5538061Answer by Peter Hilton for Spring MVC Webapp: Where to store paths to common images?Peter Hilton2009-02-16T16:05:35Z2009-02-17T08:38:40Z<p>Use a configuration bean in application scope, so you can write something like</p>
<pre><code><img src="${configuration.imagePath}/icon.png">
</code></pre>
<p>I don't use Spring, but you can probably use dependency injection to do something similar to what we do in JBoss and Seam.</p>
<p>Basically, we have a POJO class called Configuration whose properties are the application's configuration parameters, loaded from an XML configuration (actually a JBoss MBean, but that's off-topic). In this example, our bean would have a <code>getImagePath()</code> method.</p>
<p>Seam will take care of instantiating a single instance of the configuration bean in 'application' scope, so that it is always available to use in expressions, like the one above.</p>
http://stackoverflow.com/questions/511232/what-is-the-best-css-trick-to-reduce-how-much-html-you-need2What is the best CSS trick to reduce how much HTML you need?Peter Hilton2009-02-04T12:58:38Z2009-02-04T15:04:07Z
<p>What is the cleverest CSS technique that lets you use less HTML?</p>
<p>One of the advantages of using CSS well is that it can let you simplify your HTML, and produce look-and-feel effects entirely in the CSS. In the beginning this was just replacing deprecated HTML presentation mark-up and spacer-GIFs with CSS, but recent years have shown more good ideas.</p>
<p>I am looking for something less obvious than the following.</p>
<ul>
<li>Replace HTML <code>HR</code> with CSS <code>border</code>, for separating sections that are already DIVs.</li>
<li>Replace HTML <code>IMG</code> with CSS <code>background-image</code>, for graphics that are not 'content'.</li>
<li>Replace HTML text with CSS <code>:before</code> and <code>content</code>, for text that is not 'content'.</li>
</ul>
<p>I am not looking for techniques that involve adding JavaScript or more HTML, such as additional DIV elements.</p>
<p>Techniques that only work in specific browsers and versions are okay, provided that you say which ones.</p>
http://stackoverflow.com/questions/487646/pl-sql-modplsql-accept-parameters-only-from-post-not-get-requests/505503#5055031Answer by Peter Hilton for PL/SQL (mod_plsql): Accept parameters only from POST, not GET requests?Peter Hilton2009-02-02T23:52:14Z2009-02-02T23:52:14Z<p>In the Apache configuration, you can probably use the <a href="http://httpd.apache.org/docs/2.2/mod/core.html#limit" rel="nofollow">Limit directive</a> to restrict the relevant URLs to POST requests.</p>
http://stackoverflow.com/questions/505418/what-is-the-hot-key-for-content-assist-in-java-editor-for-eclipse-in-mac/505428#5054280Answer by Peter Hilton for What is the hot key for 'content assist' in java editor for eclipse in mac?Peter Hilton2009-02-02T23:30:03Z2009-02-02T23:30:03Z<p><code>^</code> is Control.</p>
http://stackoverflow.com/questions/498676/how-easy-is-it-to-set-up-jboss-seam-to-run-on-glassfish-with-jpa-instead-of-hiber/499204#4992041Answer by Peter Hilton for How easy is it to set up JBoss Seam to run on GlassFish with JPA instead of Hibernate?Peter Hilton2009-01-31T17:26:47Z2009-01-31T17:26:47Z<p>Seam does not require Hibernate, and the recent 2.x releases are tested and documented to work on other application servers.</p>
<p>We have a Seam application that uses JPA, which was no problem to set-up. I do not use GlassFish, but the Seam manual has a section on <a href="http://docs.jboss.com/seam/2.1.1.GA/reference/en-US/html/glassfish.html#jpa-glassfish-section" rel="nofollow">deploying the JPA example on GlassFish</a>, which sounds like what you need.</p>
http://stackoverflow.com/questions/1360800/evaluation-of-drools-flow-with-drools-expert-on-a-web-based-j2ee-projectComment by Peter Hilton on Evaluation of Drools Flow with Drools Expert on a web based J2ee projectPeter Hilton2009-09-01T14:39:52Z2009-09-01T14:39:52ZWhat's the question?http://stackoverflow.com/questions/96501/perks-for-new-programmers/96560#96560Comment by Peter Hilton on Perks for new programmersPeter Hilton2009-08-03T09:31:13Z2009-08-03T09:31:13ZJeeBee - that's because pubs need sofas too - <a href="http://hilton.org.uk/why_sofas.phtml" rel="nofollow">hilton.org.uk/why_sofas.phtml</a>http://stackoverflow.com/questions/496732/what-is-the-code-snippet-you-are-most-proud-of/497559#497559Comment by Peter Hilton on What is the code snippet you are most proud of?Peter Hilton2009-06-12T11:21:33Z2009-06-12T11:21:33ZAh, good point - edit…http://stackoverflow.com/questions/772386/how-do-i-view-ant-scripts-that-eclipse-uses/772397#772397Comment by Peter Hilton on How do I view Ant scripts that eclipse uses?Peter Hilton2009-04-22T15:26:42Z2009-04-22T15:26:42ZTrue - in the novice case there are probably only have built-in (non-Ant) builders, but in general you might also have your own custom builders that are Ant tasks.http://stackoverflow.com/questions/547242/how-to-direct-hibernate-logger-statements-in-different-log-files-for-differnet-ap/636519#636519Comment by Peter Hilton on How to direct hibernate logger statements in different log files for differnet applications using jboss-log4j.xml file Peter Hilton2009-04-16T17:01:45Z2009-04-16T17:01:45ZI guess the question is how to split org.hibernate log messages between different log files for each web application.http://stackoverflow.com/questions/721282/advice-on-handling-multiple-ear-deployments-into-jboss/721721#721721Comment by Peter Hilton on Advice on handling multiple ear deployments into jBossPeter Hilton2009-04-16T16:59:59Z2009-04-16T16:59:59ZThis is a comment, not an answerhttp://stackoverflow.com/questions/745029/which-framework-should-i-choose-seam-wicket-jsf-or-gwt/745352#745352Comment by Peter Hilton on Which framework should I choose - Seam, Wicket, JSF or GWT?Peter Hilton2009-04-16T09:48:11Z2009-04-16T09:48:11ZSeam makes it easy to use GET requests and have bookmarkable URLs with JSF.http://stackoverflow.com/questions/745029/which-framework-should-i-choose-seam-wicket-jsf-or-gwt/745380#745380Comment by Peter Hilton on Which framework should I choose - Seam, Wicket, JSF or GWT?Peter Hilton2009-04-16T09:47:22Z2009-04-16T09:47:22ZForget JSP. Facelets is the default view technology in Seam (and JSF 2.0) so Seam usually implies Facelets, although there is some Wicket support.http://stackoverflow.com/questions/86202/internationalised-labels-in-jsf-facelets/656391#656391Comment by Peter Hilton on Internationalised labels in JSF/FaceletsPeter Hilton2009-03-19T16:50:26Z2009-03-19T16:50:26ZGood answer, and close to what we've done so far. The main problem is that you can't use it inside attribute values.http://stackoverflow.com/questions/570101/prevent-anchors-from-pushing-pages-to-the-bottom-htmlComment by Peter Hilton on Prevent anchors from pushing pages to the bottom (HTML)Peter Hilton2009-02-20T16:02:59Z2009-02-20T16:02:59ZIt would help if you posted the HTML for the link, and the HTML for the target anchor.http://stackoverflow.com/questions/511437/intern-or-employeeComment by Peter Hilton on Intern or Employee?Peter Hilton2009-02-04T14:28:43Z2009-02-04T14:28:43ZYour question does not seem to be specifically about a programming internship, so this is not programming related.http://stackoverflow.com/questions/511232/what-is-the-best-css-trick-to-reduce-how-much-html-you-need/511283#511283Comment by Peter Hilton on What is the best CSS trick to reduce how much HTML you need?Peter Hilton2009-02-04T13:43:53Z2009-02-04T13:43:53ZCan you give a specific example with code?http://stackoverflow.com/questions/511232/what-is-the-best-css-trick-to-reduce-how-much-html-you-needComment by Peter Hilton on What is the best CSS trick to reduce how much HTML you need?Peter Hilton2009-02-04T13:37:31Z2009-02-04T13:37:31ZWe probably agree - of course HR has semantic meaning, but that is not always intended. Sometimes the 'designer' just wants a horizontal line.http://stackoverflow.com/questions/495776/should-i-use-java-text-messageformat-for-localised-messages-without-placeholders/495829#495829Comment by Peter Hilton on Should I use java.text.MessageFormat for localised messages without placeholders?Peter Hilton2009-02-04T01:15:55Z2009-02-04T01:15:55ZIndeed, so I guess I'll look for an alternative implementation.http://stackoverflow.com/questions/506538/what-are-some-good-posters-youd-find-in-a-programmers-room/506598#506598Comment by Peter Hilton on What are some good posters you'd find in a programmer's room?Peter Hilton2009-02-03T10:42:14Z2009-02-03T10:42:14Z4. More whiteboards