| bio | website | claimid.com/louisr |
|---|---|---|
| location | Your computer | |
| age | 32 | |
| visits | member for | 2 years, 6 months |
| seen | 9 hours ago | |
| stats | profile views | 150 |
trying to learn and help others learn :)
|
Jun 11 |
comment |
In general, is it ethical to make a copy of work source code and take it home as reference? I don't think this is a good rule of thumb. You also don't tell at work and do it secretly if you're looking for a new job, but it's not unethical. |
|
Jun 11 |
comment |
In general, is it ethical to make a copy of work source code and take it home as reference? @dan1111 for my own study |
|
May 16 |
comment |
Is it a good practice to write a method that gets something and checks the value? In the the third example, I do this method before operations that doesn't make sense if the customer isn't active |
|
May 11 |
comment |
How should I behave as a developer in a project that's headed for failure? "Use email": Do you think e-mail is better than talking to him, e.g. over coffee/tea? |
|
May 10 |
comment |
How should I behave as a developer in a project that's headed for failure? @AnthonyPegram you can vote reopen :D |
|
May 10 |
comment |
How should I behave as a developer in a project that's headed for failure? @JeffO you are right. My question is not really about what to do with my career, but what to do with this particular development project. I'll edit the question to clarify that. |
|
May 10 |
comment |
How should I behave as a developer in a project that's headed for failure? @VitorBraga I think this question applies to many developer. Many developers inheriting messy legacy code with short deadline |
|
May 10 |
comment |
How should I behave as a developer in a project that's headed for failure? @VitorBraga why is it off topic? |
|
Apr 23 |
comment |
Simple questions to test understanding of Dependency Inversion Principle yup, that's why I ask the appropriate example design to be subject of the question. |
|
Apr 23 |
comment |
Simple questions to test understanding of Dependency Inversion Principle Does this mean that they really understand it? For example, they might be just repeating the slides without really understanding it |
|
Apr 18 |
comment |
Formal study about trends and prevalence of agile vs traditional methodology in the industry @pdr I agree, the definition is kind of tricky. That's why I asked for formal studies. Normally those studies came up with some useful definition, or maybe use some objective scoring system like 0 - 100 continuum |
|
Feb 19 |
comment |
how to prove TDD is best compared to code inspection which paper are you talking about? |
|
Feb 7 |
comment |
Should I try persistence in flat file before database? Disagree. I would still need to learn how SQLite work, and implement code that manipulate SQLite database in .NET, convert query result to objects, etc. so it doesn't make development easier. It just adds all the burdens of creating a database, without the advantages of a full-fledged database server. |
|
Feb 6 |
comment |
Should I try persistence in flat file before database? the actions in the queue will be executed. benefit from database include performance, concurrency management, and probably the client will also care about security, readability & query of data. |
|
Feb 6 |
comment |
Should I try persistence in flat file before database? The application manages a queue of requests, and it needs to remember the queue after closing and restarting.. there is no obligation to use database like in your application |
|
Jan 31 |
comment |
Test driven development when implementing a flexible length list related programmers.stackexchange.com/questions/21463 |
|
Jan 31 |
comment |
Test driven development when implementing a flexible length list The principle is writing the simplest thing that works, right? |
|
Jan 30 |
comment |
Non-obvious use of graph how about non-directed, cyclic graph example? |
|
Jan 29 |
comment |
Visitor pattern what kind of task is this? Homework? |
|
Nov 29 |
comment |
Capitalization convention for C# protected fields what does it mean "do not version well"? Are you saying that since protected field is not recommended, there is no guideline about its name? Anyway, Resharper seems to recommend MyVar |