Tagged Questions

11
votes
35answers
2k views

What real life good habits has programming given you?

Following this question, what real life good habits has programming given you?
10
votes
14answers
291 views

Games for learning

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. I have learned a lot by …
5
votes
6answers
190 views

Managing aesthetic code changes in git

I find that I make a lot of small changes to my source code, often things that have almost no functional effect. For example: Refining or correcting comments. Moving function definitions within a …
4
votes
5answers
249 views

Is object clearing/array deallocation really necessary in VB6/VBA (Pros/Cons?)

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 …
4
votes
10answers
294 views

What learning habits can you suggest?

Hi, 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. I'm not …
3
votes
4answers
238 views

Is recursion generally considered to be an outdated method of traversing compared to using a stack?

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 …
2
votes
4answers
239 views

First version of Linux

Hi there 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. …
2
votes
4answers
101 views

Global State and Singletons Dependency injection

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 think i am writing simple game.so i want to hold a list of players. i have few options.. …
1
vote
3answers
224 views

How do I pass a const reference in C#?

In C++, passing const references is a common practice - for instance : #include <iostream> using namespace std; class X { public : X() {m_x = 0; } …
0
votes
6answers
59 views

Error handling inside or out of class?

Usually I do all what I can inside a class, in every method (try and catch). Am I doing it wrong? Recently I heard better way is handle error in program body... What is good habit?