User broady - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T08:14:56Z http://stackoverflow.com/feeds/user/3947 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/80268/where-is-the-future-of-databases/112823#112823 0 Answer by broady for Where is the future of databases? broady 2008-09-22T01:55:10Z 2008-09-22T01:55:10Z <p>I wish I could say OODB, but no OODBs have really made a break in the market.</p> http://stackoverflow.com/questions/112784/what-mysql-client-application-would-you-recommend-for-mac-os-x/112807#112807 0 Answer by broady for What MySQL client application would you recommend for Mac OS X? broady 2008-09-22T01:50:59Z 2008-09-22T01:50:59Z <p>If you prefer PHPMyAdmin, why not install it on OS X? It's a piece of piss to install PHP on OS X, and OS X comes bundled with Apache</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/72935#72935 4 Answer by broady for What should a developer know before building a public web site? broady 2008-09-16T14:30:01Z 2008-09-16T14:30:01Z <p>Good knowledge of HTTP, including caching and expiry headers</p> http://stackoverflow.com/questions/72564/multiple-return-values-to-indicate-success-failure/72589#72589 2 Answer by broady for Multiple return values to indicate success/failure. broady 2008-09-16T14:02:01Z 2008-09-16T14:02:01Z <p>As long as it's documented and contracted, and not too WTFy, then there shouldn't be a problem.</p> <p>Then again, I would recommend using exceptions for something like this. It makes more sense. If you can use PHP5, then that would be the way to go. Otherwise you don't have much choice.</p> http://stackoverflow.com/questions/72383/whats-the-point-of-perl-golf/72404#72404 3 Answer by broady for What's the point of Perl golf? broady 2008-09-16T13:48:33Z 2008-09-16T13:48:33Z <p>The point is fun and competition.</p> http://stackoverflow.com/questions/70389/what-is-the-simplest-tomcat-apache-connector-windows/70432#70432 0 Answer by broady for What is the Simplest Tomcat/Apache Connector (Windows)? broady 2008-09-16T08:43:20Z 2008-09-16T08:43:20Z <p><code>mod_jk</code>, or simply just use <code>mod_proxy</code> even though it's not really a Tomcat connector.</p> http://stackoverflow.com/questions/67183/is-there-a-specification-of-javas-threading-model-running-under-windows-xp-avail/68903#68903 1 Answer by broady for Is there a specification of Java's threading model running under Windows XP available anywhere? broady 2008-09-16T02:30:16Z 2008-09-16T02:30:16Z <p>It really depends on the specific JVM implementation. I assume you're wondering about Sun's Windows JVM, and I can tell you with certainty that the Sun JVM maps a Java thread to an OS thread.</p> <p>You could try spawning up a couple of threads from Java code, open up Task Manager and see what happened.</p> http://stackoverflow.com/questions/64760/should-html-co-exist-with-code/64764#64764 10 Answer by broady for Should HTML co-exist with code? broady 2008-09-15T17:07:38Z 2008-09-15T17:07:38Z <p>Generally, it's better to keep presentation (HTML) separate from logic ("back-end" code). Your code is decoupled and easier to maintain this way.</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/64395#64395 11 Answer by broady for Stack overflow code golf broady 2008-09-15T16:24:08Z 2008-09-15T16:24:08Z <p>Groovy:</p> <pre><code>main() </code></pre> <p>$ groovy stack.groovy:</p> <pre><code>Caught: java.lang.StackOverflowError at stack.main(stack.groovy) at stack.run(stack.groovy:1) ... </code></pre> http://stackoverflow.com/questions/64213/what-is-the-most-useful-multi-purpose-open-source-library-for-java/64229#64229 12 Answer by broady for What is the most useful multi-purpose open-source library for java? broady 2008-09-15T16:02:47Z 2008-09-15T16:02:47Z <ul> <li><p>Apache Commons</p></li> <li><p>Log4j</p></li> <li><p>Google collections</p></li> </ul> http://stackoverflow.com/questions/63918/what-is-the-best-online-javascript-css-html-xhtml-dom-reference/64211#64211 1 Answer by broady for What is the best online javascript/css/html/xhtml/dom reference? broady 2008-09-15T16:01:07Z 2008-09-15T16:01:07Z <p>Go straight to W3C docs. They're a bit cryptic at times, but they're solid documentation.</p> <p>For quirks, obviously sites like Quirksmode are good. But only once you've read actual W3C documentation.</p> http://stackoverflow.com/questions/64038/setting-java-locale-settings/64096#64096 0 Answer by broady for Setting java locale settings broady 2008-09-15T15:45:49Z 2008-09-15T15:45:49Z <p>With the <code>user.language</code>, <code>user.country</code> and <code>user.variant</code> properties.</p> <p>Example:</p> <p><code>java -Duser.language=th -Duser.country=TH -Duser.variant=TH SomeClass</code></p> http://stackoverflow.com/questions/63752/when-is-the-best-time-to-use-b-and-i-in-lieu-of-strong-and-em-if-ever/63821#63821 6 Answer by broady for When is the best time to use <b> and <i> in lieu of <strong> and <em>, if ever? broady 2008-09-15T15:15:33Z 2008-09-15T15:41:04Z <p>While in general I would stay away from non-semantic tags like <code>b</code> and <code>i</code>, <code>strong</code> and <code>em</code> are not direct replacements for <code>b</code> and <code>i</code>.</p> <p>I would use <code>b</code> or <code>i</code> when it's only presentation you're going for, and what you're marking up has no semantic meaning. For example, a logo like stackoverflow could be marked up with <code>stack&lt;b&gt;overflow&lt;/b&gt;</code>. The "overflow" portion has no semantic meaning over "stack", yet <code>stack&lt;span class="overflow-logo"&gt;overflow&lt;/span&gt;</code> doesn't offer anything either.</p> <p>Hope this helps.</p> <p><hr /></p> <p>Not sure how to comment (edit: need moar karma!), but this is in reply to Erik's comment.</p> <p>Please read <a href="http://www.whatwg.org/specs/web-apps/current-work/#the-b" rel="nofollow">the HTML5 working draft</a>. It gives a good explanation on when to use <code>b</code>.</p> <blockquote> <p>The <code>b</code> element represents a span of text to be stylistically offset from the normal prose without conveying any extra importance, such as key words in a document abstract, product names in a review, or other spans of text whose typical typographic presentation is boldened.</p> </blockquote> <p>"overflow" does not have emphasis over "stack" in the logo, therefore wrapping "overflow" with <code>em</code> is semantically incorrect.</p> http://stackoverflow.com/questions/63752/when-is-the-best-time-to-use-b-and-i-in-lieu-of-strong-and-em-if-ever/63847#63847 0 Answer by broady for When is the best time to use <b> and <i> in lieu of <strong> and <em>, if ever? broady 2008-09-15T15:17:03Z 2008-09-15T15:17:03Z <p>@<a href="#63806" rel="nofollow">dannyp</a>, for book titles, you should not use <code>i</code> but <code>cite</code> instead.</p> http://stackoverflow.com/questions/37133/programming-for-a-9-year-old/37356#37356 5 Answer by broady for "Programming" for a 9 year old broady 2008-09-01T01:50:45Z 2008-09-01T01:50:45Z <p>Scratch. It's based on Squeak (Smalltalk) and I'm sure you'll have a lot of fun with it, too.</p> <p><a href="http://scratch.mit.edu/" rel="nofollow">homepage</p> <p>wiki</a></p> http://stackoverflow.com/questions/255458/learning-java/255479#255479 Comment by broady on Learning Java broady 2008-11-02T02:49:41Z 2008-11-02T02:49:41Z His name is Bruce Eckel, not Bruce Eckels. http://stackoverflow.com/questions/117226/how-to-check-if-a-php-script-is-still-running/117287#117287 Comment by broady on How to check if a php script is still running broady 2008-09-23T12:15:38Z 2008-09-23T12:15:38Z Also, watch your CPU usage skyrocket :) http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/100010#100010 Comment by broady on What's the best API you've ever used? broady 2008-09-20T03:34:27Z 2008-09-20T03:34:27Z You're joking, right? Cocoa doesn't even have a NSLinkedList. http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/98371#98371 Comment by broady on What's the best API you've ever used? broady 2008-09-20T03:31:38Z 2008-09-20T03:31:38Z Java Collections is pretty good. Not perfect, but good! http://stackoverflow.com/questions/82391/should-tables-be-avoided-in-html-at-any-cost/82489#82489 Comment by broady on Should Tables be avoided in HTML at any cost? broady 2008-09-17T12:51:52Z 2008-09-17T12:51:52Z No, tables are meant for tabular <i>data</i>, not for controlling layout/display. http://stackoverflow.com/questions/72677/how-to-remove-this-kind-of-symbols-junk-from-string/72759#72759 Comment by broady on how to remove this kind of symbols (junk) from string? broady 2008-09-16T14:35:26Z 2008-09-16T14:35:26Z @HalFas, it looks like an encoding issue. http://stackoverflow.com/questions/10042/how-do-i-implement-a-linked-list-in-java Comment by broady on How do I implement a Linked List in Java? broady 2008-09-16T14:05:38Z 2008-09-16T14:05:38Z I was just about to click &quot;offensive?&quot; :p http://stackoverflow.com/questions/72183/any-good-interview-questions-to-ask-prospective-junior-java-developers/72225#72225 Comment by broady on Any good interview questions to ask prospective Junior java developers? broady 2008-09-16T13:46:59Z 2008-09-16T13:46:59Z (1..100).collect { it % 3 ? (it % 5 ? it : &quot;Pong&quot;) : (it % 5 ? &quot;Ping&quot; : &quot;Ping Pong&quot;) }.each { println it } http://stackoverflow.com/questions/15496/hidden-features-of-java/55679#55679 Comment by broady on Hidden Features of Java broady 2008-09-16T12:21:40Z 2008-09-16T12:21:40Z And by god is it ugly and confusing. And irrelevant to type safety. http://stackoverflow.com/questions/68601/svn-hosting-and-defect-tracking/68706#68706 Comment by broady on SVN hosting (and defect tracking) broady 2008-09-16T02:24:41Z 2008-09-16T02:24:41Z @Tim, you can get hosting for $20-$100/month, but you've forgotten the cost of managing your server. Disclosure: I also work for Atlassian, not on Studio either :) http://stackoverflow.com/questions/68601/svn-hosting-and-defect-tracking/68616#68616 Comment by broady on SVN hosting (and defect tracking) broady 2008-09-16T02:22:54Z 2008-09-16T02:22:54Z Their product is nice, but I've heard (sorry, no citations) that the service is a little unreliable. http://stackoverflow.com/questions/63752/when-is-the-best-time-to-use-b-and-i-in-lieu-of-strong-and-em-if-ever/63913#63913 Comment by broady on When is the best time to use <b> and <i> in lieu of <strong> and <em>, if ever? broady 2008-09-16T01:55:26Z 2008-09-16T01:55:26Z @ceejayoz See my example of a logo in my answer. http://stackoverflow.com/questions/59175/whats-the-difference-between-the-inner-workings-of-javas-jvm-and-nets-clr/59206#59206 Comment by broady on What's the difference between the inner workings of Java's JVM and .NET's CLR? broady 2008-09-15T16:50:59Z 2008-09-15T16:50:59Z Not sure. Type erasure is pretty important, I thought. http://stackoverflow.com/questions/64461/what-is-your-favorite-open-source-library-for-java/64474#64474 Comment by broady on What is your favorite open-source library for java? broady 2008-09-15T16:41:26Z 2008-09-15T16:41:26Z @Huppie pity about the spam protection, I tried to post a few separate ones, but it stopped me.