active questions tagged good-habit - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T00:28:28Z http://stackoverflow.com/feeds/tag/good-habit http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1813329/error-handling-inside-or-out-of-class 0 Error handling inside or out of class? mariz 2009-11-28T18:38:00Z 2009-11-29T04:24:55Z <p>Usually I do all what I can inside a class, in every <code>method</code> (<code>try</code> and <code>catch</code>). Am I doing it wrong? Recently I heard better way is handle error in program body... </p> <p>What is good habit?</p> http://stackoverflow.com/questions/1471082/managing-aesthetic-code-changes-in-git 5 Managing aesthetic code changes in git Ollie Saunders 2009-09-24T11:27:46Z 2009-10-13T05:38:16Z <p>I find that I make a lot of small changes to my source code, often things that have almost no functional effect. For example:</p> <ul> <li>Refining or correcting comments.</li> <li>Moving function definitions within a class for a more natural reading order.</li> <li>Spacing and lining up some declarations for readability.</li> <li>Collapsing something using multiple lines on to one.</li> <li>Removing an old piece of commented-out code.</li> <li>Correcting some inconsistent whitespace.</li> </ul> <p>I guess I have a formidable attention to detail in my code. But the problem is I don't know what to do about these changes and they make it difficult to switch between branches etc. in git. I find myself not knowing whether to commit the minor changes, stash them, or put them in a separate branch of little tweaks and merge that in later. None those options seems ideal. </p> <p>The main problem is that these sort of changes are unpredictable. If I was to commit these there would be so many commits with the message "Minor code aesthetic change.", because, the second I make such a commit I notice another similar issue. What should I do when I make a minor change, a significant change, and then another minor change? I'd like to merge the three minor changes into one commit. It's also annoying seeing files as modified in <code>git status</code> when the change barely warrants my attention. I know about <code>git commit --amend</code> but I also know that's bad practice as it makes my repo inconsistent with remotes.</p> http://stackoverflow.com/questions/1147587/games-for-learning 10 Games for learning Jørgen Fogh 2009-07-18T13:54:44Z 2009-10-12T10:57:36Z <p>I often find myself wasting a lot of time playing short games like Mine Sweeper or Solitaire in between my studying. I am looking for a better habit to replace this one.</p> <p>I have learned a lot by solving problems from programming competitions, an activity which has a certain instant gratification / short feedback-loop quality to it. The loop is just not tight enough to replace Solitaire.</p> <p>Do you know any games / exercises which are relevant computer scientist?</p> <p>The important thing is that they should be possible to play with very little preparation and take a very short time to complete. Otherwise they will become just another "task".</p> http://stackoverflow.com/questions/1551024/first-version-of-linux 2 First version of Linux dole doug 2009-10-11T16:00:49Z 2009-10-11T19:51:10Z <p>Hi there</p> <p>I've heard many times that Linus Torvalds is a genius when it comes to writing good code. I also wish to write good code and I'd like to see how the first version of Linux was written. </p> <p>Does anyone know where I can find the first version of Linux? I'm looking for the first version (not 1.0) because I think it will be smaller and easier to understand.</p> <p>Many thanks.</p> http://stackoverflow.com/questions/1525772/is-object-clearing-array-deallocation-really-necessary-in-vb6-vba-pros-cons 4 Is object clearing/array deallocation really necessary in VB6/VBA (Pros/Cons?) Oorang 2009-10-06T13:58:35Z 2009-10-07T10:55:09Z <p>Hello, A lot of what I have learned about VB I learned from using Static Code Analysis (Particularly Aivosto's Project Analyzer). And one one of things it checks for is whether or not you cleared all objects and arrays. I used to just do this blindly because PA said so. But now that I know a little bit more about the way VB releases resources, it seems to me that these things should be happening automatically. Is this a legacy feature from pre VB6, or is there a reason why you should explicitly set objects back to nothing and use Erase on arrays?</p> http://stackoverflow.com/questions/1385224/how-do-i-pass-a-const-reference-in-c 1 How do I pass a const reference in C#? Maciek 2009-09-06T08:40:15Z 2009-09-06T11:25:49Z <p>In C++, passing const references is a common practice - for instance :</p> <pre><code>#include &lt;iostream&gt; using namespace std; class X { public : X() {m_x = 0; } X(const int &amp; x) {m_x = x; } X(const X &amp; other) { *this = other; } X &amp; operator = (const X &amp; other) { m_x = other.m_x; return *this; } void print() { cout &lt;&lt; m_x &lt;&lt; endl; } private : int m_x; }; void main() { X x1(5); X x2(4); X x3(x2); x2 = x1; x1.print(); x2.print(); x3.print(); } </code></pre> <p>This very simple example illustrates how it's done - pretty much. However I've noticed that in C# this doesn't seem to be the case. Do I have to pass const references in C# ? what do I need the "ref" keyword for? Please note that I know and understand what C# reference and value types are.</p> http://stackoverflow.com/questions/1364227/global-state-and-singletons-dependency-injection 2 Global State and Singletons Dependency injection Manu 2009-09-01T19:29:29Z 2009-09-01T20:19:42Z <p>this is a problem i face lot of times when i am designing a new app i'll use a sample problem to explain this</p> <p>think i am writing simple game.so i want to hold a list of players. i have few options..</p> <p>1.use a static field in some class </p> <blockquote> <pre><code>private static ArrayList&lt;Player&gt; players = new ArrayList&lt;Integer&gt;(); public Player getPlayer(int i){ return players.get(i); } </code></pre> </blockquote> <p>but this a global state</p> <p>2.or i can use a singleton</p> <blockquote> <pre><code>class PlayerList{ private PlayerList instance; private PlayerList(){...} public PlayerList getInstance() { if(instance==null){ ... } return instance; } } </code></pre> </blockquote> <p>but this is bad because it's a singleton</p> <p>3.Dependency injection</p> <blockquote> <pre><code>class Game { private PlayerList playerList; public Game(PlayerList list) { this.list = list; } public PlayerList getPlayerList() { return playerList; } } </code></pre> </blockquote> <p>this seems good but it's not, if any object outside Game need to look at PlayerList (which is the usual case) <strong>i have to use one of the above methods to make the Game class available globally. so I just add another layer to the problem</strong>. didn't actually solve anything.</p> <p>what is the optimum solution ? (currently i use Singleton approach)</p> http://stackoverflow.com/questions/795903/is-recursion-generally-considered-to-be-an-outdated-method-of-traversing-compared 3 Is recursion generally considered to be an outdated method of traversing compared to using a stack? Jamie Dixon 2009-04-28T01:31:44Z 2009-08-11T01:34:15Z <p>I've been reading in a couple of places where people are opting to use a Stack instead of recursion. Is this because recursion is seen as being an outdated way to get-the-job-done or are both methods equally applicable in different contexts?</p> http://stackoverflow.com/questions/168805/what-real-life-good-habits-has-programming-given-you 12 What real life good habits has programming given you? Luca 2008-10-03T20:43:08Z 2009-07-09T00:21:17Z <p>Following <a href="http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you">this question</a>, what real life good habits has programming given you?</p> http://stackoverflow.com/questions/578056/what-learning-habits-can-you-suggest 4 What learning habits can you suggest? Asaf R 2009-02-23T15:39:56Z 2009-02-26T05:26:50Z <p>Hi,</p> <p>Our profession often requires deep learning; sitting down and reading, and understanding. I'm currently undergoing an exam period, and I'm looking for ways to learn more effectively.</p> <p>I'm not asking about what to learn, or whether to prefer blogs over books, etc. My question is much more physical than that - </p> <p><strong>What do you do when need to study, and I mean study hard?</strong></p> <p>I'm looking for answers such as</p> <ul> <li>I slice my time to 2.5 hours intervals and make a break between them, but never during.</li> <li>I keep a jar of water nearby.</li> <li>I wake up at 6 o'clock sharp and start my day with a session at the gym.</li> </ul> <p><strong><em>What good learning habits did acquire, or wish you had acquired?</em></strong></p> <p>(I know this isn't strictly programming related, but it is programmers related)</p>