User KahWee - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T18:20:03Z http://stackoverflow.com/feeds/user/91127 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1113618/how-good-is-rails-and-postgresql-support 4 How good is Rails and PostgreSQL support? KahWee 2009-07-11T12:28:54Z 2009-10-27T13:01:23Z <p>I am thinking of working on a Rails application that uses PostgreSQL. I have some questions before I am comfortable using Rails:</p> <ul> <li>Is PostgreSQL support in Rails less superior than, say, MySQL. </li> <li>Would it feel any different if using PostgreSQL?</li> <li>Are there any cases where using PostgreSQL fail to work?</li> </ul> <p>Thanks.</p> http://stackoverflow.com/questions/1147895/loaded-php-ini-file-doesnt-work/1147899#1147899 0 Answer by KahWee for loaded php.ini file doesn't 'work' KahWee 2009-07-18T16:06:47Z 2009-07-18T16:06:47Z <p>There could be multiple php.ini. In the case of XAMPP, there is one at "U:\xampp\php\" and one in "U:\xampp\apache\bin". The former is for PHP CLI.</p> http://stackoverflow.com/questions/1117557/php-local-development-apache-www-directory-permissions/1117582#1117582 0 Answer by KahWee for php local development, apache www directory permissions KahWee 2009-07-13T03:19:38Z 2009-07-13T14:38:38Z <p>It doesn't matter, I personally placed it in /var/www/ and put it under the www-data group, and placed my username into the www-data group.</p> <p>You add yourself into the group with:</p> <pre><code>sudo usermod -a -G www-data &lt;username&gt; </code></pre> <p>Change the group to www-data just in case you haven't:</p> <pre><code>sudo chgrp -R www-data /var/www </code></pre> <p>Get new files to inherit the permissions (750)</p> <pre><code>sudo chmod -R 2750 www-data /var/www </code></pre> <p>Some people prefer to put it in /home/username/www/ which would be easier.</p> http://stackoverflow.com/questions/1115358/does-cakephp-handle-fks-on-the-code-level-or-should-i-be-adding-fks-to-my-db-too/1115367#1115367 1 Answer by KahWee for Does CakePHP handle FKs on the code level or should I be adding FKs to my db too? KahWee 2009-07-12T05:16:17Z 2009-07-12T05:16:17Z <p>In CakePHP, it doesn't matter if you specify FKs in the database level, however if you do, it would act as you would expect in typical database operations.</p> <p>If you have 2 tables - students and courses where each student belong to a course, you can state it this way:</p> <pre><code>&lt;?php class Student extends AppModel { var $name = 'Student'; var $belongsTo = array( 'Course' =&gt; array( 'className' =&gt; 'Course', 'foreignKey' =&gt; 'course_id' ) ); } ?&gt; </code></pre> <p>The convention is to append "_id" at the back of the singular class name of the model it belongs to.</p> <p>If you use CakePHP's naming conventions, you can just state:</p> <pre><code>&lt;?php class Student extends AppModel { var $name = 'Student'; var $belongsTo = array('Course'); } ?&gt; </code></pre> http://stackoverflow.com/questions/1113381/what-databases-do-webs-biggest-sites-run-on/1113739#1113739 2 Answer by KahWee for What databases do Web's biggest sites run on? KahWee 2009-07-11T13:39:07Z 2009-07-11T15:31:16Z <p><strong><a href="http://yahoo.com" rel="nofollow">Yahoo.com</a></strong></p> <ul> <li><strong>PostgreSQL</strong> (modified) - A client can connect to any of the nodes in the cluster (or a policy restricted subset). A query flows from the client to the server it chose to connect with. The SQL compiler on that node compiles and optimizes the query on that single node (no parallelism).</li> </ul> <p>Yahoo.com stats:</p> <ul> <li>24 billion events a day</li> <li>2-petabyte, claims largest database (Mar 2008)</li> </ul> <p>Source:</p> <ul> <li><a href="http://perspectives.mvdirona.com/2008/05/23/PetascaleSQLDBAtYahoo.aspx" rel="nofollow">http://perspectives.mvdirona.com/2008/05/23/PetascaleSQLDBAtYahoo.aspx</a></li> <li><a href="http://www.computerworld.com/s/article/9087918/Size_matters_Yahoo_claims_2_petabyte_database_is_world_s_biggest_busiest" rel="nofollow">http://www.computerworld.com/s/article/9087918/Size_matters_Yahoo_claims_2_petabyte_database_is_world_s_biggest_busiest</a></li> </ul> http://stackoverflow.com/questions/1113716/orm-and-active-record-pattern-in-php/1113728#1113728 1 Answer by KahWee for ORM and Active Record Pattern in PHP? KahWee 2009-07-11T13:31:47Z 2009-07-11T13:31:47Z <p>You can take a look at these questions though they're not exactly PHP specific:</p> <ul> <li><a href="http://stackoverflow.com/questions/194147/are-there-good-reasons-not-to-use-an-orm">Are there good reasons not to use an ORM?</a> </li> <li><a href="http://stackoverflow.com/questions/494816/using-an-orm-or-plain-sql">Using an ORM or plain SQL?</a> </li> </ul> http://stackoverflow.com/questions/1113691/a-general-linux-file-permissions-question-apache-and-wordpress/1113698#1113698 2 Answer by KahWee for A general linux file permissions question: Apache and WordPress KahWee 2009-07-11T13:18:58Z 2009-07-11T13:18:58Z <p>You can give ownership to www-data according to <a href="http://i.justrealized.com/2009/02/08/how-to-get-auto-update-working-in-wordpress/" rel="nofollow">here</a>.</p> <p>Run the following command in your WordPress directory (sudo required):</p> <pre><code>sudo chown -Rf www-data * </code></pre> <p>Works for Apache.</p> http://stackoverflow.com/questions/1097932/how-to-run-xdebug-and-zend-side-by-side/1113684#1113684 2 Answer by KahWee for How to run XDebug and Zend side by side? KahWee 2009-07-11T13:10:19Z 2009-07-11T13:10:19Z <p>AFAIK you cannot use them side by side. You can choose not to specify the debugger in NetBeans and do the old-fashion print_r-style debugging.</p> http://stackoverflow.com/questions/1113653/firefox-gecko-conditional-style-sheet/1113680#1113680 0 Answer by KahWee for firefox (Gecko) conditional style sheet KahWee 2009-07-11T13:07:50Z 2009-07-11T13:07:50Z <p>You can use the <a href="http://rafael.adm.br/css%5Fbrowser%5Fselector/" rel="nofollow">CSS Browser Selector</a>.</p> http://stackoverflow.com/questions/1113625/navigation-menu-ideas/1113646#1113646 0 Answer by KahWee for Navigation Menu - ideas?! KahWee 2009-07-11T12:45:09Z 2009-07-11T12:45:09Z <p>I would prefer learning CSS menus instead of having it generated using Dreamweaver. You can try the <a href="http://www.webdesignerwall.com/tutorials/advanced-css-menu/" rel="nofollow">this one</a>.</p> http://stackoverflow.com/questions/1113609/google-code-is-high-above-me-can-anybody-help-a-javascript-n00b/1113629#1113629 1 Answer by KahWee for Google code is high above me - can anybody help a Javascript n00b? KahWee 2009-07-11T12:34:54Z 2009-07-11T12:34:54Z <p>If you aren't familiar with JavaScript, you can either get a book or try playing around with the examples as you go along.</p> <p>You can try it at the <a href="http://code.google.com/apis/ajax/playground/?exp=maps#map%5Fsimple" rel="nofollow">Google Maps API Playground</a>. It helps to know some JavaScript but you can play around as JavaScript isn't that hard as compared to C.</p> http://stackoverflow.com/questions/1104150/apache-xampp-gzip/1110123#1110123 0 Answer by KahWee for apache xampp gzip KahWee 2009-07-10T15:12:50Z 2009-07-10T15:12:50Z <p>You can try uncommenting the following in /xampp/apache/conf/httpd.conf:</p> <pre><code>LoadModule deflate_module modules/mod_deflate.so </code></pre> <p>You should already have mod_deflate.so enabled if you are using XAMPP. XAMPPLite, however, has that disabled.</p> http://stackoverflow.com/questions/1109234/variable-naming-conventions-in-cakephp/1109393#1109393 1 Answer by KahWee for Variable naming conventions in CakePHP KahWee 2009-07-10T13:02:46Z 2009-07-10T13:02:46Z <p>There isn't a right or wrong answer to this. I usually name it:</p> <pre><code>$active_sites = $this-&gt;Site-&gt;find('all',array('conditions'=&gt;array('Site.active' =&gt; '1'), 'recursive' =&gt; -1)); $this-&gt;controller-&gt;set('active_sites', $active_sites); </code></pre> <p>I think any way is fine, but your example showed that the variable in the view and the controller isn't the same. That can be avoided by adopting $active_sites or $activeSites throughout.</p> <p>(Actually after a while, I start using underscores everywhere.)</p> http://stackoverflow.com/questions/1098245/any-tips-for-switching-from-cakephp-to-ruby-on-rails 2 Any tips for switching from CakePHP to Ruby on Rails? KahWee 2009-07-08T13:55:11Z 2009-07-10T03:26:26Z <p>I've been wanting to make the switch from PHP. Anyone care to highlight the similar classes or the key differences between CakePHP and Ruby on Rails?</p> <p>Thank you!</p> http://stackoverflow.com/questions/1106258/mysql-null-vs/1107515#1107515 0 Answer by KahWee for MySQL: NULL vs "" KahWee 2009-07-10T03:19:30Z 2009-07-10T03:19:30Z <p>I prefer null when it is semantically correct. If there is an address field available and the user did not fill in, I give it a "". However if there in an address attribute to in the users table yet I did not offer the user a chance to fill it in, I give it a NULL.</p> <p>I doubt (but I can't verify) that NULL and "" makes much of a difference.</p> http://stackoverflow.com/questions/1102639/good-book-about-php-with-good-exercises/1107495#1107495 0 Answer by KahWee for good book about PHP with good exercises KahWee 2009-07-10T03:11:08Z 2009-07-10T03:11:08Z <p>Just a note, if you intend to use a particular framework, you may want to check out books on those frameworks first then move on to read more on PHP language itself. This could help you get started with creating something quickly as you dabble more with the language itself.</p> http://stackoverflow.com/questions/1091263/how-to-use-the-php-command-line-interactively/1091277#1091277 1 Answer by KahWee for How to use the php command line interactively? KahWee 2009-07-07T09:31:06Z 2009-07-07T09:31:06Z <p>I believe you can use include. You can include files relative to the location you called the command.</p> http://stackoverflow.com/questions/170129/best-ide-editor-for-php/845274#845274 0 Answer by KahWee for best IDE / Editor for PHP KahWee 2009-05-10T12:48:39Z 2009-05-10T12:48:39Z <p>I use NetBeans for PHP and like it very much.</p> http://stackoverflow.com/questions/819400/good-open-source-code-to-learn-web-programming/820897#820897 0 Answer by KahWee for Good Open Source Code to learn Web Programming KahWee 2009-05-04T16:51:16Z 2009-05-04T16:51:16Z <p>If you are interested in Python, you can look at <a href="http://reddit.com/code/" rel="nofollow">Reddit</a> or the <a href="http://code.djangoproject.com/" rel="nofollow">Django source code</a>. I know Django's a web framework but the code is really well done.</p> http://stackoverflow.com/questions/789572/best-php-framework-training-resource/790449#790449 0 Answer by KahWee for Best PHP Framework Training Resource? KahWee 2009-04-26T07:54:16Z 2009-04-26T07:54:16Z <p>I recommend CakePHP.</p> http://stackoverflow.com/questions/766809/whats-the-difference-between-utf8generalci-and-utf8unicodeci 2 What's the difference between utf8_general_ci and utf8_unicode_ci KahWee 2009-04-20T03:43:49Z 2009-04-20T05:34:05Z <p>Between <code>utf8_general_ci</code> and <code>utf8_unicode_ci</code>, are there any differences in terms of performance?</p> http://stackoverflow.com/questions/766468/autoboxing-so-i-can-write-integer-i-0-instead-of-integer-i-new-integer0/766523#766523 1 Answer by KahWee for Autoboxing: So I can write: Integer i = 0; instead of: Integer i = new Integer(0); KahWee 2009-04-20T00:39:52Z 2009-04-20T00:39:52Z <p>The main advantage would be readability, syntactic sugar basically. Java is already very verbose, Sun is trying all sorts of ways to make the syntax shorter.</p> http://stackoverflow.com/questions/766381/are-good-css-design-and-ie6-ie7-support-mutually-exclusive/766458#766458 -1 Answer by KahWee for Are good CSS design and IE6 / IE7 support mutually exclusive? KahWee 2009-04-20T00:02:48Z 2009-04-20T00:02:48Z <p>Only follow online CSS tutorials that is rendered correctly with IE6 and Chrome (or Webkit). If it looks right in both, it likely looks right in (almost) all browsers. </p> http://stackoverflow.com/questions/742646/installing-cake-php-on-xampp/766444#766444 0 Answer by KahWee for Installing cake php on xampp KahWee 2009-04-19T23:57:38Z 2009-04-19T23:57:38Z <p>Have you checked if your database user name and password is correct?</p> <p>Also ensure that your database does exist. </p> <p>The following is the default username and password (actually, no password) XAMPP uses:</p> <pre><code>var $default = array( 'driver' =&gt; 'mysql', 'persistent' =&gt; false, 'host' =&gt; 'localhost', 'login' =&gt; 'root', 'password' =&gt; '', 'database' =&gt; 'db_name', 'prefix' =&gt; '', ); </code></pre> http://stackoverflow.com/questions/766394/are-java-generics-mainly-a-way-of-forcing-static-type-on-elements-of-a-collection/766434#766434 0 Answer by KahWee for Are Java generics mainly a way of forcing static type on elements of a collection? KahWee 2009-04-19T23:52:33Z 2009-04-19T23:52:33Z <p>You may want to check out the tutorial in the <a href="http://java.sun.com/docs/books/tutorial/extra/generics/index.html" rel="nofollow">Java site</a>. It gives a good explanation of in the introduction.</p> <p><strong>Without Generics:</strong></p> <pre><code>List myIntList = new LinkedList(); // 1 myIntList.add(new Integer(0)); // 2 Integer x = (Integer) myIntList.iterator().next(); // 3 </code></pre> <p><strong>With Generics</strong></p> <pre><code>List&lt;Integer&gt; myIntList = new LinkedList&lt;Integer&gt;(); // 1' myIntList.add(new Integer(0)); // 2' Integer x = myIntList.iterator().next(); // 3' </code></pre> <p>I think it as type safety and also saving the casting. Read more about <a href="http://java.sun.com/j2se/1.5.0/docs/guide/language/autoboxing.html" rel="nofollow">autoboxing</a>.</p> http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications/766415#766415 0 Answer by KahWee for What Hosting Service is best for Django applications? KahWee 2009-04-19T23:43:36Z 2009-04-19T23:43:36Z <p>I recommend starting with Slicehost. Try setting up the servers yourself with the tutorial's help. If you messed up, just get delete your slice and start all over again.</p> http://stackoverflow.com/questions/680302/how-can-i-find-out-why-my-app-is-slow/766408#766408 0 Answer by KahWee for How can I find out why my app is slow? KahWee 2009-04-19T23:40:13Z 2009-04-19T23:40:13Z <p>You could try running 'top' when you SSH in to see which process is heavy. If you also have problems logging you, perhaps you may try getting Statistics in the Slicehost manager.</p> <p>If you discover it is MySQL's fault, consider decreasing the number of servers it can spawn.</p> <p>512 seems decent for Rails application, you might have to check if you misconfigured too.</p> http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/325689#325689 Comment by KahWee on What is your best programmer joke? KahWee 2009-08-16T15:30:24Z 2009-08-16T15:30:24Z May I know which interactive shell throws this? LOL http://stackoverflow.com/questions/1153074/php-arrays-with-only-one-type Comment by KahWee on php arrays with only one type KahWee 2009-07-20T11:49:45Z 2009-07-20T11:49:45Z My bad, those objects did exist in PHP. http://stackoverflow.com/questions/1153074/php-arrays-with-only-one-type Comment by KahWee on php arrays with only one type KahWee 2009-07-20T11:48:58Z 2009-07-20T11:48:58Z Please elaborate. Is your background Java? http://stackoverflow.com/questions/1149156/searching-for-good-and-reliable-hosting-provider/1149193#1149193 Comment by KahWee on Searching for good and reliable hosting provider KahWee 2009-07-19T18:28:56Z 2009-07-19T18:28:56Z I use MediaTemple, their GS hosting is not without issues. http://stackoverflow.com/questions/1149179/itunes-help Comment by KahWee on itunes help KahWee 2009-07-19T03:41:06Z 2009-07-19T03:41:06Z You should contact Apple support regarding this. :) http://stackoverflow.com/questions/1146578/cannot-understand-this-php-parser-error/1146594#1146594 Comment by KahWee on Cannot understand this php parser error KahWee 2009-07-18T03:13:38Z 2009-07-18T03:13:38Z It's echo not echp. :) http://stackoverflow.com/questions/1113691/a-general-linux-file-permissions-question-apache-and-wordpress/1113698#1113698 Comment by KahWee on A general linux file permissions question: Apache and WordPress KahWee 2009-07-11T16:35:16Z 2009-07-11T16:35:16Z caf has an answer that you want. http://stackoverflow.com/questions/1113381/what-databases-do-webs-biggest-sites-run-on/1113739#1113739 Comment by KahWee on What databases do Web's biggest sites run on? KahWee 2009-07-11T15:30:43Z 2009-07-11T15:30:43Z It's described as &quot;structured data, as opposed to unstructured data like e-mail and other documents.&quot; Hassan, the Data VP added, &quot;It's about how people use our Web site, both from the advertising perspective and from the consumer experience perspective.&quot; http://stackoverflow.com/questions/1113691/a-general-linux-file-permissions-question-apache-and-wordpress/1113698#1113698 Comment by KahWee on A general linux file permissions question: Apache and WordPress KahWee 2009-07-11T13:44:43Z 2009-07-11T13:44:43Z You can add your regular user to the www-data group or you could also append sudo in the beginning of your command. http://stackoverflow.com/questions/1098245/any-tips-for-switching-from-cakephp-to-ruby-on-rails/1107524#1107524 Comment by KahWee on Any tips for switching from CakePHP to Ruby on Rails? KahWee 2009-07-11T13:24:38Z 2009-07-11T13:24:38Z Thanks for the Ruby tutorial. ;) http://stackoverflow.com/questions/1097932/how-to-run-xdebug-and-zend-side-by-side/1113684#1113684 Comment by KahWee on How to run XDebug and Zend side by side? KahWee 2009-07-11T13:23:39Z 2009-07-11T13:23:39Z I think he's using ViArt: <a href="http://www.viart.com/is_it_possible_to_install_viart_shopping_cart_without_zend_optimizer.html" rel="nofollow">viart.com/is_it_possible_to_install_viart_shoppin&hellip;</a> http://stackoverflow.com/questions/1113563/iphone-application Comment by KahWee on iPhone Application KahWee 2009-07-11T13:00:22Z 2009-07-11T13:00:22Z Perhaps you can try tagging this question with Facebook instead of iPhone. This question isn't really about iPhone at all. http://stackoverflow.com/questions/1113618/how-good-is-rails-and-postgresql-support/1113651#1113651 Comment by KahWee on How good is Rails and PostgreSQL support? KahWee 2009-07-11T12:57:21Z 2009-07-11T12:57:21Z I doubt that I would be using complicated queries but I generally prefer PostgreSQL over MySQL. I just worry that I would encounter problems as most of the Ruby on Rails tutorials are using MySQL instead. http://stackoverflow.com/questions/1113618/how-good-is-rails-and-postgresql-support/1113650#1113650 Comment by KahWee on How good is Rails and PostgreSQL support? KahWee 2009-07-11T12:55:39Z 2009-07-11T12:55:39Z I'm on OSX, that's good to hear. :) http://stackoverflow.com/questions/1105266/altered-wordpress-p2-theme-not-posting-to-firefox-or-ie-safari-works-fine-thoug Comment by KahWee on Altered WordPress P2 Theme not Posting to Firefox or IE. Safari Works Fine, though:( KahWee 2009-07-11T12:53:12Z 2009-07-11T12:53:12Z Is this working already? It appears to be fine in Firefox.