User Steve Paulo - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T21:15:53Z http://stackoverflow.com/feeds/user/9414 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1159314/css-hack-to-target-firefox-3-5/1850314#1850314 0 Answer by Steve Paulo for CSS Hack to Target Firefox 3.5+? Steve Paulo 2009-12-04T23:19:01Z 2009-12-04T23:19:01Z <p>This works:</p> <pre><code>@media screen and (-webkit-min-device-pixel-ratio:0){ #topsearch input[type=submit] { height:19px; } }} </code></pre> <p>That targets newer WebKit browsers, and not Gecko or Trident.</p> http://stackoverflow.com/questions/213173/change-of-class-does-not-result-in-the-new-classs-rules-being-applied-in-ie6 3 Change of class does not result in the new class's rules being applied in IE6?? Steve Paulo 2008-10-17T18:00:18Z 2009-09-22T07:20:03Z <p>I have a single image with 9 different states and the appropriate background-position rules set up as classes to show the different states. I can't use the :hover pseudo-selector because the background image being changed is not the same element that is being hovered over. I have defined the classes this way:</p> <pre><code>#chooser_nav {width:580px; height:38px; background:transparent url(/assets/images/chooser-tabs.jpg) 0 0 no-repeat; margin-left:34px;} #chooser_nav.feat {background-position:0 0;} #chooser_nav.inv {background-position:0 -114px;} #chooser_nav.bts {background-position:0 -228px;} #chooser_nav.featinv {background-position:0 -38px;} #chooser_nav.featbts {background-position:0 -76px;} #chooser_nav.invfeat {background-position:0 -152px;} #chooser_nav.invbts {background-position:0 -190px;} #chooser_nav.btsfeat {background-position:0 -266px;} #chooser_nav.btsinv {background-position:0 -304px;} </code></pre> <p>Then, using jQuery, I have a series of hover rules based on a previous click event (the here-undeclared "cur" variable is properly declared elsewhere):</p> <pre><code> $("#featured_races a").hover(function(){ cur == "feat" ? $("#chooser_nav").attr("class", cur) : $("#chooser_nav").attr("class", cur+"feat"); }, function(){ $("#chooser_nav").attr("class", cur); }); $("#invitational_races a").hover(function(){ cur == "inv" ? $("#chooser_nav").attr("class", cur) : $("#chooser_nav").attr("class", cur+"inv"); }, function(){ $("#chooser_nav").attr("class", cur); }); $("#behind_the_scenes a").hover(function(){ cur == "bts" ? $("#chooser_nav").attr("class", cur) : $("#chooser_nav").attr("class", cur+"bts"); }, function(){ $("#chooser_nav").attr("class", cur); }); </code></pre> <p>So, in Moz and WebKit browsers, this works fine. The classes are applied and the background image changes accordingly. Works in IE7 as well. However, in IE6, the background image never changes. The classes get applied appropriately, I verified this with the DOM viewer in MS's web dev tool. So, the jQuery is working. The class is getting applied, but no change is visibly occurring.</p> <p>I'm kinda stumped here... Help me, Crackoverflow... you're my only hope...</p> <p>EDIT: As far as className vs. setAttribute... the class is changing. attr("class", cur) is working. However, once the class is changed, the resulting rules are not applied visually... but the change of class is occurring.</p> <p>EDIT 2: As for jQuery's class-specific methods: I originally had them in the code, and the result was the same. Again, the problem is not with the class not getting applied to the element... this has been verified to be happening. it's that once the class is on the element, for some reason, the element is not following the CSS rules set for that class...</p> http://stackoverflow.com/questions/1019671/what-programming-languages-do-web-2-0-sites-use/1019770#1019770 0 Answer by Steve Paulo for What programming languages do Web 2.0 sites use? Steve Paulo 2009-06-19T19:54:24Z 2009-06-19T19:54:24Z <p>You can find out specifics (usually) by plugging some URLs into <a href="http://www.builtwith.com" rel="nofollow">builtwith.com</a></p> http://stackoverflow.com/questions/1019702/select-the-children-of-a-sibling-with-a-single-expression-in-jquery/1019760#1019760 0 Answer by Steve Paulo for Select the children of a sibling with a single expression in jQuery Steve Paulo 2009-06-19T19:52:17Z 2009-06-19T19:52:17Z <p>you could try $(this+"+div>span");</p> http://stackoverflow.com/questions/966874/placing-an-icon-on-the-edge-of-a-border/966919#966919 3 Answer by Steve Paulo for Placing an Icon on the edge of a border Steve Paulo 2009-06-08T20:45:56Z 2009-06-08T20:45:56Z <p>Your best bet will probably be to use positon:relative on the box, put the icons inside, and use position:absolute to place them without them taking up space in the content. Like this:</p> <p>HTML:</p> <pre><code>&lt;div id="wrapper"&gt; &lt;img id="icon1" src="/path/to/image.png" alt="alt text" /&gt; &lt;img id="icon2" src="/path/to/image.png" alt="alt text" /&gt; &lt;/div&gt; </code></pre> <p>CSS:</p> <pre><code> #wrapper { position:relative; z-index:1; } #wrapper img { position:absolute; top:-10px; width:20px; height:20px; z-index:10; } #icon1 { right:10px; } #icon2 { right:40px; } </code></pre> <p>Something like that. The actual dimensions would be based on the size and placement of the icons themselves, but this would get the job done.</p> http://stackoverflow.com/questions/628156/scaling-phpbb 0 Scaling phpBB? Steve Paulo 2009-03-09T21:47:45Z 2009-04-17T17:51:08Z <p>I'm looking to scale an existing phpBB installation by separating the read queries from the write queries to two separate, replicated MySQL servers. Anyone succeeded in doing this, specifically with phpBB?</p> <p>The biggest concern I have so far is that it seems like the queries are scattered haphazardly throughout the code. I'd love to hear if anyone else did this, and if so, how it went / what was the process.</p> http://stackoverflow.com/questions/635240/selecting-all-empty-text-fields-in-jquery/635341#635341 0 Answer by Steve Paulo for Selecting all empty text fields in Jquery Steve Paulo 2009-03-11T16:34:37Z 2009-03-11T16:34:37Z <p>Shot in the dark as I haven't tested it, but does this work:</p> <pre><code>$(":text:empty") </code></pre> http://stackoverflow.com/questions/619674/table-grid-layout-hardcoded-html-vs-generated-by-javascript/619684#619684 0 Answer by Steve Paulo for Table/Grid Layout - hardcoded HTML vs generated by Javascript Steve Paulo 2009-03-06T17:24:40Z 2009-03-06T17:24:40Z <p>Maintenance will also be significantly easier if you just write the markup out rather than using JavaScript.</p> <p>If you <em>were</em> going to do it in JS... at least do it using via the <a href="http://www.w3schools.com/js/js%5Fobj%5Fhtmldom.asp" rel="nofollow">HTML DOM</a></p> http://stackoverflow.com/questions/130161/ie6-issues-with-transparent-pngs 10 IE6 issues with transparent PNGs Steve Paulo 2008-09-24T21:44:00Z 2009-02-05T17:25:52Z <p>I've gotten used to the idea that if I want/need to use alpha-trans PNGs in a cross-browser manner, that I use a background image on a div and then, in IE6-only CSS, mark the background as "none" and include the proper "filter" argument.</p> <p>Is there another way? A better way? Is there a way to do this with the img tag and not with background images?</p> http://stackoverflow.com/questions/288445/how-can-i-remove-a-swf-file-thats-embedded-in-html-using-a-button-in-the-swf/288468#288468 1 Answer by Steve Paulo for How can I remove a swf file that's embedded in html using a button in the swf? Steve Paulo 2008-11-13T21:50:13Z 2008-11-13T21:50:13Z <p>Write a JavaScript function that will hide the swf or its containing element, and call that function via the "close button" in the swf itself.</p> http://stackoverflow.com/questions/223395/cross-site-scripting-and-html-encoding/223416#223416 0 Answer by Steve Paulo for Cross Site Scripting and HTML Encoding Steve Paulo 2008-10-21T20:35:56Z 2008-10-21T20:35:56Z <p>encoding your HTML is a start... it does not protect from all XSS attacks.</p> <p>If you use PHP, here is a good function you can use in your sites: <a href="http://kallahar.com/smallprojects/php_xss_filter_function.php" rel="nofollow">Kallahar's RemoveXSS() function</a></p> <p>If you don't use PHP, at least the code is well commented, explaining the purpose of each section, and could then be adapted to another programming language.</p> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files/222879#222879 3 Answer by Steve Paulo for Notepad replacement for viewing very large text files Steve Paulo 2008-10-21T18:13:39Z 2008-10-21T18:13:39Z <p><a href="http://www.vim.org/" rel="nofollow" title="gVim">gVim</a></p> http://stackoverflow.com/questions/222139/how-far-should-you-break-up-stylesheets/222867#222867 2 Answer by Steve Paulo for How far should you break up stylesheets? Steve Paulo 2008-10-21T18:10:50Z 2008-10-21T18:10:50Z <p>I put all styles, including IE6-and-7-specific styles, in one sheet. The IE6 and 7 styles are targeted using conditionally-commented divs that only appear if one of those browsers come to the site, e.g.:</p> <pre><code>&lt;body&gt; &lt;!--[if IE 7]&gt;&lt;div class="IE IE7"&gt;&lt;![endif]--&gt; &lt;!--[if IE 6]&gt;&lt;div class="IE IE6"&gt;&lt;![endif]--&gt; ... rest of markup ... &lt;!--[if IE]&gt;&lt;/div&gt;&lt;![endif]--&gt; &lt;/body&gt; </code></pre> <p>Not sure what people think of this approach, but the extra markup is negligible, and being able to include IE6/7 styles next to main styles without the use of hacks... just prepending the selector with ".IE" or ".IE6" etc, is a big convenience.</p> <p>As for multiple stylesheets... save your HTTP requests. Use image sprites, one stylesheet, one "application.js" javascript, etc.</p> <p>I'd still include separate sheets for the print and handheld styles, but that's about it... </p> http://stackoverflow.com/questions/222777/div-positioning-problem/222794#222794 1 Answer by Steve Paulo for Div Positioning Problem Steve Paulo 2008-10-21T17:53:11Z 2008-10-21T17:53:11Z <p>Float #content right, not left.</p> http://stackoverflow.com/questions/199177/what-are-the-good-free-programming-text-editors-for-windows/199398#199398 0 Answer by Steve Paulo for What are the good free programming text editors for Windows? Steve Paulo 2008-10-13T23:14:55Z 2008-10-13T23:14:55Z <p>A few months ago I went from Notepad++ to jEdit. But just recently, I changed again, to gVim. Vim is impressing me to no end...</p> http://stackoverflow.com/questions/199378/best-css-color-wheel-sites/199392#199392 1 Answer by Steve Paulo for Best CSS color wheel sites Steve Paulo 2008-10-13T23:13:34Z 2008-10-13T23:13:34Z <p>I love Adobe's www.kuler.com ... if you sign up, you can download the palettes as Adobe Swatch files and use them in Creative Suite products.</p> <p>Though, it's really just a search tool for user-submitted palettes... maybe not exactly what you're looking for.</p> http://stackoverflow.com/questions/198892/img-onload-doesnt-work-well-in-ie7/198903#198903 5 Answer by Steve Paulo for img onload doesn't work well in IE7 Steve Paulo 2008-10-13T20:23:40Z 2008-10-13T21:34:15Z <p>IE7 is trying to resize the image before the DOM tree is fully rendered. You need to run it on document.onload... you'll just need to make sure your function can handle being passed a reference to the element that isn't "this."</p> <p>Alternatively... and I hope this isn't a flameable offense... jQuery makes stuff like this really, really easy.</p> <p>EDIT in response to EDIT 1:</p> <p>You can put <code>document.onload(runFunction);</code> in any script tag, anywhere in the body. it will still wait until the document is loaded to run the function.</p> http://stackoverflow.com/questions/155188/trigger-button-click-with-javascript-on-enter-key-in-text-box/155263#155263 3 Answer by Steve Paulo for Trigger button click with JavaScript on Enter key in Text Box Steve Paulo 2008-09-30T21:52:16Z 2008-09-30T21:52:16Z <p>Well, in jQuery, this would work:</p> <pre><code>$("#id_of_textbox").keyup(function(event){ if(event.keyCode == 13){ $("#id_of_button").click(); } }); </code></pre> <p>Sorry, I don't know how in plain JS, but maybe someone else could extrapolate this out?</p> <p>P.S. use jQuery ;)</p> http://stackoverflow.com/questions/137021/php-object-as-xml-document/137051#137051 1 Answer by Steve Paulo for PHP Object as XML Document Steve Paulo 2008-09-26T00:12:48Z 2008-09-26T00:12:48Z <p>Well, while a little dirty, you could always run a loop on the object's properties...</p> <pre><code>foreach($obj as $key =&gt; $val){ $_xml .= "&lt;".$key."&gt;".$val."&lt;/".$key"&gt;\n"; } </code></pre> <p>Using fopen/fwrite/fclose you could generate an XML doc with the $_xml variable as content. It's ugly, but it would work.</p> http://stackoverflow.com/questions/131508/which-browsers-and-operating-systems-do-you-target-on-new-websites/137029#137029 0 Answer by Steve Paulo for Which browsers and operating systems do you target on new websites? Steve Paulo 2008-09-26T00:07:33Z 2008-09-26T00:07:33Z <p>The standard suite I'm used to is:</p> <ol> <li>IE6 (win)</li> <li>IE7 (win)</li> <li>Firefox 1.5+ (win/mac)</li> <li>Safari 2+ (win/mac)</li> <li>Opera 9+ (win/mac)</li> <li>Chrome (so far, if it clears Safari 3.0 on win, it seems to clear Chrome, too)</li> </ol> <p>You could also generically claim support for IE6/7, Gecko, and WebKit... and it covers everything listed here but Opera, plus a few not listed. It's just a lot harder to test <em>just</em> the rendering engine and not the specific differences in browser versions and feel comfortable with the results.</p> http://stackoverflow.com/questions/136899/suppress-error-with-operator-in-php/136973#136973 -1 Answer by Steve Paulo for Suppress error with @ operator in PHP Steve Paulo 2008-09-25T23:52:48Z 2008-09-25T23:52:48Z <p>I use it when trying to load an HTML file for processing as a DOMDocument object. If there are any problems in the HTML... and what website doesn't have <em>at least one</em>... DOMDocument->loadHTMLFile() will throw an error if you don't suppress it with @. This is the only way (perhaps there are better ones) I've ever been successful in creating HTML scrapers in PHP.</p> http://stackoverflow.com/questions/136891/do-we-create-and-maintain-documentation/136908#136908 0 Answer by Steve Paulo for Do we create and maintain documentation? Steve Paulo 2008-09-25T23:39:04Z 2008-09-25T23:39:04Z <p>At my company we have "Developers" and "Architects" and part of the Architects' jobs... when they are not themselves writing code... is to write documentation. It works out nicely.</p> http://stackoverflow.com/questions/136190/what-is-the-best-approach-to-centralzing-error-messages-in-an-application/136222#136222 1 Answer by Steve Paulo for What is the best approach to centralzing error messages in an application? Steve Paulo 2008-09-25T21:19:49Z 2008-09-25T21:19:49Z <p>I've always defined constants wherever they make the most sense based on your language (a static class? application-wide controller? resource file?) and just call them where/whenever needed. Sure they're still "hard-coded" in a way at that point, but they're also nicely centralized, with naming conventions that make sense.</p> http://stackoverflow.com/questions/134845/href-for-javascript-links-or-javascriptvoid0/135120#135120 5 Answer by Steve Paulo for Href for Javascript links: "#" or "javascript:void(0)"? Steve Paulo 2008-09-25T18:35:42Z 2008-09-25T18:35:42Z <p>Ideally you'd do this:</p> <pre><code>&lt;a href="javascriptlessDestination.html" onclick="myJSFunc(); return false;"&gt;Link text&lt;/a&gt; </code></pre> <p>Or, even better, you'd have the default action link in the HTML, and you'd add the onclick event to the element unobtrusively via JS after the DOM renders, thus ensuring that if JavaScript is not present/utilized that you don't have useless event handlers riddling your code and potentially obfuscating (or at least distracting from) your actual content.</p> http://stackoverflow.com/questions/135076/why-do-chrome-firefox-and-ie-all-render-fixed-width-select-controls-differently/135083#135083 1 Answer by Steve Paulo for Why do Chrome, Firefox and IE all render fixed-width SELECT controls differently? Steve Paulo 2008-09-25T18:30:07Z 2008-09-25T18:30:07Z <p>Make sure you remove all default margins and padding, and define them explicitly. Make sure you're using a proper DOCTYPE and therefore rendering IE in Standards Mode.</p> http://stackoverflow.com/questions/130447/should-i-store-all-projects-in-one-repository-or-mulitiple/130466#130466 3 Answer by Steve Paulo for Should I store all projects in one repository or mulitiple? Steve Paulo 2008-09-24T22:58:47Z 2008-09-24T22:58:47Z <p>I would absolutely keep each project in its own repository, separate from all others. This will give each project its own history of commits. Rollbacks on one project will not affect other projects.</p> http://stackoverflow.com/questions/130313/which-chemical-stimulation-do-you-require-while-coding/130424#130424 3 Answer by Steve Paulo for Which chemical stimulation do you require while coding? Steve Paulo 2008-09-24T22:49:03Z 2008-09-24T22:49:03Z <p>taurine, guarana, caffeine, and whatever else ends up in Red Bull</p> http://stackoverflow.com/questions/130170/is-there-a-free-pay-web-service-that-i-can-query-to-get-mls-data/130194#130194 1 Answer by Steve Paulo for Is there a free/pay web service that I can query to get MLS data? Steve Paulo 2008-09-24T21:52:16Z 2008-09-24T21:52:16Z <p>If you're an NAR member, you can utilize their Internet Data Exchange (IDX) system, but it isn't available to non-members.</p> http://stackoverflow.com/questions/129085/what-would-you-write-if-you-wanted-to-learn-a-new-language/129104#129104 2 Answer by Steve Paulo for What would you write if you wanted to learn a new language? Steve Paulo 2008-09-24T18:55:23Z 2008-09-24T18:55:23Z <p>Well, I'm only a web developer, so I only have an answer there... but the first thing I wrote in PHP, and the first thing in Ruby, and now, the first thing in Python... a simple blog. Input, output, templating, database interaction, user management, etc, are all part of a blogging platform and all good things to learn early.</p> http://stackoverflow.com/questions/124371/what-is-the-best-ruby-tutorial-online/124377#124377 9 Answer by Steve Paulo for What is the best Ruby tutorial online? Steve Paulo 2008-09-23T22:45:10Z 2008-09-23T22:45:10Z <p>For beginners, it is <a href="http://tryruby.hobix.com/" rel="nofollow">Try Ruby! (in your browser)</a>... and by leaps and bounds, i think.</p> http://stackoverflow.com/questions/864865/jquery-slideup-down-append-question/865023#865023 Comment by Steve Paulo on jQuery Slideup/Down Append Question Steve Paulo 2009-05-14T18:47:08Z 2009-05-14T18:47:08Z This one has it. The .remove() needs to be called as part of a callback function in the .slideUp(). Otherwise they run at the same time. The callback ensures the removal won't occur until the animation ends. http://stackoverflow.com/questions/628156/scaling-phpbb/628170#628170 Comment by Steve Paulo on Scaling phpBB? Steve Paulo 2009-03-10T00:32:48Z 2009-03-10T00:32:48Z This is something I'm now looking into. Thanks. http://stackoverflow.com/questions/628156/scaling-phpbb Comment by Steve Paulo on Scaling phpBB? Steve Paulo 2009-03-10T00:29:24Z 2009-03-10T00:29:24Z It's going to be done side-by-side with basic load balancing. We're expecting a ridiculous amount of traffic concentrated in a small timeframe from all over the world, and need to retrofit an existing system. http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/164556#164556 Comment by Steve Paulo on What real life bad habits has programming given you? Steve Paulo 2009-03-05T23:59:36Z 2009-03-05T23:59:36Z I was married on 5/12... my wife thinks it's because 12 is a lucky number for both of us (we were both born on twelfth days) but it's really because 10/24 wasn't a weekend day. http://stackoverflow.com/questions/223395/cross-site-scripting-and-html-encoding/223413#223413 Comment by Steve Paulo on Cross Site Scripting and HTML Encoding Steve Paulo 2008-10-21T20:36:41Z 2008-10-21T20:36:41Z he meant CSS as in XSS/Cross Site Scripting, not Cascading Stylesheets http://stackoverflow.com/questions/222777/div-positioning-problem/222803#222803 Comment by Steve Paulo on Div Positioning Problem Steve Paulo 2008-10-21T18:12:24Z 2008-10-21T18:12:24Z And hey, if &quot;that was it,&quot; it wouldn't hurt to vote up my answer and accept it :) Glad I could help. http://stackoverflow.com/questions/198612/any-free-html-image-slicer/198653#198653 Comment by Steve Paulo on Any free HTML Image Slicer? Steve Paulo 2008-10-13T23:08:14Z 2008-10-13T23:08:14Z To be fair, that's much more difficult if he was indeed given a flat file like a JPG, and not a file with layer information. http://stackoverflow.com/questions/135076/why-do-chrome-firefox-and-ie-all-render-fixed-width-select-controls-differently/135083#135083 Comment by Steve Paulo on Why do Chrome, Firefox and IE all render fixed-width SELECT controls differently? Steve Paulo 2008-09-25T18:36:28Z 2008-09-25T18:36:28Z Yeah, DOCTYPE looks good. http://stackoverflow.com/questions/118280/trying-to-resize-a-jquery-dialog-in-ie6/130100#130100 Comment by Steve Paulo on Trying to resize a jQuery dialog in IE6? Steve Paulo 2008-09-24T23:00:10Z 2008-09-24T23:00:10Z Is this a general hasLayout issue? Could adding position:relative or zoom:1 do the same thing? http://stackoverflow.com/questions/120950/what-is-the-best-way-to-deal-with-recruiters/120991#120991 Comment by Steve Paulo on What is the best way to deal with recruiters? Steve Paulo 2008-09-24T22:51:09Z 2008-09-24T22:51:09Z So much truth, it hurts. http://stackoverflow.com/questions/130170/is-there-a-free-pay-web-service-that-i-can-query-to-get-mls-data Comment by Steve Paulo on Is there a free/pay web service that I can query to get MLS data? Steve Paulo 2008-09-24T22:10:30Z 2008-09-24T22:10:30Z The MLS is the Multiple Listing Service, the &quot;encyclopedia,&quot; so to speak, of currently-for-sale homes in the United States and, I believe, Canada. http://stackoverflow.com/questions/129777/how-do-you-deal-with-clients-who-have-no-processes-have-no-methodology-and-ask-f Comment by Steve Paulo on How do you deal with clients who have no processes, have no methodology and ask for things to be done for yesterday? Steve Paulo 2008-09-24T21:17:28Z 2008-09-24T21:17:28Z There are <i>other</i> kinds of clients? (I kid, I kid) http://stackoverflow.com/questions/129085/what-would-you-write-if-you-wanted-to-learn-a-new-language Comment by Steve Paulo on What would you write if you wanted to learn a new language? Steve Paulo 2008-09-24T21:16:12Z 2008-09-24T21:16:12Z I disagree with Derek and Onorio. The question is interesting enough on its own. http://stackoverflow.com/questions/117484/svn-versioning/117497#117497 Comment by Steve Paulo on SVN Versioning Steve Paulo 2008-09-24T17:22:55Z 2008-09-24T17:22:55Z I can see what you mean... i'll try to be more explicit in the future. http://stackoverflow.com/questions/123529/how-do-i-place-html-content-above-a-flash-movie/123535#123535 Comment by Steve Paulo on How do I place HTML content above a Flash movie? Steve Paulo 2008-09-24T16:22:25Z 2008-09-24T16:22:25Z How many Linux users DON'T keep their browsers and associated programs up-to-date? That's a savvy-by-definition demographic.