586 reputation
48
bio website
location
age
visits member for 1 year, 6 months
seen 22 hours ago
stats profile views 15

Oct
8
comment Does it make a difference if I declare variables inside or outside a loop in Java?
In this case obviously there is performance and memory penalty. But it is not quite the case in the op's question
Oct
8
answered Does it make a difference if I declare variables inside or outside a loop in Java?
Sep
28
comment How to unit test image processing code?
Agree, its OK to rely on some concrete files in your tests when you are testing routines working with files (you see it more ofter with integration tests).
Sep
7
awarded  Critic
Jul
20
comment Do you want to work alone or in a team?
reminds me of myself :D
Jul
19
awarded  Good Answer
Jul
19
awarded  Mortarboard
Jul
19
awarded  Nice Answer
Jul
19
answered Best practice on if/return
May
30
awarded  Necromancer
Mar
26
awarded  Commentator
Mar
26
comment What is enterprise software, exactly?
you should take a look at the daily wtf (not giving link). You will have a good feel of "enterprise software" in the comments
Mar
22
comment Is dependency injection essential for unit testing?
@VJovic For example standalone objects. I think of a method that takes some arguments and performs some stuff but does not depend on another component (thus no need for DI).
Mar
22
comment Is dependency injection essential for unit testing?
Agreed, DI is particularly usefull for mocking objects. But there are many scenarios where DI is useless in tests.
Jan
25
comment How should I restart a career in software development after a 7 year gap?
its not so easy ...
Jan
20
comment Jump into Android or learn Java basics first?
In addition, by learning Java first you familiarize yourself with basics APIs you will use anyway in Android.
Jan
6
comment When is it appropriate to develop a gui application, as opposed to a web application?
IMO using a native app for that is overkill. A web application should do fine => faster development => more free time.
Jan
5
comment When is the right time to change programming language?
The Pragmatic programmer book recommends learning one language / year. I dont know if it is realistic for you but it is a good advice.
Jan
4
answered How Much Logic in Getters
Dec
21
comment Should programming languages be strict or loose?
Agree, you should limit possibilities for developpers : more possibilites => need to think more (should i proceed this way or that way) => less time to do actual work