User KahWee - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T18:20:03Zhttp://stackoverflow.com/feeds/user/91127http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1113618/how-good-is-rails-and-postgresql-support4How good is Rails and PostgreSQL support?KahWee2009-07-11T12:28:54Z2009-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#11478990Answer by KahWee for loaded php.ini file doesn't 'work'KahWee2009-07-18T16:06:47Z2009-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#11175820Answer by KahWee for php local development, apache www directory permissionsKahWee2009-07-13T03:19:38Z2009-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 <username>
</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#11153671Answer by KahWee for Does CakePHP handle FKs on the code level or should I be adding FKs to my db too?KahWee2009-07-12T05:16:17Z2009-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><?php
class Student extends AppModel {
var $name = 'Student';
var $belongsTo = array(
'Course' => array(
'className' => 'Course',
'foreignKey' => 'course_id'
)
);
}
?>
</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><?php
class Student extends AppModel {
var $name = 'Student';
var $belongsTo = array('Course');
}
?>
</code></pre>
http://stackoverflow.com/questions/1113381/what-databases-do-webs-biggest-sites-run-on/1113739#11137392Answer by KahWee for What databases do Web's biggest sites run on?KahWee2009-07-11T13:39:07Z2009-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#11137281Answer by KahWee for ORM and Active Record Pattern in PHP?KahWee2009-07-11T13:31:47Z2009-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#11136982Answer by KahWee for A general linux file permissions question: Apache and WordPressKahWee2009-07-11T13:18:58Z2009-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#11136842Answer by KahWee for How to run XDebug and Zend side by side?KahWee2009-07-11T13:10:19Z2009-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#11136800Answer by KahWee for firefox (Gecko) conditional style sheetKahWee2009-07-11T13:07:50Z2009-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#11136460Answer by KahWee for Navigation Menu - ideas?!KahWee2009-07-11T12:45:09Z2009-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#11136291Answer by KahWee for Google code is high above me - can anybody help a Javascript n00b?KahWee2009-07-11T12:34:54Z2009-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#11101230Answer by KahWee for apache xampp gzip KahWee2009-07-10T15:12:50Z2009-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#11093931Answer by KahWee for Variable naming conventions in CakePHPKahWee2009-07-10T13:02:46Z2009-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->Site->find('all',array('conditions'=>array('Site.active' => '1'), 'recursive' => -1));
$this->controller->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-rails2Any tips for switching from CakePHP to Ruby on Rails?KahWee2009-07-08T13:55:11Z2009-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#11075150Answer by KahWee for MySQL: NULL vs ""KahWee2009-07-10T03:19:30Z2009-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#11074950Answer by KahWee for good book about PHP with good exercisesKahWee2009-07-10T03:11:08Z2009-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#10912771Answer by KahWee for How to use the php command line interactively?KahWee2009-07-07T09:31:06Z2009-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#8452740Answer by KahWee for best IDE / Editor for PHPKahWee2009-05-10T12:48:39Z2009-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#8208970Answer by KahWee for Good Open Source Code to learn Web ProgrammingKahWee2009-05-04T16:51:16Z2009-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#7904490Answer by KahWee for Best PHP Framework Training Resource?KahWee2009-04-26T07:54:16Z2009-04-26T07:54:16Z<p>I recommend CakePHP.</p>
http://stackoverflow.com/questions/766809/whats-the-difference-between-utf8generalci-and-utf8unicodeci2What's the difference between utf8_general_ci and utf8_unicode_ciKahWee2009-04-20T03:43:49Z2009-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#7665231Answer by KahWee for Autoboxing: So I can write: Integer i = 0; instead of: Integer i = new Integer(0);KahWee2009-04-20T00:39:52Z2009-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-1Answer by KahWee for Are good CSS design and IE6 / IE7 support mutually exclusive?KahWee2009-04-20T00:02:48Z2009-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#7664440Answer by KahWee for Installing cake php on xamppKahWee2009-04-19T23:57:38Z2009-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' => 'mysql',
'persistent' => false,
'host' => 'localhost',
'login' => 'root',
'password' => '',
'database' => 'db_name',
'prefix' => '',
);
</code></pre>
http://stackoverflow.com/questions/766394/are-java-generics-mainly-a-way-of-forcing-static-type-on-elements-of-a-collection/766434#7664340Answer by KahWee for Are Java generics mainly a way of forcing static type on elements of a collection?KahWee2009-04-19T23:52:33Z2009-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<Integer> myIntList = new LinkedList<Integer>(); // 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#7664150Answer by KahWee for What Hosting Service is best for Django applications?KahWee2009-04-19T23:43:36Z2009-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#7664080Answer by KahWee for How can I find out why my app is slow?KahWee2009-04-19T23:40:13Z2009-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#325689Comment by KahWee on What is your best programmer joke?KahWee2009-08-16T15:30:24Z2009-08-16T15:30:24ZMay I know which interactive shell throws this? LOLhttp://stackoverflow.com/questions/1153074/php-arrays-with-only-one-typeComment by KahWee on php arrays with only one typeKahWee2009-07-20T11:49:45Z2009-07-20T11:49:45ZMy bad, those objects did exist in PHP.http://stackoverflow.com/questions/1153074/php-arrays-with-only-one-typeComment by KahWee on php arrays with only one typeKahWee2009-07-20T11:48:58Z2009-07-20T11:48:58ZPlease elaborate. Is your background Java?http://stackoverflow.com/questions/1149156/searching-for-good-and-reliable-hosting-provider/1149193#1149193Comment by KahWee on Searching for good and reliable hosting providerKahWee2009-07-19T18:28:56Z2009-07-19T18:28:56ZI use MediaTemple, their GS hosting is not without issues.http://stackoverflow.com/questions/1149179/itunes-helpComment by KahWee on itunes helpKahWee2009-07-19T03:41:06Z2009-07-19T03:41:06ZYou should contact Apple support regarding this. :)http://stackoverflow.com/questions/1146578/cannot-understand-this-php-parser-error/1146594#1146594Comment by KahWee on Cannot understand this php parser errorKahWee2009-07-18T03:13:38Z2009-07-18T03:13:38ZIt's echo not echp. :)http://stackoverflow.com/questions/1113691/a-general-linux-file-permissions-question-apache-and-wordpress/1113698#1113698Comment by KahWee on A general linux file permissions question: Apache and WordPressKahWee2009-07-11T16:35:16Z2009-07-11T16:35:16Zcaf has an answer that you want.http://stackoverflow.com/questions/1113381/what-databases-do-webs-biggest-sites-run-on/1113739#1113739Comment by KahWee on What databases do Web's biggest sites run on?KahWee2009-07-11T15:30:43Z2009-07-11T15:30:43ZIt's described as "structured data, as opposed to unstructured data like e-mail and other documents." Hassan, the Data VP added, "It's about how people use our Web site, both from the advertising perspective and from the consumer experience perspective."http://stackoverflow.com/questions/1113691/a-general-linux-file-permissions-question-apache-and-wordpress/1113698#1113698Comment by KahWee on A general linux file permissions question: Apache and WordPressKahWee2009-07-11T13:44:43Z2009-07-11T13:44:43ZYou 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#1107524Comment by KahWee on Any tips for switching from CakePHP to Ruby on Rails?KahWee2009-07-11T13:24:38Z2009-07-11T13:24:38ZThanks for the Ruby tutorial. ;)http://stackoverflow.com/questions/1097932/how-to-run-xdebug-and-zend-side-by-side/1113684#1113684Comment by KahWee on How to run XDebug and Zend side by side?KahWee2009-07-11T13:23:39Z2009-07-11T13:23:39ZI 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…</a>http://stackoverflow.com/questions/1113563/iphone-applicationComment by KahWee on iPhone ApplicationKahWee2009-07-11T13:00:22Z2009-07-11T13:00:22ZPerhaps 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#1113651Comment by KahWee on How good is Rails and PostgreSQL support?KahWee2009-07-11T12:57:21Z2009-07-11T12:57:21ZI 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#1113650Comment by KahWee on How good is Rails and PostgreSQL support?KahWee2009-07-11T12:55:39Z2009-07-11T12:55:39ZI'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-thougComment by KahWee on Altered WordPress P2 Theme not Posting to Firefox or IE. Safari Works Fine, though:(KahWee2009-07-11T12:53:12Z2009-07-11T12:53:12ZIs this working already? It appears to be fine in Firefox.