User Bahadır - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T07:35:09Z http://stackoverflow.com/feeds/user/3812 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1274792/is-returning-null-bad-design/1340908#1340908 0 Answer by Bahadır for Is returning null bad design? Bahadır 2009-08-27T12:55:34Z 2009-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#213138 7 Answer by Bahadır for How to build "Tagging" support using CouchDB? Bahadır 2008-10-17T17:48:37Z 2008-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']&amp;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#173619 1 Answer by Bahadır for What is the difference between CouchDB and Lotus Notes? Bahadır 2008-10-06T08:57:57Z 2008-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#159710 1 Answer by Bahadır for Recommend a Java wizard library? Bahadır 2008-10-01T21:00:10Z 2008-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-user 3 CouchDB modeling for multi-user Bahadır 2008-09-29T07:43:53Z 2008-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#118094 0 Answer by Bahadır for Does anyone have an example of a User Interface for creating a SQL Where clause? Bahadır 2008-09-22T22:52:00Z 2008-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#101304 1 Answer by Bahadır for What's the best way to return variables from a syncExec? Bahadır 2008-09-19T11:58:31Z 2008-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#79982 1 Answer by Bahadır for What is the best way to change the encoding of text in PHP Bahadır 2008-09-17T04:27:00Z 2008-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#62873 0 Answer by Bahadır for What's the best way to separate PHP Code and HTML? Bahadır 2008-09-15T13:28:30Z 2008-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>