User Bahadır - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T07:35:09Zhttp://stackoverflow.com/feeds/user/3812http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1274792/is-returning-null-bad-design/1340908#13409080Answer by Bahadır for Is returning null bad design?Bahadır2009-08-27T12:55:34Z2009-08-27T12:55:34Z<p>Its inventor <a href="http://www.infoq.com/presentations/Null-References-The-Billion-Dollar-Mistake-Tony-Hoare" rel="nofollow">says</a> it is a billion dollar mistake!</p>
http://stackoverflow.com/questions/211118/how-to-build-tagging-support-using-couchdb/213138#2131387Answer by Bahadır for How to build "Tagging" support using CouchDB? Bahadır2008-10-17T17:48:37Z2008-10-17T17:48:37Z<p><em>Disclaimer: I didn't test this and don't know if it can perform better.</em> </p>
<p>Create a single perm view:</p>
<pre><code>function(doc) {
for (var tag in doc.tags) {
emit([tag, doc.published], doc)
}
};
</code></pre>
<p>And query with
_view/your_view/all?startkey=['your_tag_here']&endkey=['your_tag_here', {}]</p>
<p>Resulting JSON structure will be slightly different but you will still get the publish date sorting.</p>
http://stackoverflow.com/questions/167716/what-is-the-difference-between-couchdb-and-lotus-notes/173619#1736191Answer by Bahadır for What is the difference between CouchDB and Lotus Notes?Bahadır2008-10-06T08:57:57Z2008-10-06T08:57:57Z<p>It is the Notes application and UI that people usually hates. Not the architecture behind.</p>
http://stackoverflow.com/questions/88889/recommend-a-java-wizard-library/159710#1597101Answer by Bahadır for Recommend a Java wizard library?Bahadır2008-10-01T21:00:10Z2008-10-01T21:00:10Z<p>There is one in the JFace library (that powers Eclipse) <a href="http://www.eclipse.org/articles/article.php?file=Article-JFaceWizards/index.html" rel="nofollow">here</a>. But it is for SWT rather than Swing. </p>
http://stackoverflow.com/questions/147837/couchdb-modeling-for-multi-user3CouchDB modeling for multi-userBahadır2008-09-29T07:43:53Z2008-09-29T15:09:09Z
<p>I am already excited about document databases and especially about CouchDB's simplicity. But I have a hard time understanding if such databases are a viable option for multi user systems. Since those systems require some kind of relations between records which document databases do not provide.</p>
<p>Is it completely the wrong tool for such cases? Or some tagging and temporary views are the way to accomplish this? Or else...</p>
<p>UPDATE:<br />
I understand the answers so far. But let me rephrase the question a bit. Lets say I have a load of semi-structured data which is normally a fit for CouchDB. I can tag them like "type=post" and "year=2008". My question is how far can I go with this type of tagging? Say can I create an array field with 10.000 names in it? Or is there a better way of doing this? It is a matter of understanding how to think in this document based sense.</p>
http://stackoverflow.com/questions/118054/does-anyone-have-an-example-of-a-user-interface-for-creating-a-sql-where-clause/118094#1180940Answer by Bahadır for Does anyone have an example of a User Interface for creating a SQL Where clause?Bahadır2008-09-22T22:52:00Z2008-09-22T22:52:00Z<p>You can check how MS Access does it. I won't call it intuitive but it is simple.</p>
http://stackoverflow.com/questions/76300/whats-the-best-way-to-return-variables-from-a-syncexec/101304#1013041Answer by Bahadır for What's the best way to return variables from a syncExec?Bahadır2008-09-19T11:58:31Z2008-09-19T11:58:31Z<p>If this happens often, you better use subscribe/notify model between your process and view. Your view subscribes to the event which should trigger that message box and gets notified when conditions met.</p>
http://stackoverflow.com/questions/79928/what-is-the-best-way-to-change-the-encoding-of-text-in-php/79982#799821Answer by Bahadır for What is the best way to change the encoding of text in PHPBahadır2008-09-17T04:27:00Z2008-09-17T04:27:00Z<p>Check the multi-byte string functions <a href="http://be.php.net/manual/en/ref.mbstring.php" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/62617/whats-the-best-way-to-separate-php-code-and-html/62873#628730Answer by Bahadır for What's the best way to separate PHP Code and HTML?Bahadır2008-09-15T13:28:30Z2008-09-15T13:28:30Z<p>Back in the days when PHP4 was cutting edge, PHPlib's templating system served me well. It is simple to setup and really easy to use for basic things. See <a href="http://www.sanisoft.com/phplib/manual/TemplateExamples.php" rel="nofollow">some examples</a> here.</p>
<p>It is a bit old but it is stable and simple.</p>