User broady - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T08:14:56Zhttp://stackoverflow.com/feeds/user/3947http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/80268/where-is-the-future-of-databases/112823#1128230Answer by broady for Where is the future of databases?broady2008-09-22T01:55:10Z2008-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#1128070Answer by broady for What MySQL client application would you recommend for Mac OS X?broady2008-09-22T01:50:59Z2008-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#729354Answer by broady for What should a developer know before building a public web site?broady2008-09-16T14:30:01Z2008-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#725892Answer by broady for Multiple return values to indicate success/failure. broady2008-09-16T14:02:01Z2008-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#724043Answer by broady for What's the point of Perl golf?broady2008-09-16T13:48:33Z2008-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#704320Answer by broady for What is the Simplest Tomcat/Apache Connector (Windows)?broady2008-09-16T08:43:20Z2008-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#689031Answer by broady for Is there a specification of Java's threading model running under Windows XP available anywhere?broady2008-09-16T02:30:16Z2008-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#6476410Answer by broady for Should HTML co-exist with code?broady2008-09-15T17:07:38Z2008-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#6439511Answer by broady for Stack overflow code golfbroady2008-09-15T16:24:08Z2008-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#6422912Answer by broady for What is the most useful multi-purpose open-source library for java?broady2008-09-15T16:02:47Z2008-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#642111Answer by broady for What is the best online javascript/css/html/xhtml/dom reference?broady2008-09-15T16:01:07Z2008-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#640960Answer by broady for Setting java locale settingsbroady2008-09-15T15:45:49Z2008-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#638216Answer by broady for When is the best time to use <b> and <i> in lieu of <strong> and <em>, if ever?broady2008-09-15T15:15:33Z2008-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<b>overflow</b></code>. The "overflow" portion has no semantic meaning over "stack", yet <code>stack<span class="overflow-logo">overflow</span></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#638470Answer by broady for When is the best time to use <b> and <i> in lieu of <strong> and <em>, if ever?broady2008-09-15T15:17:03Z2008-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#373565Answer by broady for "Programming" for a 9 year oldbroady2008-09-01T01:50:45Z2008-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#255479Comment by broady on Learning Javabroady2008-11-02T02:49:41Z2008-11-02T02:49:41ZHis name is Bruce Eckel, not Bruce Eckels.http://stackoverflow.com/questions/117226/how-to-check-if-a-php-script-is-still-running/117287#117287Comment by broady on How to check if a php script is still runningbroady2008-09-23T12:15:38Z2008-09-23T12:15:38ZAlso, watch your CPU usage skyrocket :)http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/100010#100010Comment by broady on What's the best API you've ever used?broady2008-09-20T03:34:27Z2008-09-20T03:34:27ZYou're joking, right? Cocoa doesn't even have a NSLinkedList.http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/98371#98371Comment by broady on What's the best API you've ever used?broady2008-09-20T03:31:38Z2008-09-20T03:31:38ZJava Collections is pretty good. Not perfect, but good!http://stackoverflow.com/questions/82391/should-tables-be-avoided-in-html-at-any-cost/82489#82489Comment by broady on Should Tables be avoided in HTML at any cost?broady2008-09-17T12:51:52Z2008-09-17T12:51:52ZNo, 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#72759Comment by broady on how to remove this kind of symbols (junk) from string?broady2008-09-16T14:35:26Z2008-09-16T14:35:26Z@HalFas, it looks like an encoding issue.http://stackoverflow.com/questions/10042/how-do-i-implement-a-linked-list-in-javaComment by broady on How do I implement a Linked List in Java?broady2008-09-16T14:05:38Z2008-09-16T14:05:38ZI was just about to click "offensive?" :phttp://stackoverflow.com/questions/72183/any-good-interview-questions-to-ask-prospective-junior-java-developers/72225#72225Comment by broady on Any good interview questions to ask prospective Junior java developers?broady2008-09-16T13:46:59Z2008-09-16T13:46:59Z(1..100).collect { it % 3 ? (it % 5 ? it : "Pong") : (it % 5 ? "Ping" : "Ping Pong") }.each { println it }http://stackoverflow.com/questions/15496/hidden-features-of-java/55679#55679Comment by broady on Hidden Features of Javabroady2008-09-16T12:21:40Z2008-09-16T12:21:40ZAnd by god is it ugly and confusing. And irrelevant to type safety.http://stackoverflow.com/questions/68601/svn-hosting-and-defect-tracking/68706#68706Comment by broady on SVN hosting (and defect tracking)broady2008-09-16T02:24:41Z2008-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#68616Comment by broady on SVN hosting (and defect tracking)broady2008-09-16T02:22:54Z2008-09-16T02:22:54ZTheir 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#63913Comment by broady on When is the best time to use <b> and <i> in lieu of <strong> and <em>, if ever?broady2008-09-16T01:55:26Z2008-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#59206Comment by broady on What's the difference between the inner workings of Java's JVM and .NET's CLR?broady2008-09-15T16:50:59Z2008-09-15T16:50:59ZNot sure. Type erasure is pretty important, I thought.http://stackoverflow.com/questions/64461/what-is-your-favorite-open-source-library-for-java/64474#64474Comment by broady on What is your favorite open-source library for java?broady2008-09-15T16:41:26Z2008-09-15T16:41:26Z@Huppie pity about the spam protection, I tried to post a few separate ones, but it stopped me.