2
votes
4answers
232 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 Linu …
4
votes
5answers
225 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 …
5
votes
6answers
186 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 def …
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
284 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 le …
1
vote
3answers
214 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 …
2
votes
4answers
94 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 …
4
votes
4answers
232 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 …
4
votes
10answers
290 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 effec …
