User somas1 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T18:04:01Z http://stackoverflow.com/feeds/user/412 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1433506/is-it-important-to-explicitly-declare-properties-in-php 0 Is it important to explicitly declare properties in PHP? somas1 2009-09-16T14:52:46Z 2009-09-16T15:07:41Z <p>I have followed a tutorial to create a simple blog writing application in PHP and have modified the classes in this tutorial so that they have additional capabilities. Modifying this very bare bones app has given me a better understanding of how PHP works, however I have run across an interesting situation. </p> <p>One of the classes in my project has about a half dozen class properties such as <code>public $id, public $author, public $post</code>. These properties are declared at the beginning of this class however I find that if I remove all but one of these properties the app still functions correctly. </p> <p>Is it wrong to remove a property declaration such as <code>public $datePosted</code> from the beginning of a class if this class still assigns variables to this property like this: `$this->datePosted = $someVariableName;'</p> http://stackoverflow.com/questions/1395503/proper-way-to-upgrade-mamp-and-keep-current-settings 0 Proper way to upgrade MAMP and keep current settings. [closed] somas1 2009-09-08T18:23:36Z 2009-09-08T18:23:36Z <p>I've upgraded MAMP on my Mac a few times now and it's easy enough to backup and restore my htdocs folder to restore my web documents but I'm unsure of the best way to do the same thing for all of my other customizations to MAMP. </p> <p>Should I overwrite MAMP's db folder with the db folder from my last MAMP install or should I keep the db folder from a new install intact and copy over only the folders containing the .frm files of my databases and tables. I'm unclear if updates made to MYSQL by MAMP require some of the default files in MAMP's db folder. </p> <p>Should I replace MAMP's php.ini file with my previously updated ini file or will this affect upgrades made by MAMP?</p> <p>What is the best way to keep all of the PEAR packages I've installed through MAMP when I upgrade? </p> http://stackoverflow.com/questions/2480/book-or-website-recommendations-for-building-a-working-application-or-project 3 Book or Website Recommendations for building a working application or project somas1 2008-08-05T15:37:58Z 2009-06-13T06:30:52Z <p>I've really enjoyed <em>Apress Books Practical Projects</em> series. I know that O'Reilly has a <em>Building a Web 2.0 Portal with ASP.NET</em> book and I have heard of a similar book for Cocoa programming (although I am not sure of its title.) I'd like to know what other books or tutorials stackoverflow users would recommend that walks one through a project in any language or framework. I'm familiar with the O'Reilly's Cookbook series as well but I'm more interested in something that describes an entire project or application.</p> http://stackoverflow.com/questions/27345/how-do-i-install-the-phpgd2-extension-in-mamp-on-a-mac 0 How do I install the php_gd2 extension in MAMP on a Mac? somas1 2008-08-26T03:23:34Z 2009-01-30T07:46:10Z <p>I'm running MAMP 1.7.2 on a Mac and I'd like to install the extension php_gd2. How do I do this? I know that on Windows using WAMP I'd simply select the php_gd2 entry in the extensions menu to activate it. How is it done when using MAMP? I know that I can do it using MacPorts but I'd prefer not to make any changes to my default OS X php installation. </p> http://stackoverflow.com/questions/230831/how-is-wikipedias-example-of-an-unbalanced-avl-tree-really-unbalanced 3 How is Wikipedia's example of an unbalanced AVL tree really unbalanced? somas1 2008-10-23T18:20:08Z 2008-10-23T19:19:13Z <p><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/a/a9/Unbalanced_binary_tree.svg/251px-Unbalanced_binary_tree.svg.png" alt="alt text" /></p> <p>The image above is from <a href="http://en.wikipedia.org/wiki/AVL_tree" rel="nofollow">"Wikipedia's entry on AVL trees"</a> which Wikipedia indicates is unbalanced. How is this tree not balanced already? Here's a quote from the article:</p> <blockquote> <p>The balance factor of a node is the height of its right subtree minus the height of its left subtree and a node with balance factor 1, 0, or -1 is considered balanced. A node with any other balance factor is considered unbalanced and requires rebalancing the tree. The balance factor is either stored directly at each node or computed from the heights of the subtrees.</p> </blockquote> <p>Both the left and right subtrees have a height of 4. The right subtree of the left tree has a height of 3 which is still only 1 less than 4. Can someone explain what I'm missing?</p> http://stackoverflow.com/questions/47882/what-is-a-magic-number-and-why-is-it-bad/47888#47888 12 Answer by somas1 for What is a magic number, and why is it bad? somas1 2008-09-06T22:29:59Z 2008-09-06T22:29:59Z <p>Have you taken a look at the wikipedia entry for <a href="http://en.wikipedia.org/wiki/Magic_number_(programming)" rel="nofollow">magic number?</a></p> <p>It goes into a bit of detail about all of the ways the magic number reference is made. Here's a quote about magic number as a bad programming practice </p> <blockquote> <p>The term magic number also refers to the bad programming practice of using numbers directly in source code without explanation. In most cases this makes programs harder to read, understand, and maintain. Although most guides make an exception for the numbers zero and one, it is a good idea to define all other numbers in code as named constants.</p> </blockquote> http://stackoverflow.com/questions/46112/what-is-the-best-book-to-learn-asp-net-for-someone-who-has-little-programming-exp/46755#46755 1 Answer by somas1 for What is the best book to learn asp.net for someone who has little programming experience? somas1 2008-09-05T19:54:06Z 2008-09-05T19:54:06Z <p>Just to clarify Daniel's answer, Jessie Liberty has written two books with very similar titles.<br /> One is named <a href="http://rads.stackoverflow.com/amzn/click/0596529562" rel="nofollow">Programming ASP.NET 3.5</a> and the other is named <a href="http://rads.stackoverflow.com/amzn/click/0596518455" rel="nofollow">Learning ASP.NET 3.5</a></p> <p>Learning ASP.NET is the book for beginners while Programming ASP.NET goes into ASP.NET in greater detail. </p> http://stackoverflow.com/questions/35431/what-is-the-best-book-for-learning-objective-c/35446#35446 1 Answer by somas1 for What is the best book for learning objective-c? somas1 2008-08-29T22:58:53Z 2008-08-29T22:58:53Z <p>I liked <a href="http://rads.stackoverflow.com/amzn/click/0672325861" rel="nofollow">Programming in Objective C by Stephen Kochan</a> (although you may want to wait until <a href="http://rads.stackoverflow.com/amzn/click/0321566157" rel="nofollow">the second edition </a> of this book comes out in November since Objective C has had a few updates since the first edition was published in 2003) Unlike a lot of other books that cover programming for OS X this book does not really cover Cocoa but rather focuses on Objective C. Kochan targets people who are new to programming and his teaching style assumes no knowledge of C. </p> http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications/2740#2740 21 Answer by somas1 for What Hosting Service is best for Django applications? somas1 2008-08-05T19:37:42Z 2008-08-05T19:37:42Z <p>I'm a huge fan of <a href="http://www.webfaction.com/" rel="nofollow">webfaction</a> as well. They are not the cheapest hosts at $9.50 a month (if you are not prepaying for a year) but they have supported django for as long as it has been around, they support the stable and 1.0 alpha releases and they have a control panel app that allows you to setup in about two minutes. Have you checked out <a href="http://djangofriendly.com/hosts/" rel="nofollow">djangofriendly?</a> There are quite a few reviews and recommendations for django hosts there. </p> http://stackoverflow.com/questions/1433506/is-it-important-to-explicitly-declare-properties-in-php/1433526#1433526 Comment by somas1 on Is it important to explicitly declare properties in PHP? somas1 2009-09-16T14:59:52Z 2009-09-16T14:59:52Z Thanks for the answer. $this-&gt;$datePosted was a typo that Daok has fixed. It wasn't actually a problem in my code.