User Ben - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T09:08:42Zhttp://stackoverflow.com/feeds/user/848http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/443518/how-many-variables-are-too-much-for-a-class2How many variables are too much for a class?Ben2009-01-14T16:03:44Z2009-01-14T18:09:57Z
<p>I want to see if anyone has a better design for a class (class as in OOP) I am writing. We have a script that puts shared folder stats in an csv file. I am reading that in and putting it in a Share class.</p>
<p>My Boss wants to know information like: <br /></p>
<ul>
<li>Total Number of Files</li>
<li>Total Size of Files</li>
<li>Number of Office Files</li>
<li>Size of Office Files</li>
<li>Number of Exe Files</li>
<li>Size of Exe Files</li>
<li>etc ....</li>
</ul>
<p>So I have a class with variables like $numOfficeFiles and $sizeOfficeFiles etc. with a ton of get/set methods. Isn't there a better way to do this? What is the general rule if you have a class with a lot of variables/properties?</p>
<p>I think of this as a language agnostic question but if it matters, I am using PHP.</p>
http://stackoverflow.com/questions/6166/any-good-php-ide-preferably-free-or-cheap/6837#683719Answer by Ben for Any good PHP IDE, preferably free or cheap?Ben2008-08-09T16:28:15Z2008-08-09T16:28:15Z<p>I second <a href="http://www.activestate.com/Products/komodo_ide/index.mhtml" rel="nofollow">Komodo</a> from ActiveState. They have <a href="http://www.activestate.com/Products/komodo_ide/komodo_edit.mhtml" rel="nofollow">Komodo Editor</a> which is their <a href="http://www.activestate.com/Products/komodo_ide/index.mhtml" rel="nofollow">IDE</a> without their some debug and other features. The Editor recently went open which is good but I am not sure if I have seen any benefit as of yet.</p>
<p>Version 4.4 just came with the ability to create Zend Framework projects.</p>
<p>The 2 Great things about Komodo.<br>
1)It is a user license, not an install license. I.E. if your company buys Komodo, you can use it a home, with the same license. This is great.<br>
2) VI emulation. Coming from a unix world, this is fantastic. I wish more editors would offer this.</p>
<p><a href="http://www.activestate.com/Products/komodo_ide/komodo_edit.mhtml" rel="nofollow">Komodo Edit</a> </p>
<p><a href="http://www.activestate.com/Products/komodo_ide/index.mhtml" rel="nofollow">Komodo IDE</a></p>http://stackoverflow.com/questions/3553/one-piece-of-advice/6791#6791140Answer by Ben for One piece of adviceBen2008-08-09T14:39:07Z2008-08-09T14:39:07Z<p>My biggest hurdle was/is stop thinking that I was stupid compared to other programmers. When you read great code or watch a great coder do his thing, realize he didn't get that way by some sort of magic, or that he was just born with this great ability.</p>
<p>He worked at it. He has made the mistakes you have made and he learned from them. Just know that the only difference between you and him is time and experience. Not some unseen, unobtainable knowledge.</p>
<p>Learn different languages, and when and <strong>why</strong> to use them. Learn an editor, learn everything you can about it. Learn as many tools as you can. You won't use them all but you will be able to chose the best and know <strong>why</strong> you chose them.</p>