User Eric DeLabar - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T22:03:34Zhttp://stackoverflow.com/feeds/user/7556http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/82141/producing-2-or-more-short-sounds-when-a-web-page-loads/82255#822551Answer by Eric DeLabar for producing 2 or more short sounds when a web page loads.Eric DeLabar2008-09-17T11:44:16Z2008-09-17T11:44:16Z<p>If you're not against using a JavaScript framework to play a sound scriptaculous provides an API for playing sounds.</p>
<p><a href="http://github.com/madrobby/scriptaculous/wikis/sound" rel="nofollow">http://github.com/madrobby/scriptaculous/wikis/sound</a></p>
http://stackoverflow.com/questions/65491/what-is-the-best-method-to-reduce-the-size-of-my-javascript-and-css-files/76681#766810Answer by Eric DeLabar for What is the best method to reduce the size of my Javascript and CSS files?Eric DeLabar2008-09-16T20:32:12Z2008-09-16T20:32:12Z<p><a href="http://code.google.com/apis/ajaxlibs/" rel="nofollow">Google hosts a handful of pre-compressed JavaScript library files</a> that you can include in your own site. Not only does Google provide the bandwidth for this, but based on most browser's file caching algorithms, if the user has already downloaded the file from Google for another site they won't have to do it again for yours. A nice little bonus for some of the 90k+ JS libraries out there.</p>
http://stackoverflow.com/questions/74612/how-do-i-make-an-html-table-the-same-width-as-its-containing-div-tag/76478#764780Answer by Eric DeLabar for How do I make an HTML table the same width as its containing div tag?Eric DeLabar2008-09-16T20:17:52Z2008-09-16T20:17:52Z<p>Percentage-based widths are relative to the first parent element that has a width specified. If your div does not have a width specified then the width of the table has nothing to do with it. Can you post a simplified version of the markup that shows what your DOM tree looks like? </p>
<p>From another angle, if your parent div DOES have a width set and the margin is still affecting your table then you are probably in quirks mode. You have specified your DOCTYPE, but be aware that the DOCTYPE element MUST be the first line in the file. Something else to note when dealing with IE6, by default, if your content is wider than your parent, the parent will be stretched to accomodate, you can stop this by adding overflow: hidden to your css for the parent element but in the process you might obscure some of the child element's content. </p>
http://stackoverflow.com/questions/72456/what-facets-have-i-missed-for-creating-a-3-person-guerilla-dev-team/72581#725811Answer by Eric DeLabar for What facets have I missed for creating a 3 person guerilla dev team?Eric DeLabar2008-09-16T14:01:35Z2008-09-16T14:01:35Z<p><strong>Collaboration Tools</strong></p>
<p><a href="http://www.skype.com/" rel="nofollow">Skype</a> = Free - If you can't work face-to-face a tool like Skype can get you pretty close for no cost assuming everybody already has broadband. The mac client works great and since most modern macs have a camera already you should be mostly set.</p>
http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/72441#724417Answer by Eric DeLabar for What should a developer know before building a public web site?Eric DeLabar2008-09-16T13:51:37Z2008-09-16T13:57:23Z<ul>
<li>Consider URLs, a URL design with REST in mind could make exposing APIs easier in the future. Definitely much easier to get your URLs right the first time then to change them in the future and deal with the SEO consequences.</li>
<li>Read Josh Porter's book Designing for the Social Web.</li>
<li>Have some way to accept criticism and suggestions.</li>
<li>Know what progressive enhancement an graceful degradation are, JavaScript is NOT a requirement to operate the web and should be treated as such.</li>
</ul>
http://stackoverflow.com/questions/42828/mixing-jsp-and-jsf/63883#638831Answer by Eric DeLabar for Mixing jsp and jsfEric DeLabar2008-09-15T15:21:33Z2008-09-16T13:45:32Z<p>To solve this one I'd probably create a JSF fragment that only includes your form, then use a tag to include it in my JSF page. </p>
<p>That solution is probably a little fragile depending on your environment though.</p>
<p>EDIT: See Chris Hall's answer, FacesContext is not available outside the FacesServlet.</p>
http://stackoverflow.com/questions/63509/are-there-any-jsf-component-libraries-that-generate-semantic-and-cross-browser-ht2Are there any JSF component libraries that generate semantic and cross-browser html markup?Eric DeLabar2008-09-15T14:40:55Z2008-09-16T13:22:12Z
<p>I'm using RichFaces per a client requirement, but the markup it (and the stock JSF controls) generates is an awful mess of nested tables. Are there any control libraries out there that generate nicer markup? AJAX support is a huge plus!</p>
http://stackoverflow.com/questions/71491/how-do-you-grab-a-text-from-webpage-java/72027#720270Answer by Eric DeLabar for How do you grab a text from webpage (Java)?Eric DeLabar2008-09-16T13:12:29Z2008-09-16T13:12:29Z<p>Have you considered taking advantage of RSS/Atom feeds? Why scrape the content when it's usually available for you in a consumable format? There are libraries available for consuming RSS in just about any language you can think of, and it'll be a lot less dependent on the markup of the page than attempting to scrape the content. </p>
<p>If you absolutely MUST scrape content, look for <a href="http://microformats.org" rel="nofollow">microformats</a> in the markup, most blogs (especially WordPress based blogs) have this by default. There are also libraries and parsers available for locating and extracting microformats from webpages.</p>
<p>Finally, aggregation services/applications such as <a href="http://pipes.yahoo.com/pipes/" rel="nofollow">Yahoo Pipes</a> may be able to do this work for you without reinventing the wheel.</p>
http://stackoverflow.com/questions/71786/windows-ide-editor-for-a-beginner/71977#719770Answer by Eric DeLabar for Windows IDE / editor for a beginnerEric DeLabar2008-09-16T13:05:47Z2008-09-16T13:05:47Z<p>I can't believe nobody has mentioned vi. I'll argue that the less your tool does for you in the beginning the better coder you'll be in the end. For a newbie, give them syntax highlighting and some helpers for dealing with blocks and lines. Something like vi is great, emacs is also fine, or if you absolutely must be on Windows, something like notepad++ or jedit will be decent. The main point is to learn to program before you learn to let your IDE insert code that you don't understand for you.</p>
http://stackoverflow.com/questions/71681/how-do-you-evaluate-a-software-architect/71926#719261Answer by Eric DeLabar for How do you evaluate a Software Architect?Eric DeLabar2008-09-16T12:59:30Z2008-09-16T12:59:30Z<p>Look for a blogger! A good blogger should be an excellent communicator (especially with the written word). Most bloggers also keep pretty up to date with the industry they're blogging about, meaning they'll be aware of what technologies and tools are available to solve a specific problem. A great blogger will also have a large body of work on their blog for you to evaluate if their skills and/or personality will fit within your organization.</p>
http://stackoverflow.com/questions/63885/how-can-i-fix-an-issue-in-ie-where-borders-dont-show-up-when-the-mouse-isnt-hov/64098#640980Answer by Eric DeLabar for How can I fix an issue in IE where borders don't show up when the mouse isn't hovered over an image.Eric DeLabar2008-09-15T15:45:54Z2008-09-15T15:45:54Z<p>IE has problems with the :hover pseudo-class on anything other than anchor elements so you need to change the element the hover is affecting to the anchor itself. So, if you added a class like "image" to your anchor and altered your markup to something like this:</p>
<pre><code><div class="myImage"><a href="..." class="image"><img .../></a></div>
</code></pre>
<p>You could then alter your CSS to look like this:</p>
<pre><code>.myImage a.image
{
border: 1px solid grey;
padding: 3px;
}
.myImage a.image:hover
{
border: 3px solid blue;
padding: 1px;
}
</code></pre>
<p>Which should mimic the desired effect by placing the border on the anchor instead of the image. Just as a note, you may need something like the following in your CSS to eliminate the image's default border:</p>
<pre><code>.myImage a img {
border: none;
}
</code></pre>
http://stackoverflow.com/questions/62406/alternative-stylecss-methods-in-sap-portal/63381#633811Answer by Eric DeLabar for Alternative Style(CSS) methods in SAP Portal?Eric DeLabar2008-09-15T14:24:52Z2008-09-15T14:24:52Z<p>I'd consider it dirty hack, but as a non-Portal developer I'd consider using JavaScript to insert a new link element in the head pointing to your new CSS file. Of course you'd have a flash of un-styled content because the script probably won't run until after part of the page has been downloaded and rendered, but it may be an adequate solution.</p>
http://stackoverflow.com/questions/61250/divs-vs-tables-or-css-vs-being-stupid/63344#633441Answer by Eric DeLabar for DIV's vs Tables or CSS vs. Being StupidEric DeLabar2008-09-15T14:20:59Z2008-09-15T14:20:59Z<p><a href="http://www.alistapart.com/" rel="nofollow">A List Apart</a> is a great reference for using semantic HTML, the <a href="http://www.alistapart.com/articles/holygrail/" rel="nofollow">Holy Grail article</a> is probably one of the best examples. Also, check out <a href="http://www.csszengarden.com/" rel="nofollow">CSS Zen Garden</a> for some inspiration on the topic or read Dave Shea's excellent book "The Zen of CSS Design."</p>
http://stackoverflow.com/questions/63081/seeking-a-good-solution-for-svg-javascript-framework/63175#631750Answer by Eric DeLabar for Seeking a good solution for SVG + Javascript framework Eric DeLabar2008-09-15T14:05:27Z2008-09-15T14:05:27Z<p>Do you need SVG or just vector-like graphics manipulation? John Resig ported the "Processing" visualization language to JavaScript. I never used it, but from the creator of jQuery it may help you out if you don't actually require SVG.</p>
<p><a href="http://ejohn.org/blog/processingjs/" rel="nofollow">http://ejohn.org/blog/processingjs/</a></p>
http://stackoverflow.com/questions/75732/not-using-widths-padding-margins-on-the-same-element/75789#75789Comment by Eric DeLabar on Not using widths & padding/margins on the same element?Eric DeLabar2008-09-16T20:28:16Z2008-09-16T20:28:16ZQuirks mode is triggered by DOCTYPE, as long as your DOCTYPE is better than HTML 4.01 Transitional and the absolute first line in the file you should be in standards mode.http://stackoverflow.com/questions/65849/how-to-insert-line-breaks-in-html-documents-using-css/66337#66337Comment by Eric DeLabar on How to insert line breaks in HTML documents using CSSEric DeLabar2008-09-16T20:24:29Z2008-09-16T20:24:29ZRight concept, but the "label" element is more semantically correct. http://stackoverflow.com/questions/65849/how-to-insert-line-breaks-in-html-documents-using-css/65979#65979Comment by Eric DeLabar on How to insert line breaks in HTML documents using CSSEric DeLabar2008-09-16T20:22:40Z2008-09-16T20:22:40ZDon't forget your label "for" attributes, if you omit them there is no point to using the label in the first place since it's not related to the input element in any way.http://stackoverflow.com/questions/63509/are-there-any-jsf-component-libraries-that-generate-semantic-and-cross-browser-ht/72105#72105Comment by Eric DeLabar on Are there any JSF component libraries that generate semantic and cross-browser html markup?Eric DeLabar2008-09-16T13:47:35Z2008-09-16T13:47:35ZI've considered my own component set...I'm not a fan of a4j though as it seems to send a lot more data back and forth than is necessary.